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
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights reserved.
*
* 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.
*
*/
#include "config.h"
#include "HTMLCollection.h"
#include "HTMLDocument.h"
#include "HTMLElement.h"
#include "HTMLNames.h"
#include "HTMLObjectElement.h"
#include "HTMLOptionElement.h"
#include "NodeList.h"
#include <utility>
namespace WebCore {
using namespace HTMLNames;
HTMLCollection::HTMLCollection(Node* base, CollectionType type)
: m_includeChildren(shouldIncludeChildren(type))
, m_type(type)
, m_base(base)
{
ASSERT(m_base);
m_cache.clear();
}
bool HTMLCollection::shouldIncludeChildren(CollectionType type)
{
switch (type) {
case DocAll:
case DocAnchors:
case DocApplets:
case DocEmbeds:
case DocForms:
case DocImages:
case DocLinks:
case DocObjects:
case DocScripts:
case DocumentNamedItems:
case MapAreas:
case OtherCollection:
case SelectOptions:
case DataListOptions:
case WindowNamedItems:
#if ENABLE(MICRODATA)
case ItemProperties:
#endif
return true;
case NodeChildren:
case TRCells:
case TSectionRows:
case TableTBodies:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
PassOwnPtr<HTMLCollection> HTMLCollection::create(Node* base, CollectionType type)
{
return adoptPtr(new HTMLCollection(base, type));
}
HTMLCollection::~HTMLCollection()
{
}
void HTMLCollection::invalidateCacheIfNeeded() const
{
uint64_t docversion = static_cast<HTMLDocument*>(m_base->document())->domTreeVersion();
if (m_cache.version == docversion)
return;
m_cache.clear();
m_cache.version = docversion;
}
inline bool HTMLCollection::isAcceptableElement(Element* element) const
{
switch (m_type) {
case DocImages:
return element->hasLocalName(imgTag);
case DocScripts:
return element->hasLocalName(scriptTag);
case DocForms:
return element->hasLocalName(formTag);
case TableTBodies:
return element->hasLocalName(tbodyTag);
case TRCells:
return element->hasLocalName(tdTag) || element->hasLocalName(thTag);
case TSectionRows:
return element->hasLocalName(trTag);
case SelectOptions:
return element->hasLocalName(optionTag);
case DataListOptions:
if (element->hasLocalName(optionTag)) {
HTMLOptionElement* option = static_cast<HTMLOptionElement*>(element);
if (!option->disabled() && !option->value().isEmpty())
return true;
}
return false;
case MapAreas:
return element->hasLocalName(areaTag);
case DocApplets:
return element->hasLocalName(appletTag) || (element->hasLocalName(objectTag) && static_cast<HTMLObjectElement*>(element)->containsJavaApplet());
case DocEmbeds:
return element->hasLocalName(embedTag);
case DocObjects:
return element->hasLocalName(objectTag);
case DocLinks:
return (element->hasLocalName(aTag) || element->hasLocalName(areaTag)) && element->fastHasAttribute(hrefAttr);
case DocAnchors:
return element->hasLocalName(aTag) && element->fastHasAttribute(nameAttr);
case DocAll:
case NodeChildren:
return true;
#if ENABLE(MICRODATA)
case ItemProperties:
return element->isHTMLElement() && element->fastHasAttribute(itempropAttr);
#endif
case DocumentNamedItems:
case OtherCollection:
case WindowNamedItems:
ASSERT_NOT_REACHED();
}
return false;
}
static Node* nextNodeOrSibling(Node* base, Node* node, bool includeChildren)
{
return includeChildren ? node->traverseNextNode(base) : node->traverseNextSibling(base);
}
Element* HTMLCollection::itemAfter(Element* previous) const
{
Node* current;
if (!previous)
current = m_base->firstChild();
else
current = nextNodeOrSibling(m_base, previous, m_includeChildren);
for (; current; current = nextNodeOrSibling(m_base, current, m_includeChildren)) {
if (!current->isElementNode())
continue;
Element* element = static_cast<Element*>(current);
if (isAcceptableElement(element))
return element;
}
return 0;
}
unsigned HTMLCollection::calcLength() const
{
unsigned len = 0;
for (Element* current = itemAfter(0); current; current = itemAfter(current))
++len;
return len;
}
// since the collections are to be "live", we have to do the
// calculation every time if anything has changed
unsigned HTMLCollection::length() const
{
invalidateCacheIfNeeded();
if (!m_cache.hasLength) {
m_cache.length = calcLength();
m_cache.hasLength = true;
}
return m_cache.length;
}
Node* HTMLCollection::item(unsigned index) const
{
invalidateCacheIfNeeded();
if (m_cache.current && m_cache.position == index)
return m_cache.current;
if (m_cache.hasLength && m_cache.length <= index)
return 0;
if (!m_cache.current || m_cache.position > index) {
m_cache.current = itemAfter(0);
m_cache.position = 0;
if (!m_cache.current)
return 0;
}
Element* e = m_cache.current;
for (unsigned pos = m_cache.position; e && pos < index; pos++)
e = itemAfter(e);
m_cache.current = e;
m_cache.position = index;
return m_cache.current;
}
Node* HTMLCollection::firstItem() const
{
return item(0);
}
Node* HTMLCollection::nextItem() const
{
invalidateCacheIfNeeded();
// Look for the 'second' item. The first one is currentItem, already given back.
Element* retval = itemAfter(m_cache.current);
m_cache.current = retval;
m_cache.position++;
return retval;
}
static inline bool nameShouldBeVisibleInDocumentAll(HTMLElement* element)
{
// The document.all collection returns only certain types of elements by name,
// although it returns any type of element by id.
return element->hasLocalName(appletTag)
|| element->hasLocalName(embedTag)
|| element->hasLocalName(formTag)
|| element->hasLocalName(imgTag)
|| element->hasLocalName(inputTag)
|| element->hasLocalName(objectTag)
|| element->hasLocalName(selectTag);
}
bool HTMLCollection::checkForNameMatch(Element* element, bool checkName, const AtomicString& name) const
{
if (!element->isHTMLElement())
return false;
HTMLElement* e = toHTMLElement(element);
if (!checkName)
return e->getIdAttribute() == name;
if (m_type == DocAll && !nameShouldBeVisibleInDocumentAll(e))
return false;
return e->getNameAttribute() == name && e->getIdAttribute() != name;
}
Node* HTMLCollection::namedItem(const AtomicString& name) const
{
// http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/nameditem.asp
// This method first searches for an object with a matching id
// attribute. If a match is not found, the method then searches for an
// object with a matching name attribute, but only on those elements
// that are allowed a name attribute.
invalidateCacheIfNeeded();
for (Element* e = itemAfter(0); e; e = itemAfter(e)) {
if (checkForNameMatch(e, /* checkName */ false, name)) {
m_cache.current = e;
return e;
}
}
for (Element* e = itemAfter(0); e; e = itemAfter(e)) {
if (checkForNameMatch(e, /* checkName */ true, name)) {
m_cache.current = e;
return e;
}
}
m_cache.current = 0;
return 0;
}
void HTMLCollection::updateNameCache() const
{
if (m_cache.hasNameCache)
return;
for (Element* element = itemAfter(0); element; element = itemAfter(element)) {
if (!element->isHTMLElement())
continue;
HTMLElement* e = toHTMLElement(element);
const AtomicString& idAttrVal = e->getIdAttribute();
const AtomicString& nameAttrVal = e->getNameAttribute();
if (!idAttrVal.isEmpty())
append(m_cache.idCache, idAttrVal, e);
if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && (m_type != DocAll || nameShouldBeVisibleInDocumentAll(e)))
append(m_cache.nameCache, nameAttrVal, e);
}
m_cache.hasNameCache = true;
}
bool HTMLCollection::hasNamedItem(const AtomicString& name) const
{
if (name.isEmpty())
return false;
invalidateCacheIfNeeded();
updateNameCache();
if (Vector<Element*>* idCache = m_cache.idCache.get(name.impl())) {
if (!idCache->isEmpty())
return true;
}
if (Vector<Element*>* nameCache = m_cache.nameCache.get(name.impl())) {
if (!nameCache->isEmpty())
return true;
}
return false;
}
void HTMLCollection::namedItems(const AtomicString& name, Vector<RefPtr<Node> >& result) const
{
ASSERT(result.isEmpty());
if (name.isEmpty())
return;
invalidateCacheIfNeeded();
updateNameCache();
Vector<Element*>* idResults = m_cache.idCache.get(name.impl());
Vector<Element*>* nameResults = m_cache.nameCache.get(name.impl());
for (unsigned i = 0; idResults && i < idResults->size(); ++i)
result.append(idResults->at(i));
for (unsigned i = 0; nameResults && i < nameResults->size(); ++i)
result.append(nameResults->at(i));
}
PassRefPtr<NodeList> HTMLCollection::tags(const String& name)
{
return m_base->getElementsByTagName(name);
}
void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element* element)
{
OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).first->second;
if (!vector)
vector = adoptPtr(new Vector<Element*>);
vector->append(element);
}
} // namespace WebCore
|