ClickHouse/src/Common/FileChecker.h

47 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
2021-10-02 07:13:14 +00:00
#include <base/logger_useful.h>
2019-07-03 13:17:19 +00:00
#include <Storages/CheckResults.h>
#include <Disks/IDisk.h>
namespace DB
{
/// Stores the sizes of all columns, and can check whether the columns are corrupted.
class FileChecker
{
public:
FileChecker(DiskPtr disk_, const String & file_info_path_);
void setPath(const String & file_info_path_);
String getPath() const;
void update(const String & full_file_path);
void setEmpty(const String & full_file_path);
void save() const;
2021-01-05 01:49:15 +00:00
bool empty() const { return map.empty(); }
2017-05-07 20:25:26 +00:00
/// Check the files whose parameters are specified in sizes.json
2019-07-03 13:17:19 +00:00
CheckResults check() const;
/// Truncate files that have excessive size to the expected size.
/// Throw exception if the file size is less than expected.
/// The purpose of this function is to rollback a group of unfinished writes.
void repair();
/// Returns stored file size.
size_t getFileSize(const String & full_file_path) const;
private:
void load();
const DiskPtr disk;
const Poco::Logger * log = &Poco::Logger::get("FileChecker");
String files_info_path;
std::map<String, size_t> map;
};
}