mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
#include <Disks/IDisk.h>
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
#include <Common/TerminalSize.h>
|
|
#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;
|
|
|
|
virtual ~ICommand() = default;
|
|
|
|
virtual void execute(
|
|
const std::vector<String> & command_arguments,
|
|
DB::ContextMutablePtr & global_context,
|
|
Poco::Util::LayeredConfiguration & config) = 0;
|
|
|
|
const std::optional<ProgramOptionsDescription> & getCommandOptions() const { return command_option_description; }
|
|
|
|
void addOptions(ProgramOptionsDescription & options_description);
|
|
|
|
virtual void processOptions(Poco::Util::LayeredConfiguration & config, po::variables_map & options) const = 0;
|
|
|
|
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>;
|
|
|
|
}
|
|
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandCopy();
|
|
std::unique_ptr <DB::ICommand> makeCommandLink();
|
|
std::unique_ptr <DB::ICommand> makeCommandList();
|
|
std::unique_ptr <DB::ICommand> makeCommandListDisks();
|
|
std::unique_ptr <DB::ICommand> makeCommandMove();
|
|
std::unique_ptr <DB::ICommand> makeCommandRead();
|
|
std::unique_ptr <DB::ICommand> makeCommandRemove();
|
|
std::unique_ptr <DB::ICommand> makeCommandWrite();
|
|
std::unique_ptr <DB::ICommand> makeCommandMkDir();
|