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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
//! The lz_fnv crate implements Fowler-Noll-Vo hashing.
//! 
//! FNV-0, FNV-1 and FNV-1a hash implementations are supported for various
//! width integers.
//! 
//! The FNV implementations for u64 also implement `Hasher`.
//!
//! The crate features available are:
//! * nightly - For when using a nightly build of rust
//! * u128 - When not using nightly this uses the extprim crate for its u128 
//!     type
#![cfg_attr(feature = "nightly", feature(i128_type))]
#![deny(missing_docs)]

#[cfg(feature = "extprim")]
extern crate extprim;

#[cfg(feature = "extprim_literals")]
#[macro_use]
extern crate extprim_literals;

/// A trait for all Fowler-Noll-Vo hash implementations.
///
/// This matches the `std::hash::Hasher` definition but for multiple hash
/// types.
pub trait FnvHasher {
    /// The type of the hash.
    type Hash;

    /// Completes a round of hashing, producing the output hash generated.
    fn finish(&self) -> Self::Hash;

    /// Writes some data into this Hasher.
    fn write(&mut self, bytes: &[u8]);
}

/// The FNV-0 hash.
///
/// This is deprecated except for computing the FNV offset basis for FNV-1 and
/// FNV-1a hashes.
#[derive(Debug, Default)]
pub struct Fnv0<T> {
    hash: T,
}

/// The FNV-1 hash.
#[derive(Debug)]
pub struct Fnv1<T> {
    hash: T,
}

/// The FNV-1a hash.
#[derive(Debug)]
pub struct Fnv1a<T> {
    hash: T,
}

impl<T: Default> Fnv0<T> {
    /// Creates a new `Fnv0<T>`.
    ///
    /// ```
    /// use lz_fnv::Fnv0;
    ///
    /// let fnv_hasher = Fnv0::<u32>::new();
    /// ```
    pub fn new() -> Self {
        Self::default()
    }
}

impl<T> Fnv0<T> {
    /// Creates a new `Fnv0<T>` with the specified key.
    ///
    /// ```
    /// use lz_fnv::Fnv0;
    ///
    /// let fnv_hasher = Fnv0::with_key(872u32);
    /// ```
    pub fn with_key(key: T) -> Self {
        Self { hash: key }
    }
}

impl<T> Fnv1<T> {
    /// Creates a new `Fnv1<T>` with the specified key.
    ///
    /// ```
    /// use lz_fnv::Fnv1;
    ///
    /// let fnv_hasher = Fnv1::with_key(872u32);
    /// ```
    pub fn with_key(key: T) -> Self {
        Self { hash: key }
    }
}

impl<T> Fnv1a<T> {
    /// Creates a new `Fnv1a<T>` with the specified key.
    ///
    /// ```
    /// use lz_fnv::Fnv1a;
    ///
    /// let fnv_hasher = Fnv1a::with_key(872u32);
    /// ```
    pub fn with_key(key: T) -> Self {
        Self { hash: key }
    }
}

macro_rules! fnv0_impl {
    ($type: ty, $prime: expr, $from_byte: ident) => {
        impl FnvHasher for Fnv0<$type> {
            type Hash = $type;

            fn finish(&self) -> Self::Hash {
                self.hash
            }

            fn write(&mut self, bytes: &[u8]) {
                let mut hash = self.hash;

                for byte in bytes {
                    hash = hash.wrapping_mul($prime);
                    hash ^= ($from_byte)(*byte);
                }

                self.hash = hash;
            }
        }
    }
}

macro_rules! fnv1_impl {
    ($type: ty, $offset: expr, $prime: expr, $from_byte: ident) => {
        impl Default for Fnv1<$type> {
            fn default() -> Self {
                Self {
                    hash: $offset
                }
            }
        }

        impl Fnv1<$type> {
            /// Creates a new `Fnv1<T>`.
            pub fn new() -> Self {
                Self::default()
            }
        }

        impl FnvHasher for Fnv1<$type> {
            type Hash = $type;

            fn finish(&self) -> Self::Hash {
                self.hash
            }

            fn write(&mut self, bytes: &[u8]) {
                let mut hash = self.hash;

                for byte in bytes {
                    hash = hash.wrapping_mul($prime);
                    hash ^= ($from_byte)(*byte);
                }

                self.hash = hash;
            }
        }
    }
}

macro_rules! fnv1a_impl {
    ($type: ty, $offset: expr, $prime: expr, $from_byte: ident) => {
        impl Default for Fnv1a<$type> {
            fn default() -> Self {
                Self {
                    hash: $offset
                }
            }
        }

        impl Fnv1a<$type> {
            /// Creates a new `Fnv1a<T>`.
            pub fn new() -> Self {
                Self::default()
            }
        }

        impl FnvHasher for Fnv1a<$type> {
            type Hash = $type;

            fn finish(&self) -> Self::Hash {
                self.hash
            }

            fn write(&mut self, bytes: &[u8]) {
                let mut hash = self.hash;

                for byte in bytes {
                    hash ^= ($from_byte)(*byte);
                    hash = hash.wrapping_mul($prime);
                }

                self.hash = hash;
            }
        }

    }
}

