mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 21:03:51 +00:00
38 lines
941 B
C++
38 lines
941 B
C++
#pragma once
|
|
|
|
#include <IO/ReadBufferFromFileBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Delegates all reads to underlying buffer. Doesn't have own memory.
|
|
class ReadBufferFromFileDecorator : public ReadBufferFromFileBase
|
|
{
|
|
public:
|
|
explicit ReadBufferFromFileDecorator(std::unique_ptr<SeekableReadBuffer> impl_);
|
|
ReadBufferFromFileDecorator(std::unique_ptr<SeekableReadBuffer> impl_, const String & file_name_);
|
|
|
|
std::string getFileName() const override;
|
|
|
|
off_t getPosition() override;
|
|
|
|
off_t seek(off_t off, int whence) override;
|
|
|
|
bool nextImpl() override;
|
|
|
|
bool isWithFileSize() const { return dynamic_cast<const WithFileSize *>(impl.get()) != nullptr; }
|
|
|
|
const ReadBuffer & getWrappedReadBuffer() const { return *impl; }
|
|
|
|
ReadBuffer & getWrappedReadBuffer() { return *impl; }
|
|
|
|
std::optional<size_t> tryGetFileSize() override;
|
|
|
|
protected:
|
|
std::unique_ptr<SeekableReadBuffer> impl;
|
|
String file_name;
|
|
};
|
|
|
|
}
|