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