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
//! CRC32C implementation with support for CPU-specific acceleration instructions (SSE 4.2)
//! and software fallback
//!
//! [![crates.io](https://img.shields.io/crates/v/crc32c-hw.svg)]
//! (https://crates.io/crates/crc32c-hw)
//! [![Build Status](https://travis-ci.org/maksimsco/crc32c-hw.svg?branch=master)]
//! (https://travis-ci.org/maksimsco/crc32c-hw)
//!
//! [Documentation](https://docs.rs/crc32c-hw)
//!
//! ## Usage
//!
//! To use `crc32c-hw`, add this to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! crc32c-hw = "0.1.2"
//! ```
//!
//! ## Example
//!
//! ```no_run
//! extern crate crc32c_hw;
//!
//! let mut crc = 0;
//! crc = crc32c_hw::update(crc, b"123");
//! crc = crc32c_hw::update(crc, b"456");
//! crc = crc32c_hw::update(crc, b"789");
//! assert_eq!(crc, 0xe3069283);
//!
//! assert_eq!(crc32c_hw::compute(b"123456789"), 0xe3069283);
//! ```
//!
//! The easiest way to build binaries with CPU-specific instructions support is via
//! environment variable:
//!
//! ```bash
//! RUSTFLAGS="-C target_cpu=native" cargo build --release
//! ```
//!
//! ## Performance
//!
//! `cargo bench` on `MacBook Pro Intel Core i5 2,7 GHz` results in `~23.0 GBps` (hardware) /
//! `~2.5 GBps` (software) throughput.
//!
//! ```bash
//! test crc32c_hw::tests::crc_0_065_000 ... bench:       2,808 ns/iter (+/- 398)
//! test crc32c_hw::tests::crc_1_000_000 ... bench:      41,915 ns/iter (+/- 6,100)
//! test crc32c_sw::tests::crc_0_065_000 ... bench:      25,686 ns/iter (+/- 19,423)
//! test crc32c_sw::tests::crc_1_000_000 ... bench:     384,286 ns/iter (+/- 53,529)
//! ```
#![allow(unused_attributes)]
#![feature(cfg_target_feature, custom_attribute, link_llvm_intrinsics, test)]
#![no_std]
#[cfg(not(feature = "no-stdlib"))]
#[macro_use]
extern crate std;
#[cfg(test)]
extern crate rand;
extern crate stdsimd;
#[cfg(test)]
extern crate test;
#[cfg(target_feature = "sse4.2")]
mod crc32c_hw;
#[cfg(target_feature = "sse4.2")]
mod crc32c_hw_consts;
#[allow(dead_code)]
mod crc32c_sw;
#[allow(dead_code)]
mod crc32c_sw_consts;
use crc32c_implementation::*;
#[cfg(not(feature = "no-stdlib"))]
pub use stdlib_implementation::*;


#[cfg(not(feature = "no-stdlib"))]
mod stdlib_implementation {
  use super::*;
  use std::hash::Hasher;

  /// Implements `Hasher` trait and usually represent state that is changed while hashing data.
  ///
  /// ## Example
  /// ```no_run
  /// use crc32c_hw::Digest;
  /// use std::hash::Hasher;
  ///
  /// let mut s = Digest::new(0);
  /// s.write(b"123");
  /// s.write(b"456");
  /// s.write(b"789");
  ///
  /// assert_eq!(s.finish(), 0xe3069283);
  /// ```
  #[derive(Debug, Default, Copy, Clone, PartialEq, Eq)]
  pub struct Digest(u32);

  impl Digest {
    /// Creates new digest with CRC32C value.
    pub fn new(crc: u32) -> Digest {
      Digest(crc)
    }
  }

  impl Hasher for Digest {
    #[inline]
    fn write(&mut self, buf: &[u8]) {
      self.0 = crc32c_update(self.0, buf);
    }

    #[inline]
    fn finish(&self) -> u64 {
      u64::from(self.0)
    }
  }
}

/// Computes the CRC32C for the data.
pub fn compute<T>(buf: T) -> u32
where
  T: AsRef<[u8]>,
{
  crc32c_update(0, buf)
}

/// Computes the CRC32C for the data, starting with a previous CRC32C value.
pub fn update<T>(crc: u32, buf: T) -> u32
where
  T: AsRef<[u8]>,
{
  crc32c_update(crc, buf)
}

#[cfg(target_feature = "sse4.2")]
mod crc32c_implementation {
  use super::*;

  #[inline]
  pub fn crc32c_update<T>(crc: u32, buf: T) -> u32
  where
    T: AsRef<[u8]>,
  {
    crc32c_hw::crc32c_update(crc, buf)
  }
}

#[cfg(not(target_feature = "sse4.2"))]
mod crc32c_implementation {
  use super::*;

  #[inline]
  pub fn crc32c_update<T>(crc: u32, buf: T) -> u32
  where
    T: AsRef<[u8]>,
  {
    crc32c_sw::crc32c_update(crc, buf)
  }
}


#[cfg(all(test, not(feature = "no-stdlib"), target_feature = "sse4.2"))]
mod tests {
  use super::*;
  use rand::{OsRng, Rng};

  macro_rules! compare_test {
    (iterations=$iterations:expr, min=$min:expr, max=$max:expr) => ({
      let mut rng = OsRng::new().expect("rng");

      for _ in 0..$iterations {
        let mut buf = vec![0u8; rng.gen_range($min, $max)];
        rng.fill_bytes(&mut buf);

        let crc = rng.gen();
        let crc_hw = crc32c_hw::crc32c_update(crc, &buf);
        let crc_sw = crc32c_sw::crc32c_update(crc, &buf);

        assert_eq!(crc_hw, crc_sw);
      }
    })
  }

  #[test]
  fn compare_hw_and_sw() {
    compare_test!(iterations = 9000, min = 0, max = 430);
    compare_test!(iterations = 4000, min = 0, max = 3900);
    compare_test!(iterations = 1000, min = 0, max = 65000);
  }
}