use std::io;
pub struct Lz4BlockCompressor;
const MARKER: u8 = 0x4C;
const ALGO_STORED: u8 = 0x00;
const ALGO_LZ4: u8 = 0x01;
const HEADER_LEN: usize = 1 + 1 + 4;
impl Lz4BlockCompressor {
pub fn new() -> Self {
Self
}
pub fn compress(&self, block: &[u8]) -> Vec<u8> {
let compressed = lz4_flex::compress(block);
let mut out = Vec::with_capacity(HEADER_LEN + compressed.len().max(block.len()));
out.push(MARKER);
if compressed.len() < block.len() {
out.push(ALGO_LZ4);
out.extend_from_slice(&(block.len() as u32).to_be_bytes());
out.extend_from_slice(&compressed);
} else {
out.push(ALGO_STORED);
out.extend_from_slice(&(block.len() as u32).to_be_bytes());
out.extend_from_slice(block);
}
out
}
pub fn decompress(&self, buf: &[u8]) -> io::Result<Vec<u8>> {
if buf.len() < HEADER_LEN {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"lz4 block: too short",
));
}
if buf[0] != MARKER {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"lz4 block: bad marker",
));
}
let algo = buf[1];
let uncomp_len = u32::from_be_bytes(buf[2..6].try_into().unwrap()) as usize;
let payload = &buf[HEADER_LEN..];
match algo {
ALGO_STORED => {
if payload.len() != uncomp_len {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"lz4 block: stored payload size mismatch",
));
}
Ok(payload.to_vec())
}
ALGO_LZ4 => lz4_flex::decompress(payload, uncomp_len).map_err(|e| {
io::Error::new(io::ErrorKind::InvalidData, format!("lz4 decode: {e}"))
}),
other => Err(io::Error::new(
io::ErrorKind::InvalidData,
format!("lz4 block: unknown algo byte 0x{other:02x}"),
)),
}
}
}
impl Default for Lz4BlockCompressor {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
#[path = "lz4_tests.rs"]
mod tests;