mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
33 lines
639 B
C++
33 lines
639 B
C++
#pragma once
|
|
#include <memory>
|
|
#include <DB/IO/ReadBuffer.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct IReadableWriteBuffer
|
|
{
|
|
/// At the first time returns getReadBufferImpl(). Next calls return nullptr.
|
|
inline std::shared_ptr<ReadBuffer> tryGetReadBuffer()
|
|
{
|
|
if (!can_reread)
|
|
return nullptr;
|
|
|
|
can_reread = false;
|
|
return getReadBufferImpl();
|
|
}
|
|
|
|
virtual ~IReadableWriteBuffer() {}
|
|
|
|
protected:
|
|
|
|
/// Creates read buffer from current write buffer.
|
|
/// Returned buffer points to the first byte of original buffer.
|
|
/// Original stream becomes invalid.
|
|
virtual std::shared_ptr<ReadBuffer> getReadBufferImpl() = 0;
|
|
|
|
bool can_reread = true;
|
|
};
|
|
|
|
}
|