53 void defineSwitch(
const string &name,
const string &description);
69 void defineOption(
const string &name,
const string &description,
const std::vector<GVariable> &gvars,
115 std::cerr <<
"Option " << tag <<
" does not exist. Exiting." << std::endl;
118 return getOptionIterator(tag)->value.begin()->second;
156 const std::map<string, GSwitch> &
getSwitches()
const {
return switches; }
163 for (
auto gopt : goptions_to_add.
getOptions()) {
177 string option_verbosity_name_desc = name +
" verbosity level or debug switch";
207 std::map<string, GSwitch> switches;
208 std::ofstream *yamlConf;
209 string executableName;
210 std::vector<string> yaml_files;
218 vector<string> findYamls(
int argc,
char *argv[]);
224 void setOptionsValuesFromYamlFile(
const string &yaml);
231 void setOptionValuesFromCommandLineArgument(
const string &optionName,
const string &possibleYamlNode);
238 std::vector<GOption>::iterator getOptionIterator(
const string &name);
245 std::vector<GOption>::const_iterator getOptionIterator(
const string &name)
const;
251 void printOptionOrSwitchHelp(
const string &tag)
const;
256 void printHelp()
const;
261 void printWebHelp()
const;
266 void saveOptions()
const;
271 void print_version();
The GOptions class manages command-line options and switches.
void defineOption(const GVariable &gvar, const string &help)
Defines and adds a scalar option.
bool getSwitch(const string &tag) const
Retrieves the status of a switch.
int getDebugFor(const string &tag) const
Retrieves the debug level for the specified tag.
const YAML::Node getOptionNode(const string &tag) const
Retrieves the YAML node for the specified option.
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.
int getVerbosityFor(const string &tag) const
Retrieves the verbosity level for the specified tag.
vector< GVariable > option_verbosity_names
std::vector< string > getYamlFiles() const
Retrieves the list of YAML file paths.
GOptions()
Default constructor.
GOptions(string name)
Constructor for verbosity and debug options.
void addOptionTitle(string name)
const std::vector< GOption > & getOptions() const
Returns the list of defined options.
int getScalarInt(const string &tag) const
Retrieves the value of a scalar integer option.
void addGOptions(const GOptions &goptions_to_add)
Adds options from another GOptions object.
bool doesOptionExist(const string &tag) const
Checks if the specified option exists.
float getScalarFloat(const string &tag) const
Retrieves the value of a scalar float option.
const std::map< string, GSwitch > & getSwitches() const
Returns the map of defined switches.
string option_verbosity_name
void defineSwitch(const string &name, const string &description)
Defines and adds a command–line switch.
string getScalarString(const string &tag) const
Retrieves the value of a scalar string option.
YAML::Node getOptionMapInNode(string option_name, string map_key)
Retrieves a map option’s value from within a YAML node.
double getScalarDouble(const string &tag) const
Retrieves the value of a scalar double option.
#define EC__NOOPTIONFOUND
GOptions & operator+=(GOptions &original, const GOptions &optionsToAdd)
Overloaded operator to add options and switches from one GOptions object to another.
Encapsulates a variable with a name, value, and description.