-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_line_interface.cpp
310 lines (250 loc) · 8.7 KB
/
cmd_line_interface.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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/**
* @file cmd_line_interface.cpp
* @brief automate the parsing of the command-line
*
* this class is meant to automate the parsing of the command-line
* its main purpose is to minimize new code being written when a new program is written
*
* as such, the data it holds have 2 purposes:
* 1. will process the options, as well as the input and output files the user enters
* 2. will help automate the print_help command, which otherwise would not be centralized
*/
/*
* Original Author: REPLACE_WITH_FULL_NAME_OF_CREATING_AUTHOR
* CVS Revision Info:
* $Author: nicks $
* $Date: 2009/06/30 21:37:55 $
* $Revision: 1.5 $
*
* Copyright (C) 2002-2007,
* The General Hospital Corporation (Boston, MA).
* All rights reserved.
*
* Distribution, usage and copying of this software is covered under the
* terms found in the License Agreement file named 'COPYING' found in the
* FreeSurfer source code root directory, and duplicated here:
* https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferOpenSourceLicense
*
* General inquiries: [email protected]
* Bug reports: [email protected]
*
*/
#include <list>
#include <vector>
#include <string>
#include <string.h>
#include "cmd_line_interface.h"
using namespace std;
// this sucks a little - cannot make generic code here
// i will need to hold a list with the types of each argument;
//
// the problem here is that each option PARAMETERS NEED TO SHARE THE SAME TYPE
//
void
CCmdLineInterface:: AddOptionInt(const char *i_cstrName, int *piVal, const char *help) {
CCmdLineOptionInt cmd( i_cstrName, 1, help);
cmd.Add(piVal);
// register that with the generic argument list
m_lstIntOption.push_back(cmd);
}
void
CCmdLineInterface::AddOptionInt(const char *i_cstrName, int *piVal1,int *piVal2, const char *help) {
CCmdLineOptionInt cmd(i_cstrName, 2, help);
cmd.Add(piVal1);
cmd.Add(piVal2);
// register that with the generic argument list
m_lstIntOption.push_back(cmd);
}
void
CCmdLineInterface::AddOptionFloat(const char *i_cstrName, float *pfVal, char *help) {
CCmdLineOptionFloat cmd(i_cstrName, 1, help);
cmd.Add(pfVal);
// register that with the generic argument list
m_lstFloatOption.push_back(cmd);
}
void
CCmdLineInterface::AddOptionFloat(const char *i_cstrName, float *pfVal1, float *pfVal2, char *help) {
CCmdLineOptionFloat cmd(i_cstrName, 2, help);
cmd.Add(pfVal1);
cmd.Add(pfVal2);
// register that with the generic argument list
m_lstFloatOption.push_back(cmd);
}
void
CCmdLineInterface::AddOptionString(const char *i_cstrName, string *pstrVal, const char *help) {
CCmdLineOptionString cmd(i_cstrName, 1, help);
cmd.Add(pstrVal);
m_lstStringOption.push_back(cmd);
}
void
CCmdLineInterface::AddOptionString(const char *i_cstrName,
string *pstrVal_1,
string *pstrVal_2,
const char *help) {
CCmdLineOptionString cmd(i_cstrName, 2, help);
cmd.Add(pstrVal_1);
cmd.Add(pstrVal_2);
m_lstStringOption.push_back(cmd);
}
// a bool option is basically just a flag
// no parameters at all
void
CCmdLineInterface::AddOptionBool(const char *i_cstrName, bool *pbVal, const char *help) {
CCmdLineOptionBool cmd(i_cstrName, help);
cmd.Add(pbVal);
m_lstBoolOption.push_back(cmd);
}
bool
CCmdLineInterface::Parse(int argc, char *argv[]) {
int iTotalArgs = 1;
char *cpOption;
argc--; // one arguments too many
// parsing of the options
for ( ; argc > 0 && std::string(argv[1]).substr(0,2)=="--"; argc--, argv++ ) {
int nargs = 0;
cpOption = argv[1]+2;
list<CCmdLineOptionInt>::iterator cit_int = m_lstIntOption.begin();
list<CCmdLineOptionFloat>::iterator cit_float = m_lstFloatOption.begin();
list<CCmdLineOptionBool>::iterator cit_bool = m_lstBoolOption.begin();
list<CCmdLineOptionString>::iterator cit_string = m_lstStringOption.begin();
bool bFound = false;
while ( cit_int != m_lstIntOption.end() && !bFound ) {
if ( cit_int->Compare(cpOption) ) {
for (int i=0; i < cit_int->GetArgs(); i++) {
int iBuf;
iBuf = atoi(argv[2+i]);
cit_int->Set(iBuf);
}
nargs += cit_int->GetArgs();
bFound = true;
}
cit_int++;
}
while ( cit_float != m_lstFloatOption.end() && !bFound ) {
if ( cit_float->Compare(cpOption) ) {
for (int i=0; i < cit_float->GetArgs(); i++) {
float fBuf;
fBuf = atof(argv[2+i]);
cit_float->Set(fBuf);
}
nargs += cit_float->GetArgs();
bFound = true;
}
cit_float++;
}
// a bool parameter does not have options - acts like a flag
while ( cit_bool != m_lstBoolOption.end() && !bFound ) {
if ( cit_bool->Compare(cpOption) ) {
cit_bool->Set();
bFound = true;
}
cit_bool++;
}
while ( cit_string != m_lstStringOption.end() && !bFound ) {
if ( cit_string->Compare(cpOption) ) {
for (int i=0; i < cit_string->GetArgs(); i++ ) {
string strBuf = argv[2+i];
cit_string->Set(strBuf);
}
nargs += cit_string->GetArgs();
bFound = true;
}
cit_string++;
}
if ( strcmp(cpOption, "help") == 0 ) {
PrintHelp();
} else if ( !bFound ) {
// signal the presence of a misinterpreted option
// will almost surely generate an error in the sequel
// most likely to occur due to a typing error for instance
cout << " !!! unknown option " << cpOption << " \n\n currently available command-line arguments are \n";
PrintHelp();
cout << " \n ---- \n this application will now exit\n";
exit(1);
}
// do some incrementing depending on the number of parameters that were parsed
argv += nargs;
argc -= nargs;
}
// parse the IO elements now
if ( m_lstIo.empty() )
return true;
bool bOk = true;
list<CCmdLineIo>::iterator it = m_lstIo.begin();
while ( argc > 0 && it != m_lstIo.end() ) {
cpOption = argv[1];
it->Set(cpOption);
iTotalArgs++;
it++;
argv++;
argc--;
}
for ( it = m_lstIo.begin(); it != m_lstIo.end(); it++ )
bOk = bOk && it->Ok();
return bOk;
}
void
CCmdLineInterface::PrintHelp() const {
cout << "\n --------- \n PrintHelp for " << m_strProgName << "\n"
<< " General syntax : " << m_strProgName << " <options> <io> " << std::endl;
cout << " \n Options : \n";
// start by printing the help messages that were entered for each of the options
for ( std::list<CCmdLineOptionFloat>::const_iterator cit = m_lstFloatOption.begin(); cit != m_lstFloatOption.end(); cit++) {
cout << cit->GetHelp() << "\n";
}
for ( std::list<CCmdLineOptionInt>::const_iterator cit = m_lstIntOption.begin(); cit != m_lstIntOption.end(); cit++ ) {
cout << cit->GetHelp() << "\n";
}
for ( std::list<CCmdLineOptionString>::const_iterator cit = m_lstStringOption.begin(); cit != m_lstStringOption.end(); cit++ ) {
cout << cit->GetHelp() << "\n";
}
for ( std::list<CCmdLineOptionBool>::const_iterator cit = m_lstBoolOption.begin(); cit != m_lstBoolOption.end(); cit++ ) {
cout << cit->GetHelp() << "\n";
}
cout << "\n IO items \n";
int i=0;
// end with input and output files
for ( std::list<CCmdLineIo>::const_iterator cit = m_lstIo.begin(); cit != m_lstIo.end(); cit++ ) {
cout << i << ": " << cit->GetHelp() << "\n";
i++;
}
cout << "\n --------------- \n";
}
void CCmdLineInterface::print() const {
cout << "\n --- \n Parsing Status for " << m_strProgName << "\n";
for ( std::list<CCmdLineOptionFloat>::const_iterator cit = m_lstFloatOption.begin(); cit != m_lstFloatOption.end(); cit++ ) {
cit->outStatus();
}
for ( std::list<CCmdLineOptionInt>::const_iterator cit = m_lstIntOption.begin(); cit != m_lstIntOption.end(); cit++ ) {
cit->outStatus();
}
for ( std::list<CCmdLineOptionString>::const_iterator cit = m_lstStringOption.begin(); cit != m_lstStringOption.end(); cit++ ) {
cit->outStatus();
}
for ( std::list<CCmdLineOptionBool>::const_iterator cit = m_lstBoolOption.begin(); cit != m_lstBoolOption.end(); cit++ ) {
cit->outStatus();
}
for ( std::list<CCmdLineIo>::const_iterator cit = m_lstIo.begin(); cit != m_lstIo.end(); cit++ ) {
cit->outStatus();
}
cout << " -------------\n";
}
/*
int main(int argc, char *argv[])
{
cout << "hello world!\n";
CCmdLineInterface interface(argv[0]);
int alpha=0;
int beta = 0;
int u =0;
int v=0;
interface.AddOptionInt("test",&alpha);
interface.AddOptionInt("beta",&beta);
interface.AddOptionInt("gamma", &u, &v);
interface.Parse(argc, argv);
cout << " now the value of alpha is " << alpha
<< " beta is now " << beta
<< " u is now " << u
<< " v is now " << v << endl;
}
*/