mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
165 lines
4.9 KiB
C++
165 lines
4.9 KiB
C++
#include <IO/ZstdDeflatingAppendableWriteBuffer.h>
|
|
#include <Common/MemoryTracker.h>
|
|
#include <Common/Exception.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ZSTD_ENCODER_FAILED;
|
|
}
|
|
|
|
ZstdDeflatingAppendableWriteBuffer::ZstdDeflatingAppendableWriteBuffer(
|
|
WriteBuffer & out_, int compression_level, bool append_to_existing_stream_,
|
|
size_t buf_size, char * existing_memory, size_t alignment)
|
|
: BufferWithOwnMemory<WriteBuffer>(buf_size, existing_memory, alignment)
|
|
, out(out_)
|
|
, append_to_existing_stream(append_to_existing_stream_)
|
|
{
|
|
cctx = ZSTD_createCCtx();
|
|
if (cctx == nullptr)
|
|
throw Exception(ErrorCodes::ZSTD_ENCODER_FAILED, "zstd stream encoder init failed: zstd version: {}", ZSTD_VERSION_STRING);
|
|
size_t ret = ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, compression_level);
|
|
if (ZSTD_isError(ret))
|
|
throw Exception(ErrorCodes::ZSTD_ENCODER_FAILED, "zstd stream encoder option setting failed: error code: {}; zstd version: {}", ret, ZSTD_VERSION_STRING);
|
|
|
|
input = {nullptr, 0, 0};
|
|
output = {nullptr, 0, 0};
|
|
}
|
|
|
|
void ZstdDeflatingAppendableWriteBuffer::nextImpl()
|
|
{
|
|
if (!offset())
|
|
return;
|
|
|
|
ZSTD_EndDirective mode = ZSTD_e_flush;
|
|
|
|
input.src = reinterpret_cast<unsigned char *>(working_buffer.begin());
|
|
input.size = offset();
|
|
input.pos = 0;
|
|
|
|
if (first_write && append_to_existing_stream)
|
|
{
|
|
addEmptyBlock();
|
|
first_write = false;
|
|
}
|
|
|
|
try
|
|
{
|
|
bool ended = false;
|
|
do
|
|
{
|
|
out.nextIfAtEnd();
|
|
|
|
output.dst = reinterpret_cast<unsigned char *>(out.buffer().begin());
|
|
output.size = out.buffer().size();
|
|
output.pos = out.offset();
|
|
|
|
size_t compression_result = ZSTD_compressStream2(cctx, &output, &input, mode);
|
|
if (ZSTD_isError(compression_result))
|
|
throw Exception(
|
|
ErrorCodes::ZSTD_ENCODER_FAILED, "Zstd stream encoding failed: error code: {}; zstd version: {}", ZSTD_getErrorName(compression_result), ZSTD_VERSION_STRING);
|
|
|
|
out.position() = out.buffer().begin() + output.pos;
|
|
|
|
bool everything_was_compressed = (input.pos == input.size);
|
|
bool everything_was_flushed = compression_result == 0;
|
|
|
|
ended = everything_was_compressed && everything_was_flushed;
|
|
} while (!ended);
|
|
}
|
|
catch (...)
|
|
{
|
|
/// Do not try to write next time after exception.
|
|
out.position() = out.buffer().begin();
|
|
throw;
|
|
}
|
|
}
|
|
|
|
void ZstdDeflatingAppendableWriteBuffer::finish()
|
|
{
|
|
if (finished || first_write)
|
|
{
|
|
/// Nothing was written or we have already finished
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
finishImpl();
|
|
out.finalize();
|
|
finished = true;
|
|
}
|
|
catch (...)
|
|
{
|
|
/// Do not try to flush next time after exception.
|
|
out.position() = out.buffer().begin();
|
|
finished = true;
|
|
throw;
|
|
}
|
|
}
|
|
|
|
|
|
ZstdDeflatingAppendableWriteBuffer::~ZstdDeflatingAppendableWriteBuffer()
|
|
{
|
|
/// FIXME move final flush into the caller
|
|
MemoryTracker::LockExceptionInThread lock(VariableContext::Global);
|
|
|
|
finish();
|
|
|
|
try
|
|
{
|
|
int err = ZSTD_freeCCtx(cctx);
|
|
/// This is just in case, since it is impossible to get an error by using this wrapper.
|
|
if (unlikely(err))
|
|
throw Exception(ErrorCodes::ZSTD_ENCODER_FAILED, "ZSTD_freeCCtx failed: error: '{}'; zstd version: {}", ZSTD_getErrorName(err), ZSTD_VERSION_STRING);
|
|
}
|
|
catch (...)
|
|
{
|
|
/// It is OK not to terminate under an error from ZSTD_freeCCtx()
|
|
/// since all data already written to the stream.
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
}
|
|
}
|
|
|
|
void ZstdDeflatingAppendableWriteBuffer::finishImpl()
|
|
{
|
|
next();
|
|
|
|
out.nextIfAtEnd();
|
|
|
|
input.src = reinterpret_cast<unsigned char *>(working_buffer.begin());
|
|
input.size = offset();
|
|
input.pos = 0;
|
|
|
|
output.dst = reinterpret_cast<unsigned char *>(out.buffer().begin());
|
|
output.size = out.buffer().size();
|
|
output.pos = out.offset();
|
|
|
|
size_t remaining = ZSTD_compressStream2(cctx, &output, &input, ZSTD_e_end);
|
|
while (remaining != 0)
|
|
{
|
|
if (ZSTD_isError(remaining))
|
|
throw Exception(ErrorCodes::ZSTD_ENCODER_FAILED, "zstd stream encoder end failed: error: '{}' zstd version: {}", ZSTD_getErrorName(remaining), ZSTD_VERSION_STRING);
|
|
|
|
remaining = ZSTD_compressStream2(cctx, &output, &input, ZSTD_e_end);
|
|
}
|
|
out.position() = out.buffer().begin() + output.pos;
|
|
}
|
|
|
|
void ZstdDeflatingAppendableWriteBuffer::addEmptyBlock()
|
|
{
|
|
/// HACK: https://github.com/facebook/zstd/issues/2090#issuecomment-620158967
|
|
static const char empty_block[3] = {0x01, 0x00, 0x00};
|
|
|
|
if (out.buffer().size() - out.offset() < sizeof(empty_block))
|
|
out.next();
|
|
|
|
std::memcpy(out.buffer().begin() + out.offset(), empty_block, sizeof(empty_block));
|
|
|
|
out.position() = out.buffer().begin() + out.offset() + sizeof(empty_block);
|
|
}
|
|
|
|
}
|