-
Notifications
You must be signed in to change notification settings - Fork 109
/
util.go
71 lines (58 loc) · 1.35 KB
/
util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package cuckoo
import (
metro "github.com/dgryski/go-metro"
)
var (
altHash = [256]uint{}
masks = [65]uint{}
)
func init() {
for i := 0; i < 256; i++ {
altHash[i] = (uint(metro.Hash64([]byte{byte(i)}, 1337)))
}
for i := uint(0); i <= 64; i++ {
masks[i] = (1 << i) - 1
}
}
func getAltIndex(fp fingerprint, i uint, bucketPow uint) uint {
mask := masks[bucketPow]
hash := altHash[fp] & mask
return (i & mask) ^ hash
}
func getFingerprint(hash uint64) byte {
// Use least significant bits for fingerprint.
fp := byte(hash%255 + 1)
return fp
}
// getIndicesAndFingerprint returns the 2 bucket indices and fingerprint to be used
func getIndexAndFingerprint(data []byte, bucketPow uint) (uint, fingerprint) {
hash := defaultHasher.Hash64(data)
fp := getFingerprint(hash)
// Use most significant bits for deriving index.
i1 := uint(hash>>32) & masks[bucketPow]
return i1, fingerprint(fp)
}
func getNextPow2(n uint64) uint {
n--
n |= n >> 1
n |= n >> 2
n |= n >> 4
n |= n >> 8
n |= n >> 16
n |= n >> 32
n++
return uint(n)
}
var defaultHasher Hasher = new(metrotHasher)
func SetDefaultHasher(hasher Hasher) {
defaultHasher = hasher
}
type Hasher interface {
Hash64([]byte) uint64
}
var _ Hasher = new(metrotHasher)
type metrotHasher struct{}
func (h *metrotHasher) Hash64(data []byte) uint64 {
hash := metro.Hash64(data, 1337)
return hash
}