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
|
|
|
|
2013-02-28 10:57:33 -06:00
|
|
|
#[cfg(test)] use rand;
|
2013-03-22 21:26:32 -05:00
|
|
|
#[cfg(test)] use rand::RngUtil;
|
2013-02-28 10:57:33 -06:00
|
|
|
|
2013-03-05 13:57:50 -06:00
|
|
|
pub mod rustrt {
|
|
|
|
use libc::{c_int, c_void, size_t};
|
|
|
|
|
|
|
|
#[link_name = "rustrt"]
|
|
|
|
pub extern {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
static lz_none : c_int = 0x0; // Huffman-coding only.
|
|
|
|
static lz_fast : c_int = 0x1; // LZ with only one probe
|
|
|
|
static lz_norm : c_int = 0x80; // LZ with 128 probes, "normal"
|
|
|
|
static lz_best : c_int = 0xfff; // LZ with 4095 probes, "best"
|
2012-08-28 15:59:48 -05:00
|
|
|
|
2013-03-22 19:58:50 -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,
|
2013-04-22 16:27:30 -05:00
|
|
|
&outsz,
|
2012-08-28 15:59:48 -05:00
|
|
|
lz_norm);
|
2013-03-28 20:39:09 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 19:58:50 -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 {
|
2013-04-12 00:10:01 -05:00
|
|
|
let outsz : size_t = 0;
|
2012-08-28 15:59:48 -05:00
|
|
|
let res =
|
|
|
|
rustrt::tinfl_decompress_mem_to_heap(b as *c_void,
|
|
|
|
len as size_t,
|
2013-04-22 16:27:30 -05:00
|
|
|
&outsz,
|
2012-08-28 15:59:48 -05:00
|
|
|
0);
|
2013-03-28 20:39:09 -05:00
|
|
|
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() {
|
2013-04-23 09:00:43 -05:00
|
|
|
let r = rand::rng();
|
2012-08-28 15:59:48 -05:00
|
|
|
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)));
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!((in == out));
|
2012-08-28 15:59:48 -05:00
|
|
|
}
|
2012-09-14 11:51:24 -05:00
|
|
|
}
|