macro_rules! fnv_hasher_impl {
    ($type: ty) => {
        impl ::std::hash::Hasher for $type {
            fn finish(&self) -> u64 {
                ::FnvHasher::finish(self)
            }

            fn write(&mut self, bytes: &[u8]) {
                ::FnvHasher::write(self, bytes);
            }
        }
    }
}
macro_rules! fnv_impl {
    (u64, $offset: expr, $prime: expr, $from_byte: ident) => {
        fnv0_impl!(u64, $prime, $from_byte);
        fnv_hasher_impl!(Fnv0<u64>);

        fnv1_impl!(u64, $offset, $prime, $from_byte);
        fnv_hasher_impl!(Fnv1<u64>);

        fnv1a_impl!(u64, $offset, $prime, $from_byte);
        fnv_hasher_impl!(Fnv1a<u64>);
    };
    ($type: ty, $offset: expr, $prime: expr, $from_byte: ident) => {
        fnv0_impl!($type, $prime, $from_byte);
        fnv1_impl!($type, $offset, $prime, $from_byte);
        fnv1a_impl!($type, $offset, $prime, $from_byte);
    };
}

fn u32_from_byte(byte: u8) -> u32 {
    byte.into()
}

fn u64_from_byte(byte: u8) -> u64 {
    byte.into()
}

fnv_impl!(u32, 0x811c_9dc5, 0x100_0193, u32_from_byte);
fnv_impl!(u64, 0xcbf2_9ce4_8422_2325, 0x100_0000_01B3, u64_from_byte);

#[cfg(feature = "u128")]
fn extprim_u128_from_byte(byte: u8) -> extprim::u128::u128 {
    extprim::u128::u128::new(u64::from(byte))
}

#[cfg(feature = "u128")]
fnv_impl!(
    extprim::u128::u128,
    u128!(0x6C62272E07BB014262B821756295C58D),
    u128!(0x0000000001000000000000000000013B),
    extprim_u128_from_byte
);

#[cfg(feature = "nightly")]
fn core_u128_from_byte(byte: u8) -> u128 {
    byte.into()
}

#[cfg(feature = "nightly")]
fnv_impl!(
    u128,
    0x6C62272E07BB014262B821756295C58Du128,
    0x0000000001000000000000000000013Bu128,
    core_u128_from_byte
);

#[cfg(test)]
mod tests {
    use {Fnv0, Fnv1, Fnv1a, FnvHasher};
    use std::iter;

    macro_rules! fnv0_tests {
        ($($name: ident: $size: ty, $input: expr, $expected_hash: expr,)*) => {
            $(
                #[test]
                fn $name() {
                    let mut fnv0 = Fnv0::<$size>::new();

                    fnv0.write($input);

                    let result = fnv0.finish();

                    assert_eq!(result, $expected_hash);
                }
            )*
        };
    }

    macro_rules! fnv1_tests {
        ($($name: ident: $size: ty, $input: expr, $expected_hash: expr,)*) => {
            $(
                #[test]
                fn $name() {
                    let mut fnv1 = Fnv1::<$size>::new();

                    fnv1.write($input);

                    let result = fnv1.finish();

                    assert_eq!(result, $expected_hash);
                }
            )*
        };
    }
    macro_rules! fnv1a_tests {
        ($($name: ident: $size: ty, $input: expr, $expected_hash: expr,)*) => {
            $(
                #[test]
                fn $name() {
                    let mut fnv1a = Fnv1a::<$size>::new();

                    fnv1a.write($input);

                    let result = fnv1a.finish();

                    assert_eq!(result, $expected_hash);
                }
            )*
        };
    }

    fn repeat(slice: &[u8], times: usize) -> Vec<u8> {
        iter::repeat(slice)
            .take(times)
            .flat_map(|x| x)
            .cloned()
            .collect()
    }

    include!("fnv_test_cases.rs");

    #[cfg(feature = "u128")]
    fnv0_tests!{
        fnv0_offset_calculation_extprim_128_bit: ::extprim::u128::u128, b"chongo <Landon Curt Noll> /\\../\\", u128!(0x6C62272E07BB014262B821756295C58D),
    }

    #[cfg(feature = "nightly")]
    fnv0_tests!{
        fnv0_offset_calculation_128_bit: u128, b"chongo <Landon Curt Noll> /\\../\\", 0x6C62272E07BB014262B821756295C58D,
    }
}