ClickHouse/src/IO/WriteBufferFromFile.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.5 KiB
C++
Raw Normal View History

2011-10-24 12:10:59 +00:00
#pragma once
#include <sys/types.h>
#include <Common/CurrentMetrics.h>
#include <Common/Throttler_fwd.h>
#include <IO/WriteBufferFromFileDescriptor.h>
2011-10-24 12:10:59 +00:00
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:
CurrentMetrics::Increment metric_increment{CurrentMetrics::OpenFileForWrite};
2015-12-13 08:51:28 +00:00
2011-10-24 12:10:59 +00:00
public:
explicit WriteBufferFromFile(
2016-10-25 06:49:24 +00:00
const std::string & file_name_,
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
int flags = -1,
ThrottlerPtr throttler_ = {},
2016-10-25 06:49:24 +00:00
mode_t mode = 0666,
char * existing_memory = nullptr,
size_t alignment = 0);
/// Use pre-opened file descriptor.
explicit WriteBufferFromFile(
2020-09-30 00:00:45 +00:00
int & fd, /// Will be set to -1 if constructor didn't throw and ownership of file descriptor is passed to the object.
const std::string & original_file_name = {},
2016-10-25 06:49:24 +00:00
size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE,
ThrottlerPtr throttler_ = {},
2016-10-25 06:49:24 +00:00
char * existing_memory = nullptr,
size_t alignment = 0);
2016-10-25 06:49:24 +00:00
~WriteBufferFromFile() override;
/// Close file before destruction of object.
2016-10-25 06:49:24 +00:00
void close();
2016-03-07 04:31:10 +00:00
std::string getFileName() const override
2011-10-24 12:10:59 +00:00
{
return file_name;
}
2021-11-10 22:58:56 +00:00
private:
void finalizeImpl() override;
2011-10-24 12:10:59 +00:00
};
}