2016-02-09 20:07:48 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2016-09-21 14:00:03 +00:00
|
|
|
|
MakeError(UsageError, Error);
|
2016-02-09 20:07:48 +00:00
|
|
|
|
|
|
|
|
|
enum HashType : char;
|
|
|
|
|
|
|
|
|
|
class Args
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/* Parse the command line, throwing a UsageError if something goes
|
|
|
|
|
wrong. */
|
|
|
|
|
void parseCmdline(const Strings & cmdline);
|
|
|
|
|
|
|
|
|
|
virtual void printHelp(const string & programName, std::ostream & out);
|
|
|
|
|
|
|
|
|
|
virtual std::string description() { return ""; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
2017-08-29 12:28:57 +00:00
|
|
|
|
static const size_t ArityAny = std::numeric_limits<size_t>::max();
|
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
|
/* Flags. */
|
|
|
|
|
struct Flag
|
|
|
|
|
{
|
2017-06-07 16:41:20 +00:00
|
|
|
|
typedef std::shared_ptr<Flag> ptr;
|
2020-05-04 20:40:19 +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)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
Handler(T * dest)
|
|
|
|
|
: 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)
|
|
|
|
|
{ }
|
|
|
|
|
};
|
|
|
|
|
|
2017-06-07 16:41:20 +00:00
|
|
|
|
std::string longName;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
static Flag mkHashTypeFlag(std::string && longName, HashType * ht);
|
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);
|
|
|
|
|
|
2017-06-07 14:49:54 +00:00
|
|
|
|
virtual void printFlags(std::ostream & out);
|
2016-02-09 20:07:48 +00:00
|
|
|
|
|
|
|
|
|
/* Positional arguments. */
|
|
|
|
|
struct ExpectedArg
|
|
|
|
|
{
|
|
|
|
|
std::string label;
|
|
|
|
|
size_t arity; // 0 = any
|
2017-07-14 11:44:45 +00:00
|
|
|
|
bool optional;
|
2017-10-24 10:45:11 +00:00
|
|
|
|
std::function<void(std::vector<std::string>)> handler;
|
2016-02-09 20:07:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::list<ExpectedArg> expectedArgs;
|
|
|
|
|
|
|
|
|
|
virtual bool processArgs(const Strings & args, bool finish);
|
|
|
|
|
|
2017-06-07 16:41:20 +00:00
|
|
|
|
std::set<std::string> hiddenCategories;
|
|
|
|
|
|
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
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
|
/* Helper functions for constructing flags / positional
|
|
|
|
|
arguments. */
|
|
|
|
|
|
|
|
|
|
void mkFlag1(char shortName, const std::string & longName,
|
|
|
|
|
const std::string & label, const std::string & description,
|
|
|
|
|
std::function<void(std::string)> fun)
|
|
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
|
addFlag({
|
|
|
|
|
.longName = longName,
|
|
|
|
|
.shortName = shortName,
|
|
|
|
|
.description = description,
|
|
|
|
|
.labels = {label},
|
|
|
|
|
.handler = {[=](std::string s) { fun(s); }}
|
|
|
|
|
});
|
2016-02-09 20:07:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void mkFlag(char shortName, const std::string & name,
|
|
|
|
|
const std::string & description, bool * dest)
|
|
|
|
|
{
|
2016-02-25 12:31:34 +00:00
|
|
|
|
mkFlag(shortName, name, description, dest, true);
|
2016-02-09 20:07:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
void mkFlag(char shortName, const std::string & longName, const std::string & description,
|
|
|
|
|
T * dest, const T & value)
|
|
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
|
addFlag({
|
|
|
|
|
.longName = longName,
|
|
|
|
|
.shortName = shortName,
|
|
|
|
|
.description = description,
|
|
|
|
|
.handler = {[=]() { *dest = value; }}
|
|
|
|
|
});
|
2016-02-09 20:07:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class I>
|
|
|
|
|
void mkIntFlag(char shortName, const std::string & longName,
|
|
|
|
|
const std::string & description, I * dest)
|
|
|
|
|
{
|
|
|
|
|
mkFlag<I>(shortName, longName, description, [=](I n) {
|
|
|
|
|
*dest = n;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class I>
|
|
|
|
|
void mkFlag(char shortName, const std::string & longName,
|
|
|
|
|
const std::string & description, std::function<void(I)> fun)
|
|
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
|
addFlag({
|
|
|
|
|
.longName = longName,
|
|
|
|
|
.shortName = shortName,
|
|
|
|
|
.description = description,
|
|
|
|
|
.labels = {"N"},
|
|
|
|
|
.handler = {[=](std::string s) {
|
2017-06-07 16:41:20 +00:00
|
|
|
|
I n;
|
2020-05-04 20:40:19 +00:00
|
|
|
|
if (!string2Int(s, n))
|
2017-10-24 10:45:11 +00:00
|
|
|
|
throw UsageError("flag '--%s' requires a integer argument", longName);
|
2017-06-07 16:41:20 +00:00
|
|
|
|
fun(n);
|
2020-05-04 20:40:19 +00:00
|
|
|
|
}}
|
|
|
|
|
});
|
2016-02-09 20:07:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expect a string argument. */
|
2017-07-17 17:02:56 +00:00
|
|
|
|
void expectArg(const std::string & label, string * dest, bool optional = false)
|
2016-02-09 20:07:48 +00:00
|
|
|
|
{
|
2017-10-24 10:45:11 +00:00
|
|
|
|
expectedArgs.push_back(ExpectedArg{label, 1, optional, [=](std::vector<std::string> ss) {
|
|
|
|
|
*dest = ss[0];
|
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
|
|
|
|
{
|
2017-10-24 10:45:11 +00:00
|
|
|
|
expectedArgs.push_back(ExpectedArg{label, 0, false, [=](std::vector<std::string> ss) {
|
|
|
|
|
*dest = std::move(ss);
|
2016-02-09 20:07:48 +00:00
|
|
|
|
}});
|
|
|
|
|
}
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
|
|
friend class MultiCommand;
|
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. */
|
|
|
|
|
struct Command : virtual Args
|
|
|
|
|
{
|
2019-06-18 14:01:35 +00:00
|
|
|
|
private:
|
|
|
|
|
std::string _name;
|
|
|
|
|
|
2019-06-19 21:37:40 +00:00
|
|
|
|
friend class MultiCommand;
|
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
|
public:
|
|
|
|
|
|
2018-11-22 15:03:31 +00:00
|
|
|
|
virtual ~Command() { }
|
2019-06-18 14:01:35 +00:00
|
|
|
|
|
|
|
|
|
std::string name() { return _name; }
|
|
|
|
|
|
2018-11-22 15:03:31 +00:00
|
|
|
|
virtual void prepare() { };
|
|
|
|
|
virtual void run() = 0;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
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>’. */
|
|
|
|
|
class MultiCommand : virtual Args
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Commands commands;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Command> command;
|
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
|
MultiCommand(const Commands & commands);
|
2018-11-22 15:03:31 +00:00
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
|
Strings argvToStrings(int argc, char * * argv);
|
|
|
|
|
|
|
|
|
|
/* Helper function for rendering argument labels. */
|
|
|
|
|
std::string renderLabels(const Strings & labels);
|
|
|
|
|
|
|
|
|
|
/* Helper function for printing 2-column tables. */
|
|
|
|
|
typedef std::vector<std::pair<std::string, std::string>> Table2;
|
|
|
|
|
|
|
|
|
|
void printTable(std::ostream & out, const Table2 & table);
|
|
|
|
|
|
|
|
|
|
}
|