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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#[cfg(feature = "specialize")]
use crate::HasherExt;
use core::hash::Hash;
use core::hash::Hasher;
pub trait CallHasher: Hash {
fn get_hash<H: Hasher>(&self, hasher: H) -> u64;
}
#[cfg(not(feature = "specialize"))]
impl<T> CallHasher for T
where
T: Hash,
{
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
self.hash(&mut hasher);
hasher.finish()
}
}
#[cfg(feature = "specialize")]
impl<T> CallHasher for T
where
T: Hash,
{
#[inline]
default fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
self.hash(&mut hasher);
hasher.finish()
}
}
macro_rules! call_hasher_impl {
($typ:ty) => {
#[cfg(feature = "specialize")]
impl CallHasher for $typ {
#[inline]
fn get_hash<H: Hasher>(&self, hasher: H) -> u64 {
hasher.hash_u64(*self as u64)
}
}
};
}
call_hasher_impl!(u8);
call_hasher_impl!(u16);
call_hasher_impl!(u32);
call_hasher_impl!(u64);
call_hasher_impl!(i8);
call_hasher_impl!(i16);
call_hasher_impl!(i32);
call_hasher_impl!(i64);
#[cfg(feature = "specialize")]
impl CallHasher for u128 {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write_u128(*self);
hasher.short_finish()
}
}
#[cfg(feature = "specialize")]
impl CallHasher for i128 {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write_u128(*self as u128);
hasher.short_finish()
}
}
#[cfg(feature = "specialize")]
impl CallHasher for [u8] {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write(self);
hasher.finish()
}
}
#[cfg(all(feature = "specialize", feature = "std"))]
impl CallHasher for Vec<u8> {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write(self);
hasher.finish()
}
}
#[cfg(feature = "specialize")]
impl CallHasher for str {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write(self.as_bytes());
hasher.finish()
}
}
#[cfg(all(feature = "specialize", feature = "std"))]
impl CallHasher for String {
#[inline]
fn get_hash<H: Hasher>(&self, mut hasher: H) -> u64 {
hasher.write(self.as_bytes());
hasher.finish()
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::*;
#[test]
#[cfg(feature = "specialize")]
pub fn test_specialized_invoked() {
let shortened = 0_u64.get_hash(AHasher::new_with_keys(1, 2));
let mut hasher = AHasher::new_with_keys(1, 2);
0_u64.hash(&mut hasher);
assert_ne!(hasher.finish(), shortened);
}
#[test]
pub fn test_input_processed() {
let hasher = || AHasher::new_with_keys(3, 2);
assert_ne!(0, 0_u64.get_hash(hasher()));
assert_ne!(1, 0_u64.get_hash(hasher()));
assert_ne!(2, 0_u64.get_hash(hasher()));
assert_ne!(3, 0_u64.get_hash(hasher()));
assert_ne!(4, 0_u64.get_hash(hasher()));
assert_ne!(5, 0_u64.get_hash(hasher()));
assert_ne!(0, 1_u64.get_hash(hasher()));
assert_ne!(1, 1_u64.get_hash(hasher()));
assert_ne!(2, 1_u64.get_hash(hasher()));
assert_ne!(3, 1_u64.get_hash(hasher()));
assert_ne!(4, 1_u64.get_hash(hasher()));
assert_ne!(5, 1_u64.get_hash(hasher()));
let xored = 0_u64.get_hash(hasher()) ^ 1_u64.get_hash(hasher());
assert_ne!(0, xored);
assert_ne!(1, xored);
assert_ne!(2, xored);
assert_ne!(3, xored);
assert_ne!(4, xored);
assert_ne!(5, xored);
}
}