mtzip

Crates.iomtzip
lib.rsmtzip
version4.0.0
sourcesrc
created_at2022-08-15 16:56:48.462706
updated_at2024-11-27 02:37:40.658245
descriptionA library for making zip archives with multithreaded compression
homepage
repositoryhttps://github.com/JohnTheCoolingFan/mtzip
max_upload_size
id646033
size58,276
(JohnTheCoolingFan)

documentation

https://docs.rs/mtzip

README

crates.io crates.io

mtzip

MTZIP (Stands for Multi-Threaded ZIP) is a library for making zip archives while utilising all available performance available with multithreading. The amount of threads can be limited by the user or detected automatically.

Example usage:

use mtzip::ZipArchive;

// Creating the zipper that holds data and handles compression
let mut zipper = ZipArchive::new();

// Adding a file from filesystem
zipper.add_file_from_fs(
    Path::new("input/test_text_file.txt"),
    "test_text_file.txt".to_owned(),
);

// Adding a file with data from a memory location
zipper.add_file_from_memory(b"Hello, world!", "hello_world.txt".to_owned());

// Adding a directory and a file to it
zipper.add_directory("test_dir".to_owned());
zipper.add_file_from_fs(
    Path::new("input/file_that_goes_to_a_dir.txt"),
    "test_dir/file_that_goes_to_a_dir.txt".to_owned(),
);

// Writing to a file
// First, open the file
let mut file = File::create("output.zip").unwrap();
// Then, write to it
zipper.write(&mut file); // Amount of threads is chosen automatically

The amount of threads is also determined by the amount of files that are going to be compressed. Because Deflate compression cannot be multithreaded, the multithreading is achieved by having the files compressed individually. This means that if you have 12 threads available but only 6 files being added to the archive, you will only use 6 threads.

Rayon

This crate also supports rayon for thread management and parallelism, enabled with rayon feature.

Crate features

  • rust_backend - enables flate2/rust_backend feature, enabled by default
  • zlib - enables flate2/zlib feature
  • rayon - enables rayon support
  • wasi_fs - enabled use of WASI filesistem metadata extensions
Commit count: 89

cargo fmt