2016-02-09 22:07:48 +02:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
|
#include <nlohmann/json_fwd.hpp>
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
enum HashType : char;
|
|
|
|
|
|
2021-09-13 15:41:28 +03:00
|
|
|
|
class MultiCommand;
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
class Args
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Parse the command line, throwing a UsageError if something goes
|
|
|
|
|
* wrong.
|
|
|
|
|
*/
|
2016-02-09 22:07:48 +02:00
|
|
|
|
void parseCmdline(const Strings & cmdline);
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Return a short one-line description of the command.
|
|
|
|
|
*/
|
2016-02-09 22:07:48 +02:00
|
|
|
|
virtual std::string description() { return ""; }
|
|
|
|
|
|
2022-01-31 19:03:24 +02:00
|
|
|
|
virtual bool forceImpureByDefault() { return false; }
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Return documentation about this command, in Markdown format.
|
|
|
|
|
*/
|
2020-12-07 14:04:24 +02:00
|
|
|
|
virtual std::string doc() { return ""; }
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
protected:
|
|
|
|
|
|
2017-08-29 15:28:57 +03:00
|
|
|
|
static const size_t ArityAny = std::numeric_limits<size_t>::max();
|
|
|
|
|
|
2020-05-11 16:46:18 +03:00
|
|
|
|
struct Handler
|
|
|
|
|
{
|
|
|
|
|
std::function<void(std::vector<std::string>)> fun;
|
|
|
|
|
size_t arity;
|
|
|
|
|
|
|
|
|
|
Handler() {}
|
|
|
|
|
|
|
|
|
|
Handler(std::function<void(std::vector<std::string>)> && fun)
|
|
|
|
|
: fun(std::move(fun))
|
|
|
|
|
, arity(ArityAny)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Handler(std::function<void()> && handler)
|
|
|
|
|
: fun([handler{std::move(handler)}](std::vector<std::string>) { handler(); })
|
|
|
|
|
, arity(0)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Handler(std::function<void(std::string)> && handler)
|
|
|
|
|
: fun([handler{std::move(handler)}](std::vector<std::string> ss) {
|
|
|
|
|
handler(std::move(ss[0]));
|
|
|
|
|
})
|
|
|
|
|
, arity(1)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Handler(std::function<void(std::string, std::string)> && handler)
|
|
|
|
|
: fun([handler{std::move(handler)}](std::vector<std::string> ss) {
|
|
|
|
|
handler(std::move(ss[0]), std::move(ss[1]));
|
|
|
|
|
})
|
|
|
|
|
, arity(2)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Handler(std::vector<std::string> * dest)
|
|
|
|
|
: fun([=](std::vector<std::string> ss) { *dest = ss; })
|
|
|
|
|
, arity(ArityAny)
|
|
|
|
|
{ }
|
|
|
|
|
|
2021-01-08 11:44:55 +02:00
|
|
|
|
Handler(std::string * dest)
|
|
|
|
|
: fun([=](std::vector<std::string> ss) { *dest = ss[0]; })
|
|
|
|
|
, arity(1)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Handler(std::optional<std::string> * dest)
|
2020-05-11 16:46:18 +03:00
|
|
|
|
: fun([=](std::vector<std::string> ss) { *dest = ss[0]; })
|
|
|
|
|
, arity(1)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
Handler(T * dest, const T & val)
|
|
|
|
|
: fun([=](std::vector<std::string> ss) { *dest = val; })
|
|
|
|
|
, arity(0)
|
|
|
|
|
{ }
|
2021-01-08 11:44:55 +02:00
|
|
|
|
|
|
|
|
|
template<class I>
|
|
|
|
|
Handler(I * dest)
|
|
|
|
|
: fun([=](std::vector<std::string> ss) {
|
2021-01-08 13:51:19 +02:00
|
|
|
|
*dest = string2IntWithUnitPrefix<I>(ss[0]);
|
2021-01-08 11:44:55 +02:00
|
|
|
|
})
|
|
|
|
|
, arity(1)
|
|
|
|
|
{ }
|
2021-09-14 20:05:28 +03:00
|
|
|
|
|
|
|
|
|
template<class I>
|
|
|
|
|
Handler(std::optional<I> * dest)
|
|
|
|
|
: fun([=](std::vector<std::string> ss) {
|
|
|
|
|
*dest = string2IntWithUnitPrefix<I>(ss[0]);
|
|
|
|
|
})
|
|
|
|
|
, arity(1)
|
|
|
|
|
{ }
|
2020-05-11 16:46:18 +03:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-25 20:03:13 +02:00
|
|
|
|
/* Options. */
|
2016-02-09 22:07:48 +02:00
|
|
|
|
struct Flag
|
|
|
|
|
{
|
2017-06-07 19:41:20 +03:00
|
|
|
|
typedef std::shared_ptr<Flag> ptr;
|
2020-05-04 23:40:19 +03:00
|
|
|
|
|
2017-06-07 19:41:20 +03:00
|
|
|
|
std::string longName;
|
2021-02-07 21:44:56 +02:00
|
|
|
|
std::set<std::string> aliases;
|
2017-06-07 19:41:20 +03:00
|
|
|
|
char shortName = 0;
|
2016-02-09 22:07:48 +02:00
|
|
|
|
std::string description;
|
2017-06-07 19:41:20 +03:00
|
|
|
|
std::string category;
|
2020-05-04 23:40:19 +03:00
|
|
|
|
Strings labels;
|
|
|
|
|
Handler handler;
|
2020-05-10 22:35:07 +03:00
|
|
|
|
std::function<void(size_t, std::string_view)> completer;
|
2020-05-04 23:40:19 +03:00
|
|
|
|
|
2023-01-17 02:13:31 +02:00
|
|
|
|
std::optional<ExperimentalFeature> experimentalFeature;
|
|
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
|
static Flag mkHashTypeFlag(std::string && longName, HashType * ht);
|
2020-06-02 21:25:32 +03:00
|
|
|
|
static Flag mkHashTypeOptFlag(std::string && longName, std::optional<HashType> * oht);
|
2016-02-09 22:07:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
2017-06-07 19:41:20 +03:00
|
|
|
|
std::map<std::string, Flag::ptr> longFlags;
|
|
|
|
|
std::map<char, Flag::ptr> shortFlags;
|
2016-02-09 22:07:48 +02:00
|
|
|
|
|
|
|
|
|
virtual bool processFlag(Strings::iterator & pos, Strings::iterator end);
|
|
|
|
|
|
|
|
|
|
/* Positional arguments. */
|
|
|
|
|
struct ExpectedArg
|
|
|
|
|
{
|
|
|
|
|
std::string label;
|
2020-05-10 22:35:07 +03:00
|
|
|
|
bool optional = false;
|
2020-05-11 16:46:18 +03:00
|
|
|
|
Handler handler;
|
|
|
|
|
std::function<void(size_t, std::string_view)> completer;
|
2016-02-09 22:07:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::list<ExpectedArg> expectedArgs;
|
|
|
|
|
|
|
|
|
|
virtual bool processArgs(const Strings & args, bool finish);
|
|
|
|
|
|
2020-12-03 23:45:44 +02:00
|
|
|
|
virtual Strings::iterator rewriteArgs(Strings & args, Strings::iterator pos)
|
|
|
|
|
{ return pos; }
|
|
|
|
|
|
2017-06-07 19:41:20 +03:00
|
|
|
|
std::set<std::string> hiddenCategories;
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Called after all command line flags before the first non-flag
|
|
|
|
|
* argument (if any) have been processed.
|
|
|
|
|
*/
|
2021-01-28 16:37:43 +02:00
|
|
|
|
virtual void initialFlagsProcessed() {}
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Called after the command line has been processed if we need to generate
|
|
|
|
|
* completions. Useful for commands that need to know the whole command line
|
|
|
|
|
* in order to know what completions to generate.
|
|
|
|
|
*/
|
2022-06-20 05:15:38 +03:00
|
|
|
|
virtual void completionHook() { }
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
public:
|
|
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
|
void addFlag(Flag && flag);
|
2017-06-07 19:41:20 +03:00
|
|
|
|
|
2021-02-26 15:55:54 +02:00
|
|
|
|
void removeFlag(const std::string & longName);
|
|
|
|
|
|
2020-05-11 16:46:18 +03:00
|
|
|
|
void expectArgs(ExpectedArg && arg)
|
|
|
|
|
{
|
|
|
|
|
expectedArgs.emplace_back(std::move(arg));
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Expect a string argument.
|
|
|
|
|
*/
|
2022-02-25 17:00:00 +02:00
|
|
|
|
void expectArg(const std::string & label, std::string * dest, bool optional = false)
|
2016-02-09 22:07:48 +02:00
|
|
|
|
{
|
2020-05-11 16:46:18 +03:00
|
|
|
|
expectArgs({
|
|
|
|
|
.label = label,
|
2020-09-25 11:27:40 +03:00
|
|
|
|
.optional = optional,
|
2020-05-11 16:46:18 +03:00
|
|
|
|
.handler = {dest}
|
|
|
|
|
});
|
2016-02-09 22:07:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Expect 0 or more arguments.
|
|
|
|
|
*/
|
2017-10-24 13:45:11 +03:00
|
|
|
|
void expectArgs(const std::string & label, std::vector<std::string> * dest)
|
2016-02-09 22:07:48 +02:00
|
|
|
|
{
|
2020-05-11 16:46:18 +03:00
|
|
|
|
expectArgs({
|
|
|
|
|
.label = label,
|
|
|
|
|
.handler = {dest}
|
|
|
|
|
});
|
2016-02-09 22:07:48 +02:00
|
|
|
|
}
|
2016-02-09 22:28:29 +02:00
|
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
|
virtual nlohmann::json toJSON();
|
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
|
friend class MultiCommand;
|
2021-09-13 15:41:28 +03:00
|
|
|
|
|
|
|
|
|
MultiCommand * parent = nullptr;
|
2023-01-17 02:13:31 +02:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Experimental features needed when parsing args. These are checked
|
|
|
|
|
* after flag parsing is completed in order to support enabling
|
|
|
|
|
* experimental features coming after the flag that needs the
|
|
|
|
|
* experimental feature.
|
|
|
|
|
*/
|
|
|
|
|
std::set<ExperimentalFeature> flagExperimentalFeatures;
|
2016-02-09 22:07:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* A command is an argument parser that can be executed by calling its
|
|
|
|
|
* run() method.
|
|
|
|
|
*/
|
2021-09-13 15:41:28 +03:00
|
|
|
|
struct Command : virtual public Args
|
2018-11-22 17:03:31 +02:00
|
|
|
|
{
|
2019-06-20 00:37:40 +03:00
|
|
|
|
friend class MultiCommand;
|
|
|
|
|
|
2018-11-22 17:03:31 +02:00
|
|
|
|
virtual ~Command() { }
|
2019-06-18 17:01:35 +03:00
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Entry point to the command
|
|
|
|
|
*/
|
2018-11-22 17:03:31 +02:00
|
|
|
|
virtual void run() = 0;
|
|
|
|
|
|
2020-05-05 16:18:23 +03:00
|
|
|
|
typedef int Category;
|
|
|
|
|
|
|
|
|
|
static constexpr Category catDefault = 0;
|
|
|
|
|
|
|
|
|
|
virtual Category category() { return catDefault; }
|
2018-11-22 17:03:31 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-06-18 17:01:35 +03:00
|
|
|
|
typedef std::map<std::string, std::function<ref<Command>()>> Commands;
|
2018-11-22 17:03:31 +02:00
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* An argument parser that supports multiple subcommands,
|
|
|
|
|
* i.e. ‘<command> <subcommand>’.
|
|
|
|
|
*/
|
2021-09-13 15:41:28 +03:00
|
|
|
|
class MultiCommand : virtual public Args
|
2018-11-22 17:03:31 +02:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Commands commands;
|
|
|
|
|
|
2020-05-05 16:18:23 +03:00
|
|
|
|
std::map<Command::Category, std::string> categories;
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* Selected command, if any.
|
|
|
|
|
*/
|
2020-05-05 16:18:23 +03:00
|
|
|
|
std::optional<std::pair<std::string, ref<Command>>> command;
|
2018-11-22 17:03:31 +02:00
|
|
|
|
|
2019-06-18 17:01:35 +03:00
|
|
|
|
MultiCommand(const Commands & commands);
|
2018-11-22 17:03:31 +02:00
|
|
|
|
|
|
|
|
|
bool processFlag(Strings::iterator & pos, Strings::iterator end) override;
|
|
|
|
|
|
|
|
|
|
bool processArgs(const Strings & args, bool finish) override;
|
2020-08-17 18:44:52 +03:00
|
|
|
|
|
2022-06-20 05:15:38 +03:00
|
|
|
|
void completionHook() override;
|
|
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
|
nlohmann::json toJSON() override;
|
2018-11-22 17:03:31 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
Strings argvToStrings(int argc, char * * argv);
|
|
|
|
|
|
2020-10-09 10:39:51 +03:00
|
|
|
|
struct Completion {
|
|
|
|
|
std::string completion;
|
|
|
|
|
std::string description;
|
|
|
|
|
|
|
|
|
|
bool operator<(const Completion & other) const;
|
|
|
|
|
};
|
|
|
|
|
class Completions : public std::set<Completion> {
|
|
|
|
|
public:
|
|
|
|
|
void add(std::string completion, std::string description = "");
|
|
|
|
|
};
|
|
|
|
|
extern std::shared_ptr<Completions> completions;
|
2021-12-22 13:37:59 +02:00
|
|
|
|
|
|
|
|
|
enum CompletionType {
|
|
|
|
|
ctNormal,
|
|
|
|
|
ctFilenames,
|
|
|
|
|
ctAttrs
|
|
|
|
|
};
|
|
|
|
|
extern CompletionType completionType;
|
2020-05-10 21:32:21 +03:00
|
|
|
|
|
2020-05-11 16:46:18 +03:00
|
|
|
|
void completePath(size_t, std::string_view prefix);
|
2020-05-10 22:35:07 +03:00
|
|
|
|
|
2020-05-11 23:04:13 +03:00
|
|
|
|
void completeDir(size_t, std::string_view prefix);
|
|
|
|
|
|
2016-02-09 22:07:48 +02:00
|
|
|
|
}
|