An option of a command line. Options are read "automatically" using their declaration information defined with externalized strings (resources) accessed through ALib Enum Records associated with enum elements of enum custom types.
However, such automatic read is limited due to the fact, that the simple values and flags defined with OptionDecl , can not provide the flexibility needed to perfectly parse options with a complex syntax.
In this case, the way out is to use custom code that invokes ReadOptions and then processes all options that may have remaining arguments left in the list. Using field Position further arguments may be consumed from CommandLine::ArgsLeft .
Note, "processing all options" may mean a nested loop. The outer is over the option types of OptionsFound , the inner is over the vector of options per type.
Definition at line 475 of file arguments.hpp.
#include <arguments.hpp>
Public Field Index: | |
List< String, Recycling::Shared > | Args |
OptionDecl * | Declaration = nullptr |
Public Field Index: inherited from Parsed | |
CommandLine * | CmdLine |
integer | Position |
integer | QtyArgsConsumed |
Public Method Index: | |
Option (CommandLine *cmdLine) | |
ALIB_API bool | Read (OptionDecl &decl, String &arg, const integer argNo) |
Public Method Index: inherited from Parsed | |
Parsed (CommandLine *cmdLine) | |
List<String, Recycling::Shared> Args |
Arguments belonging to this option.
Definition at line 481 of file arguments.hpp.
OptionDecl* Declaration = nullptr |
The declaration struct.
Definition at line 478 of file arguments.hpp.
|
inline |
Constructor
cmdLine | The command line main object. |
Definition at line 588 of file commandline.hpp.
bool Read | ( | OptionDecl & | decl, |
String & | arg, | ||
const integer | argNo ) |
Tries to read the object from the current CLI arg(s).
decl | The declaration used for reading. |
arg | The argument string starting with one or two hyphens. |
argNo | The position of reading. |
true
on success, false
otherwise. Definition at line 69 of file arguments.cpp.