2022-04-19 18:15:27 +00:00
|
|
|
#include <Backups/BackupCoordinationLocal.h>
|
2022-04-17 12:11:43 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2022-04-19 09:02:34 +00:00
|
|
|
using SizeAndChecksum = IBackupCoordination::SizeAndChecksum;
|
2022-04-17 12:11:43 +00:00
|
|
|
using FileInfo = IBackupCoordination::FileInfo;
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
BackupCoordinationLocal::BackupCoordinationLocal() = default;
|
|
|
|
BackupCoordinationLocal::~BackupCoordinationLocal() = default;
|
2022-04-17 12:11:43 +00:00
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
void BackupCoordinationLocal::addFileInfo(const FileInfo & file_info, bool & is_data_file_required)
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
2022-04-19 09:02:34 +00:00
|
|
|
file_names.emplace(file_info.file_name, std::pair{file_info.size, file_info.checksum});
|
|
|
|
if (!file_info.size)
|
|
|
|
{
|
|
|
|
is_data_file_required = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool inserted_file_info = file_infos.try_emplace(std::pair{file_info.size, file_info.checksum}, file_info).second;
|
|
|
|
is_data_file_required = inserted_file_info && (file_info.size > file_info.base_size);
|
2022-04-17 12:11:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
void BackupCoordinationLocal::updateFileInfo(const FileInfo & file_info)
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
2022-04-19 09:02:34 +00:00
|
|
|
if (!file_info.size)
|
|
|
|
return; /// we don't keep FileInfos for empty files, nothing to update
|
|
|
|
|
2022-04-17 12:11:43 +00:00
|
|
|
std::lock_guard lock{mutex};
|
2022-04-19 09:02:34 +00:00
|
|
|
auto & dest = file_infos.at(std::pair{file_info.size, file_info.checksum});
|
2022-04-17 12:11:43 +00:00
|
|
|
dest.archive_suffix = file_info.archive_suffix;
|
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
std::vector<FileInfo> BackupCoordinationLocal::getAllFileInfos() const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
|
|
|
std::vector<FileInfo> res;
|
2022-04-19 09:02:34 +00:00
|
|
|
for (const auto & [file_name, size_and_checksum] : file_names)
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
2022-04-19 09:02:34 +00:00
|
|
|
FileInfo info;
|
|
|
|
UInt64 size = size_and_checksum.first;
|
|
|
|
if (size) /// we don't keep FileInfos for empty files
|
|
|
|
info = file_infos.at(size_and_checksum);
|
2022-04-17 12:11:43 +00:00
|
|
|
info.file_name = file_name;
|
|
|
|
res.push_back(std::move(info));
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
Strings BackupCoordinationLocal::listFiles(const String & prefix, const String & terminator) const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
|
|
|
Strings elements;
|
|
|
|
for (auto it = file_names.lower_bound(prefix); it != file_names.end(); ++it)
|
|
|
|
{
|
|
|
|
const String & name = it->first;
|
|
|
|
if (!name.starts_with(prefix))
|
|
|
|
break;
|
|
|
|
size_t start_pos = prefix.length();
|
|
|
|
size_t end_pos = String::npos;
|
|
|
|
if (!terminator.empty())
|
|
|
|
end_pos = name.find(terminator, start_pos);
|
|
|
|
std::string_view new_element = std::string_view{name}.substr(start_pos, end_pos - start_pos);
|
|
|
|
if (!elements.empty() && (elements.back() == new_element))
|
|
|
|
continue;
|
|
|
|
elements.push_back(String{new_element});
|
|
|
|
}
|
|
|
|
return elements;
|
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
std::optional<FileInfo> BackupCoordinationLocal::getFileInfo(const String & file_name) const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
|
|
|
auto it = file_names.find(file_name);
|
|
|
|
if (it == file_names.end())
|
|
|
|
return std::nullopt;
|
2022-04-19 09:02:34 +00:00
|
|
|
const auto & size_and_checksum = it->second;
|
|
|
|
UInt64 size = size_and_checksum.first;
|
|
|
|
FileInfo info;
|
|
|
|
if (size) /// we don't keep FileInfos for empty files
|
|
|
|
info = file_infos.at(size_and_checksum);
|
|
|
|
info.file_name = file_name;
|
|
|
|
return info;
|
2022-04-17 12:11:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
std::optional<FileInfo> BackupCoordinationLocal::getFileInfo(const SizeAndChecksum & size_and_checksum) const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
2022-04-19 09:02:34 +00:00
|
|
|
auto it = file_infos.find(size_and_checksum);
|
2022-04-17 12:11:43 +00:00
|
|
|
if (it == file_infos.end())
|
|
|
|
return std::nullopt;
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
std::optional<SizeAndChecksum> BackupCoordinationLocal::getFileSizeAndChecksum(const String & file_name) const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
|
|
|
auto it = file_names.find(file_name);
|
|
|
|
if (it == file_names.end())
|
|
|
|
return std::nullopt;
|
2022-04-19 09:02:34 +00:00
|
|
|
return it->second;
|
2022-04-17 12:11:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
String BackupCoordinationLocal::getNextArchiveSuffix()
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
2022-04-19 09:02:34 +00:00
|
|
|
std::lock_guard lock{mutex};
|
2022-04-17 12:11:43 +00:00
|
|
|
String new_archive_suffix = fmt::format("{:03}", ++current_archive_suffix); /// Outputs 001, 002, 003, ...
|
|
|
|
archive_suffixes.push_back(new_archive_suffix);
|
|
|
|
return new_archive_suffix;
|
|
|
|
}
|
|
|
|
|
2022-04-19 18:15:27 +00:00
|
|
|
Strings BackupCoordinationLocal::getAllArchiveSuffixes() const
|
2022-04-17 12:11:43 +00:00
|
|
|
{
|
|
|
|
std::lock_guard lock{mutex};
|
|
|
|
return archive_suffixes;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|