2022-04-08 07:52:16 +00:00
|
|
|
#include "ICommand.h"
|
2022-07-20 20:30:16 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2022-04-08 07:52:16 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
2022-12-08 17:20:54 +00:00
|
|
|
class CommandLink final : public ICommand
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CommandLink()
|
|
|
|
{
|
|
|
|
command_name = "link";
|
|
|
|
description = "Create hardlink from `from_path` to `to_path`\nPath should be in format './' or './path' or 'path'";
|
2022-06-16 17:38:33 +00:00
|
|
|
usage = "link [OPTION]... <FROM_PATH> <TO_PATH>";
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void processOptions(
|
2022-06-06 11:14:50 +00:00
|
|
|
Poco::Util::LayeredConfiguration &,
|
2022-06-16 17:38:33 +00:00
|
|
|
po::variables_map &) const override
|
2022-06-21 14:40:22 +00:00
|
|
|
{
|
|
|
|
}
|
2022-04-08 07:52:16 +00:00
|
|
|
|
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-04-08 07:52:16 +00:00
|
|
|
{
|
2022-06-16 17:38:33 +00:00
|
|
|
if (command_arguments.size() != 2)
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
|
|
|
printHelpMessage();
|
2023-01-23 21:13:58 +00:00
|
|
|
throw DB::Exception(DB::ErrorCodes::BAD_ARGUMENTS, "Bad Arguments");
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String disk_name = config.getString("disk", "default");
|
|
|
|
|
2022-12-08 17:20:54 +00:00
|
|
|
const String & path_from = command_arguments[0];
|
|
|
|
const String & path_to = command_arguments[1];
|
2022-04-08 07:52:16 +00:00
|
|
|
|
|
|
|
DiskPtr disk = global_context->getDisk(disk_name);
|
|
|
|
|
2022-12-08 17:43:54 +00:00
|
|
|
String relative_path_from = validatePathAndGetAsRelative(path_from);
|
|
|
|
String relative_path_to = validatePathAndGetAsRelative(path_to);
|
2022-04-08 07:52:16 +00:00
|
|
|
|
2022-12-08 17:43:54 +00:00
|
|
|
disk->createHardLink(relative_path_from, relative_path_to);
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandLink()
|
|
|
|
{
|
|
|
|
return std::make_unique<DB::CommandLink>();
|
|
|
|
}
|