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
use std::marker;
use std::mem;
use libc::{c_int, c_uint};
use Compression;
use ffi;
pub struct Stream<D: Direction> {
raw: ffi::mz_stream,
_marker: marker::PhantomData<D>,
}
unsafe impl<D: Direction> marker::Send for Stream<D> {}
unsafe impl<D: Direction> marker::Sync for Stream<D> {}
pub enum Compress {}
pub enum Decompress {}
pub enum Flush {
None = ffi::MZ_NO_FLUSH as isize,
Sync = ffi::MZ_SYNC_FLUSH as isize,
Partial = ffi::MZ_PARTIAL_FLUSH as isize,
Block = ffi::MZ_BLOCK as isize,
Full = ffi::MZ_FULL_FLUSH as isize,
Finish = ffi::MZ_FINISH as isize,
}
#[doc(hidden)]
pub trait Direction {
unsafe fn destroy(stream: *mut ffi::mz_stream) -> c_int;
}
impl Stream<Compress> {
pub fn new_compress(lvl: Compression, raw: bool) -> Stream<Compress> {
unsafe {
let mut state: ffi::mz_stream = mem::zeroed();
let ret = ffi::mz_deflateInit2(&mut state,
lvl as c_int,
ffi::MZ_DEFLATED,
if raw {
-ffi::MZ_DEFAULT_WINDOW_BITS
} else {
ffi::MZ_DEFAULT_WINDOW_BITS
},
9,
ffi::MZ_DEFAULT_STRATEGY);
debug_assert_eq!(ret, 0);
Stream {
raw: state,
_marker: marker::PhantomData,
}
}
}
pub fn new_decompress(raw: bool) -> Stream<Decompress> {
unsafe {
let mut state: ffi::mz_stream = mem::zeroed();
let ret = ffi::mz_inflateInit2(&mut state,
if raw {
-ffi::MZ_DEFAULT_WINDOW_BITS
} else {
ffi::MZ_DEFAULT_WINDOW_BITS
});
debug_assert_eq!(ret, 0);
Stream {
raw: state,
_marker: marker::PhantomData,
}
}
}
}
impl<T: Direction> Stream<T> {
pub fn total_in(&self) -> u64 {
self.raw.total_in as u64
}
pub fn total_out(&self) -> u64 {
self.raw.total_out as u64
}
}
impl Stream<Decompress> {
pub fn decompress(&mut self,
input: &[u8],
output: &mut [u8],
flush: Flush)
-> c_int {
self.raw.next_in = input.as_ptr() as *mut u8;
self.raw.avail_in = input.len() as c_uint;
self.raw.next_out = output.as_mut_ptr();
self.raw.avail_out = output.len() as c_uint;
unsafe { ffi::mz_inflate(&mut self.raw, flush as c_int) }
}
pub fn decompress_vec(&mut self,
input: &[u8],
output: &mut Vec<u8>,
flush: Flush)
-> c_int {
let cap = output.capacity();
let len = output.len();
self.raw.avail_in = input.len() as c_uint;
self.raw.next_in = input.as_ptr() as *mut _;
self.raw.avail_out = (cap - len) as c_uint;
unsafe {
self.raw.next_out = output.as_mut_ptr().offset(len as isize);
let before = self.total_out();
let rc = ffi::mz_inflate(&mut self.raw, flush as c_int);
let diff = (self.total_out() - before) as usize;
output.set_len(len + diff);
return rc;
}
}
}
impl Stream<Compress> {
pub fn compress(&mut self,
input: &[u8],
output: &mut [u8],
flush: Flush)
-> c_int {
self.raw.next_in = input.as_ptr() as *mut _;
self.raw.avail_in = input.len() as c_uint;
self.raw.next_out = output.as_mut_ptr();
self.raw.avail_out = output.len() as c_uint;
unsafe { ffi::mz_deflate(&mut self.raw, flush as c_int) }
}
pub fn compress_vec(&mut self,
input: &[u8],
output: &mut Vec<u8>,
flush: Flush)
-> c_int {
let cap = output.capacity();
let len = output.len();
self.raw.avail_in = input.len() as c_uint;
self.raw.next_in = input.as_ptr() as *mut _;
self.raw.avail_out = (cap - len) as c_uint;
unsafe {
self.raw.next_out = output.as_mut_ptr().offset(len as isize);
let before = self.total_out();
let rc = ffi::mz_deflate(&mut self.raw, flush as c_int);
let diff = (self.total_out() - before) as usize;
output.set_len(len + diff);
return rc;
}
}
pub fn reset(&mut self) -> c_int {
unsafe { ffi::mz_deflateReset(&mut self.raw) }
}
}
impl Direction for Compress {
unsafe fn destroy(stream: *mut ffi::mz_stream) -> c_int {
ffi::mz_deflateEnd(stream)
}
}
impl Direction for Decompress {
unsafe fn destroy(stream: *mut ffi::mz_stream) -> c_int {
ffi::mz_inflateEnd(stream)
}
}
impl<D: Direction> Drop for Stream<D> {
fn drop(&mut self) {
unsafe {
let _ = <D as Direction>::destroy(&mut self.raw);
}
}
}