mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
96 lines
2.3 KiB
C++
96 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#include <Yandex/logger_useful.h>
|
|
#include <DB/Columns/IColumn.h>
|
|
#include <Poco/AutoPtr.h>
|
|
#include <Poco/Util/XMLConfiguration.h>
|
|
#include <string>
|
|
#include <Poco/File.h>
|
|
#include <DB/Common/escapeForFileName.h>
|
|
#include <jsonxx.h>
|
|
#include <fstream>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// хранит размеры всех столбцов, и может проверять не побились ли столбцы
|
|
template <class Storage>
|
|
class FileChecker
|
|
{
|
|
public:
|
|
FileChecker(const std::string &file_info_path_, Storage & storage_) :
|
|
files_info_path(file_info_path_), storage(storage_), log(&Logger::get("FileChecker"))
|
|
{
|
|
std::ifstream istr(files_info_path);
|
|
files_info.parse(istr);
|
|
}
|
|
|
|
void setPath(const std::string & file_info_path_)
|
|
{
|
|
files_info_path = file_info_path_;
|
|
}
|
|
|
|
using Files = std::vector<Poco::File>;
|
|
|
|
void update(const Poco::File & file)
|
|
{
|
|
updateTree(file);
|
|
saveTree();
|
|
}
|
|
|
|
void update(const Files::iterator & begin, const Files::iterator & end)
|
|
{
|
|
for (auto it = begin; it != end; ++it)
|
|
updateTree(*it);
|
|
saveTree();
|
|
}
|
|
|
|
/// Проверяем файлы, параметры которых указаны в sizes.json
|
|
bool check() const
|
|
{
|
|
bool correct = true;
|
|
for (auto & node : files_info.kv_map())
|
|
{
|
|
std::string filename = unescapeForFileName(node.first);
|
|
size_t expected_size = std::stoull(node.second->get<jsonxx::Object>().get<std::string>("size"));
|
|
|
|
Poco::File file(Poco::Path(files_info_path).parent().toString() + "/" + filename);
|
|
if (!file.exists())
|
|
{
|
|
LOG_ERROR(log, "File " << file.path() << " doesn't exists");
|
|
correct = false;
|
|
continue;
|
|
}
|
|
|
|
size_t real_size = file.getSize();
|
|
if (real_size != expected_size)
|
|
{
|
|
LOG_ERROR(log, "Size of " << file.path() << " is wrong. Size is " << real_size << " but should be " << expected_size);
|
|
correct = false;
|
|
}
|
|
}
|
|
return correct;
|
|
}
|
|
|
|
private:
|
|
void updateTree(const Poco::File & file)
|
|
{
|
|
files_info.import(escapeForFileName(Poco::Path(file.path()).getFileName()),
|
|
jsonxx::Object("size", std::to_string(file.getSize())));
|
|
}
|
|
|
|
void saveTree()
|
|
{
|
|
std::ofstream file(files_info_path, std::ofstream::trunc);
|
|
file << files_info.write(jsonxx::JSON);
|
|
}
|
|
|
|
std::string files_info_path;
|
|
|
|
jsonxx::Object files_info;
|
|
|
|
Storage & storage;
|
|
Logger * log;
|
|
};
|
|
}
|