mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
38 lines
849 B
C++
38 lines
849 B
C++
#pragma once
|
|
|
|
#include <IO/WriteBuffer.h>
|
|
#include <Compression/ICompressionCodec.h>
|
|
#include <IO/BufferWithOwnMemory.h>
|
|
#include <Parsers/StringRange.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class CompressionCodecZSTD : public ICompressionCodec
|
|
{
|
|
public:
|
|
static constexpr auto ZSTD_DEFAULT_LEVEL = 1;
|
|
|
|
CompressionCodecZSTD(int level_);
|
|
|
|
UInt8 getMethodByte() const override;
|
|
|
|
String getCodecDesc() const override;
|
|
|
|
UInt32 getMaxCompressedDataSize(UInt32 uncompressed_size) const override;
|
|
|
|
protected:
|
|
UInt32 doCompressData(const char * source, UInt32 source_size, char * dest) const override;
|
|
|
|
void doDecompressData(const char * source, UInt32 source_size, char * dest, UInt32 uncompressed_size) const override;
|
|
|
|
private:
|
|
const int level;
|
|
};
|
|
|
|
|
|
class CompressionCodecFactory;
|
|
void registerCodecZSTD(CompressionCodecFactory & factory);
|
|
|
|
}
|