File: ElementRareData.h

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (276 lines) | stat: -rw-r--r-- 9,189 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved.
 * Copyright (C) 2008 David Smith <catfish.man@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#ifndef ElementRareData_h
#define ElementRareData_h

#include "bindings/core/v8/ScriptWrappableVisitor.h"
#include "core/animation/ElementAnimations.h"
#include "core/css/cssom/InlineStylePropertyMap.h"
#include "core/dom/Attr.h"
#include "core/dom/CompositorProxiedPropertySet.h"
#include "core/dom/DatasetDOMStringMap.h"
#include "core/dom/ElementIntersectionObserverData.h"
#include "core/dom/NamedNodeMap.h"
#include "core/dom/NodeRareData.h"
#include "core/dom/PseudoElement.h"
#include "core/dom/PseudoElementData.h"
#include "core/dom/custom/CustomElementDefinition.h"
#include "core/dom/custom/V0CustomElementDefinition.h"
#include "core/dom/shadow/ElementShadow.h"
#include "core/html/ClassList.h"
#include "platform/heap/Handle.h"
#include "wtf/HashSet.h"
#include <memory>

namespace blink {

class LayoutObject;
class CompositorProxiedPropertySet;
class ResizeObservation;
class ResizeObserver;

class ElementRareData : public NodeRareData {
 public:
  static ElementRareData* create(LayoutObject* layoutObject) {
    return new ElementRareData(layoutObject);
  }

  ~ElementRareData();

  void setPseudoElement(PseudoId, PseudoElement*);
  PseudoElement* pseudoElement(PseudoId) const;

  void setTabIndexExplicitly() {
    setElementFlag(TabIndexWasSetExplicitly, true);
  }

  void clearTabIndexExplicitly() {
    clearElementFlag(TabIndexWasSetExplicitly);
  }

  CSSStyleDeclaration& ensureInlineCSSStyleDeclaration(Element* ownerElement);
  InlineStylePropertyMap& ensureInlineStylePropertyMap(Element* ownerElement);

  InlineStylePropertyMap* inlineStylePropertyMap() {
    return m_cssomMapWrapper.get();
  }

  void clearShadow() { m_shadow = nullptr; }
  ElementShadow* shadow() const { return m_shadow.get(); }
  ElementShadow& ensureShadow() {
    if (!m_shadow) {
      m_shadow = ElementShadow::create();
      ScriptWrappableVisitor::writeBarrier(this, m_shadow);
    }
    return *m_shadow;
  }

  NamedNodeMap* attributeMap() const { return m_attributeMap.get(); }
  void setAttributeMap(NamedNodeMap* attributeMap) {
    m_attributeMap = attributeMap;
    ScriptWrappableVisitor::writeBarrier(this, m_attributeMap);
  }

  ComputedStyle* computedStyle() const { return m_computedStyle.get(); }
  void setComputedStyle(PassRefPtr<ComputedStyle> computedStyle) {
    m_computedStyle = computedStyle;
  }
  void clearComputedStyle() { m_computedStyle = nullptr; }

  ClassList* classList() const { return m_classList.get(); }
  void setClassList(ClassList* classList) {
    m_classList = classList;
    ScriptWrappableVisitor::writeBarrier(this, m_classList);
  }
  void clearClassListValueForQuirksMode() {
    if (!m_classList)
      return;
    m_classList->clearValueForQuirksMode();
  }

  DatasetDOMStringMap* dataset() const { return m_dataset.get(); }
  void setDataset(DatasetDOMStringMap* dataset) {
    m_dataset = dataset;
    ScriptWrappableVisitor::writeBarrier(this, m_dataset);
  }

  LayoutSize minimumSizeForResizing() const { return m_minimumSizeForResizing; }
  void setMinimumSizeForResizing(LayoutSize size) {
    m_minimumSizeForResizing = size;
  }

  ScrollOffset savedLayerScrollOffset() const {
    return m_savedLayerScrollOffset;
  }
  void setSavedLayerScrollOffset(ScrollOffset offset) {
    m_savedLayerScrollOffset = offset;
  }

  ElementAnimations* elementAnimations() { return m_elementAnimations.get(); }
  void setElementAnimations(ElementAnimations* elementAnimations) {
    m_elementAnimations = elementAnimations;
  }

  bool hasPseudoElements() const;
  void clearPseudoElements();

  void incrementCompositorProxiedProperties(uint32_t properties);
  void decrementCompositorProxiedProperties(uint32_t properties);
  CompositorProxiedPropertySet* proxiedPropertyCounts() const {
    return m_proxiedProperties.get();
  }

  void v0SetCustomElementDefinition(V0CustomElementDefinition* definition) {
    m_v0CustomElementDefinition = definition;
  }
  V0CustomElementDefinition* v0CustomElementDefinition() const {
    return m_v0CustomElementDefinition.get();
  }

