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
/*
// Old code from native rust lzma-rs (lzma2 doesn't seem to compress correctly, and neither variants expose compression level..)
pub fn encode(data: &[u8], _quality: crate::Quality) -> std::io::Result<Vec<u8>> {
let mut buf = Vec::new();
lzma_rs::lzma_compress(&mut std::io::Cursor::new(data), &mut buf).map_err(|err| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("failed to encode with lzma - details: {:?}", err),
)
})?;
Ok(buf)
}
pub fn decode(data: &[u8]) -> std::io::Result<Vec<u8>> {
let mut buf = Vec::new();
lzma_rs::lzma_decompress(&mut std::io::Cursor::new(data), &mut buf).map_err(|err| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("failed to decode with lzma - details: {:?}", err),
)
})?;
Ok(buf)
}
pub fn encode(data: &[u8], _quality: crate::Quality) -> std::io::Result<Vec<u8>> {
let mut buf = Vec::new();
lzma_rs::lzma2_compress(&mut std::io::Cursor::new(data), &mut buf).map_err(|err| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("failed to encode with lzma2 - details: {:?}", err),
)
})?;
Ok(buf)
}
pub fn decode(data: &[u8]) -> std::io::Result<Vec<u8>> {
let mut buf = Vec::new();
lzma_rs::lzma2_decompress(&mut std::io::Cursor::new(data), &mut buf).map_err(|err| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("failed to decode with lzma2 - details: {:?}", err),
)
})?;
Ok(buf)
}
*/