* fix: clipboard data, decompress, buf too small Signed-off-by: fufesou <linlong1266@gmail.com> * fix: compress image Signed-off-by: fufesou <linlong1266@gmail.com> * decompress image, use default level Signed-off-by: fufesou <linlong1266@gmail.com> * chore Signed-off-by: fufesou <linlong1266@gmail.com> * decompress, zstd::decode_all Signed-off-by: fufesou <linlong1266@gmail.com> --------- Signed-off-by: fufesou <linlong1266@gmail.com>
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
use std::{cell::RefCell, io};
|
|
use zstd::bulk::Compressor;
|
|
|
|
// The library supports regular compression levels from 1 up to ZSTD_maxCLevel(),
|
|
// which is currently 22. Levels >= 20
|
|
// Default level is ZSTD_CLEVEL_DEFAULT==3.
|
|
// value 0 means default, which is controlled by ZSTD_CLEVEL_DEFAULT
|
|
thread_local! {
|
|
static COMPRESSOR: RefCell<io::Result<Compressor<'static>>> = RefCell::new(Compressor::new(crate::config::COMPRESS_LEVEL));
|
|
}
|
|
|
|
pub fn compress(data: &[u8]) -> Vec<u8> {
|
|
let mut out = Vec::new();
|
|
COMPRESSOR.with(|c| {
|
|
if let Ok(mut c) = c.try_borrow_mut() {
|
|
match &mut *c {
|
|
Ok(c) => match c.compress(data) {
|
|
Ok(res) => out = res,
|
|
Err(err) => {
|
|
crate::log::debug!("Failed to compress: {}", err);
|
|
}
|
|
},
|
|
Err(err) => {
|
|
crate::log::debug!("Failed to get compressor: {}", err);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
out
|
|
}
|
|
|
|
pub fn decompress(data: &[u8]) -> Vec<u8> {
|
|
zstd::decode_all(data).unwrap_or_default()
|
|
}
|