ClickHouse/dbms/src/IO/WriteBufferFromFile.cpp

104 lines
2.1 KiB
C++
Raw Normal View History

2016-10-25 06:49:24 +00:00
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
2016-10-25 06:49:24 +00:00
#include <Common/ProfileEvents.h>
2016-10-25 06:49:24 +00:00
#include <IO/WriteBufferFromFile.h>
#include <IO/WriteHelpers.h>
2016-10-25 06:49:24 +00:00
namespace ProfileEvents
{
extern const Event FileOpen;
2016-10-25 06:49:24 +00:00
}
namespace DB
{
namespace ErrorCodes
{
extern const int FILE_DOESNT_EXIST;
extern const int CANNOT_OPEN_FILE;
extern const int CANNOT_CLOSE_FILE;
2016-10-25 06:49:24 +00:00
}
WriteBufferFromFile::WriteBufferFromFile(
const std::string & file_name_,
size_t buf_size,
int flags,
mode_t mode,
char * existing_memory,
size_t alignment)
: WriteBufferFromFileDescriptor(-1, buf_size, existing_memory, alignment), file_name(file_name_)
2016-10-25 06:49:24 +00:00
{
ProfileEvents::increment(ProfileEvents::FileOpen);
2016-10-25 06:49:24 +00:00
#ifdef __APPLE__
bool o_direct = (flags != -1) && (flags & O_DIRECT);
2018-01-10 00:04:08 +00:00
if (o_direct)
flags = flags & ~O_DIRECT;
#endif
fd = ::open(file_name.c_str(), flags == -1 ? O_WRONLY | O_TRUNC | O_CREAT : flags, mode);
2016-10-25 06:49:24 +00:00
if (-1 == fd)
throwFromErrno("Cannot open file " + file_name, errno == ENOENT ? ErrorCodes::FILE_DOESNT_EXIST : ErrorCodes::CANNOT_OPEN_FILE);
#ifdef __APPLE__
if (o_direct)
{
if (fcntl(fd, F_NOCACHE, 1) == -1)
throwFromErrno("Cannot set F_NOCACHE on file " + file_name, ErrorCodes::CANNOT_OPEN_FILE);
}
#endif
2016-10-25 06:49:24 +00:00
}
/// Use pre-opened file descriptor.
WriteBufferFromFile::WriteBufferFromFile(
int fd_,
const std::string & original_file_name,
size_t buf_size,
char * existing_memory,
size_t alignment)
:
WriteBufferFromFileDescriptor(fd_, buf_size, existing_memory, alignment),
file_name(original_file_name.empty() ? "(fd = " + toString(fd_) + ")" : original_file_name)
2016-10-25 06:49:24 +00:00
{
}
WriteBufferFromFile::~WriteBufferFromFile()
{
if (fd < 0)
return;
try
{
next();
}
catch (...)
{
tryLogCurrentException(__PRETTY_FUNCTION__);
}
::close(fd);
2016-10-25 06:49:24 +00:00
}
/// Close file before destruction of object.
void WriteBufferFromFile::close()
{
next();
2016-10-25 06:49:24 +00:00
if (0 != ::close(fd))
throw Exception("Cannot close file", ErrorCodes::CANNOT_CLOSE_FILE);
2016-10-25 06:49:24 +00:00
fd = -1;
metric_increment.destroy();
2016-10-25 06:49:24 +00:00
}
}