7 #include "gutsConventions.h"
17 #include "yaml-cpp/yaml.h"
96 GOption(
GVariable dv,
string h) : name(dv.name), description(dv.description), help(h) {
97 defaultValue = YAML::Load(name +
": " + dv.
value);
108 GOption(
string n,
string desc, vector<GVariable> dv,
string h)
109 : name(n), description(desc), help(h) {
111 for (
const auto &v : dv) {
112 YAML::Node this_node = YAML::Load(v.name +
": " + v.value);
113 nodes.push_back(this_node);
114 gvar_descs.push_back(v.description);
117 mandatory_keys.push_back(v.name);
120 defaultValue[n] = nodes;
122 value = defaultValue;
138 bool isCumulative =
false;
140 const string description;
144 YAML::Node defaultValue;
145 vector<string> gvar_descs;
146 vector<string> mandatory_keys;
152 void saveOption(std::ofstream *yamlConf)
const;
158 void printHelp(
bool detailed)
const;
164 string detailedHelp()
const;
170 void set_scalar_value(
const string &v);
176 void set_value(
const YAML::Node &v);
183 bool does_the_option_set_all_necessary_values(YAML::Node v);
Represents a configurable option with a name, value(s), description, and help text.
void set_sub_option_value(const string &subkey, const string &subvalue)
Sets the value of a sub–option using dot–notation.
GOption(string n, string desc, vector< GVariable > dv, string h)
Constructor for a sequence option.
GOption(GVariable dv, string h)
Constructor for a scalar option with a default value.
The GOptions class manages command-line options and switches.
Encapsulates a variable with a name, value, and description.
string value
The value of the variable, stored as a string.
string description
A brief description of the variable.
GVariable(string n, const char *val, string d)
Constructor for initializing a variable with a const char* value.
GVariable(string n, string val, string d)
Constructor for initializing a variable with a string value.
string name
The name of the variable.
GVariable(string n, int val, string d)
Constructor for initializing a variable with an integer value.
GVariable(string n, double val, string d)
Constructor for initializing a variable with a double value.
GVariable(string n, bool val, string d)
Constructor for initializing a variable with a boolean value.