ClickHouse/src/Common/StatusFile.cpp

108 lines
3.1 KiB
C++
Raw Normal View History

2016-01-17 13:34:36 +00:00
#include "StatusFile.h"
#include <sys/file.h>
#include <fcntl.h>
#include <errno.h>
2016-01-17 13:34:36 +00:00
2021-10-02 07:13:14 +00:00
#include <base/logger_useful.h>
#include <base/errnoToString.h>
#include <Common/ClickHouseRevision.h>
2021-10-02 07:13:14 +00:00
#include <base/LocalDateTime.h>
2016-01-17 13:34:36 +00:00
#include <IO/ReadBufferFromFile.h>
#include <IO/LimitReadBuffer.h>
#include <IO/WriteBufferFromFileDescriptor.h>
#include <IO/Operators.h>
2021-04-30 20:16:35 +00:00
#include <filesystem>
2016-01-17 13:34:36 +00:00
2021-04-30 20:16:35 +00:00
namespace fs = std::filesystem;
2016-01-17 13:34:36 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int CANNOT_OPEN_FILE;
extern const int CANNOT_CLOSE_FILE;
extern const int CANNOT_TRUNCATE_FILE;
extern const int CANNOT_SEEK_THROUGH_FILE;
}
2016-01-17 13:34:36 +00:00
2020-07-04 13:54:24 +00:00
StatusFile::FillFunction StatusFile::write_pid = [](WriteBuffer & out)
{
2020-07-04 13:57:04 +00:00
out << getpid();
2020-07-04 13:54:24 +00:00
};
StatusFile::FillFunction StatusFile::write_full_info = [](WriteBuffer & out)
{
out << "PID: " << getpid() << "\n"
<< "Started at: " << LocalDateTime(time(nullptr)) << "\n"
2020-09-17 12:15:05 +00:00
<< "Revision: " << ClickHouseRevision::getVersionRevision() << "\n";
2020-07-04 13:54:24 +00:00
};
StatusFile::StatusFile(std::string path_, FillFunction fill_)
: path(std::move(path_)), fill(std::move(fill_))
2016-01-17 13:34:36 +00:00
{
/// If file already exists. NOTE Minor race condition.
2021-04-30 20:16:35 +00:00
if (fs::exists(path))
{
std::string contents;
{
ReadBufferFromFile in(path, 1024);
LimitReadBuffer limit_in(in, 1024, false);
readStringUntilEOF(contents, limit_in);
}
if (!contents.empty())
2020-05-30 21:57:37 +00:00
LOG_INFO(&Poco::Logger::get("StatusFile"), "Status file {} already exists - unclean restart. Contents:\n{}", path, contents);
else
2020-05-30 21:57:37 +00:00
LOG_INFO(&Poco::Logger::get("StatusFile"), "Status file {} already exists and is empty - probably unclean hardware restart.", path);
}
fd = ::open(path.c_str(), O_WRONLY | O_CREAT | O_CLOEXEC, 0666);
if (-1 == fd)
2019-08-07 12:52:47 +00:00
throwFromErrnoWithPath("Cannot open file " + path, path, ErrorCodes::CANNOT_OPEN_FILE);
try
{
int flock_ret = flock(fd, LOCK_EX | LOCK_NB);
if (-1 == flock_ret)
{
if (errno == EWOULDBLOCK)
throw Exception("Cannot lock file " + path + ". Another server instance in same directory is already running.", ErrorCodes::CANNOT_OPEN_FILE);
else
2019-08-07 12:52:47 +00:00
throwFromErrnoWithPath("Cannot lock file " + path, path, ErrorCodes::CANNOT_OPEN_FILE);
}
if (0 != ftruncate(fd, 0))
2019-08-07 12:52:47 +00:00
throwFromErrnoWithPath("Cannot ftruncate " + path, path, ErrorCodes::CANNOT_TRUNCATE_FILE);
if (0 != lseek(fd, 0, SEEK_SET))
2019-08-07 12:52:47 +00:00
throwFromErrnoWithPath("Cannot lseek " + path, path, ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
/// Write information about current server instance to the file.
2020-07-04 13:54:24 +00:00
WriteBufferFromFileDescriptor out(fd, 1024);
fill(out);
}
catch (...)
{
close(fd);
throw;
}
2016-01-17 13:34:36 +00:00
}
StatusFile::~StatusFile()
{
if (0 != close(fd))
2020-05-30 21:57:37 +00:00
LOG_ERROR(&Poco::Logger::get("StatusFile"), "Cannot close file {}, {}", path, errnoToString(ErrorCodes::CANNOT_CLOSE_FILE));
2016-01-17 13:34:36 +00:00
if (0 != unlink(path.c_str()))
2020-05-30 21:57:37 +00:00
LOG_ERROR(&Poco::Logger::get("StatusFile"), "Cannot unlink file {}, {}", path, errnoToString(ErrorCodes::CANNOT_CLOSE_FILE));
2016-01-17 13:34:36 +00:00
}
}