mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
29 lines
685 B
C++
29 lines
685 B
C++
#pragma once
|
|
#include <IO/BufferWithOwnMemory.h>
|
|
#include <IO/ReadBuffer.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class CompressedReadBufferWrapper : public BufferWithOwnMemory<ReadBuffer>
|
|
{
|
|
public:
|
|
CompressedReadBufferWrapper(
|
|
std::unique_ptr<ReadBuffer> in_,
|
|
size_t buf_size,
|
|
char * existing_memory,
|
|
size_t alignment)
|
|
: BufferWithOwnMemory<ReadBuffer>(buf_size, existing_memory, alignment)
|
|
, in(std::move(in_)) {}
|
|
|
|
const ReadBuffer & getWrappedReadBuffer() const { return *in; }
|
|
ReadBuffer & getWrappedReadBuffer() { return *in; }
|
|
|
|
void prefetch(Priority priority) override { in->prefetch(priority); }
|
|
|
|
protected:
|
|
std::unique_ptr<ReadBuffer> in;
|
|
};
|
|
|
|
}
|