mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
78fc36ca49
This makes the target location consistent with other auto-generated files like config_formats.h, config_core.h, and config_functions.h and simplifies the build of clickhouse_common.
36 lines
709 B
C++
36 lines
709 B
C++
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
#if USE_SNAPPY
|
|
|
|
#include <IO/ReadBuffer.h>
|
|
#include <IO/SeekableReadBuffer.h>
|
|
#include <IO/BufferWithOwnMemory.h>
|
|
|
|
namespace DB
|
|
{
|
|
class SnappyReadBuffer : public BufferWithOwnMemory<SeekableReadBuffer>
|
|
{
|
|
public:
|
|
explicit SnappyReadBuffer(
|
|
std::unique_ptr<ReadBuffer> in_,
|
|
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
|
|
char * existing_memory = nullptr,
|
|
size_t alignment = 0);
|
|
|
|
~SnappyReadBuffer() override;
|
|
|
|
bool nextImpl() override;
|
|
off_t seek(off_t off, int whence) override;
|
|
off_t getPosition() override;
|
|
|
|
private:
|
|
std::unique_ptr<ReadBuffer> in;
|
|
String compress_buffer;
|
|
String uncompress_buffer;
|
|
};
|
|
|
|
}
|
|
#endif
|