compcol 0.4.1

A no_std collection of compression algorithms behind a uniform streaming trait, gated per-algorithm by Cargo features.
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
//! `std::io::Read` / `std::io::Write` adapters around any
//! [`Encoder`]/[`Decoder`].
//!
//! Four adapters, one per (direction × side):
//!
//! | Adapter           | Implements | Inner does       | Caller sees      |
//! |-------------------|------------|------------------|------------------|
//! | [`EncoderWriter`] | `Write`    | sinks bytes      | writes plaintext, inner gets compressed |
//! | [`EncoderReader`] | `Read`     | gives plaintext  | reads compressed |
//! | [`DecoderWriter`] | `Write`    | sinks bytes      | writes compressed, inner gets plaintext |
//! | [`DecoderReader`] | `Read`     | gives compressed | reads plaintext  |
//!
//! Each adapter has one `new(inner, codec)` constructor. The codec
//! comes from the algorithm: `Gzip::encoder()`, `Gzip::encoder_with(cfg)`,
//! `Gzip::decoder()`, etc.
//!
//! The two writer adapters call their codec's `finish` on `Drop` if not
//! already finished, swallowing any I/O or codec error. Call
//! [`EncoderWriter::finish`] / [`DecoderWriter::finish`] explicitly to
//! surface those errors.
//!
//! ```ignore
//! use std::io::Write;
//! use compcol::{Algorithm, gzip::Gzip, io::EncoderWriter};
//!
//! let file = std::fs::File::create("out.gz")?;
//! let mut w = EncoderWriter::new(file, Gzip::encoder());
//! w.write_all(b"hello, gzip\n")?;
//! let _file = w.finish()?;        // returns the inner File
//! ```

extern crate alloc;
extern crate std;

use alloc::vec;
use alloc::vec::Vec;
use std::io::{self, Read, Write};

use crate::{Decoder, Encoder, Status};

/// Per-call scratch buffer size. 64 KiB matches the CLI streaming
/// loop in `src/bin/compcol.rs` and is comfortably above the
/// minimum-output sizes of every algorithm in this crate.
const SCRATCH: usize = 64 * 1024;

// ─── EncoderWriter ──────────────────────────────────────────────────────

/// Wraps a `W: Write`, exposing a `Write` impl that compresses every
/// byte you write before forwarding it to `W`.
///
/// Call [`EncoderWriter::finish`] when you're done to drain the
/// encoder's tail bytes and recover the inner writer. If you drop
/// without calling `finish`, the destructor runs `finish` for you
/// but **discards any I/O or codec errors** — surface those by
/// calling `finish` explicitly.
pub struct EncoderWriter<W: Write, E: Encoder> {
    enc: E,
    // `Option` lets `finish` extract `W` by value without unsafe and
    // lets the `Drop` impl distinguish "already taken" (no-op) from
    // "still owned, must finish".
    inner: Option<W>,
    scratch: Vec<u8>,
    finished: bool,
}

impl<W: Write, E: Encoder> EncoderWriter<W, E> {
    /// Wrap `inner` with a caller-supplied encoder.
    pub fn new(inner: W, enc: E) -> Self {
        Self {
            enc,
            inner: Some(inner),
            scratch: vec![0u8; SCRATCH],
            finished: false,
        }
    }

    /// Borrow the inner writer.
    ///
    /// Panics if [`finish`](Self::finish) has already been called.
    pub fn get_ref(&self) -> &W {
        self.inner
            .as_ref()
            .expect("inner already taken by finish()")
    }

    /// Mutable-borrow the inner writer. Writing to it directly bypasses
    /// the encoder — use sparingly. Panics if `finish` has been called.
    pub fn get_mut(&mut self) -> &mut W {
        self.inner
            .as_mut()
            .expect("inner already taken by finish()")
    }

    /// Drain the encoder's tail bytes into the inner writer and return
    /// the (now-finished) inner writer.
    pub fn finish(mut self) -> io::Result<W> {
        self.do_finish()?;
        // Take ownership of the inner; Drop will see None and skip its
        // own finish pass.
        Ok(self
            .inner
            .take()
            .expect("inner present until finish() taken it"))
    }

    fn do_finish(&mut self) -> io::Result<()> {
        if self.finished {
            return Ok(());
        }
        let inner = match self.inner.as_mut() {
            Some(w) => w,
            None => return Ok(()),
        };
        loop {
            let (p, status) = self.enc.finish(&mut self.scratch)?;
            inner.write_all(&self.scratch[..p.written])?;
            if matches!(status, Status::StreamEnd) {
                break;
            }
            if p.written == 0 {
                return Err(io::Error::other("encoder stalled in finish"));
            }
        }
        self.finished = true;
        Ok(())
    }
}

