ClickHouse/programs/disks/CommandMove.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.6 KiB
C++
Raw Normal View History

#include "ICommand.h"
2022-07-20 20:30:16 +00:00
#include <Interpreters/Context.h>
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class CommandMove final : public ICommand
{
public:
CommandMove()
{
command_name = "move";
description = "Move file or directory from `from_path` to `to_path`\nPath should be in format './' or './path' or 'path'";
2022-06-16 17:38:33 +00:00
usage = "move [OPTION]... <FROM_PATH> <TO_PATH>";
}
void processOptions(
Poco::Util::LayeredConfiguration &,
2022-06-16 17:38:33 +00:00
po::variables_map &) const override
{}
2022-06-16 17:38:33 +00:00
void execute(
const std::vector<String> & command_arguments,
DB::ContextMutablePtr & global_context,
Poco::Util::LayeredConfiguration & config) override
{
2022-06-16 17:38:33 +00:00
if (command_arguments.size() != 2)
{
printHelpMessage();
throw DB::Exception("Bad Arguments", DB::ErrorCodes::BAD_ARGUMENTS);
}
String disk_name = config.getString("disk", "default");
const String & path_from = command_arguments[0];
const String & path_to = command_arguments[1];
DiskPtr disk = global_context->getDisk(disk_name);
String full_path_from = validatePathAndGetAsRelative(path_from);
String full_path_to = validatePathAndGetAsRelative(path_to);
if (disk->isFile(full_path_from))
disk->moveFile(full_path_from, full_path_to);
else
disk->moveDirectory(full_path_from, full_path_to);
}
};
}
std::unique_ptr <DB::ICommand> makeCommandMove()
{
return std::make_unique<DB::CommandMove>();
}