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
#[cfg(feature = "deflate")]
use flate2::Crc;
#[cfg(feature = "any_zlib")]
use libz_sys::{uInt, uLong, z_off_t};
pub trait Check {
fn sum(&self) -> u32;
fn amount(&self) -> u32;
fn new() -> Self
where
Self: Sized;
fn update(&mut self, bytes: &[u8]);
fn combine(&mut self, other: &Self)
where
Self: Sized;
}
#[cfg(feature = "libdeflate")]
pub struct LibDeflateCrc {
crc: libdeflater::Crc,
amount: u32,
}
#[cfg(feature = "libdeflate")]
impl Check for LibDeflateCrc {
#[inline]
fn sum(&self) -> u32 {
self.crc.sum()
}
#[inline]
fn amount(&self) -> u32 {
self.amount
}
#[inline]
fn new() -> Self
where
Self: Sized,
{
Self {
crc: libdeflater::Crc::new(),
amount: 0,
}
}
#[inline]
fn update(&mut self, bytes: &[u8]) {
self.amount += bytes.len() as u32;
self.crc.update(bytes);
}
fn combine(&mut self, _other: &Self)
where
Self: Sized,
{
unimplemented!()
}
}
#[cfg(feature = "any_zlib")]
pub struct Adler32 {
sum: u32,
amount: u32,
}
#[cfg(feature = "any_zlib")]
impl Check for Adler32 {
#[inline]
fn sum(&self) -> u32 {
self.sum
}
#[inline]
fn amount(&self) -> u32 {
self.amount
}
#[inline]
fn new() -> Self {
let start = unsafe { libz_sys::adler32(0, std::ptr::null_mut(), 0) } as u32;
Self {
sum: start,
amount: 0,
}
}
#[inline]
fn update(&mut self, bytes: &[u8]) {
self.amount += bytes.len() as u32;
self.sum = unsafe {
libz_sys::adler32(
self.sum as uLong,
bytes.as_ptr() as *mut _,
bytes.len() as uInt,
)
} as u32;
}
#[inline]
fn combine(&mut self, other: &Self) {
self.sum = unsafe {
libz_sys::adler32_combine(
self.sum as uLong,
other.sum as uLong,
other.amount as z_off_t,
)
} as u32;
self.amount += other.amount;
}
}
#[cfg(feature = "deflate")]
pub struct Crc32 {
crc: Crc,
}
#[cfg(feature = "deflate")]
impl Check for Crc32 {
#[inline]
fn sum(&self) -> u32 {
self.crc.sum()
}
#[inline]
fn amount(&self) -> u32 {
self.crc.amount()
}
#[inline]
fn new() -> Self {
let crc = flate2::Crc::new();
Self { crc }
}
#[inline]
fn update(&mut self, bytes: &[u8]) {
self.crc.update(bytes);
}
#[inline]
fn combine(&mut self, other: &Self) {
self.crc.combine(&other.crc);
}
}
pub struct PassThroughCheck {}
#[allow(unused)]
impl Check for PassThroughCheck {
#[inline]
fn sum(&self) -> u32 {
0
}
#[inline]
fn amount(&self) -> u32 {
0
}
#[inline]
fn new() -> Self
where
Self: Sized,
{
Self {}
}
#[inline]
fn update(&mut self, bytes: &[u8]) {}
#[inline]
fn combine(&mut self, other: &Self)
where
Self: Sized,
{
}
}