-
Notifications
You must be signed in to change notification settings - Fork 136
/
cliargs.h
95 lines (85 loc) · 2.55 KB
/
cliargs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) 2017-2020 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CLIARGS_H
#define BITCOIN_CLIARGS_H
#include <map>
#include <vector>
#include <set>
#include <cstring>
#include <getopt.h>
#include <tinyformat.h>
enum cliarg_type {
no_arg = no_argument,
req_arg = required_argument,
opt_arg = optional_argument,
};
struct cliopt {
char* longname;
char shortname;
cliarg_type type;
cliopt(const char* longname_in, const char shortname_in, cliarg_type type_in)
: longname(strdup(longname_in))
, shortname(shortname_in)
, type(type_in)
{}
~cliopt() { free(longname); }
struct option get_option(std::string& opt) {
opt += strprintf("%c%s", shortname, type == no_arg ? "" : ":");
return {longname, type, nullptr, shortname};
}
};
struct cliargs {
std::map<char, std::string> m;
std::vector<const char*> l;
std::vector<cliopt*> long_options;
~cliargs() {
while (!long_options.empty()) {
delete long_options.back();
long_options.pop_back();
}
}
void add_option(const char* longname, const char shortname, cliarg_type t) {
long_options.push_back(new cliopt(longname, shortname, t));
}
void parse(int argc, char* const* argv) {
struct option long_opts[long_options.size() + 1];
std::string opt = "";
for (size_t i = 0; i < long_options.size(); i++) {
long_opts[i] = long_options[i]->get_option(opt);
}
long_opts[long_options.size()] = {0,0,0,0};
int c;
int option_index = 0;
for (;;) {
c = getopt_long(argc, argv, opt.c_str(), long_opts, &option_index);
if (c == -1) {
break;
}
if (optarg) {
m[c] = optarg;
} else {
m[c] = "1";
}
}
while (optind < argc) {
l.push_back(argv[optind++]);
}
}
};
/**
* Parse a comma and/or space separated list of inputs into an existing set.
*/
inline void delimiter_set(const std::string& input, std::set<std::string>& output)
{
size_t len = input.size();
std::string s;
for (size_t j = 0; j <= len; ++j) {
if (j == len || input[j] == ',' || input[j] == ' ') {
if (s.empty()) continue;
output.insert(s);
s.clear();
} else s += tolower(input[j]);
}
}
#endif // BITCOIN_CLIARGS_H