-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargs.hpp
191 lines (155 loc) · 5.67 KB
/
args.hpp
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2024 Dimitry Ishenko
// Contact: dimitry (dot) ishenko (at) (gee) mail (dot) com
//
// Distributed under the GNU GPL license. See the LICENSE.md file for details.
////////////////////////////////////////////////////////////////////////////////
#ifndef PGM_ARGS_HPP
#define PGM_ARGS_HPP
////////////////////////////////////////////////////////////////////////////////
#include <initializer_list>
#include <stdexcept>
#include <string>
#include <string_view>
#include <variant>
#include <vector>
////////////////////////////////////////////////////////////////////////////////
namespace pgm
{
////////////////////////////////////////////////////////////////////////////////
/*! @struct argval
* @brief parsed values for an option or positional parameter
*/
struct argval
{
auto count() const { return data_.size(); }
auto empty() const { return data_.empty(); }
explicit operator bool() const { return !empty(); }
auto& values() const { return data_; }
auto& value() const { return data_.at(0); }
auto& value(std::size_t n) const { return data_.at(n); }
auto value_or(std::string_view def) const { return empty() ? std::string{def} : value(); }
private:
std::vector<std::string> data_;
friend class args;
void add(std::string val) { data_.push_back(std::move(val)); }
};
////////////////////////////////////////////////////////////////////////////////
/*! @enum spec
* @brief option or param spec
*/
enum spec
{
req = 1, //!< mandatory option
mul = 2, //!< option/param can be specified multiple times
optval = 4, //!< option value is optional
opt = 8, //!< optional param
};
constexpr auto operator|(spec lhs, spec rhs);
////////////////////////////////////////////////////////////////////////////////
/*! @struct option
* @brief program option
*/
struct option
{
std::string short_; //!< short option name
std::string long_; //!< long option name
std::string valname_; //!< name of the option value; eg, --opt-name=<value>
std::string description_; //!< description
bool req_ = false; //!< mandatory (required) option
bool mul_ = false; //!< can be specified multiple times
bool optval_ = false; //!< option value is optional
argval values_; //!< parsed value(s)
};
////////////////////////////////////////////////////////////////////////////////
/*! @struct param
* @brief positional parameter
*/
struct param
{
std::string name_; //!< param name
std::string description_; //!< description
bool opt_ = false; //!< optional param
bool mul_ = false; //!< can be specified multiple times
argval values_; //!< parsed value(s)
};
////////////////////////////////////////////////////////////////////////////////
/*! @struct arg
* @brief program argument (either option or param)
*/
struct arg
{
arg(std::string name1, std::string description) :
arg{std::move(name1), spec{}, std::move(description)}
{ }
arg(std::string name1, std::string name2, std::string description) :
arg{std::move(name1), std::move(name2), spec{}, std::move(description)}
{ }
arg(std::string name1, std::string name2, std::string name3, std::string description) :
arg{std::move(name1), std::move(name2), std::move(name3), spec{}, std::move(description)}
{ }
arg(std::string name1, spec, std::string description);
arg(std::string name1, std::string name2, spec, std::string description);
arg(std::string name1, std::string name2, std::string name3, spec, std::string description);
auto is_option() const { return std::holds_alternative<option>(val_); }
auto is_param() const { return std::holds_alternative<param>(val_); }
auto& to_option() { return std::get<option>(val_); }
auto& to_param() { return std::get<param>(val_); }
private:
std::variant<option, param> val_;
};
////////////////////////////////////////////////////////////////////////////////
/*! @struct args
* @brief program arguments
*/
struct args
{
args() = default;
explicit args(std::initializer_list<arg> il)
{
for (auto&& el : il) add(std::move(el));
}
void add(arg);
template<typename... Ts>
void add(Ts&&... vs) { add(arg{ std::forward<Ts>(vs)... }); }
argval const& operator[](std::string_view) const;
void parse(int argc, char* argv[]);
std::string usage(std::string_view program,
std::string_view preamble = {}, std::string_view prologue = {}, std::string_view epilogue = {}
) const;
private:
std::vector<option> options_;
std::vector<param> params_;
void add_option(option);
void add_param(param);
};
////////////////////////////////////////////////////////////////////////////////
struct argument_exception : std::invalid_argument
{
argument_exception(std::string_view what, std::string_view why) :
std::invalid_argument{std::string{what} + ": " + std::string{why} + "."}
{ }
};
struct invalid_definition : argument_exception
{
invalid_definition(std::string_view why) :
argument_exception{"Invalid definition", why}
{ }
};
struct invalid_argument : argument_exception
{
invalid_argument(std::string_view why) :
argument_exception{"Invalid argument", why}
{ }
};
struct missing_argument : argument_exception
{
missing_argument(std::string_view why) :
argument_exception{"Missing argument", why}
{ }
};
////////////////////////////////////////////////////////////////////////////////
}
#include "args.ipp"
////////////////////////////////////////////////////////////////////////////////
#endif