NcEngine
Compression.h File Reference
#include <cstdint>
#include <span>
#include <vector>

Go to the source code of this file.

Enumerations

enum class  nc::CompressionLevel : uint8_t { Default , Fast , Max }
 Option for influencing the compression ratio and speed of nc::Compress().
 

Functions

auto nc::Compress (std::span< const char > src, CompressionLevel level=CompressionLevel::Default) -> std::vector< char >
 Compress a range of bytes using LZ4/LZ4HC. More...
 
auto nc::Decompress (std::span< const char > src, size_t maxDecompressedSize) -> std::vector< char >
 Decompress a range of bytes compressed with LZ4/LZ4HC. More...
 

Detailed Description

Function Documentation

◆ Compress()

auto nc::Compress ( std::span< const char >  src,
CompressionLevel  level = CompressionLevel::Default 
) -> std::vector< char >

Compress a range of bytes using LZ4/LZ4HC.

Parameters
srcThe data to compress. Must not exceed compressMaxInputSize.
levelThe compression level to apply.
Returns
The compressed data as a vector of bytes.
Exceptions
NcErroris thrown on invalid parameters.

◆ Decompress()

auto nc::Decompress ( std::span< const char >  src,
size_t  maxDecompressedSize 
) -> std::vector< char >

Decompress a range of bytes compressed with LZ4/LZ4HC.

Parameters
srcThe data to decompress.
maxDecompressedSizeSize upper bound of the decompressed data.
Returns
The decompressed data as a vector of bytes.
Exceptions
NcErroris thrown if src is malformed or the specified max size is insufficient.