-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArgumentParser.h
202 lines (167 loc) · 3.86 KB
/
ArgumentParser.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
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
192
193
194
195
196
197
198
199
200
201
202
/*
* ArgumentParser.h
* Cubism
*
* This argument parser assumes that all arguments are optional ie, each of the argument names is preceded by a '-'
* all arguments are however NOT optional to avoid a mess with default values and returned values when not found!
*
* More converter could be required:
* add as needed
* TypeName as{TypeName}() in Value
*
* Created by Christian Conti on 6/7/10.
* Copyright 2010 ETH Zurich. All rights reserved.
*
*/
#pragma once
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <map>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
using namespace std;
class Value
{
private:
string content;
public:
Value() : content("") {}
Value(string content_) : content(content_) { /*printf("%s\n",content.c_str());*/ }
double asDouble(double def=0)
{
if (content == "")
{
ostringstream sbuf;
sbuf << def;
content = sbuf.str();
}
return (double) atof(content.c_str());
}
int asInt(int def=0)
{
if (content == "")
{
ostringstream sbuf;
sbuf << def;
content = sbuf.str();
}
return atoi(content.c_str());
}
bool asBool(bool def=false)
{
if (content == "")
{
if (def) content = "true";
else content = "false";
}
if (content == "0") return false;
if (content == "false") return false;
return true;
}
string asString(string def="")
{
if (content == "") content = def;
return content;
}
};
class ArgumentParser
{
private:
map<string,Value> mapArguments;
const int iArgC;
const char** vArgV;
bool bStrictMode, bVerbose;
public:
Value& operator()(const string arg)
{
if (bStrictMode)
{
map<string,Value>::const_iterator it = mapArguments.find(arg);
if (it == mapArguments.end())
{
printf("Runtime option NOT SPECIFIED! ABORTING! name: %s\n",arg.data());
abort();
}
}
if (bVerbose) printf("%s is %s\n", arg.data(), mapArguments[arg].asString().data());
return mapArguments[arg];
}
bool check(const string arg) const
{
return mapArguments.find(arg) != mapArguments.end();
}
ArgumentParser(const int argc, const char ** argv) : mapArguments(), iArgC(argc), vArgV(argv), bStrictMode(false), bVerbose(true)
{
for (int i=1; i<argc; i++)
if (argv[i][0] == '-')
{
string values = "";
int itemCount = 0;
for (int j=i+1; j<argc; j++)
if (argv[j][0] == '-')
break;
else
{
if (strcmp(values.c_str(), ""))
values += ' ';
values += argv[j];
itemCount++;
}
if (itemCount == 0)
values = "true";
mapArguments[argv[i]] = Value(values);
i += itemCount;
}
mute();
//printf("found %ld arguments of %d\n",mapArguments.size(),argc);
}
int getargc() const { return iArgC; }
const char** getargv() const { return vArgV; }
void set_strict_mode()
{
bStrictMode = true;
}
void unset_strict_mode()
{
bStrictMode = false;
}
void mute()
{
bVerbose = false;
}
void loud()
{
bVerbose = true;
}
void save_options(string path=".")
{
string options;
for(map<string,Value>::iterator it=mapArguments.begin(); it!=mapArguments.end(); it++)
{
options+= it->first + " " + it->second.asString() + " ";
}
string filepath = (path + "/" + string("argumentparser.log"));
FILE * f = fopen(filepath.data(), "a");
if (f == NULL)
{
printf("impossible to write %s.\n", filepath.data());
return;
}
fprintf(f, "%s\n", options.data());
fclose(f);
}
void print_options()
{
std::cout << "RUNTIME ARGUMENTS:" << std::endl;
for(map<string,Value>::iterator it=mapArguments.begin(); it!=mapArguments.end(); it++)
{
std::cout.width(50);
std::cout.fill('.');
std::cout << std::left << it->first;
std::cout << ": " << it->second.asString() << std::endl;
}
}
};