blob: f7f184436b0e28fadfa9b33448c57b8c08ca07b3 [file] [log] [blame]
/*
* This file is part of the DOM implementation for KDE.
*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
*
* 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., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#ifndef HTMLCollection_h
#define HTMLCollection_h
#include "Shared.h"
#include <wtf/Forward.h>
#include <wtf/HashMap.h>
#include <wtf/Vector.h>
namespace WebCore {
class AtomicString;
class AtomicStringImpl;
class Node;
class String;
class HTMLCollection : public Shared<HTMLCollection>
{
public:
enum Type {
// from JSHTMLDocument
DocImages = 0, // all IMG elements in the document
DocApplets, // all OBJECT and APPLET elements
DocEmbeds, // all EMBED elements
DocObjects, // all OBJECT elements
DocForms, // all FORMS
DocLinks, // all A _and_ AREA elements with a value for href
DocAnchors, // all A elements with a value for name
DocScripts, // all SCRIPT element
// from HTMLTable, HTMLTableSection, HTMLTableRow
TableRows, // all rows in this table or tablesection
TableTBodies, // all TBODY elements in this table
TSectionRows, // all rows elements in this table section
TRCells, // all CELLS in this row
// from SELECT
SelectOptions,
// from HTMLMap
MapAreas,
DocAll, // "all" elements (IE)
NodeChildren, // first-level children (IE)
WindowNamedItems,
DocumentNamedItems
};
enum {
UnnamedCollectionTypes = NodeChildren + 1,
CollectionTypes = DocumentNamedItems + 1
};
HTMLCollection(Node *_base, HTMLCollection::Type _type);
virtual ~HTMLCollection();
unsigned length() const;
virtual Node *item(unsigned index) const;
virtual Node *firstItem() const;
virtual Node *nextItem() const;
virtual Node *namedItem(const String &name, bool caseSensitive = true) const;
// In case of multiple items named the same way
virtual Node *nextNamedItem(const String &name) const;
void namedItems(const AtomicString &name, Vector<RefPtr<Node> >&) const;
Node *base() { return m_base.get(); }
struct CollectionInfo {
CollectionInfo();
~CollectionInfo();
void reset();
unsigned int version;
Node *current;
unsigned int position;
unsigned int length;
int elementsArrayPosition;
HashMap<AtomicStringImpl*, Vector<Node*>*> idCache;
HashMap<AtomicStringImpl*, Vector<Node*>*> nameCache;
bool haslength;
bool hasNameCache;
};
protected:
virtual void updateNameCache() const;
virtual Node *traverseNextItem(Node *start) const;
bool checkForNameMatch(Node *node, bool checkName, const String &name, bool caseSensitive) const;
virtual unsigned calcLength() const;
virtual void resetCollectionInfo() const;
// the base node, the collection refers to
RefPtr<Node> m_base;
// The collection list the following elements
Type type;
mutable CollectionInfo *info;
// For nextNamedItem()
mutable bool idsDone;
mutable bool m_ownsInfo;
};
} //namespace
#endif