blob: 028bb912bbd49d520b6026292c78eb31f4f4cd42 [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrBinHashKey_DEFINED
#define GrBinHashKey_DEFINED
#include "GrTypes.h"
/**
* Hash function class that can take a data chunk of any predetermined
* length. The hash function used is the One-at-a-Time Hash
* (http://burtleburtle.net/bob/hash/doobs.html).
*/
template<typename Entry, size_t KeySize>
class GrBinHashKey {
public:
GrBinHashKey()
: fHash(0)
#if GR_DEBUG
, fIsValid(false)
#endif
{}
GrBinHashKey(const GrBinHashKey<Entry, KeySize>& other) {
*this = other;
}
GrBinHashKey<Entry, KeySize>& operator=(const GrBinHashKey<Entry,
KeySize>& other) {
memcpy(this, &other, sizeof(*this));
return *this;
}
~GrBinHashKey() {
}
void setKeyData(const uint32_t* SK_RESTRICT data) {
GrAssert(GrIsALIGN4(KeySize));
memcpy(&fData, data, KeySize);
uint32_t hash = 0;
size_t len = KeySize;
while (len >= 4) {
hash += *data++;
hash += (fHash << 10);
hash ^= (hash >> 6);
len -= 4;
}
hash += (fHash << 3);
hash ^= (fHash >> 11);
hash += (fHash << 15);
#if GR_DEBUG
fIsValid = true;
#endif
fHash = hash;
}
int compare(const GrBinHashKey<Entry, KeySize>& key) const {
GrAssert(fIsValid && key.fIsValid);
return memcmp(fData, key.fData, KeySize);
}
static bool
EQ(const Entry& entry, const GrBinHashKey<Entry, KeySize>& key) {
GrAssert(key.fIsValid);
return 0 == entry.compare(key);
}
static bool
LT(const Entry& entry, const GrBinHashKey<Entry, KeySize>& key) {
GrAssert(key.fIsValid);
return entry.compare(key) < 0;
}
uint32_t getHash() const {
GrAssert(fIsValid);
return fHash;
}
private:
uint32_t fHash;
uint8_t fData[KeySize]; //Buffer for key storage
#if GR_DEBUG
public:
bool fIsValid;
#endif
};
#endif