2016-02-09 20:28:29 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "args.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
/* A command is an argument parser that can be executed by calling its
|
|
|
|
|
run() method. */
|
|
|
|
|
struct Command : virtual Args
|
|
|
|
|
{
|
|
|
|
|
virtual std::string name() = 0;
|
|
|
|
|
virtual void prepare() { };
|
|
|
|
|
virtual void run() = 0;
|
2016-04-21 12:58:32 +00:00
|
|
|
|
|
|
|
|
|
struct Example
|
|
|
|
|
{
|
|
|
|
|
std::string description;
|
|
|
|
|
std::string command;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef std::list<Example> Examples;
|
|
|
|
|
|
|
|
|
|
virtual Examples examples() { return Examples(); }
|
|
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class Store;
|
|
|
|
|
|
|
|
|
|
/* A command that require a Nix store. */
|
|
|
|
|
struct StoreCommand : virtual Command
|
|
|
|
|
{
|
2016-03-21 17:03:36 +00:00
|
|
|
|
std::string storeUri;
|
|
|
|
|
StoreCommand();
|
2016-02-09 20:28:29 +00:00
|
|
|
|
void run() override;
|
|
|
|
|
virtual void run(ref<Store>) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
2016-03-29 12:29:50 +00:00
|
|
|
|
/* A command that operates on zero or more store paths. */
|
|
|
|
|
struct StorePathsCommand : public StoreCommand
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Paths storePaths;
|
|
|
|
|
bool recursive = false;
|
2016-04-14 19:14:29 +00:00
|
|
|
|
bool all = false;
|
2016-03-29 12:29:50 +00:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
StorePathsCommand();
|
|
|
|
|
|
2016-05-31 11:31:04 +00:00
|
|
|
|
using StoreCommand::run;
|
|
|
|
|
|
2016-03-29 12:29:50 +00:00
|
|
|
|
virtual void run(ref<Store> store, Paths storePaths) = 0;
|
|
|
|
|
|
|
|
|
|
void run(ref<Store> store) override;
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
|
typedef std::map<std::string, ref<Command>> Commands;
|
|
|
|
|
|
|
|
|
|
/* An argument parser that supports multiple subcommands,
|
2016-11-25 23:37:43 +00:00
|
|
|
|
i.e. ‘<command> <subcommand>’. */
|
2016-03-14 11:37:30 +00:00
|
|
|
|
class MultiCommand : virtual Args
|
2016-02-09 20:28:29 +00:00
|
|
|
|
{
|
2016-03-14 11:37:30 +00:00
|
|
|
|
public:
|
2016-02-09 20:28:29 +00:00
|
|
|
|
Commands commands;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Command> command;
|
|
|
|
|
|
|
|
|
|
MultiCommand(const Commands & commands);
|
|
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override;
|
|
|
|
|
|
|
|
|
|
bool processFlag(Strings::iterator & pos, Strings::iterator end) override;
|
|
|
|
|
|
|
|
|
|
bool processArgs(const Strings & args, bool finish) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A helper class for registering commands globally. */
|
|
|
|
|
struct RegisterCommand
|
|
|
|
|
{
|
|
|
|
|
static Commands * commands;
|
|
|
|
|
|
|
|
|
|
RegisterCommand(ref<Command> command)
|
|
|
|
|
{
|
|
|
|
|
if (!commands) commands = new Commands;
|
|
|
|
|
commands->emplace(command->name(), command);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|