goptions
|
The GOptions class manages command-line options and switches. More...
#include <goptions.h>
Public Member Functions | |
GOptions () | |
Default constructor. More... | |
GOptions (string name) | |
Constructor for verbosity and debug options. More... | |
GOptions (int argc, char *argv[], const GOptions &user_defined_options=GOptions()) | |
Library–based constructor. More... | |
void | defineSwitch (const string &name, const string &description) |
Defines and adds a command–line switch. More... | |
void | defineOption (const GVariable &gvar, const string &help) |
Defines and adds a scalar option. More... | |
void | defineOption (const string &name, const string &description, const std::vector< GVariable > &gvars, const string &help) |
Defines and adds a structured (map/sequence) option. More... | |
int | getScalarInt (const string &tag) const |
Retrieves the value of a scalar integer option. More... | |
float | getScalarFloat (const string &tag) const |
Retrieves the value of a scalar float option. More... | |
double | getScalarDouble (const string &tag) const |
Retrieves the value of a scalar double option. More... | |
string | getScalarString (const string &tag) const |
Retrieves the value of a scalar string option. More... | |
bool | getSwitch (const string &tag) const |
Retrieves the status of a switch. More... | |
const YAML::Node | getOptionNode (const string &tag) const |
Retrieves the YAML node for the specified option. More... | |
YAML::Node | getOptionMapInNode (string option_name, string map_key) |
Retrieves a map option’s value from within a YAML node. More... | |
int | getVerbosityFor (const string &tag) const |
Retrieves the verbosity level for the specified tag. More... | |
int | getDebugFor (const string &tag) const |
Retrieves the debug level for the specified tag. More... | |
const std::vector< GOption > & | getOptions () const |
Returns the list of defined options. More... | |
const std::map< string, GSwitch > & | getSwitches () const |
Returns the map of defined switches. More... | |
void | addGOptions (const GOptions &goptions_to_add) |
Adds options from another GOptions object. More... | |
void | addOptionTitle (string name) |
template<typename T > | |
T | get_variable_in_option (const YAML::Node &node, const string &variable_name, const T &default_value) |
Retrieves a variable from a YAML node within an option. More... | |
std::vector< string > | getYamlFiles () const |
Retrieves the list of YAML file paths. More... | |
bool | doesOptionExist (const string &tag) const |
Checks if the specified option exists. More... | |
Data Fields | |
string | option_verbosity_name = UNINITIALIZEDSTRINGQUANTITY |
vector< GVariable > | option_verbosity_names |
This class provides methods to define, access, and manage configuration options and switches for command-line applications. Options can be scalar or sequence-based and are stored in YAML format.
Definition at line 20 of file goptions.h.
|
inline |
Creates an empty GOptions object, typically used for defining user–defined options.
Definition at line 27 of file goptions.h.
|
inline |
name | verbosity and debug option name |
Definition at line 34 of file goptions.h.
Constructs a GOptions object.
Constructs a GOptions object by initializing built–in options and switches, loading user–defined options, parsing YAML files, and processing command–line arguments.
argc | Number of command–line arguments. |
argv | Array of command–line argument strings. |
user_defined_options | A GOptions object containing user–defined options. |
This constructor performs the following tasks:
argc | Number of command-line arguments. |
argv | Array of command-line argument strings. |
user_defined_options | A GOptions object containing user-defined options. |
Definition at line 29 of file goptions.cc.
|
inline |
goptions_to_add | The GOptions object to add. |
Definition at line 162 of file goptions.h.
|
inline |
Definition at line 176 of file goptions.h.
void GOptions::defineOption | ( | const GVariable & | gvar, |
const string & | help | ||
) |
gvar | A GVariable representing the option. |
help | Help text for the option. |
gvar | The GVariable representing the option. |
help | Help text for the option. |
Definition at line 176 of file goptions.cc.
void GOptions::defineOption | ( | const string & | name, |
const string & | description, | ||
const std::vector< GVariable > & | g_vars, | ||
const string & | help | ||
) |
Defines and adds a structured option.
name | The name of the option. |
description | A summary description of the option. |
gvars | A vector of GVariable objects representing the option elements. |
help | Help text for the option. |
name | The name of the option. |
description | Summary description of the option. |
g_vars | Vector of GVariable objects representing the option elements. |
help | Help text for the option. |
Definition at line 194 of file goptions.cc.
void GOptions::defineSwitch | ( | const string & | name, |
const string & | description | ||
) |
Defines and adds a command-line switch.
name | The name of the switch. |
description | The description of the switch. |
Definition at line 160 of file goptions.cc.
bool GOptions::doesOptionExist | ( | const string & | tag | ) | const |
tag | The name of the option. |
Definition at line 312 of file goptions.cc.
template bool GOptions::get_variable_in_option< bool > | ( | const YAML::Node & | node, |
const string & | variable_name, | ||
const T & | default_value | ||
) |
Template function to retrieve a variable from a YAML node.
T | The type of the variable. |
node | The YAML node. |
variable_name | The name of the variable. |
default_value | The default value if the variable is not found. |
Definition at line 458 of file goptions.cc.
int GOptions::getDebugFor | ( | const string & | tag | ) | const |
Accepts values as either booleans ("true"/"false") or integers.
tag | The name of the debug option. |
Definition at line 499 of file goptions.cc.
YAML::Node GOptions::getOptionMapInNode | ( | string | option_name, |
string | map_key | ||
) |
option_name | The name of the option. |
map_key | The key within the option. |
option_name | The name of the option. |
map_key | The key to look up within the option. |
Definition at line 433 of file goptions.cc.
|
inline |
tag | The name of the option. |
Definition at line 113 of file goptions.h.
|
inline |
Definition at line 150 of file goptions.h.
double GOptions::getScalarDouble | ( | const string & | tag | ) | const |
tag | The name of the option. |
Definition at line 243 of file goptions.cc.
float GOptions::getScalarFloat | ( | const string & | tag | ) | const |
tag | The name of the option. |
Definition at line 227 of file goptions.cc.
int GOptions::getScalarInt | ( | const string & | tag | ) | const |
tag | The name of the option. |
Definition at line 211 of file goptions.cc.
string GOptions::getScalarString | ( | const string & | tag | ) | const |
tag | The name of the option. |
Definition at line 259 of file goptions.cc.
bool GOptions::getSwitch | ( | const string & | tag | ) | const |
Retrieves the status of the specified switch.
tag | The name of the switch. |
Definition at line 414 of file goptions.cc.
|
inline |
Definition at line 156 of file goptions.h.
int GOptions::getVerbosityFor | ( | const string & | tag | ) | const |
tag | The name of the verbosity option. |
Definition at line 478 of file goptions.cc.
|
inline |
Definition at line 196 of file goptions.h.
string GOptions::option_verbosity_name = UNINITIALIZEDSTRINGQUANTITY |
Definition at line 174 of file goptions.h.
vector<GVariable> GOptions::option_verbosity_names |
Definition at line 175 of file goptions.h.