34static const char *falseStr =
"false";
35static const char *trueStr =
"true";
36static const char *blankStr =
"";
38static option::ArgStatus Arg_Required(
const option::Option &option,
bool msg )
40 static_cast<void>( msg );
43 return option::ARG_OK;
45 return option::ARG_ILLEGAL;
71void clOptions::add(
const std::string &optName,
const char *
const shortOpt,
const char *
const longOpt,
int argT )
74 it = map.find( optName );
78 if( argT == argType::Optional )
80 descriptions.push_back( {
nOpts, argT, shortOpt, longOpt, option::Arg::Optional,
"" } );
82 else if( argT == argType::Required )
84 descriptions.push_back( {
nOpts, argT, shortOpt, longOpt, Arg_Required,
"" } );
88 descriptions.push_back( {
nOpts, argT, shortOpt, longOpt, option::Arg::None,
"" } );
91 map.insert( { optName,
nOpts } );
92 typeMap.insert( { optName, argT } );
101 argc -= ( argc > 0 );
102 argv += ( argc > 0 );
105 if( descriptions.back().index != 0 )
107 descriptions.push_back(
108 {
nOpts, 0,
"",
"", option::Arg::None,
"" } );
109 descriptions.push_back( { 0, 0, 0, 0, 0, 0 } );
113 option::Stats stats( descriptions.data(), argc, argv );
114 options =
new option::Option[stats.options_max];
115 buffer =
new option::Option[stats.buffer_max];
117 option::Parser
parse(
false, descriptions.data(), argc, argv, options, buffer );
121 nonOptions->resize(
parse.nonOptionsCount() );
123 for(
int i = 0; i <
parse.nonOptionsCount(); ++i )
125 ( *nonOptions )[i] =
parse.nonOption( i );
132 mapIterator it = map.find( key );
134 if( it == map.end() )
136 std::cerr <<
"oh no\n";
140 int typeDesc = typeMap[key];
143 if( options[it->second].type() == argType::None )
145 if( typeDesc == argType::False )
147 if( typeDesc == argType::True )
152 if( typeDesc == argType::False || typeDesc == argType::True )
154 if( options[it->second].last()->type() == argType::False )
160 if( options[it->second].arg == 0 )
163 return options[it->second].last()->arg;
168 mapIterator it = map.find( key );
170 if( it == map.end() )
173 return options[it->second].count();
178 mapIterator it = map.find( key );
180 if( it == map.end() )
182 std::cerr <<
"oh no\n";
186 int typeDesc = typeMap[key];
189 if( options[it->second].type() == argType::None )
192 if( typeDesc == argType::False )
199 if( typeDesc == argType::True )
211 if( typeDesc == argType::False || typeDesc == argType::True )
215 if( options[it->second].last()->type() == argType::False )
222 if( options[it->second].arg == 0 )
228 int N = options[it->second].count();
234 for( option::Option *opt = options[it->second]; opt != NULL && i < N; opt = opt->next() )
243 mapIterator it = map.find( key );
245 if( it == map.end() )
248 if( options[it->second].type() != argType::None )
256 return options[
nOpts].count();
266 for( option::Option *opt = options[
nOpts]; opt != NULL; opt = opt->next() )
268 unk.push_back( opt->name );
void parse(int argc, char **argv, std::vector< std::string > *nonOptions=0)
Parse the command line.
const char * operator[](const std::string &key)
Get the value of the option, if present.
void clear()
Clear the memory held by this object.
int numUnknown()
Get the number of unknown options found by the parser.
void add(const std::string &optName, const char *const shortOpt, const char *const longOpt, int argT)
Add a command line option target.
int count(const std::string &key)
Get the number of times the option was set on the command line.
unsigned int nOpts
The number of options added.
void getAll(std::vector< std::string > &args, const std::string &key)
Fill a vector of strings with the arguments supplied for key, last to first.
~clOptions()
D'tor. Deletes the options and buffer pointers.
int unknown(std::vector< std::string > &unk)
Get a vector of the unknown options found by the parser.
bool optSet(const std::string &key)
Test whether this option was set.