1 unstable release
0.2.0 | Feb 16, 2024 |
---|
#504 in Compression
29 downloads per month
Used in mca
58KB
1.5K
SLoC
lz4-java-wrc
This is a fork of lz4jb
that accepts the writer as a pointer instead of consuming it.
A streaming compression/decompression library which implements the LZ4BlockOutputStream
format from lz4-java.
Beware: this format is not compatible with the standard LZ4 Block format. The Minecraft 1.20.5 lz4 chunk compression format is an example of a place this is used.
This repository contains:
lz4_java_wrc
: a library which implements theRead
andWrite
traits,
Usage
Add this to your Cargo.toml:
[dependencies]
lz4-java-wrc = "0.2.0"
Compression
Lz4BlockOutput
is a wrapper around a type which implements the Write
trait.
use lz4_java_wrc::Lz4BlockOutput;
use std::io::Write;
fn main() -> std::io::Result<()> {
let mut output = Vec::new(); // Vec<u8> implements the Write trait
Lz4BlockOutput::new(&mut output, 64)?
.write_all("...".as_bytes())?;
println!("{:?}", output);
Ok(())
}
Decompression
Lz4BlockInput
is a wrapper around a type which implements the Read
trait.
use lz4_java_wrc::Lz4BlockInput;
use std::io::Read;
const D: [u8; 24] = [
76, 90, 52, 66, 108, 111, 99, 107, 16, 3, 0, 0, 0, 3, 0, 0, 0, 82, 228, 119, 6, 46, 46, 46,
];
fn main() -> std::io::Result<()> {
let mut output = String::new();
Lz4BlockInput::new(&D[..]) // &[u8] implements the Read trait
.read_to_string(&mut output)?;
println!("{}", output);
Ok(())
}
License
See the LICENCE file.
Dependencies
~150–500KB