ClickHouse/programs/disks/ICommand.h

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

67 lines
1.7 KiB
C++
Raw Normal View History

2022-12-08 17:54:24 +00:00
#pragma once
#include <Disks/IDisk.h>
2023-11-30 03:09:55 +00:00
#include <Disks/DiskSelector.h>
#include <boost/program_options.hpp>
#include <Common/Config/ConfigProcessor.h>
#include <Poco/Util/Application.h>
#include <memory>
namespace DB
{
namespace po = boost::program_options;
using ProgramOptionsDescription = boost::program_options::options_description;
using CommandLineOptions = boost::program_options::variables_map;
class ICommand
{
public:
ICommand() = default;
2022-06-16 17:38:33 +00:00
virtual ~ICommand() = default;
2022-06-16 17:38:33 +00:00
virtual 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) = 0;
2022-06-21 14:40:22 +00:00
const std::optional<ProgramOptionsDescription> & getCommandOptions() const { return command_option_description; }
void addOptions(ProgramOptionsDescription & options_description);
2022-06-16 17:38:33 +00:00
virtual void processOptions(Poco::Util::LayeredConfiguration & config, po::variables_map & options) const = 0;
2022-06-21 14:40:22 +00:00
protected:
void printHelpMessage() const;
static String validatePathAndGetAsRelative(const String & path);
public:
String command_name;
String description;
protected:
std::optional<ProgramOptionsDescription> command_option_description;
String usage;
po::positional_options_description positional_options_description;
};
using CommandPtr = std::unique_ptr<ICommand>;
}
2022-12-08 17:53:05 +00:00
DB::CommandPtr makeCommandCopy();
DB::CommandPtr makeCommandLink();
DB::CommandPtr makeCommandList();
DB::CommandPtr makeCommandListDisks();
DB::CommandPtr makeCommandMove();
DB::CommandPtr makeCommandRead();
DB::CommandPtr makeCommandRemove();
DB::CommandPtr makeCommandWrite();
DB::CommandPtr makeCommandMkDir();
2024-02-14 02:31:31 +00:00
DB::CommandPtr makeCommandPackedIO();