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
|
// This file is part of CommandLine, a C++ argument processing class.
//
// Copyright 2003 Tom Felker <tcfelker@mtco.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; either version 2.1 of
// the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
// commandline.cpp
// defines the CommandLine class
#include <iostream>
#include <string>
#include <stdexcept>
#include <assert.h>
#include "commandline.h"
using namespace std;
// argv is a pointer to a const pointer to a const char
CommandLine::CommandLine(int argc, const char * const * argv)
{
if(argc < 1) throw out_of_range("CommandLine::CommandLine(): argc < 1");
for(int i = argc - 1; i > 0; --i) args.push(argv[i]);
in_short = false;
cur_is_arg = false;
no_more_options = false;
program_name = argv[0];
}
string CommandLine::GetOption()
{
if(no_more_options || args.empty()) return "";
if(cur_is_arg) {
cerr << "ignoring an argument" << endl;
args.pop();
if(args.empty()) return "";
}
while(true) {
if(args.top().empty()) {
args.pop();
if(args.empty()) return "";
in_short = false;
} else {
break;
}
}
if(in_short) {
string retval(args.top().substr(0, 1));
args.top().erase(0, 1);
return retval;
}
if(args.top() == "--") {
no_more_options = true;
args.pop();
return "";
}
if(args.top().substr(0,2) == "--") {
args.top().erase(0, 2);
size_t eq_pos = args.top().find("=");
string retval(args.top().substr(0, eq_pos));
args.top().erase(0, eq_pos);
if(args.top().empty()) {
args.pop();
} else {
args.top().erase(0, 1);
cur_is_arg = true;
}
return retval;
}
if(args.top() == "-") return "";
if(args.top().substr(0, 1) == "-") {
args.top().erase(0, 1);
in_short = true;
string retval(args.top().substr(0, 1));
args.top().erase(0, 1);
if(args.top().empty()) args.pop();
return retval;
}
return "";
}
string CommandLine::GetArgument()
{
if(args.empty()) return "";
string retval = args.top();
if(!cur_is_arg && retval == "--") {
args.pop();
if(args.empty()) return "";
retval = args.top();
}
args.pop();
cur_is_arg = false;
in_short = false;
return retval;
}
string CommandLine::GetProgramName()
{
return program_name;
}
bool CommandLine::End() const {
return args.empty();
}
|