mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
75 lines
1.9 KiB
C++
75 lines
1.9 KiB
C++
|
|
#include "lz4_compressor.h"
|
|
|
|
#include "./thirdparty/lz4/lz4.h"
|
|
|
|
PoolByteArray LZ4Compressor::compress_data(const PoolByteArray &data) const {
|
|
PoolByteArray arr;
|
|
|
|
int size = data.size();
|
|
PoolByteArray::Read dr = data.read();
|
|
const uint8_t *ch = dr.ptr();
|
|
|
|
int bound = LZ4_compressBound(size);
|
|
arr.resize(bound + sizeof(int));
|
|
|
|
PoolByteArray::Write w = arr.write();
|
|
uint8_t *wptr = w.ptr();
|
|
reinterpret_cast<int *>(wptr)[0] = data.size();
|
|
|
|
int ns = LZ4_compress_default(reinterpret_cast<const char *>(ch), reinterpret_cast<char *>(&wptr[sizeof(int)]), size, bound);
|
|
|
|
w.release();
|
|
|
|
arr.resize(ns + sizeof(int));
|
|
|
|
return arr;
|
|
}
|
|
PoolByteArray LZ4Compressor::decompress_data(const PoolByteArray &data) const {
|
|
PoolByteArray arr;
|
|
|
|
int ds = data.size();
|
|
|
|
if (ds == 0) {
|
|
return arr;
|
|
}
|
|
|
|
PoolByteArray::Read dr = data.read();
|
|
const uint8_t *ch = dr.ptr();
|
|
int size = reinterpret_cast<const int *>(ch)[0];
|
|
|
|
arr.resize(size);
|
|
PoolByteArray::Write w = arr.write();
|
|
uint8_t *wptr = w.ptr();
|
|
|
|
int ns = LZ4_decompress_safe(reinterpret_cast<const char *>(&ch[sizeof(int)]), reinterpret_cast<char *>(wptr), ds - sizeof(int), size);
|
|
|
|
if (ns != size) {
|
|
arr.resize(ns);
|
|
ERR_PRINT("ns != size");
|
|
}
|
|
|
|
return arr;
|
|
}
|
|
|
|
int LZ4Compressor::LZ4_compressBound(int inputSize) {
|
|
return ::LZ4_compressBound(inputSize);
|
|
}
|
|
int LZ4Compressor::LZ4_compress_default(const char *src, char *dst, int srcSize, int dstCapacity) {
|
|
return ::LZ4_compress_default(src, dst, srcSize, dstCapacity);
|
|
}
|
|
int LZ4Compressor::LZ4_decompress_safe(const char *src, char *dst, int compressedSize, int dstCapacity) {
|
|
return ::LZ4_decompress_safe(src, dst, compressedSize, dstCapacity);
|
|
}
|
|
|
|
LZ4Compressor::LZ4Compressor() {
|
|
}
|
|
|
|
LZ4Compressor::~LZ4Compressor() {
|
|
}
|
|
|
|
void LZ4Compressor::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("compress_data", "data"), &LZ4Compressor::compress_data);
|
|
ClassDB::bind_method(D_METHOD("decompress_data", "data"), &LZ4Compressor::decompress_data);
|
|
}
|