#lzma #write #java

lzma-rust2

LZMA/LZMA2 codec ported from 'tukaani xz for java'

3 unstable releases

new 0.2.0 Mar 31, 2025
0.1.8 Feb 25, 2025
0.1.7 Feb 24, 2025

#406 in Compression

Download history 193/week @ 2025-02-19 251/week @ 2025-02-26 170/week @ 2025-03-05 88/week @ 2025-03-12 124/week @ 2025-03-19 105/week @ 2025-03-26

500 downloads per month
Used in sevenz-rust2

Apache-2.0

165KB
4K SLoC

Crate Documentation

LZMA/LZMA2 codec ported from tukaani xz for java.

This is a fork of the original, unmaintained lzma-rust crate to continue the development and maintenance.

Usage

lzma

use std::io::{Read, Write};
use lzma_rust2::*;

let s = b"Hello, world!";
let mut out = Vec::new();
let mut options = LZMA2Options::with_preset(6);
options.dict_size = LZMA2Options::DICT_SIZE_DEFAULT;

let mut w = LZMAWriter::new_use_header(CountingWriter::new( & mut out), & options, None).unwrap();
w.write_all(s).unwrap();
w.write( & []).unwrap();
let mut r = LZMAReader::new_mem_limit( & out[..], u32::MAX, None).unwrap();
let mut s2 = vec![0; s.len()];
r.read_exact( & mut s2).unwrap();
println!("{:?}", &out[..]);
assert_eq!(s, &s2[..]);

lzma2

use std::io::{Read, Write};
use lzma_rust2::*;

let s = b"Hello, world!";
let mut out = Vec::new();
let mut options = LZMA2Options::with_preset(6);
options.dict_size = LZMA2Options::DICT_SIZE_DEFAULT;
{
let mut w = LZMA2Writer::new(CountingWriter::new( & mut out), & options);
w.write_all(s).unwrap();
w.write( & []).unwrap();
}
let mut r = LZMA2Reader::new( & out[..], options.dict_size, None);
let mut s2 = vec![0; s.len()];
r.read_exact( & mut s2).unwrap();
println!("{:?}", &out[..]);
assert_eq!(s, &s2[..]);

Dependencies

~125KB