impl<W: Write, E: Encoder> Write for EncoderWriter<W, E> {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        if self.finished {
            return Err(io::Error::other("encoder writer already finished"));
        }
        let inner = self
            .inner
            .as_mut()
            .ok_or_else(|| io::Error::other("encoder writer already finished"))?;
        let mut consumed = 0;
        while consumed < buf.len() {
            let (p, status) = self.enc.encode(&buf[consumed..], &mut self.scratch)?;
            inner.write_all(&self.scratch[..p.written])?;
            consumed += p.consumed;
            match status {
                Status::InputEmpty => break,
                Status::OutputFull => continue,
                Status::StreamEnd => break,
            }
        }
        Ok(consumed)
    }

    fn flush(&mut self) -> io::Result<()> {
        match self.inner.as_mut() {
            Some(w) => w.flush(),
            None => Ok(()),
        }
    }
}

impl<W: Write, E: Encoder> Drop for EncoderWriter<W, E> {
    fn drop(&mut self) {
        // Best-effort: errors here can't propagate. Call `finish()`
        // explicitly if you need to know.
        let _ = self.do_finish();
    }
}

// ─── EncoderReader ──────────────────────────────────────────────────────

/// Wraps an `R: Read`, exposing a `Read` impl that returns compressed
/// bytes. Pulls plaintext from `R` on demand and streams it through
/// the encoder.
///
/// `Read::read` returns 0 once the underlying reader is exhausted *and*
/// the encoder's tail has been fully drained — the natural EOF signal.
pub struct EncoderReader<R: Read, E: Encoder> {
    enc: E,
    inner: R,
    in_buf: Vec<u8>,
    in_filled: usize,
    in_consumed: usize,
    inner_eof: bool,
    finished: bool,
}

impl<R: Read, E: Encoder> EncoderReader<R, E> {
    pub fn new(inner: R, enc: E) -> Self {
        Self {
            enc,
            inner,
            in_buf: vec![0u8; SCRATCH],
            in_filled: 0,
            in_consumed: 0,
            inner_eof: false,
            finished: false,
        }
    }

    pub fn get_ref(&self) -> &R {
        &self.inner
    }
    pub fn get_mut(&mut self) -> &mut R {
        &mut self.inner
    }
    pub fn into_inner(self) -> R {
        self.inner
    }
}

impl<R: Read, E: Encoder> Read for EncoderReader<R, E> {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        if buf.is_empty() {
            return Ok(0);
        }
        loop {
            // If the encoder has any tail bytes still to emit, drain
            // them first (one chunk per call, per Read contract).
            if self.finished {
                return Ok(0);
            }
            // If we have buffered plaintext, push it through encode().
            if self.in_consumed < self.in_filled {
                let (p, status) = self
                    .enc
                    .encode(&self.in_buf[self.in_consumed..self.in_filled], buf)?;
                self.in_consumed += p.consumed;
                if p.written > 0 {
                    let _ = status;
                    return Ok(p.written);
                }
                // No output this round — either input was fully consumed
                // (refill below) or output is too small (impossible: buf
                // is the caller's slice, which they sized).
                if matches!(status, Status::OutputFull) {
                    // Caller's slice can't hold any output. Treat as 0.
                    return Ok(0);
                }
                // Fall through to refill.
            }
            // Try to refill from the inner reader.
            if !self.inner_eof {
                self.in_consumed = 0;
                self.in_filled = self.inner.read(&mut self.in_buf)?;
                if self.in_filled == 0 {
                    self.inner_eof = true;
                }
                continue;
            }
            // Inner exhausted; drain encoder's tail.
            let (p, status) = self.enc.finish(buf)?;
            if matches!(status, Status::StreamEnd) {
                self.finished = true;
            }
            if p.written > 0 {
                return Ok(p.written);
            }
            if self.finished {
                return Ok(0);
            }
            // Codec asked for more output room but caller's buf is fixed.
            // Return 0 so caller can supply more space; another finish()
            // tick will run next call.
            return Ok(0);
        }
    }
}

// ─── DecoderWriter ──────────────────────────────────────────────────────

/// Wraps a `W: Write`, exposing a `Write` impl that takes compressed
/// bytes, decompresses them, and forwards the plaintext to `W`.
pub struct DecoderWriter<W: Write, D: Decoder> {
    dec: D,
    inner: Option<W>,
    scratch: Vec<u8>,
    finished: bool,
}

impl<W: Write, D: Decoder> DecoderWriter<W, D> {
    pub fn new(inner: W, dec: D) -> Self {
        Self {
            dec,
            inner: Some(inner),
            scratch: vec![0u8; SCRATCH],
            finished: false,
        }
    }

