2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
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.
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.
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.
24 #include "HashTable.h"
28 template<typename Value
, typename HashFunctions
, typename Traits
> class HashSet
;
29 template<typename Value
, typename HashFunctions
, typename Traits
>
30 void deleteAllValues(const HashSet
<Value
, HashFunctions
, Traits
>&);
32 template<typename T
> struct IdentityExtractor
;
34 template<typename ValueArg
, typename HashArg
= typename DefaultHash
<ValueArg
>::Hash
,
35 typename TraitsArg
= HashTraits
<ValueArg
> > class HashSet
{
37 typedef HashArg HashFunctions
;
38 typedef TraitsArg ValueTraits
;
41 typedef typename
ValueTraits::TraitType ValueType
;
44 typedef HashTable
<ValueType
, ValueType
, IdentityExtractor
<ValueType
>,
45 HashFunctions
, ValueTraits
, ValueTraits
> HashTableType
;
48 typedef HashTableIteratorAdapter
<HashTableType
, ValueType
> iterator
;
49 typedef HashTableConstIteratorAdapter
<HashTableType
, ValueType
> const_iterator
;
59 const_iterator
begin() const;
60 const_iterator
end() const;
62 iterator
find(const ValueType
&);
63 const_iterator
find(const ValueType
&) const;
64 bool contains(const ValueType
&) const;
66 // An alternate version of find() that finds the object by hashing and comparing
67 // with some other type, to avoid the cost of type conversion. HashTranslator
68 // must have the following function members:
69 // static unsigned hash(const T&);
70 // static bool equal(const ValueType&, const T&);
71 template<typename T
, typename HashTranslator
> iterator
find(const T
&);
72 template<typename T
, typename HashTranslator
> const_iterator
find(const T
&) const;
73 template<typename T
, typename HashTranslator
> bool contains(const T
&) const;
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.
77 pair
<iterator
, bool> add(const ValueType
&);
79 // An alternate version of add() that finds the object by hashing and comparing
80 // with some other type, to avoid the cost of type conversion if the object is already
81 // in the table. HashTranslator must have the following methods:
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
&);
87 void remove(const ValueType
&);
88 void remove(iterator
);
92 friend void deleteAllValues
<>(const HashSet
&);
97 template<typename T
> struct IdentityExtractor
{
98 static const T
& extract(const T
& t
) { return t
; }
101 template<typename ValueType
, typename ValueTraits
, typename T
, typename Translator
>
102 struct HashSetTranslatorAdapter
{
103 static unsigned hash(const T
& key
) { return Translator::hash(key
); }
104 static bool equal(const ValueType
& a
, const T
& b
) { return Translator::equal(a
, b
); }
105 static void translate(ValueType
& location
, const T
& key
, const T
&, unsigned hashCode
)
107 Translator::translate(location
, key
, hashCode
);
111 template<typename T
, typename U
, typename V
>
112 inline void HashSet
<T
, U
, V
>::swap(HashSet
& other
)
114 m_impl
.swap(other
.m_impl
);
117 template<typename T
, typename U
, typename V
>
118 inline int HashSet
<T
, U
, V
>::size() const
120 return m_impl
.size();
123 template<typename T
, typename U
, typename V
>
124 inline int HashSet
<T
, U
, V
>::capacity() const
126 return m_impl
.capacity();
129 template<typename T
, typename U
, typename V
>
130 inline bool HashSet
<T
, U
, V
>::isEmpty() const
132 return m_impl
.isEmpty();
135 template<typename T
, typename U
, typename V
>
136 inline typename HashSet
<T
, U
, V
>::iterator HashSet
<T
, U
, V
>::begin()
138 return m_impl
.begin();
141 template<typename T
, typename U
, typename V
>
142 inline typename HashSet
<T
, U
, V
>::iterator HashSet
<T
, U
, V
>::end()
147 template<typename T
, typename U
, typename V
>
148 inline typename HashSet
<T
, U
, V
>::const_iterator HashSet
<T
, U
, V
>::begin() const
150 return m_impl
.begin();
153 template<typename T
, typename U
, typename V
>
154 inline typename HashSet
<T
, U
, V
>::const_iterator HashSet
<T
, U
, V
>::end() const
159 template<typename T
, typename U
, typename V
>
160 inline typename HashSet
<T
, U
, V
>::iterator HashSet
<T
, U
, V
>::find(const ValueType
& value
)
162 return m_impl
.find(value
);
165 template<typename T
, typename U
, typename V
>
166 inline typename HashSet
<T
, U
, V
>::const_iterator HashSet
<T
, U
, V
>::find(const ValueType
& value
) const
168 return m_impl
.find(value
);
171 template<typename T
, typename U
, typename V
>
172 inline bool HashSet
<T
, U
, V
>::contains(const ValueType
& value
) const
174 return m_impl
.contains(value
);
177 template<typename Value
, typename HashFunctions
, typename Traits
>
178 template<typename T
, typename Translator
>
179 typename HashSet
<Value
, HashFunctions
, Traits
>::iterator
180 inline HashSet
<Value
, HashFunctions
, Traits
>::find(const T
& value
)
182 typedef HashSetTranslatorAdapter
<ValueType
, ValueTraits
, T
, Translator
> Adapter
;
183 return m_impl
.template find
<T
, Adapter
>(value
);
186 template<typename Value
, typename HashFunctions
, typename Traits
>
187 template<typename T
, typename Translator
>
188 typename HashSet
<Value
, HashFunctions
, Traits
>::const_iterator
189 inline HashSet
<Value
, HashFunctions
, Traits
>::find(const T
& value
) const
191 typedef HashSetTranslatorAdapter
<ValueType
, ValueTraits
, T
, Translator
> Adapter
;
192 return m_impl
.template find
<T
, Adapter
>(value
);
195 template<typename Value
, typename HashFunctions
, typename Traits
>
196 template<typename T
, typename Translator
>
197 inline bool HashSet
<Value
, HashFunctions
, Traits
>::contains(const T
& value
) const
199 typedef HashSetTranslatorAdapter
<ValueType
, ValueTraits
, T
, Translator
> Adapter
;
200 return m_impl
.template contains
<T
, Adapter
>(value
);
203 template<typename T
, typename U
, typename V
>
204 pair
<typename HashSet
<T
, U
, V
>::iterator
, bool> HashSet
<T
, U
, V
>::add(const ValueType
& value
)
206 return m_impl
.add(value
);
209 template<typename Value
, typename HashFunctions
, typename Traits
>
210 template<typename T
, typename Translator
>
211 pair
<typename HashSet
<Value
, HashFunctions
, Traits
>::iterator
, bool>
212 HashSet
<Value
, HashFunctions
, Traits
>::add(const T
& value
)
214 typedef HashSetTranslatorAdapter
<ValueType
, ValueTraits
, T
, Translator
> Adapter
;
215 return m_impl
.template addPassingHashCode
<T
, T
, Adapter
>(value
, value
);
218 template<typename T
, typename U
, typename V
>
219 inline void HashSet
<T
, U
, V
>::remove(iterator it
)
221 if (it
.m_impl
== m_impl
.end())
223 m_impl
.checkTableConsistency();
224 m_impl
.removeWithoutEntryConsistencyCheck(it
.m_impl
);
227 template<typename T
, typename U
, typename V
>
228 inline void HashSet
<T
, U
, V
>::remove(const ValueType
& value
)
233 template<typename T
, typename U
, typename V
>
234 inline void HashSet
<T
, U
, V
>::clear()
239 template<typename ValueType
, typename HashTableType
>
240 void deleteAllValues(HashTableType
& collection
)
242 typedef typename
HashTableType::const_iterator iterator
;
243 iterator end
= collection
.end();
244 for (iterator it
= collection
.begin(); it
!= end
; ++it
)
248 template<typename T
, typename U
, typename V
>
249 inline void deleteAllValues(const HashSet
<T
, U
, V
>& collection
)
251 deleteAllValues
<typename HashSet
<T
, U
, V
>::ValueType
>(collection
.m_impl
);
254 template<typename T
, typename U
, typename V
, typename W
>
255 inline void copyToVector(const HashSet
<T
, U
, V
>& collection
, W
& vector
)
257 typedef typename HashSet
<T
, U
, V
>::const_iterator iterator
;
259 vector
.resize(collection
.size());
261 iterator it
= collection
.begin();
262 iterator end
= collection
.end();
263 for (unsigned i
= 0; it
!= end
; ++it
, ++i
)
271 #endif /* WTF_HashSet_h */