2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-19 18:52:32 -05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Simple compression
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use libc;
|
2012-09-04 13:12:17 -05:00
|
|
|
use libc::{c_void, size_t, c_int};
|
2012-12-23 16:41:37 -06:00
|
|
|
use ptr;
|
|
|
|
use vec;
|
2012-08-28 15:59:48 -05:00
|
|
|
|
|
|
|
extern mod rustrt {
|
2013-01-10 23:23:07 -06:00
|
|
|
unsafe fn tdefl_compress_mem_to_heap(psrc_buf: *const c_void,
|
|
|
|
src_buf_len: size_t,
|
|
|
|
pout_len: *size_t,
|
|
|
|
flags: c_int) -> *c_void;
|
|
|
|
|
|
|
|
unsafe fn tinfl_decompress_mem_to_heap(psrc_buf: *const c_void,
|
|
|
|
src_buf_len: size_t,
|
|
|
|
pout_len: *size_t,
|
|
|
|
flags: c_int) -> *c_void;
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const lz_none : c_int = 0x0; // Huffman-coding only.
|
|
|
|
const lz_fast : c_int = 0x1; // LZ with only one probe
|
|
|
|
const lz_norm : c_int = 0x80; // LZ with 128 probes, "normal"
|
|
|
|
const lz_best : c_int = 0xfff; // LZ with 4095 probes, "best"
|
|
|
|
|
2012-09-27 19:17:10 -05:00
|
|
|
pub fn deflate_bytes(bytes: &[const u8]) -> ~[u8] {
|
2012-09-14 11:51:24 -05:00
|
|
|
do vec::as_const_buf(bytes) |b, len| {
|
2012-08-28 15:59:48 -05:00
|
|
|
unsafe {
|
|
|
|
let mut outsz : size_t = 0;
|
|
|
|
let res =
|
|
|
|
rustrt::tdefl_compress_mem_to_heap(b as *c_void,
|
|
|
|
len as size_t,
|
2012-10-01 14:47:02 -05:00
|
|
|
ptr::addr_of(&outsz),
|
2012-08-28 15:59:48 -05:00
|
|
|
lz_norm);
|
|
|
|
assert res as int != 0;
|
2012-10-11 17:37:37 -05:00
|
|
|
let out = vec::raw::from_buf_raw(res as *u8,
|
2012-08-28 15:59:48 -05:00
|
|
|
outsz as uint);
|
|
|
|
libc::free(res);
|
2013-02-15 02:51:28 -06:00
|
|
|
out
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-27 19:17:10 -05:00
|
|
|
pub fn inflate_bytes(bytes: &[const u8]) -> ~[u8] {
|
2012-09-14 11:51:24 -05:00
|
|
|
do vec::as_const_buf(bytes) |b, len| {
|
2012-08-28 15:59:48 -05:00
|
|
|
unsafe {
|
|
|
|
let mut outsz : size_t = 0;
|
|
|
|
let res =
|
|
|
|
rustrt::tinfl_decompress_mem_to_heap(b as *c_void,
|
|
|
|
len as size_t,
|
2012-10-01 14:47:02 -05:00
|
|
|
ptr::addr_of(&outsz),
|
2012-08-28 15:59:48 -05:00
|
|
|
0);
|
|
|
|
assert res as int != 0;
|
2012-10-11 17:37:37 -05:00
|
|
|
let out = vec::raw::from_buf_raw(res as *u8,
|
2012-08-28 15:59:48 -05:00
|
|
|
outsz as uint);
|
|
|
|
libc::free(res);
|
2013-02-15 02:51:28 -06:00
|
|
|
out
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-09-02 18:34:20 -05:00
|
|
|
#[allow(non_implicitly_copyable_typarams)]
|
2012-08-28 15:59:48 -05:00
|
|
|
fn test_flate_round_trip() {
|
|
|
|
let r = rand::Rng();
|
|
|
|
let mut words = ~[];
|
|
|
|
for 20.times {
|
2012-09-26 19:33:34 -05:00
|
|
|
words.push(r.gen_bytes(r.gen_uint_range(1, 10)));
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
|
|
|
for 20.times {
|
|
|
|
let mut in = ~[];
|
|
|
|
for 2000.times {
|
2012-09-26 19:33:34 -05:00
|
|
|
in.push_all(r.choose(words));
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
|
|
|
debug!("de/inflate of %u bytes of random word-sequences",
|
|
|
|
in.len());
|
2012-12-27 19:53:04 -06:00
|
|
|
let cmp = deflate_bytes(in);
|
|
|
|
let out = inflate_bytes(cmp);
|
2012-08-28 15:59:48 -05:00
|
|
|
debug!("%u bytes deflated to %u (%.1f%% size)",
|
|
|
|
in.len(), cmp.len(),
|
|
|
|
100.0 * ((cmp.len() as float) / (in.len() as float)));
|
|
|
|
assert(in == out);
|
|
|
|
}
|
2012-09-14 11:51:24 -05:00
|
|
|
}
|