ClickHouse/src/IO/ZstdDeflatingAppendableWriteBuffer.h

82 lines
3.1 KiB
C++
Raw Normal View History

2021-09-21 14:29:05 +00:00
#pragma once
#include <IO/BufferWithOwnMemory.h>
#include <IO/CompressionMethod.h>
#include <IO/WriteBuffer.h>
2021-11-10 22:58:56 +00:00
#include <IO/WriteBufferDecorator.h>
#include <IO/WriteBufferFromFile.h>
2021-09-21 14:29:05 +00:00
#include <zstd.h>
namespace DB
{
/// Performs stream compression using zstd library and writes compressed data to out_ WriteBuffer.
/// Main differences from ZstdDeflatingWriteBuffer:
/// 1) Allows to continue to write to the same output even if finalize() (or destructor) was not called, for example
/// when server was killed with 9 signal. Natively zstd doesn't support such feature because
2022-05-04 16:24:28 +00:00
/// ZSTD_decompressStream expect to see empty block (3 bytes 0x01, 0x00, 0x00) at the end of each frame. There is not API function for it
2021-09-21 14:29:05 +00:00
/// so we just use HACK and add empty block manually on the first write (see addEmptyBlock). Maintainers of zstd
/// said that there is no risks of compatibility issues https://github.com/facebook/zstd/issues/2090#issuecomment-620158967.
/// 2) Doesn't support internal ZSTD check-summing, because ZSTD checksums written at the end of frame (frame epilogue).
///
class ZstdDeflatingAppendableWriteBuffer : public BufferWithOwnMemory<WriteBuffer>
2021-09-21 14:29:05 +00:00
{
public:
using ZSTDLastBlock = const std::array<char, 3>;
2022-05-04 16:24:28 +00:00
/// Frame end block. If we read non-empty file and see no such flag we should add it.
static inline constexpr ZSTDLastBlock ZSTD_CORRECT_TERMINATION_LAST_BLOCK = {0x01, 0x00, 0x00};
2021-09-21 14:29:05 +00:00
ZstdDeflatingAppendableWriteBuffer(
std::unique_ptr<WriteBufferFromFile> out_,
2021-09-21 14:29:05 +00:00
int compression_level,
bool append_to_existing_file_,
2021-09-21 14:29:05 +00:00
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
char * existing_memory = nullptr,
size_t alignment = 0);
~ZstdDeflatingAppendableWriteBuffer() override;
void sync() override
{
next();
2021-11-10 22:58:56 +00:00
out->sync();
2021-09-21 14:29:05 +00:00
}
WriteBuffer * getNestedBuffer() { return out.get(); }
2021-09-21 14:29:05 +00:00
private:
/// NOTE: will fill compressed data to the out.working_buffer, but will not call out.next method until the buffer is full
void nextImpl() override;
2021-11-10 22:58:56 +00:00
/// Write terminating ZSTD_e_end: empty block + frame epilogue. BTW it
/// should be almost noop, because frame epilogue contains only checksums,
/// and they are disabled for this buffer.
2021-09-21 14:29:05 +00:00
/// Flush all pending data and write zstd footer to the underlying buffer.
/// After the first call to this function, subsequent calls will have no effect and
/// an attempt to write to this buffer will result in exception.
2021-11-10 22:58:56 +00:00
void finalizeImpl() override;
void finalizeBefore();
void finalizeAfter();
void finalizeZstd();
2022-05-04 16:24:28 +00:00
/// Read three last bytes from non-empty compressed file and compares them with
/// ZSTD_CORRECT_TERMINATION_LAST_BLOCK.
bool isNeedToAddEmptyBlock();
2022-05-04 16:24:28 +00:00
/// Adding zstd empty block (ZSTD_CORRECT_TERMINATION_LAST_BLOCK) to out.working_buffer
2021-09-21 14:29:05 +00:00
void addEmptyBlock();
std::unique_ptr<WriteBufferFromFile> out;
bool append_to_existing_file = false;
2021-09-21 14:29:05 +00:00
ZSTD_CCtx * cctx;
ZSTD_inBuffer input;
ZSTD_outBuffer output;
/// Flipped on the first nextImpl call
bool first_write = true;
};
}