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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
|
/*
* Copyright (C) 2008, 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 NodeRareData_h
#define NodeRareData_h
#include "ChildNodeList.h"
#include "DOMSettableTokenList.h"
#include "HTMLNames.h"
#include "LiveNodeList.h"
#include "MutationObserver.h"
#include "MutationObserverRegistration.h"
#include "Page.h"
#include "QualifiedName.h"
#include "TagNodeList.h"
#if ENABLE(VIDEO_TRACK)
#include "TextTrack.h"
#endif
#include <wtf/HashSet.h>
#include <wtf/OwnPtr.h>
#include <wtf/PassOwnPtr.h>
#include <wtf/text/AtomicString.h>
#include <wtf/text/StringHash.h>
#if ENABLE(MICRODATA)
#include "HTMLPropertiesCollection.h"
#include "MicroDataAttributeTokenList.h"
#include "MicroDataItemList.h"
#endif
namespace WebCore {
class LabelsNodeList;
class RadioNodeList;
class TreeScope;
class NodeListsNodeData {
WTF_MAKE_NONCOPYABLE(NodeListsNodeData); WTF_MAKE_FAST_ALLOCATED;
public:
void clearChildNodeListCache()
{
if (m_childNodeList)
m_childNodeList->invalidateCache();
}
PassRefPtr<ChildNodeList> ensureChildNodeList(Node* node)
{
if (m_childNodeList)
return m_childNodeList;
RefPtr<ChildNodeList> list = ChildNodeList::create(node);
m_childNodeList = list.get();
return list.release();
}
void removeChildNodeList(ChildNodeList* list)
{
ASSERT(m_childNodeList = list);
if (deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(list->ownerNode()))
return;
m_childNodeList = 0;
}
template <typename StringType>
struct NodeListCacheMapEntryHash {
static unsigned hash(const std::pair<unsigned char, StringType>& entry)
{
return DefaultHash<StringType>::Hash::hash(entry.second) + entry.first;
}
static bool equal(const std::pair<unsigned char, StringType>& a, const std::pair<unsigned char, StringType>& b) { return a == b; }
static const bool safeToCompareToEmptyOrDeleted = DefaultHash<StringType>::Hash::safeToCompareToEmptyOrDeleted;
};
typedef HashMap<std::pair<unsigned char, AtomicString>, LiveNodeListBase*, NodeListCacheMapEntryHash<AtomicString> > NodeListAtomicNameCacheMap;
typedef HashMap<std::pair<unsigned char, String>, LiveNodeListBase*, NodeListCacheMapEntryHash<String> > NodeListNameCacheMap;
typedef HashMap<QualifiedName, TagNodeList*> TagNodeListCacheNS;
template<typename T>
PassRefPtr<T> addCacheWithAtomicName(Node* node, CollectionType collectionType, const AtomicString& name)
{
NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, name), 0);
if (!result.isNewEntry)
return static_cast<T*>(result.iterator->value);
RefPtr<T> list = T::create(node, collectionType, name);
result.iterator->value = list.get();
return list.release();
}
// FIXME: This function should be renamed since it doesn't have an atomic name.
template<typename T>
PassRefPtr<T> addCacheWithAtomicName(Node* node, CollectionType collectionType)
{
NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, starAtom), 0);
if (!result.isNewEntry)
return static_cast<T*>(result.iterator->value);
RefPtr<T> list = T::create(node, collectionType);
result.iterator->value = list.get();
return list.release();
}
template<typename T>
T* cacheWithAtomicName(CollectionType collectionType)
{
return static_cast<T*>(m_atomicNameCaches.get(namedNodeListKey(collectionType, starAtom)));
}
template<typename T>
PassRefPtr<T> addCacheWithName(Node* node, CollectionType collectionType, const String& name)
{
NodeListNameCacheMap::AddResult result = m_nameCaches.add(namedNodeListKey(collectionType, name), 0);
if (!result.isNewEntry)
return static_cast<T*>(result.iterator->value);
RefPtr<T> list = T::create(node, name);
result.iterator->value = list.get();
return list.release();
}
PassRefPtr<TagNodeList> addCacheWithQualifiedName(Node* node, const AtomicString& namespaceURI, const AtomicString& localName)
{
QualifiedName name(nullAtom, localName, namespaceURI);
TagNodeListCacheNS::AddResult result = m_tagNodeListCacheNS.add(name, 0);
if (!result.isNewEntry)
return result.iterator->value;
RefPtr<TagNodeList> list = TagNodeList::create(node, namespaceURI, localName);
result.iterator->value = list.get();
return list.release();
}
void removeCacheWithAtomicName(LiveNodeListBase* list, CollectionType collectionType, const AtomicString& name = starAtom)
{
ASSERT(list == m_atomicNameCaches.get(namedNodeListKey(collectionType, name)));
if (deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(list->ownerNode()))
return;
m_atomicNameCaches.remove(namedNodeListKey(collectionType, name));
}
void removeCacheWithName(LiveNodeListBase* list, CollectionType collectionType, const String& name)
{
ASSERT(list == m_nameCaches.get(namedNodeListKey(collectionType, name)));
if (deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(list->ownerNode()))
return;
m_nameCaches.remove(namedNodeListKey(collectionType, name));
}
void removeCacheWithQualifiedName(LiveNodeList* list, const AtomicString& namespaceURI, const AtomicString& localName)
{
QualifiedName name(nullAtom, localName, namespaceURI);
ASSERT(list == m_tagNodeListCacheNS.get(name));
if (deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(list->ownerNode()))
return;
m_tagNodeListCacheNS.remove(name);
}
static PassOwnPtr<NodeListsNodeData> create()
{
return adoptPtr(new NodeListsNodeData);
}
void invalidateCaches(const QualifiedName* attrName = 0);
bool isEmpty() const
{
return m_atomicNameCaches.isEmpty() && m_nameCaches.isEmpty() && m_tagNodeListCacheNS.isEmpty();
}
void adoptTreeScope()
{
invalidateCaches();
}
void adoptDocument(Document* oldDocument, Document* newDocument)
{
invalidateCaches();
if (oldDocument != newDocument) {
NodeListAtomicNameCacheMap::const_iterator atomicNameCacheEnd = m_atomicNameCaches.end();
for (NodeListAtomicNameCacheMap::const_iterator it = m_atomicNameCaches.begin(); it != atomicNameCacheEnd; ++it) {
LiveNodeListBase* list = it->value;
oldDocument->unregisterNodeList(list);
newDocument->registerNodeList(list);
}
NodeListNameCacheMap::const_iterator nameCacheEnd = m_nameCaches.end();
for (NodeListNameCacheMap::const_iterator it = m_nameCaches.begin(); it != nameCacheEnd; ++it) {
LiveNodeListBase* list = it->value;
oldDocument->unregisterNodeList(list);
newDocument->registerNodeList(list);
}
TagNodeListCacheNS::const_iterator tagEnd = m_tagNodeListCacheNS.end();
for (TagNodeListCacheNS::const_iterator it = m_tagNodeListCacheNS.begin(); it != tagEnd; ++it) {
LiveNodeListBase* list = it->value;
ASSERT(!list->isRootedAtDocument());
oldDocument->unregisterNodeList(list);
newDocument->registerNodeList(list);
}
}
}
private:
NodeListsNodeData()
: m_childNodeList(0)
{ }
std::pair<unsigned char, AtomicString> namedNodeListKey(CollectionType type, const AtomicString& name)
{
return std::pair<unsigned char, AtomicString>(type, name);
}
std::pair<unsigned char, String> namedNodeListKey(CollectionType type, const String& name)
{
return std::pair<unsigned char, String>(type, name);
}
bool deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(Node*);
// FIXME: m_childNodeList should be merged into m_atomicNameCaches or at least be shared with HTMLCollection returned by Element::children
// but it's tricky because invalidateCaches shouldn't invalidate this cache and adoptTreeScope shouldn't call registerNodeList or unregisterNodeList.
ChildNodeList* m_childNodeList;
NodeListAtomicNameCacheMap m_atomicNameCaches;
NodeListNameCacheMap m_nameCaches;
TagNodeListCacheNS m_tagNodeListCacheNS;
};
class NodeMutationObserverData {
WTF_MAKE_NONCOPYABLE(NodeMutationObserverData); WTF_MAKE_FAST_ALLOCATED;
public:
Vector<OwnPtr<MutationObserverRegistration> > registry;
HashSet<MutationObserverRegistration*> transientRegistry;
static PassOwnPtr<NodeMutationObserverData> create() { return adoptPtr(new NodeMutationObserverData); }
private:
NodeMutationObserverData() { }
};
#if ENABLE(MICRODATA)
class NodeMicroDataTokenLists {
WTF_MAKE_NONCOPYABLE(NodeMicroDataTokenLists); WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<NodeMicroDataTokenLists> create() { return adoptPtr(new NodeMicroDataTokenLists); }
MicroDataAttributeTokenList* itemProp(Node* node) const
{
if (!m_itemProp)
m_itemProp = MicroDataAttributeTokenList::create(toElement(node), HTMLNames::itempropAttr);
return m_itemProp.get();
}
MicroDataAttributeTokenList* itemRef(Node* node) const
{
if (!m_itemRef)
m_itemRef = MicroDataAttributeTokenList::create(toElement(node), HTMLNames::itemrefAttr);
return m_itemRef.get();
}
MicroDataAttributeTokenList* itemType(Node* node) const
{
if (!m_itemType)
m_itemType = MicroDataAttributeTokenList::create(toElement(node), HTMLNames::itemtypeAttr);
return m_itemType.get();
}
private:
NodeMicroDataTokenLists() { }
mutable RefPtr<MicroDataAttributeTokenList> m_itemProp;
mutable RefPtr<MicroDataAttributeTokenList> m_itemRef;
mutable RefPtr<MicroDataAttributeTokenList> m_itemType;
};
#endif
class NodeRareData : public NodeRareDataBase {
WTF_MAKE_NONCOPYABLE(NodeRareData); WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<NodeRareData> create(RenderObject* renderer) { return adoptPtr(new NodeRareData(renderer)); }
void clearNodeLists() { m_nodeLists.clear(); }
NodeListsNodeData* nodeLists() const { return m_nodeLists.get(); }
NodeListsNodeData* ensureNodeLists()
{
if (!m_nodeLists)
m_nodeLists = NodeListsNodeData::create();
return m_nodeLists.get();
}
NodeMutationObserverData* mutationObserverData() { return m_mutationObserverData.get(); }
NodeMutationObserverData* ensureMutationObserverData()
{
if (!m_mutationObserverData)
m_mutationObserverData = NodeMutationObserverData::create();
return m_mutationObserverData.get();
}
#if ENABLE(MICRODATA)
NodeMicroDataTokenLists* ensureMicroDataTokenLists() const
{
if (!m_microDataTokenLists)
m_microDataTokenLists = NodeMicroDataTokenLists::create();
return m_microDataTokenLists.get();
}
#endif
unsigned connectedSubframeCount() const { return m_connectedFrameCount; }
void incrementConnectedSubframeCount(unsigned amount)
{
m_connectedFrameCount += amount;
}
void decrementConnectedSubframeCount(unsigned amount)
{
ASSERT(m_connectedFrameCount);
ASSERT(amount <= m_connectedFrameCount);
m_connectedFrameCount -= amount;
}
protected:
NodeRareData(RenderObject* renderer)
: NodeRareDataBase(renderer)
, m_connectedFrameCount(0)
{ }
private:
unsigned m_connectedFrameCount : 10; // Must fit Page::maxNumberOfFrames.
OwnPtr<NodeListsNodeData> m_nodeLists;
OwnPtr<NodeMutationObserverData> m_mutationObserverData;
#if ENABLE(MICRODATA)
mutable OwnPtr<NodeMicroDataTokenLists> m_microDataTokenLists;
#endif
};
inline bool NodeListsNodeData::deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(Node* ownerNode)
{
ASSERT(ownerNode);
ASSERT(ownerNode->nodeLists() == this);
if ((m_childNodeList ? 1 : 0) + m_atomicNameCaches.size() + m_nameCaches.size() + m_tagNodeListCacheNS.size() != 1)
return false;
ownerNode->clearNodeLists();
return true;
}
// Ensure the 10 bits reserved for the m_connectedFrameCount cannot overflow
COMPILE_ASSERT(Page::maxNumberOfFrames < 1024, Frame_limit_should_fit_in_rare_data_count);
} // namespace WebCore
#endif // NodeRareData_h
|