]> git.saurik.com Git - apple/javascriptcore.git/blame - wtf/HashSet.h
JavaScriptCore-903.5.tar.gz
[apple/javascriptcore.git] / wtf / HashSet.h
CommitLineData
b37bf2e1 1/*
9dae56ea 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
b37bf2e1
A
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 *
19 */
20
21#ifndef WTF_HashSet_h
22#define WTF_HashSet_h
23
ba379fdc 24#include "FastAllocBase.h"
b37bf2e1
A
25#include "HashTable.h"
26
27namespace WTF {
28
b37bf2e1
A
29 template<typename Value, typename HashFunctions, typename Traits> class HashSet;
30 template<typename Value, typename HashFunctions, typename Traits>
31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
f9bf01c6
A
32 template<typename Value, typename HashFunctions, typename Traits>
33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
b37bf2e1 34
9dae56ea
A
35 template<typename T> struct IdentityExtractor;
36
b37bf2e1 37 template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash,
14957cd0
A
38 typename TraitsArg = HashTraits<ValueArg> > class HashSet {
39 WTF_MAKE_FAST_ALLOCATED;
b37bf2e1
A
40 private:
41 typedef HashArg HashFunctions;
42 typedef TraitsArg ValueTraits;
43
9dae56ea
A
44 public:
45 typedef typename ValueTraits::TraitType ValueType;
b37bf2e1 46
9dae56ea
A
47 private:
48 typedef HashTable<ValueType, ValueType, IdentityExtractor<ValueType>,
49 HashFunctions, ValueTraits, ValueTraits> HashTableType;
b37bf2e1
A
50
51 public:
14957cd0 52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> iterator;
b37bf2e1
A
53 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
54
b37bf2e1
A
55 void swap(HashSet&);
56
57 int size() const;
58 int capacity() const;
59 bool isEmpty() const;
60
14957cd0
A
61 iterator begin() const;
62 iterator end() const;
b37bf2e1 63
14957cd0 64 iterator find(const ValueType&) const;
b37bf2e1
A
65 bool contains(const ValueType&) const;
66
9dae56ea
A
67 // An alternate version of find() that finds the object by hashing and comparing
68 // with some other type, to avoid the cost of type conversion. HashTranslator
69 // must have the following function members:
70 // static unsigned hash(const T&);
71 // static bool equal(const ValueType&, const T&);
14957cd0 72 template<typename T, typename HashTranslator> iterator find(const T&) const;
9dae56ea
A
73 template<typename T, typename HashTranslator> bool contains(const T&) const;
74
75 // The return value is a pair of an interator to the new value's location,
76 // and a bool that is true if an new entry was added.
b37bf2e1
A
77 pair<iterator, bool> add(const ValueType&);
78
9dae56ea 79 // An alternate version of add() that finds the object by hashing and comparing
b37bf2e1 80 // with some other type, to avoid the cost of type conversion if the object is already
f9bf01c6 81 // in the table. HashTranslator must have the following function members:
b37bf2e1
A
82 // static unsigned hash(const T&);
83 // static bool equal(const ValueType&, const T&);
84 // static translate(ValueType&, const T&, unsigned hashCode);
85 template<typename T, typename HashTranslator> pair<iterator, bool> add(const T&);
86
87 void remove(const ValueType&);
88 void remove(iterator);
89 void clear();
90
91 private:
b37bf2e1 92 friend void deleteAllValues<>(const HashSet&);
f9bf01c6 93 friend void fastDeleteAllValues<>(const HashSet&);
b37bf2e1
A
94
95 HashTableType m_impl;
96 };
97
98 template<typename T> struct IdentityExtractor {
99 static const T& extract(const T& t) { return t; }
100 };
101
9dae56ea
A
102 template<typename ValueType, typename ValueTraits, typename T, typename Translator>
103 struct HashSetTranslatorAdapter {
b37bf2e1 104 static unsigned hash(const T& key) { return Translator::hash(key); }
9dae56ea
A
105 static bool equal(const ValueType& a, const T& b) { return Translator::equal(a, b); }
106 static void translate(ValueType& location, const T& key, const T&, unsigned hashCode)
b37bf2e1 107 {
9dae56ea 108 Translator::translate(location, key, hashCode);
b37bf2e1
A
109 }
110 };
111
b37bf2e1
A
112 template<typename T, typename U, typename V>
113 inline void HashSet<T, U, V>::swap(HashSet& other)
114 {
115 m_impl.swap(other.m_impl);
116 }
117
b37bf2e1
A
118 template<typename T, typename U, typename V>
119 inline int HashSet<T, U, V>::size() const
120 {
121 return m_impl.size();
122 }
123
124 template<typename T, typename U, typename V>
125 inline int HashSet<T, U, V>::capacity() const
126 {
127 return m_impl.capacity();
128 }
129
130 template<typename T, typename U, typename V>
131 inline bool HashSet<T, U, V>::isEmpty() const
132 {
133 return m_impl.isEmpty();
134 }
135
136 template<typename T, typename U, typename V>
14957cd0 137 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::begin() const
b37bf2e1
A
138 {
139 return m_impl.begin();
140 }
141
142 template<typename T, typename U, typename V>
14957cd0 143 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::end() const
b37bf2e1
A
144 {
145 return m_impl.end();
146 }
147
148 template<typename T, typename U, typename V>
14957cd0 149 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::find(const ValueType& value) const
b37bf2e1 150 {
9dae56ea 151 return m_impl.find(value);
b37bf2e1
A
152 }
153
154 template<typename T, typename U, typename V>
155 inline bool HashSet<T, U, V>::contains(const ValueType& value) const
156 {
9dae56ea
A
157 return m_impl.contains(value);
158 }
159
160 template<typename Value, typename HashFunctions, typename Traits>
f9bf01c6 161 template<typename T, typename HashTranslator>
9dae56ea 162 typename HashSet<Value, HashFunctions, Traits>::iterator
9dae56ea
A
163 inline HashSet<Value, HashFunctions, Traits>::find(const T& value) const
164 {
f9bf01c6 165 typedef HashSetTranslatorAdapter<ValueType, ValueTraits, T, HashTranslator> Adapter;
9dae56ea
A
166 return m_impl.template find<T, Adapter>(value);
167 }
168
169 template<typename Value, typename HashFunctions, typename Traits>
f9bf01c6 170 template<typename T, typename HashTranslator>
9dae56ea
A
171 inline bool HashSet<Value, HashFunctions, Traits>::contains(const T& value) const
172 {
f9bf01c6 173 typedef HashSetTranslatorAdapter<ValueType, ValueTraits, T, HashTranslator> Adapter;
9dae56ea 174 return m_impl.template contains<T, Adapter>(value);
b37bf2e1
A
175 }
176
177 template<typename T, typename U, typename V>
14957cd0 178 inline pair<typename HashSet<T, U, V>::iterator, bool> HashSet<T, U, V>::add(const ValueType& value)
b37bf2e1 179 {
9dae56ea 180 return m_impl.add(value);
b37bf2e1
A
181 }
182
183 template<typename Value, typename HashFunctions, typename Traits>
f9bf01c6 184 template<typename T, typename HashTranslator>
14957cd0 185 inline pair<typename HashSet<Value, HashFunctions, Traits>::iterator, bool>
b37bf2e1
A
186 HashSet<Value, HashFunctions, Traits>::add(const T& value)
187 {
f9bf01c6 188 typedef HashSetTranslatorAdapter<ValueType, ValueTraits, T, HashTranslator> Adapter;
b37bf2e1
A
189 return m_impl.template addPassingHashCode<T, T, Adapter>(value, value);
190 }
191
192 template<typename T, typename U, typename V>
193 inline void HashSet<T, U, V>::remove(iterator it)
194 {
195 if (it.m_impl == m_impl.end())
196 return;
f9bf01c6 197 m_impl.internalCheckTableConsistency();
b37bf2e1
A
198 m_impl.removeWithoutEntryConsistencyCheck(it.m_impl);
199 }
200
201 template<typename T, typename U, typename V>
202 inline void HashSet<T, U, V>::remove(const ValueType& value)
203 {
204 remove(find(value));
205 }
206
207 template<typename T, typename U, typename V>
208 inline void HashSet<T, U, V>::clear()
209 {
b37bf2e1
A
210 m_impl.clear();
211 }
212
213 template<typename ValueType, typename HashTableType>
214 void deleteAllValues(HashTableType& collection)
215 {
216 typedef typename HashTableType::const_iterator iterator;
217 iterator end = collection.end();
218 for (iterator it = collection.begin(); it != end; ++it)
9dae56ea 219 delete *it;
b37bf2e1
A
220 }
221
222 template<typename T, typename U, typename V>
223 inline void deleteAllValues(const HashSet<T, U, V>& collection)
224 {
225 deleteAllValues<typename HashSet<T, U, V>::ValueType>(collection.m_impl);
226 }
f9bf01c6
A
227
228 template<typename ValueType, typename HashTableType>
229 void fastDeleteAllValues(HashTableType& collection)
230 {
231 typedef typename HashTableType::const_iterator iterator;
232 iterator end = collection.end();
233 for (iterator it = collection.begin(); it != end; ++it)
234 fastDelete(*it);
235 }
236
237 template<typename T, typename U, typename V>
238 inline void fastDeleteAllValues(const HashSet<T, U, V>& collection)
239 {
240 fastDeleteAllValues<typename HashSet<T, U, V>::ValueType>(collection.m_impl);
241 }
b37bf2e1
A
242
243 template<typename T, typename U, typename V, typename W>
244 inline void copyToVector(const HashSet<T, U, V>& collection, W& vector)
245 {
246 typedef typename HashSet<T, U, V>::const_iterator iterator;
247
248 vector.resize(collection.size());
249
250 iterator it = collection.begin();
251 iterator end = collection.end();
252 for (unsigned i = 0; it != end; ++it, ++i)
253 vector[i] = *it;
254 }
255
256} // namespace WTF
257
258using WTF::HashSet;
259
260#endif /* WTF_HashSet_h */