mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
34 lines
638 B
C++
34 lines
638 B
C++
|
#pragma once
|
||
|
|
||
|
#include "CompressedReadBufferBase.h"
|
||
|
#include <IO/BufferWithOwnMemory.h>
|
||
|
#include <IO/ReadBuffer.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class CompressedReadBuffer : public CompressedReadBufferBase, public BufferWithOwnMemory<ReadBuffer>
|
||
|
{
|
||
|
private:
|
||
|
size_t size_compressed = 0;
|
||
|
|
||
|
bool nextImpl() override;
|
||
|
|
||
|
public:
|
||
|
CompressedReadBuffer(ReadBuffer & in_)
|
||
|
: CompressedReadBufferBase(&in_), BufferWithOwnMemory<ReadBuffer>(0)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
size_t readBig(char * to, size_t n) override;
|
||
|
|
||
|
/// The compressed size of the current block.
|
||
|
size_t getSizeCompressed() const
|
||
|
{
|
||
|
return size_compressed;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|