/* * Copyright (C) 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #ifndef StringHash_h #define StringHash_h #include "AtomicStringImpl.h" #include "PlatformString.h" #include #include namespace WTF { template struct StrHash; template<> struct StrHash { static unsigned hash(const WebCore::StringImpl* key) { return key->hash(); } static bool equal(const WebCore::StringImpl* a, const WebCore::StringImpl* b) { if (a == b) return true; if (!a || !b) return false; unsigned aLength = a->length(); unsigned bLength = b->length(); if (aLength != bLength) return false; const uint32_t* aChars = reinterpret_cast(a->characters()); const uint32_t* bChars = reinterpret_cast(b->characters()); unsigned halfLength = aLength >> 1; for (unsigned i = 0; i != halfLength; ++i) if (*aChars++ != *bChars++) return false; if (aLength & 1 && *reinterpret_cast(aChars) != *reinterpret_cast(bChars)) return false; return true; } }; template<> struct StrHash : public StrHash { }; template<> struct StrHash > { static unsigned hash(const RefPtr& key) { return key->hash(); } static bool equal(const RefPtr& a, const RefPtr& b) { return StrHash::equal(a.get(), b.get()); } }; template<> struct StrHash { static unsigned hash(const WebCore::String& key) { return key.impl()->hash(); } static bool equal(const WebCore::String& a, const WebCore::String& b) { return StrHash::equal(a.impl(), b.impl()); } }; template struct CaseInsensitiveHash; template<> class CaseInsensitiveHash { private: // Golden ratio - arbitrary start value to avoid mapping all 0's to all 0's static const unsigned PHI = 0x9e3779b9U; public: // Paul Hsieh's SuperFastHash // http://www.azillionmonkeys.com/qed/hash.html static unsigned hash(const WebCore::StringImpl* str) { unsigned l = str->length(); const UChar* s = str->characters(); uint32_t hash = PHI; uint32_t tmp; int rem = l & 1; l >>= 1; // Main loop for (; l > 0; l--) { hash += WTF::Unicode::foldCase(s[0]); tmp = (WTF::Unicode::foldCase(s[1]) << 11) ^ hash; hash = (hash << 16) ^ tmp; s += 2; hash += hash >> 11; } // Handle end case if (rem) { hash += WTF::Unicode::foldCase(s[0]); hash ^= hash << 11; hash += hash >> 17; } // Force "avalanching" of final 127 bits hash ^= hash << 3; hash += hash >> 5; hash ^= hash << 2; hash += hash >> 15; hash ^= hash << 10; // this avoids ever returning a hash code of 0, since that is used to // signal "hash not computed yet", using a value that is likely to be // effectively the same as 0 when the low bits are masked if (hash == 0) hash = 0x80000000; return hash; } static unsigned hash(const char* str, unsigned length) { // This hash is designed to work on 16-bit chunks at a time. But since the normal case // (above) is to hash UTF-16 characters, we just treat the 8-bit chars as if they // were 16-bit chunks, which will give matching results. unsigned l = length; const char* s = str; uint32_t hash = PHI; uint32_t tmp; int rem = l & 1; l >>= 1; // Main loop for (; l > 0; l--) { hash += WTF::Unicode::foldCase(s[0]); tmp = (WTF::Unicode::foldCase(s[1]) << 11) ^ hash; hash = (hash << 16) ^ tmp; s += 2; hash += hash >> 11; } // Handle end case if (rem) { hash += WTF::Unicode::foldCase(s[0]); hash ^= hash << 11; hash += hash >> 17; } // Force "avalanching" of final 127 bits hash ^= hash << 3; hash += hash >> 5; hash ^= hash << 2; hash += hash >> 15; hash ^= hash << 10; // this avoids ever returning a hash code of 0, since that is used to // signal "hash not computed yet", using a value that is likely to be // effectively the same as 0 when the low bits are masked if (hash == 0) hash = 0x80000000; return hash; } static bool equal(const WebCore::StringImpl* a, const WebCore::StringImpl* b) { if (a == b) return true; if (!a || !b) return false; unsigned length = a->length(); if (length != b->length()) return false; return WTF::Unicode::umemcasecmp(a->characters(), b->characters(), length) == 0; } }; template<> struct CaseInsensitiveHash : public CaseInsensitiveHash { }; template<> struct CaseInsensitiveHash > { static unsigned hash(const RefPtr& key) { return CaseInsensitiveHash::hash(key.get()); } static bool equal(const RefPtr& a, const RefPtr& b) { return CaseInsensitiveHash::equal(a.get(), b.get()); } }; template<> struct CaseInsensitiveHash { static unsigned hash(const WebCore::String& key) { return CaseInsensitiveHash::hash(key.impl()); } static bool equal(const WebCore::String& a, const WebCore::String& b) { return CaseInsensitiveHash::equal(a.impl(), b.impl()); } }; // store WebCore::String as StringImpl* template<> struct HashTraits : GenericHashTraits { typedef HashTraits::StorageTraits StorageTraits; typedef StorageTraits::TraitType StorageType; static const bool emptyValueIsZero = true; static const bool needsRef = true; typedef union { WebCore::StringImpl* m_p; StorageType m_s; } UnionType; static void ref(const StorageType& s) { ref(reinterpret_cast(&s)->m_p); } static void deref(const StorageType& s) { deref(reinterpret_cast(&s)->m_p); } static void ref(const WebCore::StringImpl* str) { if (str) const_cast(str)->ref(); } static void deref(const WebCore::StringImpl* str) { if (str) const_cast(str)->deref(); } }; // share code between StringImpl*, RefPtr, and String template<> struct HashKeyStorageTraits >, HashTraits > > { typedef StrHash Hash; typedef HashTraits Traits; }; template<> struct HashKeyStorageTraits, HashTraits > { typedef StrHash Hash; typedef HashTraits Traits; }; template<> struct HashKeyStorageTraits >, HashTraits > > { typedef CaseInsensitiveHash Hash; typedef HashTraits Traits; }; template<> struct HashKeyStorageTraits, HashTraits > { typedef CaseInsensitiveHash Hash; typedef HashTraits Traits; }; } using WTF::CaseInsensitiveHash; #endif