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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
//! `MetroHash`, Exceptionally fast and statistically robust hash functions
//!
//! by J. Andrew Rogers
//!
//! https://github.com/jandrewrogers/metrohash
//!
//! `MetroHash` is a set of state-of-the-art hash functions for non-cryptographic use cases.
//! They are notable for being algorithmically generated in addition to their exceptional
//! performance. The set of published hash functions may be expanded in the future,
//! having been selected from a very large set of hash functions that have been
//! constructed this way.
//!
//! Fastest general-purpose functions for bulk hashing.
//! Fastest general-purpose functions for small, variable length keys.
//! Robust statistical bias profile, similar to the MD5 cryptographic hash.
//! Hashes can be constructed incrementally (new)
//! 64-bit, 128-bit, and 128-bit CRC variants currently available.
//! Optimized for modern x86-64 microarchitectures.
//! Elegant, compact, readable functions.
//!
//! You can read more about the design and history
//! [here](http://www.jandrewrogers.com/2015/05/27/metrohash/).
//!
//! # Example
//!
//! ```
//! use std::hash::{Hash, Hasher};
//!
//! use fasthash::{metro, MetroHasher};
//!
//! fn hash<T: Hash>(t: &T) -> u64 {
//!     let mut s: MetroHasher = Default::default();
//!     t.hash(&mut s);
//!     s.finish()
//! }
//!
//! let h = metro::hash64(b"hello world\xff");
//!
//! assert_eq!(h, hash(&"hello world"));
//! ```
//!
#![allow(non_camel_case_types)]

use ffi;

use hasher::FastHash;

/// `MetroHash` 64-bit hash functions
///
/// # Example
///
/// ```
/// use fasthash::{metro::Hash64_1, FastHash};
///
/// assert_eq!(Hash64_1::hash(b"hello"), 15663805623366682943);
/// assert_eq!(Hash64_1::hash_with_seed(b"hello", 123), 1128464039211059189);
/// assert_eq!(Hash64_1::hash(b"helloworld"), 4615394705531318333);
/// ```
pub struct Hash64_1;

impl FastHash for Hash64_1 {
    type Hash = u64;
    type Seed = u32;

    #[inline(always)]
    fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u64 {
        let mut hash = 0_u64;

        unsafe {
            ffi::metrohash64_1(
                bytes.as_ref().as_ptr() as *const u8,
                bytes.as_ref().len() as u64,
                seed,
                &mut hash as *mut u64 as *mut u8,
            );
        }

        hash
    }
}

