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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
|
/*!
* \file
* \brief Implementation of an argument parser class
* \author Thomas Eriksson, Pal Frenger and Johan Bergman
*
* Thanks to Svante Signell for valuable input
*
* -------------------------------------------------------------------------
*
* IT++ - C++ library of mathematical, signal processing, speech processing,
* and communications classes and functions
*
* Copyright (C) 1995-2008 (see AUTHORS file for a list of contributors)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* -------------------------------------------------------------------------
*/
#include <itpp/base/parser.h>
#include <fstream>
#include <sstream>
using std::cout;
using std::endl;
namespace itpp {
Parser::Parser()
{
VERBOSE=true;
}
Parser::Parser(const std::string &filename)
{
VERBOSE=true;
init(filename);
}
Parser::Parser(int argc, char *argv[])
{
VERBOSE=true;
init(argc,argv);
}
Parser::Parser(const std::string &filename, int argc, char *argv[])
{
VERBOSE=true;
init(filename, argc, argv);
}
Parser::Parser(const Array<std::string> &setup)
{
VERBOSE=true;
init(setup);
}
void Parser::pre_parsing(void)
{
int i, j, n, k;
int count = 0;
int size = SetupStrings.size();
bool cont_line;
std::string Line, NewLine;
Array<std::string> TempSetupStrings;
// Remove lines starting with '%' or have zero length:
for (i=0; i<size; i++) {
Line = SetupStrings(i);
if ((Line[0]!='%') && (Line.length() != 0)) {
SetupStrings(count) = Line;
count++;
}
}
SetupStrings.set_size(count,true);
size = SetupStrings.size();
//Check for '...' continuation as in Matlab:
count = 0;
NewLine = "";
for (i=0; i<SetupStrings.size(); i++) {
Line = SetupStrings(i);
n = Line.size();
cont_line = false;
for (k=0; k<(n-2); k++) {
if ((Line[k]=='.') && (Line[k+1]=='.') && (Line[k+2]=='.')) {
cont_line = true; break;
}
}
if (cont_line) {
for (j=0; j<k; j++) { NewLine += Line[j]; }
} else {
NewLine += Line;
SetupStrings(count) = NewLine;
count++;
NewLine = "";
}
}
SetupStrings.set_size(count,true);
//Strip unneccesary blanks, tabs, and newlines:
size = SetupStrings.size();
for (i=0; i<size; i++) {
NewLine = "";
Line = SetupStrings(i);
n = Line.length();
j = 0; //counter in Line
while (j<n) {
switch (Line[j]) {
case '\n':
//Remove newlines
j++;
break;
case ' ':
//Remove blanks
j++;
break;
case '\t':
//Remove tabs
j++;
break;
case '[':
//Don't remove blanks between '[' and ']'
while ( (Line[j] != ']') && ( j < n ) ) { NewLine += Line[j]; j++; }
if (j<n) { NewLine += Line[j]; j++; }
break;
case '{':
//Don't remove blanks between '{' and '}'
while ( (Line[j] != '}') && ( j < n ) ) { NewLine += Line[j]; j++; }
if (j<n) { NewLine += Line[j]; j++; }
break;
case '"':
//Don't remove blanks between '"' and '"'
NewLine += Line[j]; j++; //Read in the first '"'
while ( (Line[j] != '"') && ( j < n ) ) { NewLine += Line[j]; j++; }
NewLine += Line[j]; j++;
break;
case '\'':
//Don't remove blanks between '\'' and '\''
NewLine += Line[j]; j++; //Read in the first '\''
while ( (Line[j] != '\'') && ( j < n ) ) { NewLine += Line[j]; j++; }
NewLine += Line[j]; j++;
break;
case '%':
//Remove trailing comments
j = n;
break;
default:
//Keep the current character:
NewLine += Line[j]; j++;
break;
}
}
SetupStrings(i) = NewLine;
}
// Split lines with several expressions (i.e. a=3;b=[1 2 3],c="Hello World") on the same line
// (separated by comma or semicolon)
TempSetupStrings.set_size(size,false);
count = 0; //Counter in TempSetupStrings
for (i=0; i<size; i++) {
NewLine = "";
Line = SetupStrings(i);
n = Line.length();
j = 0;
while (j<n) {
switch (Line[j]) {
case '[':
//A vector or a matrix
while ( (Line[j] != ']') && ( j < n ) ) { NewLine += Line[j]; j++; }
if (Line[j]==']') { NewLine += Line[j]; j++; }
if (j==n) {
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine; NewLine = ""; count++;
}
break;
case '"':
//A string
NewLine += Line[j]; j++; //Read in the first '"'
while ( (Line[j] != '"') && ( j < n ) ) { NewLine += Line[j]; j++; }
if (Line[j]=='"') { NewLine += Line[j]; j++; }
if (j==n) {
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine; NewLine = ""; count++;
}
break;
case '\'':
//A string
NewLine += Line[j]; j++; //Read in the first '\''
while ( (Line[j] != '\'') && ( j < n ) ) { NewLine += Line[j]; j++; }
if (Line[j]=='\'') { NewLine += Line[j]; j++; }
if (j==n) {
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine; NewLine = ""; count++;
}
break;
case ',':
//Expression ends here
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine;
NewLine = ""; count++; j++;
break;
case ';':
//Expression ends here
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine + ';';
NewLine = ""; count++; j++;
break;
default:
//Copy the current character:
NewLine += Line[j];
j++;
if (j==n) {
if (count>=TempSetupStrings.size()) { TempSetupStrings.set_size(2*count,true); }
TempSetupStrings(count) = NewLine; NewLine = ""; count++;
}
break;
}
}
}
TempSetupStrings.set_size(count,true);
SetupStrings = TempSetupStrings;
}
void Parser::init(const std::string &filename)
{
std::string Line;
SetupStrings.set_size(0,false);
std::ifstream SetupFile(filename.c_str());
it_assert(SetupFile.is_open(),
"Parser::init(): Could not open `" + filename + "' file");
while (getline(SetupFile,Line,'\n')) {
SetupStrings.set_size( SetupStrings.size() + 1, true );
SetupStrings( SetupStrings.size() - 1 ) = Line;
}
SetupFile.close();
pre_parsing();
}
void Parser::init(int argc, char *argv[])
{
SetupStrings.set_size(argc);
int i;
for (i=0; i<argc; i++) {
SetupStrings(i) = argv[i];
}
pre_parsing();
}
void Parser::init(const std::string &filename, int argc, char *argv[])
{
std::string Line;
int i;
std::ifstream SetupFile(filename.c_str());
it_assert(SetupFile.is_open(),
"Parser::init(): Could not open `" + filename + "' file");
//Read the command line parameters:
SetupStrings.set_size(argc);
for (i=0; i<argc; i++) {
SetupStrings(i) = argv[i];
}
//Read the file parameters:
while (getline(SetupFile,Line,'\n')) {
SetupStrings.set_size( SetupStrings.size() + 1, true );
SetupStrings( SetupStrings.size() - 1 ) = Line;
}
SetupFile.close();
pre_parsing();
}
void Parser::init(const Array<std::string> &setup)
{
SetupStrings = setup;
pre_parsing();
}
void Parser::set_silentmode(bool v)
{
VERBOSE=!v;
}
bool Parser::exist(const std::string &name)
{
bool error_flag, print_flag;
std::string temp = findname( name, error_flag, print_flag );
if (error_flag) {
return false;
} else {
return true;
}
}
template<>
bool Parser::get(std::string &var, const std::string &name, int num)
{
bool error_flag, print_flag;
std::string str = findname(name, error_flag, print_flag, num);
if (error_flag) {
if (VERBOSE) {
cout << name << " = '" << var << "';" << endl;
}
} else {
var = str;
if (print_flag) {
cout << name << " = '" << var << "'" << endl;
} else if (VERBOSE) {
cout << name << " = '" << var << "';" << endl;
}
}
return !error_flag;
}
template<>
bool Parser::get(int &var, const std::string &name, int num)
{
ivec out;
bool error_flag, print_flag;
out = ivec(findname(name, error_flag, print_flag, num));
if (error_flag) {
if (VERBOSE) {
cout << name << " = " << var << ";" << endl;
}
} else {
it_assert(out.size() == 1, "Parser::get(int): Improper variable string: "
+ name);
var = out(0);
if (print_flag) {
cout << name << " = " << var << endl;
} else if (VERBOSE) {
cout << name << " = " << var << ";" << endl;
}
}
return !error_flag;
}
template<>
bool Parser::get(bool &var, const std::string &name, int num)
{
std::string ss;
bool error_flag, print_flag;
ss = findname(name, error_flag, print_flag, num);
if (error_flag) {
if (VERBOSE) {
cout << name << " = " << var << ";" << endl;
}
} else {
if ((ss == "true") || (ss == "1")) {
var = true;
}
else if ((ss == "false") || (ss == "0")) {
var = false;
}
else {
it_error("Parser::get(bool): Improper variable string: " + name);
}
if (print_flag) {
cout << name << " = " << var << endl;
} else if (VERBOSE) {
cout << name << " = " << var << ";" << endl;
}
}
return !error_flag;
}
bool Parser::get_bool(const std::string &name, int num)
{
std::string ss;
bool out = false;
bool error_flag, print_flag;
ss = findname(name,error_flag,print_flag,num);
it_assert(!error_flag, "Parser::get_bool(): Can not find variable: " + name);
if ((ss == "true") || (ss == "1")) {
out = true;
}
else if ((ss == "false") || (ss == "0")) {
out = false;
}
else {
it_error("Parser::get_bool(): Improper variable string: " + name);
}
if (print_flag) { cout << "Parsing bool : " << name << " = " << out << endl; }
return out;
}
int Parser::get_int(const std::string &name, int num)
{
ivec out;
bool error_flag, print_flag;
out = ivec(findname(name,error_flag,print_flag,num));
it_assert(!error_flag, "Parser::get_int(): Can not find variable: " + name);
it_assert(out.size() == 1, "Parser::get_int(): Improper variable string: "
+ name);
if (print_flag) {
cout << "Parsing int : " << name << " = " << out(0) << endl;
}
return out(0);
}
double Parser::get_double(const std::string &name, int num)
{
double out;
bool error_flag, print_flag;
std::istringstream ss(findname(name,error_flag,print_flag,num));
ss >> out;
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing double: " << name << " = " << out << endl; }
return out;
}
std::string Parser::get_string(const std::string &name, int num)
{
std::string out;
bool error_flag, print_flag;
out = findname(name,error_flag,print_flag,num);
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing string: " << name << " = " << out << endl; }
return out;
}
vec Parser::get_vec(const std::string &name, int num)
{
vec out;
bool error_flag, print_flag;
out = vec(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing vec : " << name << " = " << out << endl; }
return out;
}
ivec Parser::get_ivec(const std::string &name, int num)
{
ivec out;
bool error_flag, print_flag;
out = ivec(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing ivec : " << name << " = " << out << endl; }
return out;
}
svec Parser::get_svec(const std::string &name, int num)
{
svec out;
bool error_flag, print_flag;
out = svec(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing svec : " << name << " = " << out << endl; }
return out;
}
bvec Parser::get_bvec(const std::string &name, int num)
{
bvec out;
bool error_flag, print_flag;
out = bvec(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing bvec : " << name << " = " << out << endl; }
return out;
}
mat Parser::get_mat(const std::string &name, int num)
{
mat out;
bool error_flag, print_flag;
out = mat(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing mat : " << name << " = " << out << endl; }
return out;
}
imat Parser::get_imat(const std::string &name, int num)
{
imat out;
bool error_flag, print_flag;
out = imat(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing imat : " << name << " = " << out << endl; }
return out;
}
smat Parser::get_smat(const std::string &name, int num)
{
smat out;
bool error_flag, print_flag;
out = smat(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing smat : " << name << " = " << out << endl; }
return out;
}
bmat Parser::get_bmat(const std::string &name, int num)
{
bmat out;
bool error_flag, print_flag;
out = bmat(findname(name,error_flag,print_flag,num));
if (error_flag) { it_error("Parser: Can not find variable: " + name); }
if (print_flag) { cout << "Parsing bmat : " << name << " = " << out << endl; }
return out;
}
std::string Parser::findname(const std::string &name, bool &error_flag, bool &print_flag, int num, bool keep_brackets)
{
std::string Name, Out, Line, Temp;
int n, j=0, i=0, index=-1;
bool found = false, vec_mat = false;
error_flag = false;
print_flag = false;
if (num<0) { num=0; }
Name = "";
// Go through all words in input string to find a match
while (i < SetupStrings.size()) {
Line = SetupStrings(i); i++;
// Find equal sign "=", and take the left part to be the Name
if (Line.find_first_of("=") != std::string::npos) {
Name = Line.substr(0, Line.find_first_of("="));
} else {
Name = "";
}
if (Name==name) {
if (found) {
//cout << "Parser Warning: Duplicate Entry of variable " << name << endl;
} else {
found = true;
index = i-1;
}
}
}
// if we have a match
if ( (found) && (index+num <= SetupStrings.size()) ) {
Line = SetupStrings(index+num);
if (num != 0) {
Temp = Line;
} else {
Temp = Line.substr(Line.find_first_of("=")+1);
}
} else {
error_flag = true;
return "";
}
//Remove [, ],",' and ending ;. Set the print_flag:
n = Temp.size();
Out = "";
for (i=0; i<n; i++) {
switch (Temp[i]) {
case '[':
vec_mat = true;
if (keep_brackets) { Out += Temp[i]; }
if (i==(n-1)) { print_flag = true; }
break;
case ']':
if (keep_brackets) { Out += Temp[i]; }
if (i==(n-1)) { print_flag = true; }
break;
case '"':
if (i==(n-1)) { print_flag = true; }
break;
case '\'':
if (i==(n-1)) { print_flag = true; }
break;
case ';':
if (i==(n-1)) { print_flag = false; } else { Out += Temp[i]; }
break;
default:
Out += Temp[i];
if (i==(n-1)) { print_flag = true; }
break;
}
}
//Final parsing of vectors and matrices:
if (vec_mat) {
Temp = Out;
Out = "";
n = Temp.size();
j = 0;
while ((Temp[j] == ' ') || (Temp[j] == '\t') || (Temp[j] == '\n')) { j++; } //Remove spaces/tabs/newline in beginning
while ((Temp[n-1] == ' ') || (Temp[n-1] == '\t') || (Temp[n-1] == '\n')) { n--; } //Remove spaces/tabs/newline at the end
while (j<n) {
//Read in data element:
while ((Temp[j]!=' ')&&(Temp[j]!='\t')&&(Temp[j]!='\n')&&(Temp[j]!=',')&&(Temp[j]!=';')&&(j<n)) {
Out += Temp[j]; j++;
}
//Read separator:
if (j<(n-1)) {
//Remove spaces before separator
while (((Temp[j]==' ')||(Temp[j]=='\t')||(Temp[j]=='\n'))&&(j<n)) { j++; }
//Insert Separator:
if (j<n) {
if (Temp[j]==';') { Out += ';'; j++; }
else if (Temp[j]==',') { Out += ' '; j++; }
else if (Temp[j]=='+') { Out += ' '; Out += Temp[j]; j++; }
else if (Temp[j]=='-') { Out += ' '; Out += Temp[j]; j++; }
else { Out += ' '; }
}
//Remove spaces after separator:
while (((Temp[j]==' ')||(Temp[j]=='\t')||(Temp[j]=='\n'))&&(j<n)) { j++; }
}
}
}
if (!VERBOSE) print_flag=false;
return Out;
}
} // namespace itpp
|