• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #ifndef HTMLCollection_h
24 #define HTMLCollection_h
25 
26 #include "CollectionType.h"
27 #include <wtf/RefCounted.h>
28 #include <wtf/Forward.h>
29 #include <wtf/HashMap.h>
30 #include <wtf/Vector.h>
31 
32 namespace WebCore {
33 
34 class AtomicString;
35 class AtomicStringImpl;
36 class Element;
37 class Node;
38 class NodeList;
39 class String;
40 
41 struct CollectionCache;
42 
43 class HTMLCollection : public RefCounted<HTMLCollection> {
44 public:
45     static PassRefPtr<HTMLCollection> create(PassRefPtr<Node> base, CollectionType);
46     virtual ~HTMLCollection();
47 
48     unsigned length() const;
49 
50     virtual Node* item(unsigned index) const;
51     virtual Node* nextItem() const;
52 
53     virtual Node* namedItem(const AtomicString& name) const;
54     virtual Node* nextNamedItem(const AtomicString& name) const; // In case of multiple items named the same way
55 
56     Node* firstItem() const;
57 
58     void namedItems(const AtomicString& name, Vector<RefPtr<Node> >&) const;
59 
60     PassRefPtr<NodeList> tags(const String&);
61 
base()62     Node* base() const { return m_base.get(); }
type()63     CollectionType type() const { return m_type; }
64 
65 protected:
66     HTMLCollection(PassRefPtr<Node> base, CollectionType, CollectionCache*);
67 
info()68     CollectionCache* info() const { return m_info; }
69     void resetCollectionInfo() const;
70 
71     mutable bool m_idsDone; // for nextNamedItem()
72 
73 private:
74     HTMLCollection(PassRefPtr<Node> base, CollectionType);
75 
76     virtual Element* itemAfter(Element*) const;
77     virtual unsigned calcLength() const;
78     virtual void updateNameCache() const;
79 
80     bool checkForNameMatch(Element*, bool checkName, const AtomicString& name) const;
81 
82     RefPtr<Node> m_base;
83     CollectionType m_type;
84 
85     mutable CollectionCache* m_info;
86     mutable bool m_ownsInfo;
87 };
88 
89 } // namespace
90 
91 #endif
92