goptions
goption.h
Go to the documentation of this file.
1 #ifndef GOPTION_H
2 #define GOPTION_H 1
3 
4 // goption
5 #include "goptionsConventions.h"
6 // gemc
7 #include "gutsConventions.h"
8 // c++
9 #include <map>
10 #include <fstream>
11 #include <vector>
12 #include <string>
13 #include <iostream>
14 #include <algorithm>
15 
16 // yaml-cpp
17 #include "yaml-cpp/yaml.h"
18 
19 using std::string;
20 using std::map;
21 using std::vector;
22 
30 struct GVariable {
31  string name;
32  string value;
33  string description;
34 
41  GVariable(string n, string val, string d)
42  : name(std::move(n)), value(std::move(val)), description(std::move(d)) {}
43 
50  GVariable(string n, double val, string d)
51  : name(std::move(n)), description(std::move(d)) { value = std::to_string(val); }
52 
59  GVariable(string n, const char *val, string d)
60  : name(std::move(n)), value(val), description(std::move(d)) {}
61 
68  GVariable(string n, int val, string d)
69  : name(std::move(n)), description(std::move(d)) { value = std::to_string(val); }
70 
77  GVariable(string n, bool val, string d)
78  : name(std::move(n)), description(std::move(d)) { value = val ? "true" : "false"; }
79 };
80 
89 class GOption {
90 public:
96  GOption(GVariable dv, string h) : name(dv.name), description(dv.description), help(h) {
97  defaultValue = YAML::Load(name + ": " + dv.value);
98  value = defaultValue;
99  }
100 
108  GOption(string n, string desc, vector<GVariable> dv, string h)
109  : name(n), description(desc), help(h) {
110  YAML::Node nodes;
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);
115  if (v.value == goptions::NODFLT) {
116  isCumulative = true;
117  mandatory_keys.push_back(v.name);
118  }
119  }
120  defaultValue[n] = nodes;
121  if (!isCumulative) {
122  value = defaultValue;
123  }
124  }
125 
135  void set_sub_option_value(const string &subkey, const string &subvalue);
136 
137 private:
138  bool isCumulative = false;
139  const string name;
140  const string description;
141  const string help;
142 
143  YAML::Node value;
144  YAML::Node defaultValue;
145  vector<string> gvar_descs;
146  vector<string> mandatory_keys;
147 
152  void saveOption(std::ofstream *yamlConf) const;
153 
158  void printHelp(bool detailed) const;
159 
164  string detailedHelp() const;
165 
170  void set_scalar_value(const string &v);
171 
176  void set_value(const YAML::Node &v);
177 
183  bool does_the_option_set_all_necessary_values(YAML::Node v);
184 
185  friend class GOptions;
186 };
187 
188 #endif
Represents a configurable option with a name, value(s), description, and help text.
Definition: goption.h:89
void set_sub_option_value(const string &subkey, const string &subvalue)
Sets the value of a sub–option using dot–notation.
Definition: goption.cc:183
GOption(string n, string desc, vector< GVariable > dv, string h)
Constructor for a sequence option.
Definition: goption.h:108
GOption(GVariable dv, string h)
Constructor for a scalar option with a default value.
Definition: goption.h:96
The GOptions class manages command-line options and switches.
Definition: goptions.h:20
const std::string NODFLT
Encapsulates a variable with a name, value, and description.
Definition: goption.h:30
string value
The value of the variable, stored as a string.
Definition: goption.h:32
string description
A brief description of the variable.
Definition: goption.h:33
GVariable(string n, const char *val, string d)
Constructor for initializing a variable with a const char* value.
Definition: goption.h:59
GVariable(string n, string val, string d)
Constructor for initializing a variable with a string value.
Definition: goption.h:41
string name
The name of the variable.
Definition: goption.h:31
GVariable(string n, int val, string d)
Constructor for initializing a variable with an integer value.
Definition: goption.h:68
GVariable(string n, double val, string d)
Constructor for initializing a variable with a double value.
Definition: goption.h:50
GVariable(string n, bool val, string d)
Constructor for initializing a variable with a boolean value.
Definition: goption.h:77