| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- /*
- Copyright (c) 2013 Daniele Bartolini, Michele Rossi
- Copyright (c) 2012 Daniele Bartolini, Simone Boscaratto
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- #pragma once
- #include "Config.h"
- #include "Assert.h"
- #include "Types.h"
- #include "StringUtils.h"
- namespace crown
- {
- namespace hash
- {
- //-----------------------------------------------------------------------------
- /// MurmurHash2, by Austin Appleby
- ///
- /// @note
- /// This code makes a few assumptions about how your machine behaves
- ///
- /// 1. We can read a 4-byte value from any address without crashing
- /// 2. sizeof(int) == 4
- ///
- /// And it has a few limitations -
- ///
- /// 1. It will not work incrementally.
- /// 2. It will not produce the same results on little-endian and big-endian
- /// machines.
- inline uint32_t murmur2_32(const void* key, size_t len, uint32_t seed = 0)
- {
- CE_ASSERT_NOT_NULL(key);
- // 'm' and 'r' are mixing constants generated offline.
- // They're not really 'magic', they just happen to work well.
- const unsigned int m = 0x5bd1e995;
- const int r = 24;
- // Initialize the hash to a 'random' value
- unsigned int h = seed ^ len;
- // Mix 4 bytes at a time into the hash
- const unsigned char * data = (const unsigned char *)key;
- while(len >= 4)
- {
- unsigned int k = *(unsigned int *)data;
- k *= m;
- k ^= k >> r;
- k *= m;
-
- h *= m;
- h ^= k;
- data += 4;
- len -= 4;
- }
-
- // Handle the last few bytes of the input array
- switch(len)
- {
- case 3: h ^= data[2] << 16;
- case 2: h ^= data[1] << 8;
- case 1: h ^= data[0];
- h *= m;
- };
- // Do a few final mixes of the hash to ensure the last few
- // bytes are well-incorporated.
- h ^= h >> 13;
- h *= m;
- h ^= h >> 15;
- return h;
- }
- //-----------------------------------------------------------------------------
- inline uint64_t murmur2_64(const void* key, size_t len, unsigned int seed = 0)
- {
- CE_ASSERT_NOT_NULL(key);
- const unsigned int m = 0x5bd1e995;
- const int r = 24;
- unsigned int h1 = seed ^ len;
- unsigned int h2 = 0;
- const unsigned int * data = (const unsigned int *)key;
- while(len >= 8)
- {
- unsigned int k1 = *data++;
- k1 *= m; k1 ^= k1 >> r; k1 *= m;
- h1 *= m; h1 ^= k1;
- len -= 4;
- unsigned int k2 = *data++;
- k2 *= m; k2 ^= k2 >> r; k2 *= m;
- h2 *= m; h2 ^= k2;
- len -= 4;
- }
- if(len >= 4)
- {
- unsigned int k1 = *data++;
- k1 *= m; k1 ^= k1 >> r; k1 *= m;
- h1 *= m; h1 ^= k1;
- len -= 4;
- }
- switch(len)
- {
- case 3: h2 ^= ((unsigned char*)data)[2] << 16;
- case 2: h2 ^= ((unsigned char*)data)[1] << 8;
- case 1: h2 ^= ((unsigned char*)data)[0];
- h2 *= m;
- };
- h1 ^= h2 >> 18; h1 *= m;
- h2 ^= h1 >> 22; h2 *= m;
- h1 ^= h2 >> 17; h1 *= m;
- h2 ^= h1 >> 19; h2 *= m;
- uint64_t h = h1;
- h = (h << 32) | h2;
- return h;
- }
- #ifdef CROWN_DEBUG
- inline uint32_t HASH32(const char *s, uint32_t value)
- {
- CE_ASSERT(murmur2_32(s, string::strlen(s), 0) == value);
- return value;
- }
- inline uint64_t HASH64(const char* s, uint64_t value)
- {
- CE_ASSERT(murmur2_64(s, string::strlen(s), 0) == value);
- return value;
- }
- #else
- #define HASH32(s, v) (v)
- #define HASH64(s, v) (v)
- #endif
- } // namespace hash
- } // namespace crown
|