// -*- mode: c++; c-basic-offset: 4 -*- /* * This file is part of the KDE libraries * * Copyright (C) 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., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef WTF_HashSet_h #define WTF_HashSet_h #include "HashTable.h" namespace WTF { template struct IdentityExtractor; template class HashSet; template void deleteAllValues(const HashSet&); template::Hash, typename TraitsArg = HashTraits > class HashSet { private: typedef HashArg HashFunctions; typedef TraitsArg ValueTraits; typedef typename HashKeyStorageTraits::Hash StorageHashFunctions; typedef typename HashKeyStorageTraits::Traits StorageTraits; typedef typename StorageTraits::TraitType StorageType; typedef HashTable, StorageHashFunctions, StorageTraits, StorageTraits> HashTableType; public: typedef typename ValueTraits::TraitType ValueType; typedef HashTableIteratorAdapter iterator; typedef HashTableConstIteratorAdapter const_iterator; HashSet(); HashSet(const HashSet&); HashSet& operator=(const HashSet&); ~HashSet(); void swap(HashSet&); int size() const; int capacity() const; bool isEmpty() const; iterator begin(); iterator end(); const_iterator begin() const; const_iterator end() const; iterator find(const ValueType&); const_iterator find(const ValueType&) const; bool contains(const ValueType&) const; // the return value is a pair of an interator to the new value's location, // and a bool that is true if an new entry was added pair add(const ValueType&); // a special 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 should have the following methods: // static unsigned hash(const T&); // static bool equal(const ValueType&, const T&); // static translate(ValueType&, const T&, unsigned hashCode); template pair add(const T&); void remove(const ValueType&); void remove(iterator); void clear(); private: void refAll(); void derefAll(); friend void deleteAllValues<>(const HashSet&); HashTableType m_impl; }; template struct IdentityExtractor { static const T& extract(const T& t) { return t; } }; template struct HashSetTranslator; template struct HashSetTranslator { typedef typename StorageTraits::TraitType StorageType; static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); } static bool equal(const StorageType& a, const ValueType& b) { return HashFunctions::equal(*(const ValueType*)&a, b); } static void translate(StorageType& location, const ValueType& key, const ValueType&, unsigned) { Assigner::assign(key, location); } }; template struct HashSetTranslator { typedef typename StorageTraits::TraitType StorageType; static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); } static bool equal(const StorageType& a, const ValueType& b) { return HashFunctions::equal(*(const ValueType*)&a, b); } static void translate(StorageType& location, const ValueType& key, const ValueType&, unsigned) { if (location == StorageTraits::deletedValue()) location = StorageTraits::emptyValue(); Assigner::assign(key, location); } }; template struct HashSetTranslatorAdapter; template struct HashSetTranslatorAdapter { typedef typename StorageTraits::TraitType StorageType; static unsigned hash(const T& key) { return Translator::hash(key); } static bool equal(const StorageType& a, const T& b) { return Translator::equal(*(const ValueType*)&a, b); } static void translate(StorageType& location, const T& key, const T&, unsigned hashCode) { Translator::translate(*(ValueType*)&location, key, hashCode); } }; template struct HashSetTranslatorAdapter { typedef typename StorageTraits::TraitType StorageType; static unsigned hash(const T& key) { return Translator::hash(key); } static bool equal(const StorageType& a, const T& b) { return Translator::equal(*(const ValueType*)&a, b); } static void translate(StorageType& location, const T& key, const T&, unsigned hashCode) { if (location == StorageTraits::deletedValue()) location = StorageTraits::emptyValue(); Translator::translate(*(ValueType*)&location, key, hashCode); } }; template inline void HashSet::refAll() { HashTableRefCounter::refAll(m_impl); } template inline void HashSet::derefAll() { HashTableRefCounter::derefAll(m_impl); } template inline HashSet::HashSet() { } template inline HashSet::HashSet(const HashSet& other) : m_impl(other.m_impl) { refAll(); } template inline HashSet& HashSet::operator=(const HashSet& other) { HashSet tmp(other); swap(tmp); return *this; } template inline void HashSet::swap(HashSet& other) { m_impl.swap(other.m_impl); } template inline HashSet::~HashSet() { derefAll(); } template inline int HashSet::size() const { return m_impl.size(); } template inline int HashSet::capacity() const { return m_impl.capacity(); } template inline bool HashSet::isEmpty() const { return m_impl.isEmpty(); } template inline typename HashSet::iterator HashSet::begin() { return m_impl.begin(); } template inline typename HashSet::iterator HashSet::end() { return m_impl.end(); } template inline typename HashSet::const_iterator HashSet::begin() const { return m_impl.begin(); } template inline typename HashSet::const_iterator HashSet::end() const { return m_impl.end(); } template inline typename HashSet::iterator HashSet::find(const ValueType& value) { return m_impl.find(*(const StorageType*)&value); } template inline typename HashSet::const_iterator HashSet::find(const ValueType& value) const { return m_impl.find(*(const StorageType*)&value); } template inline bool HashSet::contains(const ValueType& value) const { return m_impl.contains(*(const StorageType*)&value); } template pair::iterator, bool> HashSet::add(const ValueType &value) { const bool canReplaceDeletedValue = !ValueTraits::needsDestruction || StorageTraits::needsDestruction; typedef HashSetTranslator Translator; return m_impl.template add(value, value); } template template pair::iterator, bool> HashSet::add(const T& value) { const bool canReplaceDeletedValue = !ValueTraits::needsDestruction || StorageTraits::needsDestruction; typedef HashSetTranslatorAdapter Adapter; return m_impl.template add(value, value); } template inline void HashSet::remove(iterator it) { if (it.m_impl == m_impl.end()) return; RefCounter::deref(*it.m_impl); m_impl.remove(it.m_impl); } template inline void HashSet::remove(const ValueType& value) { remove(find(value)); } template inline void HashSet::clear() { derefAll(); m_impl.clear(); } template void deleteAllValues(HashTableType& collection) { typedef typename HashTableType::const_iterator iterator; iterator end = collection.end(); for (iterator it = collection.begin(); it != end; ++it) delete *(ValueType*)&*it; } template inline void deleteAllValues(const HashSet& collection) { deleteAllValues::ValueType>(collection.m_impl); } } // namespace WTF using WTF::HashSet; #endif /* WTF_HashSet_h */