mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <common/logger_useful.h>
|
|
#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_);
|
|
|
|
void update(const String & full_file_path);
|
|
void setEmpty(const String & full_file_path);
|
|
void save() const;
|
|
bool empty() const { return map.empty(); }
|
|
|
|
/// Check the files whose parameters are specified in sizes.json
|
|
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();
|
|
|
|
/// File name -> size.
|
|
using Map = std::map<String, UInt64>;
|
|
|
|
Map getFileSizes() const;
|
|
|
|
private:
|
|
void load();
|
|
|
|
DiskPtr disk;
|
|
String files_info_path;
|
|
|
|
Map map;
|
|
|
|
Poco::Logger * log = &Poco::Logger::get("FileChecker");
|
|
};
|
|
|
|
}
|