/* * Copyright (C) 2005, 2006, 2007, 2008, 2011 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. * */ #ifndef WTF_HashSet_h #define WTF_HashSet_h #include "wtf/HashTable.h" #include "wtf/PartitionAllocator.h" namespace WTF { struct IdentityExtractor; // Note: empty or deleted values are not allowed, using them may lead to // undefined behavior. For pointer valuess this means that null pointers are // not allowed unless you supply custom traits. template < typename ValueArg, typename HashArg = typename DefaultHash::Hash, typename TraitsArg = HashTraits, typename Allocator = PartitionAllocator> class HashSet { WTF_USE_ALLOCATOR(HashSet, Allocator); private: typedef HashArg HashFunctions; typedef TraitsArg ValueTraits; typedef typename ValueTraits::PeekInType ValuePeekInType; typedef typename ValueTraits::PassInType ValuePassInType; typedef typename ValueTraits::PassOutType ValuePassOutType; public: typedef typename ValueTraits::TraitType ValueType; private: typedef HashTable HashTableType; public: typedef HashTableConstIteratorAdapter iterator; typedef HashTableConstIteratorAdapter const_iterator; typedef typename HashTableType::AddResult AddResult; void swap(HashSet& ref) { m_impl.swap(ref.m_impl); } void swap(typename Allocator::template OtherType::Type other) { HashSet& ref = Allocator::getOther(other); m_impl.swap(ref.m_impl); } unsigned size() const; unsigned capacity() const; bool isEmpty() const; void reserveCapacityForSize(unsigned size) { m_impl.reserveCapacityForSize(size); } iterator begin() const; iterator end() const; iterator find(ValuePeekInType) const; bool contains(ValuePeekInType) const; // An alternate version of find() that finds the object by hashing and // comparing with some other type, to avoid the cost of type // conversion. HashTranslator must have the following function members: // static unsigned hash(const T&); // static bool equal(const ValueType&, const T&); template iterator find(const T&) const; template bool contains(const T&) const; // The return value is a pair of an iterator to the new value's location, // and a bool that is true if an new entry was added. template AddResult add(IncomingValueType&&); // An alternate version of add() that finds the object by hashing and // comparing with some other type, to avoid the cost of type conversion if // the object is already in the table. HashTranslator must have the // following function members: // static unsigned hash(const T&); // static bool equal(const ValueType&, const T&); // static translate(ValueType&, T&&, unsigned hashCode); template AddResult addWithTranslator(T&&); void remove(ValuePeekInType); void remove(iterator); void clear(); template void removeAll(const Collection& toBeRemoved) { WTF::removeAll(*this, toBeRemoved); } ValuePassOutType take(iterator); ValuePassOutType take(ValuePeekInType); ValuePassOutType takeAny(); template void trace(VisitorDispatcher visitor) { m_impl.trace(visitor); } private: HashTableType m_impl; }; struct IdentityExtractor { STATIC_ONLY(IdentityExtractor); template static const T& extract(const T& t) { return t; } }; template struct HashSetTranslatorAdapter { STATIC_ONLY(HashSetTranslatorAdapter); template static unsigned hash(const T& key) { return Translator::hash(key); } template static bool equal(const T& a, const U& b) { return Translator::equal(a, b); } template static void translate(T& location, U&& key, const V&, unsigned hashCode) { Translator::translate(location, std::forward(key), hashCode); } }; template inline unsigned HashSet::size() const { return m_impl.size(); } template inline unsigned HashSet::capacity() const { return m_impl.capacity(); } template inline bool HashSet::isEmpty() const { return m_impl.isEmpty(); } template inline typename HashSet::iterator HashSet::begin() const { return m_impl.begin(); } template inline typename HashSet::iterator HashSet::end() const { return m_impl.end(); } template inline typename HashSet::iterator HashSet::find(ValuePeekInType value) const { return m_impl.find(value); } template inline bool HashSet::contains(ValuePeekInType value) const { return m_impl.contains(value); } template template typename HashSet::iterator inline HashSet::find(const T& value) const { return m_impl.template find>(value); } template template inline bool HashSet::contains(const T& value) const { return m_impl.template contains>(value); } template template inline typename HashSet::AddResult HashSet::add(IncomingValueType&& value) { return m_impl.add(std::forward(value)); } template template inline typename HashSet::AddResult HashSet::addWithTranslator(T&& value) { // Forward only the first argument, because the second argument isn't actually used in HashSetTranslatorAdapter. return m_impl.template addPassingHashCode>(std::forward(value), value); } template inline void HashSet::remove(iterator it) { m_impl.remove(it.m_impl); } template inline void HashSet::remove(ValuePeekInType value) { remove(find(value)); } template inline void HashSet::clear() { m_impl.clear(); } template inline typename HashSet::ValuePassOutType HashSet::take(iterator it) { if (it == end()) return ValueTraits::emptyValue(); ValuePassOutType result = ValueTraits::passOut(const_cast(*it)); remove(it); return result; } template inline typename HashSet::ValuePassOutType HashSet::take(ValuePeekInType value) { return take(find(value)); } template inline typename HashSet::ValuePassOutType HashSet::takeAny() { return take(begin()); } template inline void copyToVector(const C& collection, W& vector) { typedef typename C::const_iterator iterator; { // Disallow GC across resize allocation, see crbug.com/568173 typename W::GCForbiddenScope scope; vector.resize(collection.size()); } iterator it = collection.begin(); iterator end = collection.end(); for (unsigned i = 0; it != end; ++it, ++i) vector[i] = *it; } #if !ENABLE(OILPAN) template struct NeedsTracing> { static const bool value = false; }; #endif } // namespace WTF using WTF::HashSet; #endif // WTF_HashSet_h