OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
18 */ | 18 */ |
19 | 19 |
20 #include "config.h" | 20 #include "config.h" |
21 #include "core/css/MediaQueryList.h" | 21 #include "core/css/MediaQueryList.h" |
22 | 22 |
23 #include "core/css/MediaList.h" | 23 #include "core/css/MediaList.h" |
24 #include "core/css/MediaQueryEvaluator.h" | 24 #include "core/css/MediaQueryEvaluator.h" |
25 #include "core/css/MediaQueryListListener.h" | 25 #include "core/css/MediaQueryListListener.h" |
26 #include "core/css/MediaQueryMatcher.h" | 26 #include "core/css/MediaQueryMatcher.h" |
27 | 27 |
28 namespace WebCore { | 28 namespace WebCore { |
29 | 29 |
30 PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRa
wPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, boo
l matches) | 30 PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRa
wPtr<MediaQueryMatcher> matcher, PassRefPtrWillBeRawPtr<MediaQuerySet> media) |
31 { | 31 { |
32 return adoptRefWillBeNoop(new MediaQueryList(vector, media, matches)); | 32 return adoptRefWillBeNoop(new MediaQueryList(matcher, media)); |
33 } | 33 } |
34 | 34 |
35 MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector,
PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches) | 35 MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> matcher
, PassRefPtrWillBeRawPtr<MediaQuerySet> media) |
36 : m_matcher(vector) | 36 : m_matcher(matcher) |
37 , m_media(media) | 37 , m_media(media) |
38 , m_evaluationRound(m_matcher->evaluationRound()) | 38 , m_matchesDirty(true) |
39 , m_changeRound(m_evaluationRound - 1) // m_evaluationRound and m_changeRoun
d initial values must be different. | 39 , m_matches(false) |
40 , m_matches(matches) | |
41 { | 40 { |
| 41 m_matcher->addMediaQueryList(this); |
42 } | 42 } |
43 | 43 |
44 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(MediaQueryList) | 44 MediaQueryList::~MediaQueryList() |
| 45 { |
| 46 // FIXME: Figure out how to deal with this in oilpan. |
| 47 m_matcher->removeMediaQueryList(this); |
| 48 } |
45 | 49 |
46 String MediaQueryList::media() const | 50 String MediaQueryList::media() const |
47 { | 51 { |
48 return m_media->mediaText(); | 52 return m_media->mediaText(); |
49 } | 53 } |
50 | 54 |
51 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener>
listener) | 55 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener>
listener) |
52 { | 56 { |
53 if (!listener) | 57 if (!listener) |
54 return; | 58 return; |
55 | 59 |
56 m_matcher->addListener(listener, this); | 60 listener->setMediaQueryList(this); |
| 61 m_listeners.add(listener); |
57 } | 62 } |
58 | 63 |
59 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene
r> listener) | 64 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene
r> listener) |
60 { | 65 { |
61 if (!listener) | 66 if (!listener) |
62 return; | 67 return; |
63 | 68 |
64 m_matcher->removeListener(listener.get(), this); | 69 RefPtrWillBeRawPtr<MediaQueryList> protect(this); |
| 70 listener->clearMediaQueryList(); |
| 71 |
| 72 for (ListenerList::iterator i = m_listeners.begin(), end = m_listeners.end()
; i != end; ++i) { |
| 73 // We can't just use m_listeners.remove() here, because we get a new wra
pper for the |
| 74 // listener callback every time. We have to use MediaQueryListListener::
operator==. |
| 75 if (**i == *listener.get()) { |
| 76 m_listeners.remove(i); |
| 77 break; |
| 78 } |
| 79 } |
65 } | 80 } |
66 | 81 |
67 bool MediaQueryList::evaluate(MediaQueryEvaluator* evaluator) | 82 void MediaQueryList::documentDetached() |
68 { | 83 { |
69 if (m_evaluationRound != m_matcher->evaluationRound() && evaluator) | 84 m_listeners.clear(); |
70 setMatches(evaluator->eval(m_media.get())); | |
71 return m_changeRound == m_matcher->evaluationRound(); | |
72 } | 85 } |
73 | 86 |
74 void MediaQueryList::setMatches(bool newValue) | 87 void MediaQueryList::mediaChanged(WillBeHeapVector<RefPtrWillBeMember<MediaQuery
ListListener> >* toNotify) |
75 { | 88 { |
76 m_evaluationRound = m_matcher->evaluationRound(); | 89 m_matchesDirty = true; |
| 90 if (updateMatches()) { |
| 91 for (ListenerList::const_iterator i = m_listeners.begin(), end = m_liste
ners.end(); i != end; ++i) { |
| 92 toNotify->append(*i); |
| 93 } |
| 94 } |
| 95 } |
77 | 96 |
78 if (newValue == m_matches) | 97 bool MediaQueryList::updateMatches() |
79 return; | 98 { |
80 | 99 m_matchesDirty = false; |
81 m_matches = newValue; | 100 if (m_matches != m_matcher->evaluate(m_media.get())) { |
82 m_changeRound = m_evaluationRound; | 101 m_matches = !m_matches; |
| 102 return true; |
| 103 } |
| 104 return false; |
83 } | 105 } |
84 | 106 |
85 bool MediaQueryList::matches() | 107 bool MediaQueryList::matches() |
86 { | 108 { |
87 if (m_evaluationRound != m_matcher->evaluationRound()) | 109 updateMatches(); |
88 setMatches(m_matcher->evaluate(m_media.get())); | |
89 return m_matches; | 110 return m_matches; |
90 } | 111 } |
91 | 112 |
92 void MediaQueryList::trace(Visitor* visitor) | 113 void MediaQueryList::trace(Visitor* visitor) |
93 { | 114 { |
94 visitor->trace(m_matcher); | 115 visitor->trace(m_matcher); |
95 visitor->trace(m_media); | 116 visitor->trace(m_media); |
| 117 visitor->trace(m_listeners); |
96 } | 118 } |
97 | 119 |
98 } | 120 } |
OLD | NEW |