2024-05-27 11:44:45 +00:00
|
|
|
#include "DisksClient.h"
|
|
|
|
#include <Client/ClientBase.h>
|
|
|
|
#include <Client/ReplxxLineReader.h>
|
|
|
|
#include <Disks/registerDisks.h>
|
2024-05-31 13:10:42 +00:00
|
|
|
#include <Common/Config/ConfigProcessor.h>
|
2024-05-27 11:44:45 +00:00
|
|
|
|
|
|
|
#include <Formats/registerFormats.h>
|
|
|
|
|
2024-05-29 13:57:29 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2024-06-06 16:56:30 +00:00
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
extern const int LOGICAL_ERROR;
|
2024-05-29 13:57:29 +00:00
|
|
|
};
|
|
|
|
|
2024-05-27 11:44:45 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2024-05-31 13:10:42 +00:00
|
|
|
DiskWithPath::DiskWithPath(DiskPtr disk_, std::optional<String> path_) : disk(disk_)
|
2024-05-27 11:44:45 +00:00
|
|
|
{
|
2024-05-31 13:10:42 +00:00
|
|
|
if (path_.has_value())
|
2024-05-27 11:44:45 +00:00
|
|
|
{
|
2024-05-31 13:10:42 +00:00
|
|
|
if (!fs::path{path_.value()}.is_absolute())
|
2024-05-27 11:44:45 +00:00
|
|
|
{
|
2024-07-01 11:11:16 +00:00
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Initializing path {} is not absolute", path_.value());
|
2024-05-27 11:44:45 +00:00
|
|
|
}
|
2024-05-31 13:10:42 +00:00
|
|
|
path = path_.value();
|
2024-05-27 11:44:45 +00:00
|
|
|
}
|
2024-05-31 13:10:42 +00:00
|
|
|
else
|
2024-05-27 11:44:45 +00:00
|
|
|
{
|
2024-05-31 13:10:42 +00:00
|
|
|
path = String{"/"};
|
2024-05-27 11:44:45 +00:00
|
|
|
}
|
2024-06-13 19:14:16 +00:00
|
|
|
|
2024-06-25 17:20:42 +00:00
|
|
|
String relative_path = normalizePathAndGetAsRelative(path);
|
|
|
|
if (disk->isDirectory(relative_path) || (relative_path.empty() && (disk->isDirectory("/"))))
|
2024-05-29 13:57:29 +00:00
|
|
|
{
|
2024-06-25 17:20:42 +00:00
|
|
|
return;
|
2024-05-29 13:57:29 +00:00
|
|
|
}
|
2024-06-25 17:20:42 +00:00
|
|
|
throw Exception(
|
|
|
|
ErrorCodes::BAD_ARGUMENTS,
|
|
|
|
"Initializing path {} (normalized path: {}) at disk {} is not a directory",
|
|
|
|
path,
|
|
|
|
relative_path,
|
|
|
|
disk->getName());
|
2024-05-29 13:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<String> DiskWithPath::listAllFilesByPath(const String & any_path) const
|
|
|
|
{
|
|
|
|
if (isDirectory(any_path))
|
|
|
|
{
|
|
|
|
std::vector<String> file_names;
|
|
|
|
disk->listFiles(getRelativeFromRoot(any_path), file_names);
|
|
|
|
return file_names;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-31 13:10:42 +00:00
|
|
|
std::vector<String> DiskWithPath::getAllFilesByPattern(const String & pattern) const
|
2024-05-29 13:57:29 +00:00
|
|
|
{
|
|
|
|
auto [path_before, path_after] = [&]() -> std::pair<String, String>
|
|
|
|
{
|
|
|
|
auto slash_pos = pattern.find_last_of('/');
|
|
|
|
if (slash_pos >= pattern.size())
|
|
|
|
{
|
|
|
|
return {"", pattern};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {pattern.substr(0, slash_pos + 1), pattern.substr(slash_pos + 1, pattern.size() - slash_pos - 1)};
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
|
|
|
if (!isDirectory(path_before))
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::vector<String> file_names = listAllFilesByPath(path_before);
|
|
|
|
|
|
|
|
std::vector<String> answer;
|
|
|
|
|
|
|
|
for (const auto & file_name : file_names)
|
|
|
|
{
|
|
|
|
if (file_name.starts_with(path_after))
|
|
|
|
{
|
|
|
|
String file_pattern = path_before + file_name;
|
|
|
|
if (isDirectory(file_pattern))
|
|
|
|
{
|
|
|
|
file_pattern = file_pattern + "/";
|
|
|
|
}
|
|
|
|
answer.push_back(file_pattern);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return answer;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void DiskWithPath::setPath(const String & any_path)
|
|
|
|
{
|
|
|
|
if (isDirectory(any_path))
|
|
|
|
{
|
|
|
|
path = getAbsolutePath(any_path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Path {} at disk {} is not a directory", any_path, disk->getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String DiskWithPath::validatePathAndGetAsRelative(const String & path)
|
|
|
|
{
|
|
|
|
String lexically_normal_path = fs::path(path).lexically_normal();
|
|
|
|
if (lexically_normal_path.find("..") != std::string::npos)
|
|
|
|
throw DB::Exception(DB::ErrorCodes::BAD_ARGUMENTS, "Path {} is not normalized", path);
|
|
|
|
|
|
|
|
/// If path is absolute we should keep it as relative inside disk, so disk will look like
|
|
|
|
/// an ordinary filesystem with root.
|
|
|
|
if (fs::path(lexically_normal_path).is_absolute())
|
|
|
|
return lexically_normal_path.substr(1);
|
|
|
|
|
|
|
|
return lexically_normal_path;
|
|
|
|
}
|
|
|
|
|
2024-05-31 13:10:42 +00:00
|
|
|
String DiskWithPath::normalizePathAndGetAsRelative(const String & messyPath)
|
2024-05-29 13:57:29 +00:00
|
|
|
{
|
|
|
|
std::filesystem::path path(messyPath);
|
|
|
|
std::filesystem::path canonical_path = std::filesystem::weakly_canonical(path);
|
2024-05-31 13:10:42 +00:00
|
|
|
String npath = canonical_path.make_preferred().string();
|
2024-05-29 13:57:29 +00:00
|
|
|
return validatePathAndGetAsRelative(npath);
|
|
|
|
}
|
|
|
|
|
2024-05-31 13:10:42 +00:00
|
|
|
String DiskWithPath::normalizePath(const String & path)
|
2024-05-29 13:57:29 +00:00
|
|
|
{
|
|
|
|
std::filesystem::path canonical_path = std::filesystem::weakly_canonical(path);
|
|
|
|
return canonical_path.make_preferred().string();
|
|
|
|
}
|
|
|
|
|
|
|
|
DisksClient::DisksClient(std::vector<std::pair<DiskPtr, std::optional<String>>> && disks_with_paths, std::optional<String> begin_disk)
|
|
|
|
{
|
|
|
|
if (disks_with_paths.empty())
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Initializing array of disks is empty");
|
|
|
|
}
|
|
|
|
if (!begin_disk.has_value())
|
|
|
|
{
|
|
|
|
begin_disk = disks_with_paths[0].first->getName();
|
|
|
|
}
|
2024-05-31 13:10:42 +00:00
|
|
|
bool has_begin_disk = false;
|
2024-05-29 13:57:29 +00:00
|
|
|
for (auto & [disk, path] : disks_with_paths)
|
|
|
|
{
|
|
|
|
addDisk(disk, path);
|
|
|
|
if (disk->getName() == begin_disk.value())
|
|
|
|
{
|
|
|
|
has_begin_disk = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!has_begin_disk)
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "There is no begin_disk '{}' in initializing array", begin_disk.value());
|
|
|
|
}
|
|
|
|
current_disk = std::move(begin_disk.value());
|
|
|
|
}
|
|
|
|
|
|
|
|
const DiskWithPath & DisksClient::getDiskWithPath(const String & disk) const
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return disks.at(disk);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The disk '{}' is unknown", disk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DiskWithPath & DisksClient::getDiskWithPath(const String & disk)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return disks.at(disk);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The disk '{}' is unknown", disk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const DiskWithPath & DisksClient::getCurrentDiskWithPath() const
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return disks.at(current_disk);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "There is no current disk in client");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DiskWithPath & DisksClient::getCurrentDiskWithPath()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return disks.at(current_disk);
|
2024-05-27 11:44:45 +00:00
|
|
|
}
|
2024-05-29 13:57:29 +00:00
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "There is no current disk in client");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisksClient::switchToDisk(const String & disk_, const std::optional<String> & path_)
|
|
|
|
{
|
|
|
|
if (disks.contains(disk_))
|
|
|
|
{
|
|
|
|
if (path_.has_value())
|
|
|
|
{
|
|
|
|
disks.at(disk_).setPath(path_.value());
|
|
|
|
}
|
|
|
|
current_disk = disk_;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The disk '{}' is unknown", disk_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<String> DisksClient::getAllDiskNames() const
|
|
|
|
{
|
|
|
|
std::vector<String> answer{};
|
|
|
|
answer.reserve(disks.size());
|
|
|
|
for (const auto & [disk_name, _] : disks)
|
|
|
|
{
|
|
|
|
answer.push_back(disk_name);
|
|
|
|
}
|
|
|
|
return answer;
|
|
|
|
}
|
|
|
|
|
2024-05-31 13:10:42 +00:00
|
|
|
std::vector<String> DisksClient::getAllFilesByPatternFromAllDisks(const String & pattern) const
|
2024-05-29 13:57:29 +00:00
|
|
|
{
|
|
|
|
std::vector<String> answer{};
|
|
|
|
for (const auto & [_, disk] : disks)
|
|
|
|
{
|
|
|
|
for (auto & word : disk.getAllFilesByPattern(pattern))
|
|
|
|
{
|
|
|
|
answer.push_back(word);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return answer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisksClient::addDisk(DiskPtr disk_, const std::optional<String> & path_)
|
|
|
|
{
|
|
|
|
String disk_name = disk_->getName();
|
|
|
|
if (disks.contains(disk_->getName()))
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The disk '{}' already exists", disk_name);
|
|
|
|
}
|
|
|
|
disks.emplace(disk_name, DiskWithPath{disk_, path_});
|
|
|
|
}
|
2024-05-27 11:44:45 +00:00
|
|
|
}
|