  void setCustomElementDefinition(CustomElementDefinition* definition) {
    m_customElementDefinition = definition;
  }
  CustomElementDefinition* customElementDefinition() const {
    return m_customElementDefinition.get();
  }

  AttrNodeList& ensureAttrNodeList();
  AttrNodeList* attrNodeList() { return m_attrNodeList.get(); }
  void removeAttrNodeList() { m_attrNodeList.clear(); }
  void addAttr(Attr* attr) {
    ensureAttrNodeList().push_back(attr);
    ScriptWrappableVisitor::writeBarrier(this, attr);
  }

  ElementIntersectionObserverData* intersectionObserverData() const {
    return m_intersectionObserverData.get();
  }
  ElementIntersectionObserverData& ensureIntersectionObserverData() {
    if (!m_intersectionObserverData) {
      m_intersectionObserverData = new ElementIntersectionObserverData();
      ScriptWrappableVisitor::writeBarrier(this, m_intersectionObserverData);
    }
    return *m_intersectionObserverData;
  }

  using ResizeObserverDataMap =
      HeapHashMap<Member<ResizeObserver>, Member<ResizeObservation>>;

  ResizeObserverDataMap* resizeObserverData() const {
    return m_resizeObserverData;
  }
  ResizeObserverDataMap& ensureResizeObserverData();

  DECLARE_TRACE_AFTER_DISPATCH();
  DECLARE_TRACE_WRAPPERS_AFTER_DISPATCH();

 private:
  CompositorProxiedPropertySet& ensureCompositorProxiedPropertySet();
  void clearCompositorProxiedPropertySet() { m_proxiedProperties = nullptr; }

  LayoutSize m_minimumSizeForResizing;
  ScrollOffset m_savedLayerScrollOffset;

  Member<DatasetDOMStringMap> m_dataset;
  Member<ElementShadow> m_shadow;
  Member<ClassList> m_classList;
  Member<NamedNodeMap> m_attributeMap;
  Member<AttrNodeList> m_attrNodeList;
  Member<InlineCSSStyleDeclaration> m_cssomWrapper;
  Member<InlineStylePropertyMap> m_cssomMapWrapper;
  std::unique_ptr<CompositorProxiedPropertySet> m_proxiedProperties;

  Member<ElementAnimations> m_elementAnimations;
  Member<ElementIntersectionObserverData> m_intersectionObserverData;
  Member<ResizeObserverDataMap> m_resizeObserverData;

  RefPtr<ComputedStyle> m_computedStyle;
  // TODO(davaajav):remove this field when v0 custom elements are deprecated
  Member<V0CustomElementDefinition> m_v0CustomElementDefinition;
  Member<CustomElementDefinition> m_customElementDefinition;

  Member<PseudoElementData> m_pseudoElementData;

  explicit ElementRareData(LayoutObject*);
};

inline LayoutSize defaultMinimumSizeForResizing() {
  return LayoutSize(LayoutUnit::max(), LayoutUnit::max());
}

inline ElementRareData::ElementRareData(LayoutObject* layoutObject)
    : NodeRareData(layoutObject),
      m_minimumSizeForResizing(defaultMinimumSizeForResizing()),
      m_classList(nullptr) {
  m_isElementRareData = true;
}

inline ElementRareData::~ElementRareData() {
  DCHECK(!m_pseudoElementData);
}

inline bool ElementRareData::hasPseudoElements() const {
  return (m_pseudoElementData && m_pseudoElementData->hasPseudoElements());
}

inline void ElementRareData::clearPseudoElements() {
  if (m_pseudoElementData) {
    m_pseudoElementData->clearPseudoElements();
    m_pseudoElementData.clear();
  }
}

inline void ElementRareData::setPseudoElement(PseudoId pseudoId,
                                              PseudoElement* element) {
  if (!m_pseudoElementData)
    m_pseudoElementData = PseudoElementData::create();
  m_pseudoElementData->setPseudoElement(pseudoId, element);
}

inline PseudoElement* ElementRareData::pseudoElement(PseudoId pseudoId) const {
  if (!m_pseudoElementData)
    return nullptr;
  return m_pseudoElementData->pseudoElement(pseudoId);
}

inline void ElementRareData::incrementCompositorProxiedProperties(
    uint32_t properties) {
  ensureCompositorProxiedPropertySet().increment(properties);
}

inline void ElementRareData::decrementCompositorProxiedProperties(
    uint32_t properties) {
  m_proxiedProperties->decrement(properties);
  if (m_proxiedProperties->isEmpty())
    clearCompositorProxiedPropertySet();
}

inline CompositorProxiedPropertySet&
ElementRareData::ensureCompositorProxiedPropertySet() {
  if (!m_proxiedProperties)
    m_proxiedProperties = CompositorProxiedPropertySet::create();
  return *m_proxiedProperties;
}

}  // namespace blink

#endif  // ElementRareData_h