deflate/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
//! An implementation an encoder using [DEFLATE](http://www.gzip.org/zlib/rfc-deflate.html)
//! compression algorightm in pure rust.
//!
//! This library provides functions to compress data using the DEFLATE algorithm,
//! optionally wrapped using the [zlib](https://tools.ietf.org/html/rfc1950) or
//! [gzip](http://www.gzip.org/zlib/rfc-gzip.html) formats.
//! The current implementation is still a bit lacking speed-wise compared to C-libraries
//! like zlib and miniz.
//!
//! The deflate algorithm is an older compression algorithm that is still widely used today,
//! by e.g html headers, the `.png` inage format, the unix `gzip` program and commonly in `.zip`
//! files. The `zlib` and `gzip` formats are wrappers around DEFLATE-compressed data, containing
//! some extra metadata and a checksum to validate the integrity of the raw data.
//!
//! The deflate algorithm does not perform as well as newer algorhitms used in file formats such as
//! `.7z`, `.rar`, `.xz` and `.bz2`, and is thus not the ideal choice for applications where
//! the `DEFLATE` format (with or without wrappers) is not required.
//!
//! Support for the gzip wrapper (the wrapper that is used in `.gz` files) is disabled by default,
//! but can be enabled with the `gzip` feature.
//!
//! As this library is still in development, the compression output may change slightly
//! between versions.
//!
//!
//! # Examples:
//! ## Simple compression function:
//! ``` rust
//! use deflate::deflate_bytes;
//!
//! let data = b"Some data";
//! let compressed = deflate_bytes(data);
//! # let _ = compressed;
//! ```
//!
//! ## Using a writer:
//! ``` rust
//! use std::io::Write;
//!
//! use deflate::Compression;
//! use deflate::write::ZlibEncoder;
//!
//! let data = b"This is some test data";
//! let mut encoder = ZlibEncoder::new(Vec::new(), Compression::Default);
//! encoder.write_all(data).expect("Write error!");
//! let compressed_data = encoder.finish().expect("Failed to finish compression!");
//! # let _ = compressed_data;
//! ```
#![cfg_attr(all(feature = "benchmarks", test), feature(test))]
#[cfg(all(test, feature = "benchmarks"))]
extern crate test as test_std;
#[cfg(test)]
extern crate flate2;
// #[cfg(test)]
// extern crate inflate;
extern crate adler32;
extern crate byteorder;
#[cfg(feature = "gzip")]
extern crate gzip_header;
mod compression_options;
mod huffman_table;
mod lz77;
mod lzvalue;
mod chained_hash_table;
mod length_encode;
mod output_writer;
mod stored_block;
mod huffman_lengths;
mod zlib;
mod checksum;
mod bit_reverse;
mod bitstream;
mod encoder_state;
mod matching;
mod input_buffer;
mod deflate_state;
mod compress;
mod rle;
mod writer;
#[cfg(test)]
mod test_utils;
use std::io::Write;
use std::io;
use byteorder::BigEndian;
#[cfg(feature = "gzip")]
use gzip_header::GzBuilder;
#[cfg(feature = "gzip")]
use gzip_header::Crc;
#[cfg(feature = "gzip")]
use byteorder::LittleEndian;
use checksum::RollingChecksum;
use deflate_state::DeflateState;
pub use compression_options::{CompressionOptions, SpecialOptions, Compression};
use compress::Flush;
pub use lz77::MatchingType;
use writer::compress_until_done;
/// Encoders implementing a `Write` interface.
pub mod write {
pub use writer::{DeflateEncoder, ZlibEncoder};
#[cfg(feature = "gzip")]
pub use writer::gzip::GzEncoder;
}
fn compress_data_dynamic<RC: RollingChecksum, W: Write>(
input: &[u8],
writer: &mut W,
mut checksum: RC,
compression_options: CompressionOptions,
) -> io::Result<()> {
checksum.update_from_slice(input);
// We use a box here to avoid putting the buffers on the stack
// It's done here rather than in the structs themselves for now to
// keep the data close in memory.
let mut deflate_state = Box::new(DeflateState::new(compression_options, writer));
compress_until_done(input, &mut deflate_state, Flush::Finish)
}
/// Compress the given slice of bytes with DEFLATE compression.
///
/// Returns a `Vec<u8>` of the compressed data.
///
/// # Examples
///
/// ```
/// use deflate::{deflate_bytes_conf, Compression};
///
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes_conf(data, Compression::Best);
/// # let _ = compressed_data;
/// ```
pub fn deflate_bytes_conf<O: Into<CompressionOptions>>(input: &[u8], options: O) -> Vec<u8> {
let mut writer = Vec::with_capacity(input.len() / 3);
compress_data_dynamic(
input,
&mut writer,
checksum::NoChecksum::new(),
options.into(),
).expect("Write error!");
writer
}
/// Compress the given slice of bytes with DEFLATE compression using the default compression
/// level.
///
/// Returns a `Vec<u8>` of the compressed data.
///
/// # Examples
///
/// ```
/// use deflate::deflate_bytes;
///
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes(data);
/// # let _ = compressed_data;
/// ```
pub fn deflate_bytes(input: &[u8]) -> Vec<u8> {
deflate_bytes_conf(input, Compression::Default)
}
/// Compress the given slice of bytes with DEFLATE compression, including a zlib header and trailer.
///
/// Returns a `Vec<u8>` of the compressed data.
///
/// Zlib dictionaries are not yet suppored.
///
/// # Examples
///
/// ```
/// use deflate::{deflate_bytes_zlib_conf, Compression};
///
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes_zlib_conf(data, Compression::Best);
/// # let _ = compressed_data;
/// ```
pub fn deflate_bytes_zlib_conf<O: Into<CompressionOptions>>(input: &[u8], options: O) -> Vec<u8> {
use byteorder::WriteBytesExt;
let mut writer = Vec::with_capacity(input.len() / 3);
// Write header
zlib::write_zlib_header(&mut writer, zlib::CompressionLevel::Default)
.expect("Write error when writing zlib header!");
let mut checksum = checksum::Adler32Checksum::new();
compress_data_dynamic(input, &mut writer, &mut checksum, options.into())
.expect("Write error when writing compressed data!");
let hash = checksum.current_hash();
writer
.write_u32::<BigEndian>(hash)
.expect("Write error when writing checksum!");
writer
}
/// Compress the given slice of bytes with DEFLATE compression, including a zlib header and trailer,
/// using the default compression level.
///
/// Returns a Vec<u8> of the compressed data.
///
/// Zlib dictionaries are not yet suppored.
///
/// # Examples
///
/// ```
/// use deflate::deflate_bytes_zlib;
///
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes_zlib(data);
/// # let _ = compressed_data;
/// ```
pub fn deflate_bytes_zlib(input: &[u8]) -> Vec<u8> {
deflate_bytes_zlib_conf(input, Compression::Default)
}
/// Compress the given slice of bytes with DEFLATE compression, including a gzip header and trailer
/// using the given gzip header and compression options.
///
/// Returns a `Vec<u8>` of the compressed data.
///
///
/// # Examples
///
/// ```
/// extern crate gzip_header;
/// extern crate deflate;
///
/// # fn main() {
/// use deflate::{deflate_bytes_gzip_conf, Compression};
/// use gzip_header::GzBuilder;
///
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes_gzip_conf(data, Compression::Best, GzBuilder::new());
/// # let _ = compressed_data;
/// # }
/// ```
#[cfg(feature = "gzip")]
pub fn deflate_bytes_gzip_conf<O: Into<CompressionOptions>>(
input: &[u8],
options: O,
gzip_header: GzBuilder,
) -> Vec<u8> {
use byteorder::WriteBytesExt;
let mut writer = Vec::with_capacity(input.len() / 3);
// Write header
writer
.write_all(&gzip_header.into_header())
.expect("Write error when writing header!");
let mut checksum = checksum::NoChecksum::new();
compress_data_dynamic(input, &mut writer, &mut checksum, options.into())
.expect("Write error when writing compressed data!");
let mut crc = Crc::new();
crc.update(input);
writer
.write_u32::<LittleEndian>(crc.sum())
.expect("Write error when writing checksum!");
writer
.write_u32::<LittleEndian>(crc.amt_as_u32())
.expect("Write error when writing amt!");
writer
}
/// Compress the given slice of bytes with DEFLATE compression, including a gzip header and trailer,
/// using the default compression level, and a gzip header with default values.
///
/// Returns a `Vec<u8>` of the compressed data.
///
///
/// # Examples
///
/// ```
/// use deflate::deflate_bytes_gzip;
/// let data = b"This is some test data";
/// let compressed_data = deflate_bytes_gzip(data);
/// # let _ = compressed_data;
/// ```
#[cfg(feature = "gzip")]
pub fn deflate_bytes_gzip(input: &[u8]) -> Vec<u8> {
deflate_bytes_gzip_conf(input, Compression::Default, GzBuilder::new())
}
#[cfg(test)]
mod test {
use super::*;
use std::io::Write;
use test_utils::{get_test_data, decompress_to_end, decompress_zlib};
#[cfg(feature = "gzip")]
use test_utils::decompress_gzip;
type CO = CompressionOptions;
/// Write data to the writer in chunks of chunk_size.
fn chunked_write<W: Write>(mut writer: W, data: &[u8], chunk_size: usize) {
for chunk in data.chunks(chunk_size) {
writer.write_all(&chunk).unwrap();
}
}
#[test]
fn dynamic_string_mem() {
let test_data = String::from(" GNU GENERAL PUBLIC LICENSE").into_bytes();
let compressed = deflate_bytes(&test_data);
assert!(compressed.len() < test_data.len());
let result = decompress_to_end(&compressed);
assert_eq!(test_data, result);
}
#[test]
fn dynamic_string_file() {
let input = get_test_data();
let compressed = deflate_bytes(&input);
let result = decompress_to_end(&compressed);
for (n, (&a, &b)) in input.iter().zip(result.iter()).enumerate() {
if a != b {
println!("First difference at {}, input: {}, output: {}", n, a, b);
println!(
"input: {:?}, output: {:?}",
&input[n - 3..n + 3],
&result[n - 3..n + 3]
);
break;
}
}
// Not using assert_eq here deliberately to avoid massive amounts of output spam
assert!(input == result);
// Check that we actually managed to compress the input
assert!(compressed.len() < input.len());
}
#[test]
fn file_rle() {
let input = get_test_data();
let compressed = deflate_bytes_conf(&input, CO::rle());
let result = decompress_to_end(&compressed);
assert!(input == result);
}
#[test]
fn file_zlib() {
let test_data = get_test_data();
let compressed = deflate_bytes_zlib(&test_data);
// {
// use std::fs::File;
// use std::io::Write;
// let mut f = File::create("out.zlib").unwrap();
// f.write_all(&compressed).unwrap();
// }
println!("file_zlib compressed(default) length: {}", compressed.len());
let result = decompress_zlib(&compressed);
assert!(&test_data == &result);
assert!(compressed.len() < test_data.len());
}
#[test]
fn zlib_short() {
let test_data = [10, 10, 10, 10, 10, 55];
roundtrip_zlib(&test_data, CO::default());
}
#[test]
fn zlib_last_block() {
let mut test_data = vec![22; 32768];
test_data.extend(&[5, 2, 55, 11, 12]);
roundtrip_zlib(&test_data, CO::default());
}
#[test]
fn deflate_short() {
let test_data = [10, 10, 10, 10, 10, 55];
let compressed = deflate_bytes(&test_data);
let result = decompress_to_end(&compressed);
assert_eq!(&test_data, result.as_slice());
// If block type and compression is selected correctly, this should only take 5 bytes.
assert_eq!(compressed.len(), 5);
}
#[cfg(feature = "gzip")]
#[test]
fn gzip() {
let data = get_test_data();
let comment = b"Test";
let compressed = deflate_bytes_gzip_conf(
&data,
Compression::Default,
GzBuilder::new().comment(&comment[..]),
);
let (dec, decompressed) = decompress_gzip(&compressed);
assert_eq!(dec.header().comment().unwrap(), comment);
assert!(data == decompressed);
}
fn chunk_test(chunk_size: usize, level: CompressionOptions) {
let mut compressed = Vec::with_capacity(32000);
let data = get_test_data();
{
let mut compressor = write::ZlibEncoder::new(&mut compressed, level);
chunked_write(&mut compressor, &data, chunk_size);
compressor.finish().unwrap();
}
let compressed2 = deflate_bytes_zlib_conf(&data, level);
let res = decompress_zlib(&compressed);
assert!(res == data);
assert_eq!(compressed.len(), compressed2.len());
assert!(compressed == compressed2);
}
fn writer_chunks_level(level: CompressionOptions) {
use input_buffer::BUFFER_SIZE;
let ct = |n| chunk_test(n, level);
ct(1);
ct(50);
ct(400);
ct(32768);
ct(BUFFER_SIZE);
ct(50000);
ct((32768 * 2) + 258);
}
#[ignore]
#[test]
/// Test the writer by inputing data in one chunk at the time.
fn zlib_writer_chunks() {
writer_chunks_level(CompressionOptions::default());
writer_chunks_level(CompressionOptions::fast());
writer_chunks_level(CompressionOptions::rle());
}
/// Check that the frequency values don't overflow.
#[test]
fn frequency_overflow() {
let _ = deflate_bytes_conf(
&vec![5; 100000],
compression_options::CompressionOptions::default(),
);
}
fn roundtrip_zlib(data: &[u8], level: CompressionOptions) {
let compressed = deflate_bytes_zlib_conf(data, level);
let res = decompress_zlib(&compressed);
if data.len() <= 32 {
assert_eq!(res, data, "Failed with level: {:?}", level);
} else {
assert!(res == data, "Failed with level: {:?}", level);
}
}
fn check_zero(level: CompressionOptions) {
roundtrip_zlib(&[], level);
}
/// Compress with an empty slice.
#[test]
fn empty_input() {
check_zero(CompressionOptions::default());
check_zero(CompressionOptions::fast());
check_zero(CompressionOptions::rle());
}
#[test]
fn one_and_two_values() {
let one = &[1][..];
roundtrip_zlib(one, CO::rle());
roundtrip_zlib(one, CO::fast());
roundtrip_zlib(one, CO::default());
let two = &[5, 6, 7, 8][..];
roundtrip_zlib(two, CO::rle());
roundtrip_zlib(two, CO::fast());
roundtrip_zlib(two, CO::default());
}
}