lzma_rs/encode/
util.rs

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
use std::io;

// A Write computing a digest on the bytes written.
pub struct CrcDigestWrite<'a, 'b, W, S>
where
    W: 'a + io::Write,
    S: crc::Width,
{
    write: &'a mut W,                   // underlying writer
    digest: &'a mut crc::Digest<'b, S>, // hasher
}

impl<'a, 'b, W, S> CrcDigestWrite<'a, 'b, W, S>
where
    W: io::Write,
    S: crc::Width,
{
    pub fn new(write: &'a mut W, digest: &'a mut crc::Digest<'b, S>) -> Self {
        Self { write, digest }
    }
}

impl<'a, 'b, W> io::Write for CrcDigestWrite<'a, 'b, W, u32>
where
    W: io::Write,
{
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        let result = self.write.write(buf)?;
        self.digest.update(&buf[..result]);
        Ok(result)
    }
    fn flush(&mut self) -> io::Result<()> {
        self.write.flush()
    }
}

// A Write counting the bytes written.
pub struct CountWrite<'a, W>
where
    W: 'a + io::Write,
{
    write: &'a mut W, // underlying writer
    count: usize,     // number of bytes written
}

impl<'a, W> CountWrite<'a, W>
where
    W: io::Write,
{
    pub fn new(write: &'a mut W) -> Self {
        Self { write, count: 0 }
    }

    pub fn count(&self) -> usize {
        self.count
    }
}

impl<'a, W> io::Write for CountWrite<'a, W>
where
    W: io::Write,
{
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        let result = self.write.write(buf)?;
        self.count += result;
        Ok(result)
    }

    fn flush(&mut self) -> io::Result<()> {
        self.write.flush()
    }
}