ClickHouse/dbms/include/DB/IO/WriteBufferFromFile.h

60 lines
1.2 KiB
C++
Raw Normal View History

2011-10-24 12:10:59 +00:00
#pragma once
#include <sys/types.h>
#include <DB/Common/CurrentMetrics.h>
2011-10-24 12:10:59 +00:00
#include <DB/IO/WriteBufferFromFileDescriptor.h>
namespace CurrentMetrics
{
extern const Metric OpenFileForWrite;
}
2011-10-24 12:10:59 +00:00
#ifndef O_DIRECT
#define O_DIRECT 00040000
#endif
2016-10-25 06:49:24 +00:00
namespace DB
{
/** Accepts path to file and opens it, or pre-opened file descriptor.
* Closes file by himself (thus "owns" a file descriptor).
2011-10-24 12:10:59 +00:00
*/
class WriteBufferFromFile : public WriteBufferFromFileDescriptor
{
protected:
2011-10-24 12:10:59 +00:00
std::string file_name;
CurrentMetrics::Increment metric_increment{CurrentMetrics::OpenFileForWrite};
2015-12-13 08:51:28 +00:00
2011-10-24 12:10:59 +00:00
public:
2016-10-25 06:49:24 +00:00
WriteBufferFromFile(
const std::string & file_name_,
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
int flags = -1,
mode_t mode = 0666,
char * existing_memory = nullptr,
size_t alignment = 0);
2011-10-24 12:10:59 +00:00
/// Use pre-opened file descriptor.
2016-10-25 06:49:24 +00:00
WriteBufferFromFile(
int fd,
const std::string & original_file_name = {},
2016-10-25 06:49:24 +00:00
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
char * existing_memory = nullptr,
size_t alignment = 0);
2015-12-13 08:51:28 +00:00
2016-10-25 06:49:24 +00:00
~WriteBufferFromFile() override;
2015-12-13 08:51:28 +00:00
/// Close file before destruction of object.
2016-10-25 06:49:24 +00:00
void close();
2015-12-13 08:51:28 +00:00
2016-03-07 04:31:10 +00:00
std::string getFileName() const override
2011-10-24 12:10:59 +00:00
{
return file_name;
}
};
}