2016-01-17 13:34:36 +00:00
|
|
|
#include "StatusFile.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <fcntl.h>
|
2018-05-09 04:22:30 +00:00
|
|
|
#include <errno.h>
|
2016-01-17 13:34:36 +00:00
|
|
|
|
|
|
|
#include <Poco/File.h>
|
|
|
|
#include <common/logger_useful.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/ClickHouseRevision.h>
|
2016-02-03 01:17:58 +00:00
|
|
|
#include <common/LocalDateTime.h>
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/ReadBufferFromFile.h>
|
|
|
|
#include <IO/LimitReadBuffer.h>
|
|
|
|
#include <IO/WriteBufferFromFileDescriptor.h>
|
|
|
|
#include <IO/Operators.h>
|
2016-01-17 13:34:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-11-21 20:56:37 +00:00
|
|
|
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
|
|
|
|
|
|
|
StatusFile::StatusFile(const std::string & path_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: path(path_)
|
2016-01-17 13:34:36 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
/// If file already exists. NOTE Minor race condition.
|
|
|
|
if (Poco::File(path).exists())
|
|
|
|
{
|
|
|
|
std::string contents;
|
|
|
|
{
|
|
|
|
ReadBufferFromFile in(path, 1024);
|
2018-08-20 02:23:35 +00:00
|
|
|
LimitReadBuffer limit_in(in, 1024, false);
|
2017-04-01 07:20:54 +00:00
|
|
|
readStringUntilEOF(contents, limit_in);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!contents.empty())
|
|
|
|
LOG_INFO(&Logger::get("StatusFile"), "Status file " << path << " already exists - unclean restart. Contents:\n" << contents);
|
|
|
|
else
|
|
|
|
LOG_INFO(&Logger::get("StatusFile"), "Status file " << path << " already exists and is empty - probably unclean hardware restart.");
|
|
|
|
}
|
|
|
|
|
2019-05-18 15:12:04 +00:00
|
|
|
fd = ::open(path.c_str(), O_WRONLY | O_CREAT | O_CLOEXEC, 0666);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (-1 == fd)
|
2019-08-07 12:52:47 +00:00
|
|
|
throwFromErrnoWithPath("Cannot open file " + path, path, ErrorCodes::CANNOT_OPEN_FILE);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
int flock_ret = flock(fd, LOCK_EX | LOCK_NB);
|
|
|
|
if (-1 == flock_ret)
|
|
|
|
{
|
|
|
|
if (errno == EWOULDBLOCK)
|
2018-11-22 21:19:58 +00:00
|
|
|
throw Exception("Cannot lock file " + path + ". Another server instance in same directory is already running.", ErrorCodes::CANNOT_OPEN_FILE);
|
2017-04-01 07:20:54 +00:00
|
|
|
else
|
2019-08-07 12:52:47 +00:00
|
|
|
throwFromErrnoWithPath("Cannot lock file " + path, path, ErrorCodes::CANNOT_OPEN_FILE);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != ftruncate(fd, 0))
|
2019-08-07 12:52:47 +00:00
|
|
|
throwFromErrnoWithPath("Cannot ftruncate " + path, path, ErrorCodes::CANNOT_TRUNCATE_FILE);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
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);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Write information about current server instance to the file.
|
|
|
|
{
|
|
|
|
WriteBufferFromFileDescriptor out(fd, 1024);
|
|
|
|
out
|
|
|
|
<< "PID: " << getpid() << "\n"
|
2017-12-18 04:07:26 +00:00
|
|
|
<< "Started at: " << LocalDateTime(time(nullptr)) << "\n"
|
2017-04-01 07:20:54 +00:00
|
|
|
<< "Revision: " << ClickHouseRevision::get() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
throw;
|
|
|
|
}
|
2016-01-17 13:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
StatusFile::~StatusFile()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (0 != close(fd))
|
2018-11-21 20:56:37 +00:00
|
|
|
LOG_ERROR(&Logger::get("StatusFile"), "Cannot close file " << path << ", " << errnoToString(ErrorCodes::CANNOT_CLOSE_FILE));
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (0 != unlink(path.c_str()))
|
2018-11-21 20:56:37 +00:00
|
|
|
LOG_ERROR(&Logger::get("StatusFile"), "Cannot unlink file " << path << ", " << errnoToString(ErrorCodes::CANNOT_CLOSE_FILE));
|
2016-01-17 13:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|