forked from auscaster/cpp-optparse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.cpp
153 lines (138 loc) · 6.4 KB
/
test.cpp
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
#include "OptionParser.h"
#include <iostream>
#include <sstream>
#include <string>
#include <complex>
#include <algorithm>
using namespace std;
using namespace optparse;
class Output {
public:
Output(const string& d) : delim(d), first(true) {}
void operator() (const string& s) {
if (first)
first = false;
else
cout << delim;
cout << s;
}
~Output() { cout << endl; }
const string& delim;
bool first;
};
class MyCallback : public optparse::Callback {
public:
MyCallback() : counter(0) {}
void operator() (const Option& option, const string& opt, const string& val, const OptionParser& parser) {
counter++;
cout << "--- MyCallback --- " << counter << ". time called" << endl;
cout << "--- MyCallback --- option.action(): " << option.action() << endl;
cout << "--- MyCallback --- opt: " << opt << endl;
cout << "--- MyCallback --- val: " << val << endl;
cout << "--- MyCallback --- parser.usage(): " << parser.usage() << endl;
cout << endl;
}
int counter;
};
int main(int argc, char *argv[])
{
#ifndef DISABLE_USAGE
const string usage = "usage: %prog [OPTION]... DIR [FILE]...";
#else
const string usage = SUPPRESS_USAGE;
#endif
const string version = "%prog 1.0\nCopyright (C) 2010 Johannes Weißl\n"
"License GPLv3+: GNU GPL version 3 or later "
"<http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.";
const string desc = "Lorem ipsum dolor sit amet, consectetur adipisicing"
" elit, sed do eiusmod tempor incididunt ut labore et dolore magna"
" aliqua.\nUt enim ad minim veniam, quis nostrud exercitation ullamco"
" laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor"
" in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla"
" pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa"
" qui officia deserunt mollit anim id est laborum.";
const string epilog = "Sed ut perspiciatis unde omnis iste natus error sit"
" voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque"
" ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae"
" dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit"
" aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos"
" qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui"
" dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia"
" non numquam eius modi tempora incidunt ut labore et dolore magnam"
" aliquam quaerat voluptatem.";
OptionParser parser = OptionParser()
.usage(usage)
.version(version)
.description(desc)
.epilog(epilog)
#ifdef DISABLE_INTERSPERSED_ARGS
.disable_interspersed_args()
#endif
;
parser.set_defaults("verbosity", "50");
parser.set_defaults("no_clear", "0");
// test all actions
parser.add_option("--clear") .action("store_false") .dest("no_clear") .help("clear (default)");
parser.add_option("--no-clear") .action("store_true") .help("not clear");
parser.add_option("--string")
.help("This is a really long text... very long indeed! It must be wrapped on normal terminals.");
parser.add_option("-x", "--clause", "--sentence") .metavar("SENTENCE") .set_default("I'm a sentence")
.help("This is a really long text... very long indeed! It must be wrapped on normal terminals. "
"Also it should appear not on the same line as the option.");
parser.add_option("-k") .action("count") .help("how many times?");
parser.add_option("-v", "--verbose") .action("store_const") .set_const("100") .dest("verbosity") .help("be verbose!");
parser.add_option("-s", "--silent") .action("store_const") .set_const("0") .dest("verbosity") .help("be silent!");
parser.add_option("-n", "--number") .type("int") .set_default("1") .metavar("NUM") .help("number of files (default: %default)");
parser.add_option("-H") .action("help") .help("alternative help");
parser.add_option("-V") .action("version") .help("alternative version");
parser.add_option("-i", "--int") .action("store") .type("int") .set_default(3) .help("default: %default");
parser.add_option("-f", "--float") .action("store") .type("float") .set_default(5.3) .help("default: %default");
parser.add_option("-c", "--complex") .action("store") .type("complex");
char const* const choices[] = { "foo", "bar", "baz" };
parser.add_option("-C", "--choices") .choices(&choices[0], &choices[3]);
parser.add_option("-m", "--more") .action("append");
parser.add_option("--more-milk") .action("append_const") .set_const("milk");
parser.add_option("--hidden") .help(SUPPRESS_HELP);
MyCallback mc;
parser.add_option("-K", "--callback") .action("callback") .callback(mc) .help("callback test");
OptionGroup group = OptionGroup(parser, "Dangerous Options",
"Caution: use these options at your own risk. "
"It is believed that some of them bite.");
group.add_option("-g") .action("store_true") .help("Group option.") .set_default("0");
parser.add_option_group(group);
Values& options = parser.parse_args(argc, argv);
vector<string> args = parser.args();
cout << "clear: " << (options.get("no_clear") ? "false" : "true") << endl;
cout << "string: " << options["string"] << endl;
cout << "clause: " << options["clause"] << endl;
cout << "k: " << options["k"] << endl;
cout << "verbosity: " << options["verbosity"] << endl;
cout << "number: " << (int) options.get("number") << endl;
cout << "int: " << (int) options.get("int") << endl;
cout << "float: " << (float) options.get("float") << endl;
complex<double> c = 0;
if (options.is_set("complex")) {
stringstream ss;
ss << options["complex"];
ss >> c;
}
cout << "complex: " << c << endl;
cout << "choices: " << (const char*) options.get("choices") << endl;
cout << "more: ";
for_each(options.all("more").begin(), options.all("more").end(), Output(", "));
cout << "more_milk: ";
{
Output out(", ");
for (Values::iterator it = options.all("more_milk").begin(); it != options.all("more_milk").end(); ++it)
out(*it);
}
cout << "hidden: " << options["hidden"] << endl;
cout << "group: " << (options.get("g") ? "true" : "false") << endl;
cout << endl << "leftover arguments: " << endl;
for (vector<string>::const_iterator it = args.begin(); it != args.end(); ++it) {
cout << "arg: " << *it << endl;
}
return 0;
}