    /// Panics if `finish` has already been called.
    pub fn get_ref(&self) -> &W {
        self.inner
            .as_ref()
            .expect("inner already taken by finish()")
    }
    /// Panics if `finish` has already been called.
    pub fn get_mut(&mut self) -> &mut W {
        self.inner
            .as_mut()
            .expect("inner already taken by finish()")
    }

    /// Finalise the decoder (decompressing any final bytes from the
    /// internal buffer) and return the inner writer.
    pub fn finish(mut self) -> io::Result<W> {
        self.do_finish()?;
        Ok(self
            .inner
            .take()
            .expect("inner present until finish() takes it"))
    }

    fn do_finish(&mut self) -> io::Result<()> {
        if self.finished {
            return Ok(());
        }
        let inner = match self.inner.as_mut() {
            Some(w) => w,
            None => return Ok(()),
        };
        loop {
            let (p, status) = self.dec.finish(&mut self.scratch)?;
            inner.write_all(&self.scratch[..p.written])?;
            if matches!(status, Status::StreamEnd) {
                break;
            }
            if p.written == 0 {
                return Err(io::Error::other("decoder stalled in finish"));
            }
        }
        self.finished = true;
        Ok(())
    }
}

impl<W: Write, D: Decoder> Write for DecoderWriter<W, D> {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        if self.finished {
            return Err(io::Error::other("decoder writer already finished"));
        }
        let inner = self
            .inner
            .as_mut()
            .ok_or_else(|| io::Error::other("decoder writer already finished"))?;
        let mut consumed = 0;
        while consumed < buf.len() {
            let (p, status) = self.dec.decode(&buf[consumed..], &mut self.scratch)?;
            inner.write_all(&self.scratch[..p.written])?;
            consumed += p.consumed;
            match status {
                Status::InputEmpty => break,
                Status::OutputFull => continue,
                Status::StreamEnd => break,
            }
        }
        Ok(consumed)
    }

    fn flush(&mut self) -> io::Result<()> {
        match self.inner.as_mut() {
            Some(w) => w.flush(),
            None => Ok(()),
        }
    }
}

impl<W: Write, D: Decoder> Drop for DecoderWriter<W, D> {
    fn drop(&mut self) {
        let _ = self.do_finish();
    }
}

// ─── DecoderReader ──────────────────────────────────────────────────────

/// Wraps an `R: Read`, exposing a `Read` impl that returns plaintext
/// bytes. Pulls compressed input from `R` on demand.
pub struct DecoderReader<R: Read, D: Decoder> {
    dec: D,
    inner: R,
    in_buf: Vec<u8>,
    in_filled: usize,
    in_consumed: usize,
    inner_eof: bool,
    finished: bool,
}

impl<R: Read, D: Decoder> DecoderReader<R, D> {
    pub fn new(inner: R, dec: D) -> Self {
        Self {
            dec,
            inner,
            in_buf: vec![0u8; SCRATCH],
            in_filled: 0,
            in_consumed: 0,
            inner_eof: false,
            finished: false,
        }
    }

    pub fn get_ref(&self) -> &R {
        &self.inner
    }
    pub fn get_mut(&mut self) -> &mut R {
        &mut self.inner
    }
    pub fn into_inner(self) -> R {
        self.inner
    }
}

impl<R: Read, D: Decoder> Read for DecoderReader<R, D> {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        if buf.is_empty() {
            return Ok(0);
        }
        loop {
            if self.finished {
                return Ok(0);
            }
            // Drain any buffered compressed input through decode() first.
            if self.in_consumed < self.in_filled {
                let (p, status) = self
                    .dec
                    .decode(&self.in_buf[self.in_consumed..self.in_filled], buf)?;
                self.in_consumed += p.consumed;
                if matches!(status, Status::StreamEnd) {
                    self.finished = true;
                }
                if p.written > 0 {
                    return Ok(p.written);
                }
                if matches!(status, Status::OutputFull) {
                    return Ok(0);
                }
                if self.finished {
                    return Ok(0);
                }
                // Otherwise: input fully consumed, no output this round —
                // refill.
            }
            // Refill if possible.
            if !self.inner_eof {
                self.in_consumed = 0;
                self.in_filled = self.inner.read(&mut self.in_buf)?;
                if self.in_filled == 0 {
                    self.inner_eof = true;
                }
                continue;
            }
            // No more bytes coming. Drain the decoder's tail.
            let (p, status) = self.dec.finish(buf)?;
            if matches!(status, Status::StreamEnd) {
                self.finished = true;
            }
            if p.written > 0 {
                return Ok(p.written);
            }
            return Ok(0);
        }
    }
}