/* * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 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_HashTraits_h #define WTF_HashTraits_h #include "wtf/HashFunctions.h" #include "wtf/HashTableDeletedValueType.h" #include "wtf/StdLibExtras.h" #include "wtf/TypeTraits.h" #include #include namespace WTF { class String; template class OwnPtr; template class PassOwnPtr; template struct HashTraits; template struct GenericHashTraitsBase; template struct GenericHashTraitsBase { // The emptyValueIsZero flag is used to optimize allocation of empty hash tables with zeroed memory. static const bool emptyValueIsZero = false; // The hasIsEmptyValueFunction flag allows the hash table to automatically generate code to check // for the empty value when it can be done with the equality operator, but allows custom functions // for cases like String that need them. static const bool hasIsEmptyValueFunction = false; // The needsDestruction flag is used to optimize destruction and rehashing. static const bool needsDestruction = true; // The starting table size. Can be overridden when we know beforehand that // a hash table will have at least N entries. #if defined(MEMORY_TOOL_REPLACES_ALLOCATOR) static const unsigned minimumTableSize = 1; #else static const unsigned minimumTableSize = 8; #endif }; // Default integer traits disallow both 0 and -1 as keys (max value instead of -1 for unsigned). template struct GenericHashTraitsBase : GenericHashTraitsBase { static const bool emptyValueIsZero = true; static const bool needsDestruction = false; static void constructDeletedValue(T& slot) { slot = static_cast(-1); } static bool isDeletedValue(T value) { return value == static_cast(-1); } }; template struct GenericHashTraits : GenericHashTraitsBase::value, T> { typedef T TraitType; typedef T EmptyValueType; static T emptyValue() { return T(); } // Type for functions that take ownership, such as add. // The store function either not be called or called once to store something passed in. // The value passed to the store function will be either PassInType or PassInType&. typedef const T& PassInType; static void store(const T& value, T& storage) { storage = value; } // Type for return value of functions that transfer ownership, such as take. typedef T PassOutType; static PassOutType passOut(const T& value) { return value; } static T& passOut(T& value) { return value; } // Overloaded to avoid copying of non-temporary values. // Type for return value of functions that do not transfer ownership, such as get. // FIXME: We could change this type to const T& for better performance if we figured out // a way to handle the return value from emptyValue, which is a temporary. typedef T PeekType; static PeekType peek(const T& value) { return value; } static T& peek(T& value) { return value; } // Overloaded to avoid copying of non-temporary values. }; template struct HashTraits : GenericHashTraits { }; template struct FloatHashTraits : GenericHashTraits { static const bool needsDestruction = false; static T emptyValue() { return std::numeric_limits::infinity(); } static void constructDeletedValue(T& slot) { slot = -std::numeric_limits::infinity(); } static bool isDeletedValue(T value) { return value == -std::numeric_limits::infinity(); } }; template<> struct HashTraits : FloatHashTraits { }; template<> struct HashTraits : FloatHashTraits { }; // Default unsigned traits disallow both 0 and max as keys -- use these traits to allow zero and disallow max - 1. template struct UnsignedWithZeroKeyHashTraits : GenericHashTraits { static const bool emptyValueIsZero = false; static const bool needsDestruction = false; static T emptyValue() { return std::numeric_limits::max(); } static void constructDeletedValue(T& slot) { slot = std::numeric_limits::max() - 1; } static bool isDeletedValue(T value) { return value == std::numeric_limits::max() - 1; } }; template struct HashTraits : GenericHashTraits { static const bool emptyValueIsZero = true; static const bool needsDestruction = false; static void constructDeletedValue(P*& slot) { slot = reinterpret_cast(-1); } static bool isDeletedValue(P* value) { return value == reinterpret_cast(-1); } }; template struct SimpleClassHashTraits : GenericHashTraits { static const bool emptyValueIsZero = true; static void constructDeletedValue(T& slot) { new (NotNull, &slot) T(HashTableDeletedValue); } static bool isDeletedValue(const T& value) { return value.isHashTableDeletedValue(); } }; template struct HashTraits > : SimpleClassHashTraits > { typedef std::nullptr_t EmptyValueType; static EmptyValueType emptyValue() { return nullptr; } typedef PassOwnPtr

PassInType; static void store(PassOwnPtr

value, OwnPtr

& storage) { storage = value; } typedef PassOwnPtr

PassOutType; static PassOwnPtr

passOut(OwnPtr

& value) { return value.release(); } static PassOwnPtr

passOut(std::nullptr_t) { return nullptr; } typedef typename OwnPtr

::PtrType PeekType; static PeekType peek(const OwnPtr

& value) { return value.get(); } static PeekType peek(std::nullptr_t) { return 0; } }; template struct HashTraits > : SimpleClassHashTraits > { static P* emptyValue() { return 0; } typedef PassRefPtr

PassInType; static void store(PassRefPtr

value, RefPtr

& storage) { storage = value; } typedef PassRefPtr

PassOutType; static PassRefPtr

passOut(RefPtr

& value) { return value.release(); } static PassRefPtr

passOut(P* value) { return value; } typedef P* PeekType; static PeekType peek(const RefPtr

& value) { return value.get(); } static PeekType peek(P* value) { return value; } }; template<> struct HashTraits : SimpleClassHashTraits { static const bool hasIsEmptyValueFunction = true; static bool isEmptyValue(const String&); }; // This struct template is an implementation detail of the isHashTraitsEmptyValue function, // which selects either the emptyValue function or the isEmptyValue function to check for empty values. template struct HashTraitsEmptyValueChecker; template struct HashTraitsEmptyValueChecker { template static bool isEmptyValue(const T& value) { return Traits::isEmptyValue(value); } }; template struct HashTraitsEmptyValueChecker { template static bool isEmptyValue(const T& value) { return value == Traits::emptyValue(); } }; template inline bool isHashTraitsEmptyValue(const T& value) { return HashTraitsEmptyValueChecker::isEmptyValue(value); } template struct PairHashTraits : GenericHashTraits > { typedef FirstTraitsArg FirstTraits; typedef SecondTraitsArg SecondTraits; typedef std::pair TraitType; typedef std::pair EmptyValueType; static const bool emptyValueIsZero = FirstTraits::emptyValueIsZero && SecondTraits::emptyValueIsZero; static EmptyValueType emptyValue() { return std::make_pair(FirstTraits::emptyValue(), SecondTraits::emptyValue()); } static const bool needsDestruction = FirstTraits::needsDestruction || SecondTraits::needsDestruction; static const unsigned minimumTableSize = FirstTraits::minimumTableSize; static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); } static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); } }; template struct HashTraits > : public PairHashTraits, HashTraits > { }; template struct KeyValuePair { typedef KeyTypeArg KeyType; KeyValuePair() { } KeyValuePair(const KeyTypeArg& _key, const ValueTypeArg& _value) : key(_key) , value(_value) { } template KeyValuePair(const KeyValuePair& other) : key(other.key) , value(other.value) { } KeyTypeArg key; ValueTypeArg value; }; template struct KeyValuePairHashTraits : GenericHashTraits > { typedef KeyTraitsArg KeyTraits; typedef ValueTraitsArg ValueTraits; typedef KeyValuePair TraitType; typedef KeyValuePair EmptyValueType; static const bool emptyValueIsZero = KeyTraits::emptyValueIsZero && ValueTraits::emptyValueIsZero; static EmptyValueType emptyValue() { return KeyValuePair(KeyTraits::emptyValue(), ValueTraits::emptyValue()); } static const bool needsDestruction = KeyTraits::needsDestruction || ValueTraits::needsDestruction; static const unsigned minimumTableSize = KeyTraits::minimumTableSize; static void constructDeletedValue(TraitType& slot) { KeyTraits::constructDeletedValue(slot.key); } static bool isDeletedValue(const TraitType& value) { return KeyTraits::isDeletedValue(value.key); } }; template struct HashTraits > : public KeyValuePairHashTraits, HashTraits > { }; template struct NullableHashTraits : public HashTraits { static const bool emptyValueIsZero = false; static T emptyValue() { return reinterpret_cast(1); } }; } // namespace WTF using WTF::HashTraits; using WTF::PairHashTraits; using WTF::NullableHashTraits; using WTF::SimpleClassHashTraits; #endif // WTF_HashTraits_h