blob: 44a4061517dd3b1d5c111bd78ee433cb301eee5f (
plain)
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
|
use std::{
cell::RefCell,
convert::TryInto,
io::{self, Write},
};
use gix_features::zlib::stream::deflate;
use crate::Sink;
impl Sink {
/// Enable or disable compression. Compression is disabled by default
pub fn compress(mut self, enable: bool) -> Self {
if enable {
self.compressor = Some(RefCell::new(deflate::Write::new(io::sink())));
} else {
self.compressor = None;
}
self
}
}
impl crate::traits::Write for Sink {
type Error = io::Error;
fn write_stream(
&self,
kind: gix_object::Kind,
size: u64,
mut from: impl io::Read,
) -> Result<gix_hash::ObjectId, Self::Error> {
let mut size = size.try_into().expect("object size to fit into usize");
let mut buf = [0u8; 8096];
let header = gix_object::encode::loose_header(kind, size);
let possibly_compress = |buf: &[u8]| -> io::Result<()> {
if let Some(compressor) = self.compressor.as_ref() {
compressor.try_borrow_mut().expect("no recursion").write_all(buf)?;
}
Ok(())
};
let mut hasher = gix_features::hash::hasher(self.object_hash);
hasher.update(&header);
possibly_compress(&header)?;
while size != 0 {
let bytes = size.min(buf.len());
from.read_exact(&mut buf[..bytes])?;
hasher.update(&buf[..bytes]);
possibly_compress(&buf[..bytes])?;
size -= bytes;
}
if let Some(compressor) = self.compressor.as_ref() {
let mut c = compressor.borrow_mut();
c.flush()?;
c.reset();
}
Ok(hasher.digest().into())
}
}
|