ClickHouse/programs/disks/CommandRemove.cpp

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

55 lines
1.3 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 CommandRemove final : public ICommand
{
public:
CommandRemove()
{
command_name = "remove";
description = "Remove file or directory with all children. Throws exception if file doesn't exists.\nPath should be in format './' or './path' or 'path'";
2022-06-16 17:38:33 +00:00
usage = "remove [OPTION]... <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,
2023-11-30 03:09:55 +00:00
std::shared_ptr<DiskSelector> & disk_selector,
2022-06-16 17:38:33 +00:00
Poco::Util::LayeredConfiguration & config) override
{
2022-06-16 17:38:33 +00:00
if (command_arguments.size() != 1)
{
printHelpMessage();
throw DB::Exception(DB::ErrorCodes::BAD_ARGUMENTS, "Bad Arguments");
}
String disk_name = config.getString("disk", "default");
const String & path = command_arguments[0];
2023-11-30 03:09:55 +00:00
DiskPtr disk = disk_selector->get(disk_name);
2022-12-08 17:43:54 +00:00
String relative_path = validatePathAndGetAsRelative(path);
2022-12-08 17:43:54 +00:00
disk->removeRecursive(relative_path);
}
};
}
std::unique_ptr <DB::ICommand> makeCommandRemove()
{
return std::make_unique<DB::CommandRemove>();
}