impl_hasher!(
    #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::Hasher64_1, FastHasher};

let mut h = Hasher64_1::new();

h.write(b"hello");
assert_eq!(h.finish(), 15663805623366682943);

h.write(b"world");
assert_eq!(h.finish(), 4615394705531318333);
```
"#]
    Hasher64_1,
    Hash64_1
);

/// `MetroHash` 64-bit hash functions
///
/// # Example
///
/// ```
/// use fasthash::{metro::Hash64_2, FastHash};
///
/// assert_eq!(Hash64_2::hash(b"hello"), 12352443828090181231);
/// assert_eq!(Hash64_2::hash_with_seed(b"hello", 123), 5558499743061241201);
/// assert_eq!(Hash64_2::hash(b"helloworld"), 13816693401637061492);
/// ```
pub struct Hash64_2;

impl FastHash for Hash64_2 {
    type Hash = u64;
    type Seed = u32;

    #[inline(always)]
    fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u64 {
        let mut hash = 0_u64;

        unsafe {
            ffi::metrohash64_2(
                bytes.as_ref().as_ptr() as *const u8,
                bytes.as_ref().len() as u64,
                seed,
                &mut hash as *mut u64 as *mut u8,
            );
        }

        hash
    }
}

impl_hasher!(
    #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::Hasher64_2, FastHasher};

let mut h = Hasher64_2::new();

h.write(b"hello");
assert_eq!(h.finish(), 12352443828090181231);

h.write(b"world");
assert_eq!(h.finish(), 13816693401637061492);
```
"#]
    Hasher64_2,
    Hash64_2
);

/// `MetroHash` 128-bit hash functions
///
/// # Example
///
/// ```
/// use fasthash::{metro::Hash128_1, FastHash};
///
/// assert_eq!(
///     Hash128_1::hash(b"hello"),
///     62770881785623818170589043281119530380
/// );
/// assert_eq!(
///     Hash128_1::hash_with_seed(b"hello", 123),
///     236398782770453314983179012253900189052
/// );
/// assert_eq!(
///     Hash128_1::hash(b"helloworld"),
///     168124756093089300765778527570074281113
/// );
/// ```
pub struct Hash128_1;

impl FastHash for Hash128_1 {
    type Hash = u128;
    type Seed = u32;

    #[inline(always)]
    fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u128 {
        let mut hash = 0;

        unsafe {
            ffi::metrohash128_1(
                bytes.as_ref().as_ptr() as *const u8,
                bytes.as_ref().len() as u64,
                seed,
                &mut hash as *mut u128 as *mut u8,
            );
        }

        hash
    }
}

impl_hasher_ext!(
    #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::Hasher128_1, FastHasher, HasherExt};

let mut h = Hasher128_1::new();

h.write(b"hello");
assert_eq!(h.finish_ext(), 62770881785623818170589043281119530380);

h.write(b"world");
assert_eq!(h.finish_ext(), 168124756093089300765778527570074281113);
```
"#]
    Hasher128_1,
    Hash128_1
);

/// `MetroHash` 128-bit hash functions
///
/// # Example
///
/// ```
/// use fasthash::{metro::Hash128_2, FastHash};
///
/// assert_eq!(
///     Hash128_2::hash(b"hello"),
///     159488125173835797791070285137966695505
/// );
/// assert_eq!(
///     Hash128_2::hash_with_seed(b"hello", 123),
///     337702340004473994826279129255403855211
/// );
/// assert_eq!(
///     Hash128_2::hash(b"helloworld"),
///     296295343271043311657399689121923046467
/// );
/// ```
pub struct Hash128_2;

impl FastHash for Hash128_2 {
    type Hash = u128;
    type Seed = u32;

    #[inline(always)]
    fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u128 {
        let mut hash = 0;

        unsafe {
            ffi::metrohash128_2(
                bytes.as_ref().as_ptr() as *const u8,
                bytes.as_ref().len() as u64,
                seed,
                &mut hash as *mut u128 as *mut u8,
            );
        }

        hash
    }
}

impl_hasher_ext!(
    #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::Hasher128_2, FastHasher, HasherExt};

let mut h = Hasher128_2::new();

h.write(b"hello");
assert_eq!(h.finish_ext(), 159488125173835797791070285137966695505);

h.write(b"world");
assert_eq!(h.finish_ext(), 296295343271043311657399689121923046467);
```
"#]
    Hasher128_2,
    Hash128_2
);

/// hash functions using HW CRC instruction.
#[cfg(any(feature = "sse42", target_feature = "sse4.2"))]
pub mod crc {
    use crate::FastHash;

    /// `MetroHash` 64-bit hash functions using HW CRC instruction.
    ///
    /// # Example
    ///
    /// ```
    /// use fasthash::{metro::crc::Hash64_1, FastHash};
    ///
    /// assert_eq!(Hash64_1::hash(b"hello"), 6455825309044375053);
    /// assert_eq!(
    ///     Hash64_1::hash_with_seed(b"hello", 123),
    ///     18102990158604115936
    /// );
    /// assert_eq!(Hash64_1::hash(b"helloworld"), 15512397028293617890);
    /// ```
    pub struct Hash64_1;

    impl FastHash for Hash64_1 {
        type Hash = u64;
        type Seed = u32;

        #[inline(always)]
        fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u64 {
            let mut hash = 0_u64;

            unsafe {
                ffi::metrohash64crc_1(
                    bytes.as_ref().as_ptr() as *const u8,
                    bytes.as_ref().len() as u64,
                    seed,
                    &mut hash as *mut u64 as *mut u8,
                );
            }

            hash
        }
    }

    impl_hasher!(
        #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::crc::Hasher64_1, FastHasher};

let mut h = Hasher64_1::new();

h.write(b"hello");
assert_eq!(h.finish(), 6455825309044375053);

h.write(b"world");
assert_eq!(h.finish(), 15512397028293617890);
```
"#]
        Hasher64_1,
        Hash64_1
    );

    /// `MetroHash` 64-bit hash functions using HW CRC instruction.
    ///
    /// # Example
    ///
    /// ```
    /// use fasthash::{metro::crc::Hash64_2, FastHash};
    ///
    /// assert_eq!(Hash64_2::hash(b"hello"), 6093890398749886132);
    /// assert_eq!(
    ///     Hash64_2::hash_with_seed(b"hello", 123),
    ///     14600198876970659356
    /// );
    /// assert_eq!(Hash64_2::hash(b"helloworld"), 11309399771810154329);
    /// ```
    pub struct Hash64_2;

    impl FastHash for Hash64_2 {
        type Hash = u64;
        type Seed = u32;

        #[inline(always)]
        fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u64 {
            let mut hash = 0_u64;

            unsafe {
                ffi::metrohash64crc_2(
                    bytes.as_ref().as_ptr() as *const u8,
                    bytes.as_ref().len() as u64,
                    seed,
                    &mut hash as *mut u64 as *mut u8,
                );
            }

            hash
        }
    }

    impl_hasher!(
        #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::crc::Hasher64_2, FastHasher};

let mut h = Hasher64_2::new();

h.write(b"hello");
assert_eq!(h.finish(), 6093890398749886132);

h.write(b"world");
assert_eq!(h.finish(), 11309399771810154329);
```
"#]
        Hasher64_2,
        Hash64_2
    );

    /// `MetroHash` 128-bit hash functions using HW CRC instruction.
    ///
    /// # Example
    ///
    /// ```
    /// use fasthash::{metro::crc::Hash128_1, FastHash};
    ///
    /// assert_eq!(
    ///     Hash128_1::hash(b"hello"),
    ///     305698986830952061993175238670398112766
    /// );
    /// assert_eq!(
    ///     Hash128_1::hash_with_seed(b"hello", 123),
    ///     40960144468149132188388779584576370723
    /// );
    /// assert_eq!(
    ///     Hash128_1::hash(b"helloworld"),
    ///     330807979290440384643858402038145360287
    /// );
    /// ```
    pub struct Hash128_1;

    impl FastHash for Hash128_1 {
        type Hash = u128;
        type Seed = u32;

        #[inline(always)]
        fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u128 {
            let mut hash = 0;

            unsafe {
                ffi::metrohash128crc_1(
                    bytes.as_ref().as_ptr() as *const u8,
                    bytes.as_ref().len() as u64,
                    seed,
                    &mut hash as *mut u128 as *mut u8,
                );
            }

            hash
        }
    }

    impl_hasher_ext!(
        #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::crc::Hasher128_1, FastHasher, HasherExt};

let mut h = Hasher128_1::new();

h.write(b"hello");
assert_eq!(h.finish_ext(), 305698986830952061993175238670398112766);

h.write(b"world");
assert_eq!(h.finish_ext(), 330807979290440384643858402038145360287);
```
"#]
        Hasher128_1,
        Hash128_1
    );

    /// `MetroHash` 128-bit hash functions using HW CRC instruction.
    ///
    /// # Example
    ///
    /// ```
    /// use fasthash::{metro::crc::Hash128_2, FastHash};
    ///
    /// assert_eq!(
    ///     Hash128_2::hash(b"hello"),
    ///     72185604606880289212099011688929773703
    /// );
    /// assert_eq!(
    ///     Hash128_2::hash_with_seed(b"hello", 123),
    ///     306081561649455538136824300998603678168
    /// );
    /// assert_eq!(
    ///     Hash128_2::hash(b"helloworld"),
    ///     332348429832512530891646387991260171468
    /// );
    /// ```
    pub struct Hash128_2;

    impl FastHash for Hash128_2 {
        type Hash = u128;
        type Seed = u32;

        #[inline(always)]
        fn hash_with_seed<T: AsRef<[u8]>>(bytes: T, seed: u32) -> u128 {
            let mut hash = 0;

            unsafe {
                ffi::metrohash128crc_2(
                    bytes.as_ref().as_ptr() as *const u8,
                    bytes.as_ref().len() as u64,
                    seed,
                    &mut hash as *mut u128 as *mut u8,
                );
            }

            hash
        }
    }

    impl_hasher_ext!(
        #[doc = r#"
# Example

```
use std::hash::Hasher;

use fasthash::{metro::crc::Hasher128_2, FastHasher, HasherExt};

let mut h = Hasher128_2::new();

h.write(b"hello");
assert_eq!(h.finish_ext(), 72185604606880289212099011688929773703);

h.write(b"world");
assert_eq!(h.finish_ext(), 332348429832512530891646387991260171468);
```
"#]
        Hasher128_2,
        Hash128_2
    );
}

cfg_if! {
    if #[cfg(any(feature = "sse42", target_feature = "sse4.2"))] {
        /// `MetroHash` 64-bit hash function for a byte array using HW CRC instruction.
        #[inline(always)]
        pub fn hash64<T: AsRef<[u8]>>(v: T) -> u64 {
            crc::Hash64_1::hash(v)
        }

        /// `MetroHash` 64-bit hash function for a byte array using HW CRC instruction.
        /// For convenience, a 64-bit seed is also hashed into the result.
        #[inline(always)]
        pub fn hash64_with_seed<T: AsRef<[u8]>>(v: T, seed: u32) -> u64 {
            crc::Hash64_1::hash_with_seed(v, seed)
        }

        /// `MetroHash` 128-bit hash function for a byte array using HW CRC instruction.
        #[inline(always)]
        pub fn hash128<T: AsRef<[u8]>>(v: T) -> u128 {
            crc::Hash128_1::hash(v)
        }

        /// `MetroHash` 128-bit hash function for a byte array. using HW CRC instruction.
        /// For convenience, a 128-bit seed is also hashed into the result.
        #[inline(always)]
        pub fn hash128_with_seed<T: AsRef<[u8]>>(v: T, seed: u32) -> u128 {
            crc::Hash128_1::hash_with_seed(v, seed)
        }
    } else {
        /// `MetroHash` 64-bit hash function for a byte array.
        #[inline(always)]
        pub fn hash64<T: AsRef<[u8]>>(v: T) -> u64 {
            Hash64_1::hash(v)
        }

        /// `MetroHash` 64-bit hash function for a byte array.
        /// For convenience, a 64-bit seed is also hashed into the result.
        #[inline(always)]
        pub fn hash64_with_seed<T: AsRef<[u8]>>(v: T, seed: u32) -> u64 {
            Hash64_1::hash_with_seed(v, seed)
        }

        /// `MetroHash` 128-bit hash function for a byte array.
        #[inline(always)]
        pub fn hash128<T: AsRef<[u8]>>(v: T) -> u128 {
            Hash128_1::hash(v)
        }

        /// `MetroHash` 128-bit hash function for a byte array.
        /// For convenience, a 128-bit seed is also hashed into the result.
        #[inline(always)]
        pub fn hash128_with_seed<T: AsRef<[u8]>>(v: T, seed: u32) -> u128 {
            Hash128_1::hash_with_seed(v, seed)
        }
    }
}