2016-02-09 20:07:48 +00:00
|
|
|
#include "args.hh"
|
|
|
|
#include "hash.hh"
|
|
|
|
|
2020-05-10 19:35:07 +00:00
|
|
|
#include <glob.h>
|
|
|
|
|
2020-08-17 15:44:52 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
namespace nix {
|
|
|
|
|
2020-05-04 20:40:19 +00:00
|
|
|
void Args::addFlag(Flag && flag_)
|
2017-06-07 16:41:20 +00:00
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
auto flag = std::make_shared<Flag>(std::move(flag_));
|
|
|
|
if (flag->handler.arity != ArityAny)
|
|
|
|
assert(flag->handler.arity == flag->labels.size());
|
2017-06-07 16:41:20 +00:00
|
|
|
assert(flag->longName != "");
|
2020-05-04 20:40:19 +00:00
|
|
|
longFlags[flag->longName] = flag;
|
|
|
|
if (flag->shortName) shortFlags[flag->shortName] = flag;
|
2017-06-07 16:41:20 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 19:35:07 +00:00
|
|
|
bool pathCompletions = false;
|
2020-05-10 18:32:21 +00:00
|
|
|
std::shared_ptr<std::set<std::string>> completions;
|
|
|
|
|
|
|
|
std::string completionMarker = "___COMPLETE___";
|
|
|
|
|
|
|
|
std::optional<std::string> needsCompletion(std::string_view s)
|
|
|
|
{
|
|
|
|
if (!completions) return {};
|
|
|
|
auto i = s.find(completionMarker);
|
|
|
|
if (i != std::string::npos)
|
|
|
|
return std::string(s.begin(), i);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
void Args::parseCmdline(const Strings & _cmdline)
|
|
|
|
{
|
|
|
|
Strings pendingArgs;
|
|
|
|
bool dashDash = false;
|
|
|
|
|
|
|
|
Strings cmdline(_cmdline);
|
|
|
|
|
2020-05-10 18:32:21 +00:00
|
|
|
if (auto s = getEnv("NIX_GET_COMPLETIONS")) {
|
|
|
|
size_t n = std::stoi(*s);
|
|
|
|
assert(n > 0 && n <= cmdline.size());
|
|
|
|
*std::next(cmdline.begin(), n - 1) += completionMarker;
|
|
|
|
completions = std::make_shared<decltype(completions)::element_type>();
|
2020-05-11 19:38:17 +00:00
|
|
|
verbosity = lvlError;
|
2020-05-10 18:32:21 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
for (auto pos = cmdline.begin(); pos != cmdline.end(); ) {
|
|
|
|
|
|
|
|
auto arg = *pos;
|
|
|
|
|
|
|
|
/* Expand compound dash options (i.e., `-qlf' -> `-q -l -f',
|
|
|
|
`-j3` -> `-j 3`). */
|
|
|
|
if (!dashDash && arg.length() > 2 && arg[0] == '-' && arg[1] != '-' && isalpha(arg[1])) {
|
|
|
|
*pos = (string) "-" + arg[1];
|
|
|
|
auto next = pos; ++next;
|
|
|
|
for (unsigned int j = 2; j < arg.length(); j++)
|
|
|
|
if (isalpha(arg[j]))
|
|
|
|
cmdline.insert(next, (string) "-" + arg[j]);
|
|
|
|
else {
|
|
|
|
cmdline.insert(next, string(arg, j));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
arg = *pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dashDash && arg == "--") {
|
|
|
|
dashDash = true;
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
else if (!dashDash && std::string(arg, 0, 1) == "-") {
|
|
|
|
if (!processFlag(pos, cmdline.end()))
|
2020-04-21 23:07:07 +00:00
|
|
|
throw UsageError("unrecognised flag '%1%'", arg);
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
pendingArgs.push_back(*pos++);
|
|
|
|
if (processArgs(pendingArgs, false))
|
|
|
|
pendingArgs.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processArgs(pendingArgs, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Args::printHelp(const string & programName, std::ostream & out)
|
|
|
|
{
|
2020-05-05 13:18:23 +00:00
|
|
|
std::cout << fmt(ANSI_BOLD "Usage:" ANSI_NORMAL " %s " ANSI_ITALIC "FLAGS..." ANSI_NORMAL, programName);
|
2016-02-09 20:07:48 +00:00
|
|
|
for (auto & exp : expectedArgs) {
|
|
|
|
std::cout << renderLabels({exp.label});
|
|
|
|
// FIXME: handle arity > 1
|
2020-05-11 13:46:18 +00:00
|
|
|
if (exp.handler.arity == ArityAny) std::cout << "...";
|
2017-07-17 17:02:56 +00:00
|
|
|
if (exp.optional) std::cout << "?";
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
std::cout << "\n";
|
|
|
|
|
|
|
|
auto s = description();
|
|
|
|
if (s != "")
|
2020-05-05 13:18:23 +00:00
|
|
|
std::cout << "\n" ANSI_BOLD "Summary:" ANSI_NORMAL " " << s << ".\n";
|
2016-02-09 20:07:48 +00:00
|
|
|
|
|
|
|
if (longFlags.size()) {
|
|
|
|
std::cout << "\n";
|
2020-05-05 13:18:23 +00:00
|
|
|
std::cout << ANSI_BOLD "Flags:" ANSI_NORMAL "\n";
|
2016-02-09 20:07:48 +00:00
|
|
|
printFlags(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Args::printFlags(std::ostream & out)
|
|
|
|
{
|
|
|
|
Table2 table;
|
2017-06-07 16:41:20 +00:00
|
|
|
for (auto & flag : longFlags) {
|
|
|
|
if (hiddenCategories.count(flag.second->category)) continue;
|
2016-02-09 20:07:48 +00:00
|
|
|
table.push_back(std::make_pair(
|
2017-06-07 16:41:20 +00:00
|
|
|
(flag.second->shortName ? std::string("-") + flag.second->shortName + ", " : " ")
|
|
|
|
+ "--" + flag.first + renderLabels(flag.second->labels),
|
|
|
|
flag.second->description));
|
|
|
|
}
|
2016-02-09 20:07:48 +00:00
|
|
|
printTable(out, table);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Args::processFlag(Strings::iterator & pos, Strings::iterator end)
|
|
|
|
{
|
|
|
|
assert(pos != end);
|
|
|
|
|
|
|
|
auto process = [&](const std::string & name, const Flag & flag) -> bool {
|
|
|
|
++pos;
|
2017-10-24 10:45:11 +00:00
|
|
|
std::vector<std::string> args;
|
2020-07-01 18:31:39 +00:00
|
|
|
bool anyCompleted = false;
|
2020-05-04 20:40:19 +00:00
|
|
|
for (size_t n = 0 ; n < flag.handler.arity; ++n) {
|
2017-08-29 12:28:57 +00:00
|
|
|
if (pos == end) {
|
2020-05-04 20:40:19 +00:00
|
|
|
if (flag.handler.arity == ArityAny) break;
|
2020-05-10 19:50:32 +00:00
|
|
|
throw UsageError("flag '%s' requires %d argument(s)", name, flag.handler.arity);
|
2017-08-29 12:28:57 +00:00
|
|
|
}
|
2020-05-11 13:46:18 +00:00
|
|
|
if (flag.completer)
|
2020-07-01 18:31:39 +00:00
|
|
|
if (auto prefix = needsCompletion(*pos)) {
|
|
|
|
anyCompleted = true;
|
2020-05-10 19:50:32 +00:00
|
|
|
flag.completer(n, *prefix);
|
2020-07-01 18:31:39 +00:00
|
|
|
}
|
2020-05-10 19:50:32 +00:00
|
|
|
args.push_back(*pos++);
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
2020-07-01 18:31:39 +00:00
|
|
|
if (!anyCompleted)
|
|
|
|
flag.handler.fun(std::move(args));
|
2016-02-09 20:07:48 +00:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (string(*pos, 0, 2) == "--") {
|
2020-05-10 18:32:21 +00:00
|
|
|
if (auto prefix = needsCompletion(*pos)) {
|
|
|
|
for (auto & [name, flag] : longFlags) {
|
|
|
|
if (!hiddenCategories.count(flag->category)
|
|
|
|
&& hasPrefix(name, std::string(*prefix, 2)))
|
|
|
|
completions->insert("--" + name);
|
|
|
|
}
|
|
|
|
}
|
2016-02-09 20:07:48 +00:00
|
|
|
auto i = longFlags.find(string(*pos, 2));
|
|
|
|
if (i == longFlags.end()) return false;
|
2017-06-07 16:41:20 +00:00
|
|
|
return process("--" + i->first, *i->second);
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string(*pos, 0, 1) == "-" && pos->size() == 2) {
|
|
|
|
auto c = (*pos)[1];
|
|
|
|
auto i = shortFlags.find(c);
|
|
|
|
if (i == shortFlags.end()) return false;
|
2017-06-07 16:41:20 +00:00
|
|
|
return process(std::string("-") + c, *i->second);
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:32:21 +00:00
|
|
|
if (auto prefix = needsCompletion(*pos)) {
|
|
|
|
if (prefix == "-") {
|
|
|
|
completions->insert("--");
|
|
|
|
for (auto & [flag, _] : shortFlags)
|
|
|
|
completions->insert(std::string("-") + flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Args::processArgs(const Strings & args, bool finish)
|
|
|
|
{
|
|
|
|
if (expectedArgs.empty()) {
|
|
|
|
if (!args.empty())
|
2020-04-21 23:07:07 +00:00
|
|
|
throw UsageError("unexpected argument '%1%'", args.front());
|
2016-02-09 20:07:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto & exp = expectedArgs.front();
|
|
|
|
|
|
|
|
bool res = false;
|
|
|
|
|
2020-05-11 13:46:18 +00:00
|
|
|
if ((exp.handler.arity == ArityAny && finish) ||
|
|
|
|
(exp.handler.arity != ArityAny && args.size() == exp.handler.arity))
|
2016-02-09 20:07:48 +00:00
|
|
|
{
|
2017-10-24 10:45:11 +00:00
|
|
|
std::vector<std::string> ss;
|
2020-05-11 13:46:18 +00:00
|
|
|
for (const auto &[n, s] : enumerate(args)) {
|
|
|
|
ss.push_back(s);
|
|
|
|
if (exp.completer)
|
|
|
|
if (auto prefix = needsCompletion(s))
|
|
|
|
exp.completer(n, *prefix);
|
|
|
|
}
|
|
|
|
exp.handler.fun(ss);
|
2016-02-09 20:07:48 +00:00
|
|
|
expectedArgs.pop_front();
|
|
|
|
res = true;
|
|
|
|
}
|
|
|
|
|
2017-07-14 11:44:45 +00:00
|
|
|
if (finish && !expectedArgs.empty() && !expectedArgs.front().optional)
|
2016-02-09 20:07:48 +00:00
|
|
|
throw UsageError("more arguments are required");
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:44:52 +00:00
|
|
|
nlohmann::json Args::toJSON()
|
|
|
|
{
|
|
|
|
auto flags = nlohmann::json::object();
|
|
|
|
|
|
|
|
for (auto & [name, flag] : longFlags) {
|
|
|
|
auto j = nlohmann::json::object();
|
|
|
|
if (flag->shortName)
|
|
|
|
j["shortName"] = std::string(1, flag->shortName);
|
|
|
|
if (flag->description != "")
|
|
|
|
j["description"] = flag->description;
|
|
|
|
if (flag->category != "")
|
|
|
|
j["category"] = flag->category;
|
|
|
|
if (flag->handler.arity != ArityAny)
|
|
|
|
j["arity"] = flag->handler.arity;
|
|
|
|
if (!flag->labels.empty())
|
|
|
|
j["labels"] = flag->labels;
|
|
|
|
flags[name] = std::move(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto args = nlohmann::json::array();
|
|
|
|
|
|
|
|
for (auto & arg : expectedArgs) {
|
|
|
|
auto j = nlohmann::json::object();
|
|
|
|
j["label"] = arg.label;
|
|
|
|
j["optional"] = arg.optional;
|
|
|
|
if (arg.handler.arity != ArityAny)
|
|
|
|
j["arity"] = arg.handler.arity;
|
|
|
|
args.push_back(std::move(j));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto res = nlohmann::json::object();
|
2020-08-17 17:33:18 +00:00
|
|
|
res["description"] = description();
|
2020-08-17 15:44:52 +00:00
|
|
|
res["flags"] = std::move(flags);
|
|
|
|
res["args"] = std::move(args);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-06-26 06:46:46 +00:00
|
|
|
static void hashTypeCompleter(size_t index, std::string_view prefix)
|
|
|
|
{
|
|
|
|
for (auto & type : hashTypes)
|
|
|
|
if (hasPrefix(type, prefix))
|
|
|
|
completions->insert(type);
|
|
|
|
}
|
|
|
|
|
2020-05-04 20:40:19 +00:00
|
|
|
Args::Flag Args::Flag::mkHashTypeFlag(std::string && longName, HashType * ht)
|
2016-02-09 20:07:48 +00:00
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
return Flag {
|
|
|
|
.longName = std::move(longName),
|
|
|
|
.description = "hash algorithm ('md5', 'sha1', 'sha256', or 'sha512')",
|
|
|
|
.labels = {"hash-algo"},
|
|
|
|
.handler = {[ht](std::string s) {
|
|
|
|
*ht = parseHashType(s);
|
2020-05-10 19:50:32 +00:00
|
|
|
}},
|
2020-06-26 06:46:46 +00:00
|
|
|
.completer = hashTypeCompleter
|
2020-05-04 20:40:19 +00:00
|
|
|
};
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 18:25:32 +00:00
|
|
|
Args::Flag Args::Flag::mkHashTypeOptFlag(std::string && longName, std::optional<HashType> * oht)
|
|
|
|
{
|
|
|
|
return Flag {
|
|
|
|
.longName = std::move(longName),
|
|
|
|
.description = "hash algorithm ('md5', 'sha1', 'sha256', or 'sha512'). Optional as can also be gotten from SRI hash itself.",
|
|
|
|
.labels = {"hash-algo"},
|
|
|
|
.handler = {[oht](std::string s) {
|
|
|
|
*oht = std::optional<HashType> { parseHashType(s) };
|
2020-06-26 06:46:46 +00:00
|
|
|
}},
|
|
|
|
.completer = hashTypeCompleter
|
2020-05-04 20:40:19 +00:00
|
|
|
};
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 09:08:59 +00:00
|
|
|
static void completePath(std::string_view prefix, bool onlyDirs)
|
2020-05-10 19:35:07 +00:00
|
|
|
{
|
2020-05-11 13:46:18 +00:00
|
|
|
pathCompletions = true;
|
|
|
|
glob_t globbuf;
|
2020-05-12 09:08:59 +00:00
|
|
|
int flags = GLOB_NOESCAPE | GLOB_TILDE;
|
|
|
|
#ifdef GLOB_ONLYDIR
|
|
|
|
if (onlyDirs)
|
|
|
|
flags |= GLOB_ONLYDIR;
|
|
|
|
#endif
|
|
|
|
if (glob((std::string(prefix) + "*").c_str(), flags, nullptr, &globbuf) == 0) {
|
|
|
|
for (size_t i = 0; i < globbuf.gl_pathc; ++i) {
|
|
|
|
if (onlyDirs) {
|
|
|
|
auto st = lstat(globbuf.gl_pathv[i]);
|
|
|
|
if (!S_ISDIR(st.st_mode)) continue;
|
|
|
|
}
|
2020-05-11 13:46:18 +00:00
|
|
|
completions->insert(globbuf.gl_pathv[i]);
|
2020-05-12 09:08:59 +00:00
|
|
|
}
|
2020-05-11 13:46:18 +00:00
|
|
|
globfree(&globbuf);
|
2020-05-10 19:35:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 20:04:13 +00:00
|
|
|
void completePath(size_t, std::string_view prefix)
|
|
|
|
{
|
2020-05-12 09:08:59 +00:00
|
|
|
completePath(prefix, false);
|
2020-05-11 20:04:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void completeDir(size_t, std::string_view prefix)
|
|
|
|
{
|
2020-05-12 09:08:59 +00:00
|
|
|
completePath(prefix, true);
|
2020-05-11 20:04:13 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
Strings argvToStrings(int argc, char * * argv)
|
|
|
|
{
|
|
|
|
Strings args;
|
|
|
|
argc--; argv++;
|
|
|
|
while (argc--) args.push_back(*argv++);
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string renderLabels(const Strings & labels)
|
|
|
|
{
|
|
|
|
std::string res;
|
|
|
|
for (auto label : labels) {
|
|
|
|
for (auto & c : label) c = std::toupper(c);
|
2020-05-05 13:18:23 +00:00
|
|
|
res += " " ANSI_ITALIC + label + ANSI_NORMAL;
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void printTable(std::ostream & out, const Table2 & table)
|
|
|
|
{
|
|
|
|
size_t max = 0;
|
|
|
|
for (auto & row : table)
|
2020-05-05 13:18:23 +00:00
|
|
|
max = std::max(max, filterANSIEscapes(row.first, true).size());
|
2016-02-09 20:07:48 +00:00
|
|
|
for (auto & row : table) {
|
|
|
|
out << " " << row.first
|
2020-05-05 13:18:23 +00:00
|
|
|
<< std::string(max - filterANSIEscapes(row.first, true).size() + 2, ' ')
|
2016-02-09 20:07:48 +00:00
|
|
|
<< row.second << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-22 15:03:31 +00:00
|
|
|
void Command::printHelp(const string & programName, std::ostream & out)
|
|
|
|
{
|
|
|
|
Args::printHelp(programName, out);
|
|
|
|
|
|
|
|
auto exs = examples();
|
|
|
|
if (!exs.empty()) {
|
2020-05-05 13:18:23 +00:00
|
|
|
out << "\n" ANSI_BOLD "Examples:" ANSI_NORMAL "\n";
|
2018-11-22 15:03:31 +00:00
|
|
|
for (auto & ex : exs)
|
|
|
|
out << "\n"
|
|
|
|
<< " " << ex.description << "\n" // FIXME: wrap
|
|
|
|
<< " $ " << ex.command << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:44:52 +00:00
|
|
|
nlohmann::json Command::toJSON()
|
|
|
|
{
|
|
|
|
auto exs = nlohmann::json::array();
|
|
|
|
|
|
|
|
for (auto & example : examples()) {
|
|
|
|
auto ex = nlohmann::json::object();
|
|
|
|
ex["description"] = example.description;
|
2020-08-20 10:21:46 +00:00
|
|
|
ex["command"] = chomp(stripIndentation(example.command));
|
2020-08-17 15:44:52 +00:00
|
|
|
exs.push_back(std::move(ex));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto res = Args::toJSON();
|
|
|
|
res["examples"] = std::move(exs);
|
2020-08-20 10:21:46 +00:00
|
|
|
auto s = doc();
|
|
|
|
if (s != "") res.emplace("doc", stripIndentation(s));
|
2020-08-17 15:44:52 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
MultiCommand::MultiCommand(const Commands & commands)
|
|
|
|
: commands(commands)
|
2018-11-22 15:03:31 +00:00
|
|
|
{
|
2020-05-11 13:46:18 +00:00
|
|
|
expectArgs({
|
2020-08-17 17:33:18 +00:00
|
|
|
.label = "subcommand",
|
2020-05-11 13:46:18 +00:00
|
|
|
.optional = true,
|
|
|
|
.handler = {[=](std::string s) {
|
|
|
|
assert(!command);
|
2020-06-04 11:16:28 +00:00
|
|
|
if (auto alias = get(deprecatedAliases, s)) {
|
|
|
|
warn("'%s' is a deprecated alias for '%s'", s, *alias);
|
|
|
|
s = *alias;
|
|
|
|
}
|
2020-05-11 13:46:18 +00:00
|
|
|
if (auto prefix = needsCompletion(s)) {
|
|
|
|
for (auto & [name, command] : commands)
|
|
|
|
if (hasPrefix(name, *prefix))
|
|
|
|
completions->insert(name);
|
|
|
|
}
|
|
|
|
auto i = commands.find(s);
|
|
|
|
if (i == commands.end())
|
|
|
|
throw UsageError("'%s' is not a recognised command", s);
|
|
|
|
command = {s, i->second()};
|
|
|
|
}}
|
|
|
|
});
|
2020-05-05 13:18:23 +00:00
|
|
|
|
|
|
|
categories[Command::catDefault] = "Available commands";
|
2018-11-22 15:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MultiCommand::printHelp(const string & programName, std::ostream & out)
|
|
|
|
{
|
|
|
|
if (command) {
|
2020-05-05 13:18:23 +00:00
|
|
|
command->second->printHelp(programName + " " + command->first, out);
|
2018-11-22 15:03:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
out << fmt(ANSI_BOLD "Usage:" ANSI_NORMAL " %s " ANSI_ITALIC "COMMAND FLAGS... ARGS..." ANSI_NORMAL "\n", programName);
|
2018-11-22 15:03:31 +00:00
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
out << "\n" ANSI_BOLD "Common flags:" ANSI_NORMAL "\n";
|
2018-11-22 15:03:31 +00:00
|
|
|
printFlags(out);
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
std::map<Command::Category, std::map<std::string, ref<Command>>> commandsByCategory;
|
2018-11-22 15:03:31 +00:00
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
for (auto & [name, commandFun] : commands) {
|
|
|
|
auto command = commandFun();
|
|
|
|
commandsByCategory[command->category()].insert_or_assign(name, command);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto & [category, commands] : commandsByCategory) {
|
|
|
|
out << fmt("\n" ANSI_BOLD "%s:" ANSI_NORMAL "\n", categories[category]);
|
|
|
|
|
|
|
|
Table2 table;
|
|
|
|
for (auto & [name, command] : commands) {
|
|
|
|
auto descr = command->description();
|
|
|
|
if (!descr.empty())
|
|
|
|
table.push_back(std::make_pair(name, descr));
|
|
|
|
}
|
|
|
|
printTable(out, table);
|
2018-11-22 15:03:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MultiCommand::processFlag(Strings::iterator & pos, Strings::iterator end)
|
|
|
|
{
|
|
|
|
if (Args::processFlag(pos, end)) return true;
|
2020-05-05 13:18:23 +00:00
|
|
|
if (command && command->second->processFlag(pos, end)) return true;
|
2018-11-22 15:03:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MultiCommand::processArgs(const Strings & args, bool finish)
|
|
|
|
{
|
|
|
|
if (command)
|
2020-05-05 13:18:23 +00:00
|
|
|
return command->second->processArgs(args, finish);
|
2018-11-22 15:03:31 +00:00
|
|
|
else
|
|
|
|
return Args::processArgs(args, finish);
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:44:52 +00:00
|
|
|
nlohmann::json MultiCommand::toJSON()
|
|
|
|
{
|
|
|
|
auto cmds = nlohmann::json::object();
|
|
|
|
|
|
|
|
for (auto & [name, commandFun] : commands) {
|
|
|
|
auto command = commandFun();
|
|
|
|
auto j = command->toJSON();
|
|
|
|
j["category"] = categories[command->category()];
|
|
|
|
cmds[name] = std::move(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto res = Args::toJSON();
|
|
|
|
res["commands"] = std::move(cmds);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:07:48 +00:00
|
|
|
}
|