ClickHouse/dbms/src/IO/BrotliReadBuffer.h

40 lines
662 B
C++
Raw Normal View History

#pragma once
#include <IO/ReadBuffer.h>
#include <IO/BufferWithOwnMemory.h>
namespace DB
{
class BrotliReadBuffer : public BufferWithOwnMemory<ReadBuffer>
{
public:
BrotliReadBuffer(
2019-02-12 13:01:14 +00:00
ReadBuffer & in_,
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
2019-02-12 13:01:14 +00:00
char * existing_memory = nullptr,
size_t alignment = 0);
~BrotliReadBuffer() override;
private:
bool nextImpl() override;
2019-02-12 13:01:14 +00:00
ReadBuffer & in;
2019-02-11 20:42:46 +00:00
class BrotliStateWrapper;
std::unique_ptr<BrotliStateWrapper> brotli;
size_t in_available;
const uint8_t * in_data;
size_t out_capacity;
uint8_t * out_data;
bool eof;
};
2019-04-10 16:12:31 +00:00
2019-02-06 06:05:41 +00:00
}