Backed out 2 changesets (bug 1845095) for causing build bustages related to DummyAtom...
[gecko.git] / servo / components / style / invalidation / element / element_wrapper.rs
blob71c3c94dafc5fe04b4f01eedbecd8e63a656100e
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
5 //! A wrapper over an element and a snapshot, that allows us to selector-match
6 //! against a past state of the element.
8 use crate::dom::TElement;
9 use crate::selector_parser::{AttrValue, NonTSPseudoClass, PseudoElement, SelectorImpl};
10 use crate::selector_parser::{Snapshot, SnapshotMap};
11 use crate::values::AtomIdent;
12 use crate::{CaseSensitivityExt, LocalName, Namespace, WeakAtom};
13 use dom::ElementState;
14 use selectors::attr::{AttrSelectorOperation, CaseSensitivity, NamespaceConstraint};
15 use selectors::matching::{ElementSelectorFlags, MatchingContext};
16 use selectors::{Element, OpaqueElement};
17 use std::cell::Cell;
18 use std::fmt;
20 /// In order to compute restyle hints, we perform a selector match against a
21 /// list of partial selectors whose rightmost simple selector may be sensitive
22 /// to the thing being changed. We do this matching twice, once for the element
23 /// as it exists now and once for the element as it existed at the time of the
24 /// last restyle. If the results of the selector match differ, that means that
25 /// the given partial selector is sensitive to the change, and we compute a
26 /// restyle hint based on its combinator.
27 ///
28 /// In order to run selector matching against the old element state, we generate
29 /// a wrapper for the element which claims to have the old state. This is the
30 /// ElementWrapper logic below.
31 ///
32 /// Gecko does this differently for element states, and passes a mask called
33 /// mStateMask, which indicates the states that need to be ignored during
34 /// selector matching. This saves an ElementWrapper allocation and an additional
35 /// selector match call at the expense of additional complexity inside the
36 /// selector matching logic. This only works for boolean states though, so we
37 /// still need to take the ElementWrapper approach for attribute-dependent
38 /// style. So we do it the same both ways for now to reduce complexity, but it's
39 /// worth measuring the performance impact (if any) of the mStateMask approach.
40 pub trait ElementSnapshot: Sized {
41     /// The state of the snapshot, if any.
42     fn state(&self) -> Option<ElementState>;
44     /// If this snapshot contains attribute information.
45     fn has_attrs(&self) -> bool;
47     /// Gets the attribute information of the snapshot as a string.
48     ///
49     /// Only for debugging purposes.
50     fn debug_list_attributes(&self) -> String {
51         String::new()
52     }
54     /// The ID attribute per this snapshot. Should only be called if
55     /// `has_attrs()` returns true.
56     fn id_attr(&self) -> Option<&WeakAtom>;
58     /// Whether this snapshot contains the class `name`. Should only be called
59     /// if `has_attrs()` returns true.
60     fn has_class(&self, name: &AtomIdent, case_sensitivity: CaseSensitivity) -> bool;
62     /// Whether this snapshot represents the part named `name`. Should only be
63     /// called if `has_attrs()` returns true.
64     fn is_part(&self, name: &AtomIdent) -> bool;
66     /// See Element::imported_part.
67     fn imported_part(&self, name: &AtomIdent) -> Option<AtomIdent>;
69     /// A callback that should be called for each class of the snapshot. Should
70     /// only be called if `has_attrs()` returns true.
71     fn each_class<F>(&self, _: F)
72     where
73         F: FnMut(&AtomIdent);
75     /// The `xml:lang=""` or `lang=""` attribute value per this snapshot.
76     fn lang_attr(&self) -> Option<AttrValue>;
79 /// A simple wrapper over an element and a snapshot, that allows us to
80 /// selector-match against a past state of the element.
81 #[derive(Clone)]
82 pub struct ElementWrapper<'a, E>
83 where
84     E: TElement,
86     element: E,
87     cached_snapshot: Cell<Option<&'a Snapshot>>,
88     snapshot_map: &'a SnapshotMap,
91 impl<'a, E> ElementWrapper<'a, E>
92 where
93     E: TElement,
95     /// Trivially constructs an `ElementWrapper`.
96     pub fn new(el: E, snapshot_map: &'a SnapshotMap) -> Self {
97         ElementWrapper {
98             element: el,
99             cached_snapshot: Cell::new(None),
100             snapshot_map: snapshot_map,
101         }
102     }
104     /// Gets the snapshot associated with this element, if any.
105     pub fn snapshot(&self) -> Option<&'a Snapshot> {
106         if !self.element.has_snapshot() {
107             return None;
108         }
110         if let Some(s) = self.cached_snapshot.get() {
111             return Some(s);
112         }
114         let snapshot = self.snapshot_map.get(&self.element);
115         debug_assert!(snapshot.is_some(), "has_snapshot lied!");
117         self.cached_snapshot.set(snapshot);
119         snapshot
120     }
122     /// Returns the states that have changed since the element was snapshotted.
123     pub fn state_changes(&self) -> ElementState {
124         let snapshot = match self.snapshot() {
125             Some(s) => s,
126             None => return ElementState::empty(),
127         };
129         match snapshot.state() {
130             Some(state) => state ^ self.element.state(),
131             None => ElementState::empty(),
132         }
133     }
135     /// Returns the value of the `xml:lang=""` (or, if appropriate, `lang=""`)
136     /// attribute from this element's snapshot or the closest ancestor
137     /// element snapshot with the attribute specified.
138     fn get_lang(&self) -> Option<AttrValue> {
139         let mut current = self.clone();
140         loop {
141             let lang = match self.snapshot() {
142                 Some(snapshot) if snapshot.has_attrs() => snapshot.lang_attr(),
143                 _ => current.element.lang_attr(),
144             };
145             if lang.is_some() {
146                 return lang;
147             }
148             current = current.parent_element()?;
149         }
150     }
153 impl<'a, E> fmt::Debug for ElementWrapper<'a, E>
154 where
155     E: TElement,
157     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
158         // Ignore other fields for now, can change later if needed.
159         self.element.fmt(f)
160     }
163 impl<'a, E> Element for ElementWrapper<'a, E>
164 where
165     E: TElement,
167     type Impl = SelectorImpl;
169     fn match_non_ts_pseudo_class(
170         &self,
171         pseudo_class: &NonTSPseudoClass,
172         context: &mut MatchingContext<Self::Impl>,
173     ) -> bool {
174         // Some pseudo-classes need special handling to evaluate them against
175         // the snapshot.
176         match *pseudo_class {
177             // For :link and :visited, we don't actually want to test the
178             // element state directly.
179             //
180             // Instead, we use the `visited_handling` to determine if they
181             // match.
182             NonTSPseudoClass::Link => {
183                 return self.is_link() && context.visited_handling().matches_unvisited();
184             },
185             NonTSPseudoClass::Visited => {
186                 return self.is_link() && context.visited_handling().matches_visited();
187             },
189             #[cfg(feature = "gecko")]
190             NonTSPseudoClass::MozTableBorderNonzero => {
191                 if let Some(snapshot) = self.snapshot() {
192                     if snapshot.has_other_pseudo_class_state() {
193                         return snapshot.mIsTableBorderNonzero();
194                     }
195                 }
196             },
198             #[cfg(feature = "gecko")]
199             NonTSPseudoClass::MozBrowserFrame => {
200                 if let Some(snapshot) = self.snapshot() {
201                     if snapshot.has_other_pseudo_class_state() {
202                         return snapshot.mIsMozBrowserFrame();
203                     }
204                 }
205             },
207             #[cfg(feature = "gecko")]
208             NonTSPseudoClass::MozSelectListBox => {
209                 if let Some(snapshot) = self.snapshot() {
210                     if snapshot.has_other_pseudo_class_state() {
211                         return snapshot.mIsSelectListBox();
212                     }
213                 }
214             },
216             // :lang() needs to match using the closest ancestor xml:lang="" or
217             // lang="" attribtue from snapshots.
218             NonTSPseudoClass::Lang(ref lang_arg) => {
219                 return self
220                     .element
221                     .match_element_lang(Some(self.get_lang()), lang_arg);
222             },
224             _ => {},
225         }
227         let flag = pseudo_class.state_flag();
228         if flag.is_empty() {
229             return self
230                 .element
231                 .match_non_ts_pseudo_class(pseudo_class, context);
232         }
233         match self.snapshot().and_then(|s| s.state()) {
234             Some(snapshot_state) => snapshot_state.intersects(flag),
235             None => self
236                 .element
237                 .match_non_ts_pseudo_class(pseudo_class, context),
238         }
239     }
241     fn apply_selector_flags(&self, _flags: ElementSelectorFlags) {
242         debug_assert!(false, "Shouldn't need selector flags for invalidation");
243     }
245     fn match_pseudo_element(
246         &self,
247         pseudo_element: &PseudoElement,
248         context: &mut MatchingContext<Self::Impl>,
249     ) -> bool {
250         self.element.match_pseudo_element(pseudo_element, context)
251     }
253     fn is_link(&self) -> bool {
254         match self.snapshot().and_then(|s| s.state()) {
255             Some(state) => state.intersects(ElementState::VISITED_OR_UNVISITED),
256             None => self.element.is_link(),
257         }
258     }
260     fn opaque(&self) -> OpaqueElement {
261         self.element.opaque()
262     }
264     fn parent_element(&self) -> Option<Self> {
265         let parent = self.element.parent_element()?;
266         Some(Self::new(parent, self.snapshot_map))
267     }
269     fn parent_node_is_shadow_root(&self) -> bool {
270         self.element.parent_node_is_shadow_root()
271     }
273     fn containing_shadow_host(&self) -> Option<Self> {
274         let host = self.element.containing_shadow_host()?;
275         Some(Self::new(host, self.snapshot_map))
276     }
278     fn prev_sibling_element(&self) -> Option<Self> {
279         let sibling = self.element.prev_sibling_element()?;
280         Some(Self::new(sibling, self.snapshot_map))
281     }
283     fn next_sibling_element(&self) -> Option<Self> {
284         let sibling = self.element.next_sibling_element()?;
285         Some(Self::new(sibling, self.snapshot_map))
286     }
288     fn first_element_child(&self) -> Option<Self> {
289         let child = self.element.first_element_child()?;
290         Some(Self::new(child, self.snapshot_map))
291     }
293     #[inline]
294     fn is_html_element_in_html_document(&self) -> bool {
295         self.element.is_html_element_in_html_document()
296     }
298     #[inline]
299     fn is_html_slot_element(&self) -> bool {
300         self.element.is_html_slot_element()
301     }
303     #[inline]
304     fn has_local_name(
305         &self,
306         local_name: &<Self::Impl as ::selectors::SelectorImpl>::BorrowedLocalName,
307     ) -> bool {
308         self.element.has_local_name(local_name)
309     }
311     #[inline]
312     fn has_namespace(
313         &self,
314         ns: &<Self::Impl as ::selectors::SelectorImpl>::BorrowedNamespaceUrl,
315     ) -> bool {
316         self.element.has_namespace(ns)
317     }
319     #[inline]
320     fn is_same_type(&self, other: &Self) -> bool {
321         self.element.is_same_type(&other.element)
322     }
324     fn attr_matches(
325         &self,
326         ns: &NamespaceConstraint<&Namespace>,
327         local_name: &LocalName,
328         operation: &AttrSelectorOperation<&AttrValue>,
329     ) -> bool {
330         match self.snapshot() {
331             Some(snapshot) if snapshot.has_attrs() => {
332                 snapshot.attr_matches(ns, local_name, operation)
333             },
334             _ => self.element.attr_matches(ns, local_name, operation),
335         }
336     }
338     fn has_id(&self, id: &AtomIdent, case_sensitivity: CaseSensitivity) -> bool {
339         match self.snapshot() {
340             Some(snapshot) if snapshot.has_attrs() => snapshot
341                 .id_attr()
342                 .map_or(false, |atom| case_sensitivity.eq_atom(&atom, id)),
343             _ => self.element.has_id(id, case_sensitivity),
344         }
345     }
347     fn is_part(&self, name: &AtomIdent) -> bool {
348         match self.snapshot() {
349             Some(snapshot) if snapshot.has_attrs() => snapshot.is_part(name),
350             _ => self.element.is_part(name),
351         }
352     }
354     fn imported_part(&self, name: &AtomIdent) -> Option<AtomIdent> {
355         match self.snapshot() {
356             Some(snapshot) if snapshot.has_attrs() => snapshot.imported_part(name),
357             _ => self.element.imported_part(name),
358         }
359     }
361     fn has_class(&self, name: &AtomIdent, case_sensitivity: CaseSensitivity) -> bool {
362         match self.snapshot() {
363             Some(snapshot) if snapshot.has_attrs() => snapshot.has_class(name, case_sensitivity),
364             _ => self.element.has_class(name, case_sensitivity),
365         }
366     }
368     fn is_empty(&self) -> bool {
369         self.element.is_empty()
370     }
372     fn is_root(&self) -> bool {
373         self.element.is_root()
374     }
376     fn is_pseudo_element(&self) -> bool {
377         self.element.is_pseudo_element()
378     }
380     fn pseudo_element_originating_element(&self) -> Option<Self> {
381         self.element
382             .pseudo_element_originating_element()
383             .map(|e| ElementWrapper::new(e, self.snapshot_map))
384     }
386     fn assigned_slot(&self) -> Option<Self> {
387         self.element
388             .assigned_slot()
389             .map(|e| ElementWrapper::new(e, self.snapshot_map))
390     }