mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
27 lines
589 B
C++
27 lines
589 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <fcntl.h>
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
#include <DB/IO/BufferWithOwnMemory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ReadBufferFromFileBase : public BufferWithOwnMemory<ReadBuffer>
|
|
{
|
|
public:
|
|
ReadBufferFromFileBase(size_t buf_size, char * existing_memory, size_t alignment);
|
|
virtual ~ReadBufferFromFileBase();
|
|
off_t seek(off_t off, int whence = SEEK_SET);
|
|
virtual off_t getPositionInFile() = 0;
|
|
virtual std::string getFileName() const noexcept = 0;
|
|
virtual int getFD() const noexcept = 0;
|
|
|
|
protected:
|
|
virtual off_t doSeek(off_t off, int whence) = 0;
|
|
};
|
|
|
|
}
|