gix-odb 0.83.0

Implements various git object databases
Documentation
use std::{
    cell::RefCell,
    io::{self, Write},
};

use gix_zlib::stream::deflate;

use crate::Sink;

impl Sink {
    /// Compress with the given level, or disable compression with `None`. Compression is disabled by default.
    pub fn compress(mut self, compression: Option<gix_zlib::Compression>) -> Self {
        self.compressor = compression.map(|level| RefCell::new(deflate::Write::new(io::sink(), level)));
        self
    }
}

impl gix_object::Write for Sink {
    fn write_buf_with_known_id(
        &self,
        kind: gix_object::Kind,
        mut from: &[u8],
        id: gix_hash::ObjectId,
    ) -> Result<gix_hash::ObjectId, gix_object::write::Error> {
        self.write_stream_with_known_id(kind, from.len() as u64, &mut from, id)
    }

    fn write_stream(
        &self,
        kind: gix_object::Kind,
        mut size: u64,
        from: &mut dyn io::Read,
    ) -> Result<gix_hash::ObjectId, gix_object::write::Error> {
        let mut buf = [0u8; u16::MAX as usize];
        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_hash::hasher(self.object_hash);
        hasher.update(&header);
        possibly_compress(&header).map_err(Box::new)?;

        while size != 0 {
            let bytes = (size as usize).min(buf.len());
            from.read_exact(&mut buf[..bytes]).map_err(Box::new)?;
            hasher.update(&buf[..bytes]);
            possibly_compress(&buf[..bytes]).map_err(Box::new)?;
            size -= bytes as u64;
        }
        if let Some(compressor) = self.compressor.as_ref() {
            let mut c = compressor.borrow_mut();
            c.flush().map_err(Box::new)?;
            c.reset();
        }

        Ok(hasher.try_finalize()?)
    }

    fn write_stream_with_known_id(
        &self,
        kind: gix_object::Kind,
        mut size: u64,
        from: &mut dyn io::Read,
        id: gix_hash::ObjectId,
    ) -> Result<gix_hash::ObjectId, gix_object::write::Error> {
        let mut buf = [0u8; u16::MAX as usize];
        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(())
        };

        possibly_compress(&header).map_err(Box::new)?;

        while size != 0 {
            let bytes = (size as usize).min(buf.len());
            from.read_exact(&mut buf[..bytes]).map_err(Box::new)?;
            possibly_compress(&buf[..bytes]).map_err(Box::new)?;
            size -= bytes as u64;
        }
        if let Some(compressor) = self.compressor.as_ref() {
            let mut c = compressor.borrow_mut();
            c.flush().map_err(Box::new)?;
            c.reset();
        }

        Ok(id)
    }
}