2015-03-30 15:39:55 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/WriteBuffer.h>
|
|
|
|
#include <IO/BufferWithOwnMemory.h>
|
2015-03-30 15:39:55 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class WriteBufferFromFileBase : public BufferWithOwnMemory<WriteBuffer>
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 13:45:44 +00:00
|
|
|
WriteBufferFromFileBase(size_t buf_size, char * existing_memory, size_t alignment);
|
2015-04-30 15:04:42 +00:00
|
|
|
|
2019-12-24 17:16:38 +00:00
|
|
|
void sync() override = 0;
|
2015-04-14 11:35:10 +00:00
|
|
|
virtual std::string getFileName() const = 0;
|
2015-03-30 15:39:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|