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;
|
|
|
|
|
std::string longName;
|
|
|
|
|
char shortName = 0;
|
2016-02-09 20:07:48 +00:00
|
|
|
|
std::string description;
|
|
|
|
|
Strings labels;
|
2017-06-07 16:41:20 +00:00
|
|
|
|
size_t arity = 0;
|
2017-10-24 10:45:11 +00:00
|
|
|
|
std::function<void(std::vector<std::string>)> handler;
|
2017-06-07 16:41:20 +00:00
|
|
|
|
std::string category;
|
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:
|
|
|
|
|
|
2017-06-07 16:41:20 +00:00
|
|
|
|
class FlagMaker
|
|
|
|
|
{
|
|
|
|
|
Args & args;
|
|
|
|
|
Flag::ptr flag;
|
|
|
|
|
friend class Args;
|
2019-11-10 16:23:35 +00:00
|
|
|
|
FlagMaker(Args & args) : args(args), flag(std::make_shared<Flag>()) { }
|
2017-06-07 16:41:20 +00:00
|
|
|
|
public:
|
|
|
|
|
~FlagMaker();
|
2019-11-10 16:23:35 +00:00
|
|
|
|
FlagMaker & longName(const std::string & s) { flag->longName = s; return *this; }
|
|
|
|
|
FlagMaker & shortName(char s) { flag->shortName = s; return *this; }
|
|
|
|
|
FlagMaker & description(const std::string & s) { flag->description = s; return *this; }
|
|
|
|
|
FlagMaker & label(const std::string & l) { flag->arity = 1; flag->labels = {l}; return *this; }
|
|
|
|
|
FlagMaker & labels(const Strings & ls) { flag->arity = ls.size(); flag->labels = ls; return *this; }
|
|
|
|
|
FlagMaker & arity(size_t arity) { flag->arity = arity; return *this; }
|
|
|
|
|
FlagMaker & handler(std::function<void(std::vector<std::string>)> handler) { flag->handler = handler; return *this; }
|
|
|
|
|
FlagMaker & handler(std::function<void()> handler) { flag->handler = [handler](std::vector<std::string>) { handler(); }; return *this; }
|
2017-10-24 10:45:11 +00:00
|
|
|
|
FlagMaker & handler(std::function<void(std::string)> handler) {
|
|
|
|
|
flag->arity = 1;
|
|
|
|
|
flag->handler = [handler](std::vector<std::string> ss) { handler(std::move(ss[0])); };
|
|
|
|
|
return *this;
|
2019-11-10 16:23:35 +00:00
|
|
|
|
}
|
|
|
|
|
FlagMaker & category(const std::string & s) { flag->category = s; return *this; }
|
2017-09-06 14:20:34 +00:00
|
|
|
|
|
2017-09-14 11:22:32 +00:00
|
|
|
|
template<class T>
|
2017-10-24 10:45:11 +00:00
|
|
|
|
FlagMaker & dest(T * dest)
|
|
|
|
|
{
|
2017-09-14 11:22:32 +00:00
|
|
|
|
flag->arity = 1;
|
2017-10-24 10:45:11 +00:00
|
|
|
|
flag->handler = [=](std::vector<std::string> ss) { *dest = ss[0]; };
|
2017-09-06 14:20:34 +00:00
|
|
|
|
return *this;
|
2019-11-10 16:23:35 +00:00
|
|
|
|
}
|
2017-09-06 14:20:34 +00:00
|
|
|
|
|
|
|
|
|
template<class T>
|
2017-10-24 10:45:11 +00:00
|
|
|
|
FlagMaker & set(T * dest, const T & val)
|
|
|
|
|
{
|
2017-09-25 11:25:55 +00:00
|
|
|
|
flag->arity = 0;
|
2017-10-24 10:45:11 +00:00
|
|
|
|
flag->handler = [=](std::vector<std::string> ss) { *dest = val; };
|
2017-09-06 14:20:34 +00:00
|
|
|
|
return *this;
|
2019-11-10 16:23:35 +00:00
|
|
|
|
}
|
2017-10-24 10:45:11 +00:00
|
|
|
|
|
|
|
|
|
FlagMaker & mkHashTypeFlag(HashType * ht);
|
2017-06-07 16:41:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
FlagMaker mkFlag();
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2017-06-07 16:41:20 +00:00
|
|
|
|
mkFlag()
|
|
|
|
|
.shortName(shortName)
|
|
|
|
|
.longName(longName)
|
|
|
|
|
.labels({label})
|
|
|
|
|
.description(description)
|
|
|
|
|
.arity(1)
|
2017-10-24 10:45:11 +00:00
|
|
|
|
.handler([=](std::vector<std::string> ss) { fun(ss[0]); });
|
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)
|
|
|
|
|
{
|
2017-06-07 16:41:20 +00:00
|
|
|
|
mkFlag()
|
|
|
|
|
.shortName(shortName)
|
|
|
|
|
.longName(longName)
|
|
|
|
|
.description(description)
|
2017-10-24 10:45:11 +00:00
|
|
|
|
.handler([=](std::vector<std::string> ss) { *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)
|
|
|
|
|
{
|
2017-06-07 16:41:20 +00:00
|
|
|
|
mkFlag()
|
|
|
|
|
.shortName(shortName)
|
|
|
|
|
.longName(longName)
|
|
|
|
|
.labels({"N"})
|
|
|
|
|
.description(description)
|
|
|
|
|
.arity(1)
|
2017-10-24 10:45:11 +00:00
|
|
|
|
.handler([=](std::vector<std::string> ss) {
|
2017-06-07 16:41:20 +00:00
|
|
|
|
I n;
|
2017-10-24 10:45:11 +00:00
|
|
|
|
if (!string2Int(ss[0], n))
|
|
|
|
|
throw UsageError("flag '--%s' requires a integer argument", longName);
|
2017-06-07 16:41:20 +00:00
|
|
|
|
fun(n);
|
|
|
|
|
});
|
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
|
|
|
|
|
{
|
|
|
|
|
virtual ~Command() { }
|
|
|
|
|
virtual std::string name() = 0;
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef std::map<std::string, ref<Command>> Commands;
|
|
|
|
|
|
|
|
|
|
/* An argument parser that supports multiple subcommands,
|
|
|
|
|
i.e. ‘<command> <subcommand>’. */
|
|
|
|
|
class MultiCommand : virtual Args
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Commands commands;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Command> command;
|
|
|
|
|
|
|
|
|
|
MultiCommand(const std::vector<ref<Command>> & 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;
|
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
}
|