#codec #compressor #dict #line #io #serbzip #meta-lingual

serbzip-core

A quasi-lossless Balkanoidal meta-lingual compressor

6 releases (breaking)

0.10.0 Aug 15, 2022
0.9.0 Aug 15, 2022
0.8.0 Aug 15, 2022
0.7.0 Aug 15, 2022
0.5.0 Aug 14, 2022

#11 in #compressor

Download history 3/week @ 2024-02-22 3/week @ 2024-02-29 44/week @ 2024-03-07 18/week @ 2024-03-14

68 downloads per month
Used in serbzip

MIT license

67KB
1.5K SLoC

serbzip-core

The library package for serb.zip.

Crates.io docs.rs Build Status codecov

Getting started

Add dependency

cargo add serbzip-core

Compress and decompress some text

We'll use the Balkanoid codec for this example.

The sample code assumes we have ../dict.blk and ../test_data/antigonish.txt to play with.

use std::fs::File;
use std::io;
use std::io::BufReader;
use serbzip_core::codecs::balkanoid::{Balkanoid, Dict};
use serbzip_core::codecs::Codec;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // this codec needs a dictionary to work from
    let mut dict_reader = BufReader::new(File::open("../dict.blk")?);
    let dict = Dict::read_from_binary_image(&mut dict_reader)?;
    let codec = Balkanoid::new(&dict);

    // compress a line and check the output
    let input_line = "Ah, distinctly I remember it was in the bleak December";
    let compressed_line = codec.compress_line(input_line);
    assert_eq!(compressed_line, "H, dstnctly I rmmbr  t ws  n th   blk Dcmbr");

    // expand the line; check that it matches the original
    let expanded_line = codec.expand_line(&compressed_line)?;
    assert_eq!(input_line, expanded_line);

    // codecs also have helper methods for parsing I/O streams
    let mut input_reader = BufReader::new(File::open("../test_data/antigonish.txt")?);
    let mut output_writer = io::Cursor::new(Vec::new());
    codec.compress(&mut input_reader, &mut output_writer)?;
    let compressed_document = String::from_utf8(output_writer.into_inner())?;
    assert_ne!("", compressed_document);
    
    Ok(())
}

Dependencies

~255KB