2010-11-05 08:40:15 +02:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <ext/hash_map> // for __gnu_cxx::hash
|
|
|
|
|
|
|
|
#include "MurmurHash2.h"
|
|
|
|
#include "stringpiece.h"
|
|
|
|
#include "cmph_types.h"
|
|
|
|
|
|
|
|
namespace cxxmph {
|
|
|
|
|
|
|
|
template <class HashFcn>
|
|
|
|
struct seeded_hash_function {
|
|
|
|
template <class Key>
|
|
|
|
cmph_uint32 operator()(const Key& k, cmph_uint32 seed) const {
|
|
|
|
return HashFcn()(k) ^ seed;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Murmur2 {
|
|
|
|
template<class Key>
|
|
|
|
cmph_uint32 operator()(const Key& k) const {
|
|
|
|
return MurmurHash2(k, sizeof(Key), 1 /* seed */);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct Murmur2StringPiece {
|
|
|
|
template <class Key>
|
|
|
|
cmph_uint32 operator()(const Key& k) const {
|
|
|
|
StringPiece s(k);
|
2010-11-05 08:48:53 +02:00
|
|
|
return MurmurHash2(s.data(), s.length(), 1 /* seed */);
|
2010-11-05 08:40:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct seeded_hash_function<Murmur2> {
|
|
|
|
template <class Key>
|
|
|
|
cmph_uint32 operator()(const Key& k, cmph_uint32 seed) const {
|
|
|
|
return MurmurHash2(k, sizeof(Key), seed);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct seeded_hash_function<Murmur2StringPiece> {
|
|
|
|
template <class Key>
|
|
|
|
cmph_uint32 operator()(const Key& k, cmph_uint32 seed) const {
|
|
|
|
StringPiece s(k);
|
2010-11-05 08:48:53 +02:00
|
|
|
return MurmurHash2(s.data(), s.length(), seed);
|
2010-11-05 08:40:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class HashFcn> struct OptimizedSeededHashFunction
|
|
|
|
{ typedef seeded_hash_function<HashFcn> hash_function; };
|
|
|
|
// Use Murmur2 instead for all types defined in __gnu_cxx::hash, plus
|
|
|
|
// std::string which is commonly extended.
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<char*> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2StringPiece> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<const char*> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2StringPiece> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<std::string> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2StringPiece> hash_function; };
|
|
|
|
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<char> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<unsigned char> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<short> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<unsigned short> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<int> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<unsigned int> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<long> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
template <> struct OptimizedSeededHashFunction<__gnu_cxx::hash<unsigned long> >
|
|
|
|
{ typedef seeded_hash_function<Murmur2> hash_function; };
|
|
|
|
|
|
|
|
} // namespace cxxmph
|