Manages the command line parsing object. More...
#include <cmd_line.hpp>
Public Member Functions | |
void | add (Arg &a) |
void | add (Arg *a) |
CmdLine (const std::string &message, const char delimiter=' ', const std::string &version="none", bool helpAndVersion=true) | |
std::list< Arg * > & | getArgList () |
char | getDelimiter () |
std::string & | getMessage () |
CmdLineOutput * | getOutput () |
std::string & | getProgramName () |
std::string & | getVersion () |
XorHandler & | getXorHandler () |
bool | hasHelpAndVersion () |
void | parse (int argc, char **argv) |
void | setOutput (CmdLineOutput *co) |
void | xorAdd (Arg &a, Arg &b) |
void | xorAdd (std::vector< Arg * > &xors) |
virtual | ~CmdLine () |
Public Member Functions inherited from ecl::CmdLineInterface | |
virtual | ~CmdLineInterface () |
Protected Member Functions | |
bool | _emptyCombined (const std::string &s) |
void | deleteOnExit (Arg *ptr) |
void | deleteOnExit (Visitor *ptr) |
Protected Attributes | |
std::list< Arg * > | _argDeleteOnExitList |
std::list< Arg * > | _argList |
char | _delimiter |
std::string | _message |
int | _numRequired |
CmdLineOutput * | _output |
std::string | _progName |
std::string | _version |
std::list< Visitor * > | _visitorDeleteOnExitList |
XorHandler | _xorHandler |
Private Member Functions | |
void | _constructor () |
Private Attributes | |
bool | _helpAndVersion |
bool | _userSetOutput |
Manages the command line parsing object.
The base class that manages the command line definition and passes along the parsing to the appropriate Arg classes.
Definition at line 51 of file cmd_line.hpp.
|
inline |
Command line constructor. Defines how the arguments will be parsed.
message | - The message to be used in the usage output. |
delimiter | - The character that is used to separate the argument flag/name from the value. Defaults to ' ' (space). |
version | - The version number to be used in the –version switch. |
helpAndVersion | - Whether or not to create the Help and Version switches. Defaults to true. |
Definition at line 259 of file cmd_line.hpp.
|
inlinevirtual |
Deletes any resources allocated by a CmdLine object.
Definition at line 274 of file cmd_line.hpp.
|
inlineprivate |
Encapsulates the code common to the constructors (which is all of it).
Definition at line 293 of file cmd_line.hpp.
|
inlineprotected |
Checks whether a name/flag string matches entirely matches the Arg::blankChar. Used when multiple switches are combined into a single argument.
s | - The message to be used in the usage. |
Definition at line 415 of file cmd_line.hpp.
|
inlinevirtual |
Adds an argument to the list of arguments to be parsed.
a | - Argument to be added. |
Implements ecl::CmdLineInterface.
Definition at line 351 of file cmd_line.hpp.
|
inlinevirtual |
An alternative add. Functionally identical.
a | - Argument to be added. |
Implements ecl::CmdLineInterface.
Definition at line 356 of file cmd_line.hpp.
|
inlineprotected |
Perform a delete ptr; operation on ptr when this object is deleted.
Definition at line 427 of file cmd_line.hpp.
|
inlineprotected |
Perform a delete ptr; operation on ptr when this object is deleted.
Definition at line 432 of file cmd_line.hpp.
|
inlinevirtual |
|
inlinevirtual |
Returns the delimiter string.
Implements ecl::CmdLineInterface.
Definition at line 468 of file cmd_line.hpp.
|
inlinevirtual |
Returns the message string.
Implements ecl::CmdLineInterface.
Definition at line 473 of file cmd_line.hpp.
|
inlinevirtual |
Returns the CmdLineOutput object.
Implements ecl::CmdLineInterface.
Definition at line 437 of file cmd_line.hpp.
|
inlinevirtual |
Returns the program name string.
Implements ecl::CmdLineInterface.
Definition at line 453 of file cmd_line.hpp.
|
inlinevirtual |
Returns the version string.
Implements ecl::CmdLineInterface.
Definition at line 448 of file cmd_line.hpp.
|
inlinevirtual |
Returns the XorHandler.
Implements ecl::CmdLineInterface.
Definition at line 463 of file cmd_line.hpp.
|
inlinevirtual |
Indicates whether or not the help and version switches were created automatically.
Implements ecl::CmdLineInterface.
Definition at line 478 of file cmd_line.hpp.
|
inlinevirtual |
Parses the command line.
argc | - Number of arguments. |
argv | - Array of arguments. |
Implements ecl::CmdLineInterface.
Definition at line 370 of file cmd_line.hpp.
|
inlinevirtual |
co | - CmdLineOutput object that we want to use instead. |
Implements ecl::CmdLineInterface.
Definition at line 442 of file cmd_line.hpp.
Add two Args that will be xor'd. If this method is used, add does not need to be called.
a | - Argument to be added and xor'd. |
b | - Argument to be added and xor'd. |
Implements ecl::CmdLineInterface.
Definition at line 343 of file cmd_line.hpp.
|
inlinevirtual |
Add a list of Args that will be xor'd. If this method is used, add does not need to be called.
xors | - List of Args to be added and xor'd. |
Implements ecl::CmdLineInterface.
Definition at line 330 of file cmd_line.hpp.
|
protected |
A list of Args to be explicitly deleted when the destructor is called. At the moment, this only includes the three default Args.
Definition at line 101 of file cmd_line.hpp.
|
protected |
The list of arguments that will be tested against the command line.
Definition at line 61 of file cmd_line.hpp.
|
protected |
The character that is used to separate the argument flag/name from the value. Defaults to ' ' (space).
Definition at line 89 of file cmd_line.hpp.
|
private |
Whether or not to automatically create help and version switches.
Definition at line 150 of file cmd_line.hpp.
|
protected |
A message used to describe the program. Used in the usage output.
Definition at line 71 of file cmd_line.hpp.
|
protected |
The number of arguments that are required to be present on the command line. This is set dynamically, based on the Args added to the CmdLine object.
Definition at line 83 of file cmd_line.hpp.
|
protected |
Object that handles all output for the CmdLine.
Definition at line 113 of file cmd_line.hpp.
|
protected |
The name of the program. Set to argv[0].
Definition at line 66 of file cmd_line.hpp.
|
private |
Is set to true when a user sets the output object. We use this so that we don't delete objects that are created outside of this lib.
Definition at line 145 of file cmd_line.hpp.
|
protected |
The version to be displayed with the –version switch.
Definition at line 76 of file cmd_line.hpp.
|
protected |
A list of Visitors to be explicitly deleted when the destructor is called. At the moment, these are the Vistors created for the default Args.
Definition at line 108 of file cmd_line.hpp.
|
protected |
The handler that manages xoring lists of args.
Definition at line 94 of file cmd_line.hpp.