mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
29 lines
662 B
C++
29 lines
662 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <fcntl.h>
|
|
|
|
#include <DB/IO/WriteBuffer.h>
|
|
#include <DB/IO/BufferWithOwnMemory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class WriteBufferFromFileBase : public BufferWithOwnMemory<WriteBuffer>
|
|
{
|
|
public:
|
|
WriteBufferFromFileBase(size_t buf_size, char * existing_memory, size_t alignment);
|
|
virtual ~WriteBufferFromFileBase();
|
|
off_t seek(off_t off, int whence = SEEK_SET);
|
|
virtual off_t getPositionInFile() = 0;
|
|
virtual void truncate(off_t length) = 0;
|
|
virtual void sync() = 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;
|
|
};
|
|
|
|
}
|