2011-10-24 12:10:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2014-01-03 08:20:13 +00:00
|
|
|
#include <DB/Common/ProfileEvents.h>
|
|
|
|
|
2011-10-24 12:10:59 +00:00
|
|
|
#include <DB/IO/WriteBufferFromFileDescriptor.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** Принимает имя файла. Самостоятельно открывает и закрывает файл.
|
|
|
|
*/
|
|
|
|
class WriteBufferFromFile : public WriteBufferFromFileDescriptor
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::string file_name;
|
|
|
|
|
|
|
|
public:
|
2014-01-03 06:31:32 +00:00
|
|
|
WriteBufferFromFile(const std::string & file_name_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, int flags = -1, mode_t mode = 0666,
|
2014-04-08 07:31:51 +00:00
|
|
|
char * existing_memory = nullptr, size_t alignment = 0)
|
2014-01-03 06:31:32 +00:00
|
|
|
: WriteBufferFromFileDescriptor(-1, buf_size, existing_memory, alignment), file_name(file_name_)
|
2011-10-24 12:10:59 +00:00
|
|
|
{
|
2014-01-03 08:20:13 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::FileOpen);
|
|
|
|
|
2012-02-23 22:35:53 +00:00
|
|
|
fd = open(file_name.c_str(), flags == -1 ? O_WRONLY | O_TRUNC | O_CREAT : flags, mode);
|
2011-10-24 12:10:59 +00:00
|
|
|
|
|
|
|
if (-1 == fd)
|
2012-04-14 11:45:27 +00:00
|
|
|
throwFromErrno("Cannot open file " + file_name, errno == ENOENT ? ErrorCodes::FILE_DOESNT_EXIST : ErrorCodes::CANNOT_OPEN_FILE);
|
2011-10-24 12:10:59 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 17:42:18 +00:00
|
|
|
~WriteBufferFromFile()
|
2011-10-24 12:10:59 +00:00
|
|
|
{
|
2013-11-18 17:17:45 +00:00
|
|
|
try
|
|
|
|
{
|
2011-12-12 00:38:01 +00:00
|
|
|
next();
|
2013-11-18 17:17:45 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2013-11-18 19:18:03 +00:00
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
2013-11-18 17:17:45 +00:00
|
|
|
}
|
2012-02-02 23:14:08 +00:00
|
|
|
|
2013-11-18 17:17:45 +00:00
|
|
|
close(fd);
|
2011-10-24 12:10:59 +00:00
|
|
|
}
|
2013-10-03 12:18:56 +00:00
|
|
|
|
|
|
|
/** fsync() transfers ("flushes") all modified in-core data of (i.e., modified buffer cache pages for) the file
|
|
|
|
* referred to by the file descriptor fd to the disk device (or other permanent storage device)
|
|
|
|
* so that all changed information can be retrieved even after the system crashed or was rebooted.
|
|
|
|
* This includes writing through or flushing a disk cache if present. The call blocks until the device
|
|
|
|
* reports that the transfer has completed. It also flushes metadata information associated with the file (see stat(2)).
|
|
|
|
* - man fsync */
|
|
|
|
void sync()
|
|
|
|
{
|
|
|
|
fsync(fd);
|
|
|
|
}
|
2011-10-24 12:10:59 +00:00
|
|
|
|
|
|
|
virtual std::string getFileName()
|
|
|
|
{
|
|
|
|
return file_name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|