goptions
goption.cc
Go to the documentation of this file.
1 #include "goption.h"
2 #include "goptionsConventions.h"
3 #include "gutilities.h"
4 #include <iostream>
5 #include <algorithm>
6 
7 using namespace std;
8 
17 void GOption::set_scalar_value(const string &v) {
18  if (v.empty()) return;
19  string value_to_set = gutilities::replaceCharInStringWithChars(v, ",", "");
20  string key = value.begin()->first.as<string>();
21  value[key] = value_to_set;
22 }
23 
32 void GOption::set_value(const YAML::Node &v) {
33  if (isCumulative) {
34  for (const auto &element : v) {
35  if (!does_the_option_set_all_necessary_values(element)) {
36  cerr << FATALERRORL << "Trying to set " << YELLOWHHL << name << RSTHHR
37  << " but missing mandatory values." << endl;
38  cerr << " Use the option: " << YELLOWHHL << " help " << name
39  << " " << RSTHHR << " for details." << endl << endl;
41  }
42  }
43  value[name] = v;
44  auto default_value_node = defaultValue.begin()->second;
45  for (const auto &map_element_in_default_value : default_value_node) {
46  for (auto default_value_iterator = map_element_in_default_value.begin();
47  default_value_iterator != map_element_in_default_value.end(); ++default_value_iterator) {
48  string default_key = default_value_iterator->first.as<string>();
49  auto default_value = default_value_iterator->second;
50  for (auto map_element_in_value : value[name]) {
51  bool key_found = false;
52  for (auto value_iterator = map_element_in_value.begin();
53  value_iterator != map_element_in_value.end(); ++value_iterator) {
54  string value_key = value_iterator->first.as<string>();
55  if (default_key == value_key) {
56  key_found = true;
57  break;
58  }
59  }
60  if (!key_found) {
61  map_element_in_value[default_key] = default_value;
62  }
63  }
64  }
65  }
66  } else {
67  for (const auto &map_element_in_desired_value : v) {
68  for (auto desired_value_iterator = map_element_in_desired_value.begin();
69  desired_value_iterator != map_element_in_desired_value.end(); ++desired_value_iterator) {
70  for (auto existing_map : value[name]) {
71  for (auto existing_map_iterator = existing_map.begin();
72  existing_map_iterator != existing_map.end(); ++existing_map_iterator) {
73  string first_key = existing_map_iterator->first.as<string>();
74  string second_key = desired_value_iterator->first.as<string>();
75  if (first_key == second_key) {
76  existing_map[existing_map_iterator->first] = desired_value_iterator->second;
77  }
78  }
79  }
80  }
81  }
82  }
83 }
84 
91 bool GOption::does_the_option_set_all_necessary_values(YAML::Node v) {
92  vector<string> this_keys;
93  if (v.Type() == YAML::NodeType::Map) {
94  for (const auto &it : v) {
95  this_keys.push_back(it.first.as<string>());
96  }
97  }
98  for (const auto &key : mandatory_keys) {
99  if (find(this_keys.begin(), this_keys.end(), key) == this_keys.end()) {
100  return false;
101  }
102  }
103  return true;
104 }
105 
113 void GOption::saveOption(std::ofstream *yamlConf) const {
114  YAML::Node mutableValue = value;
115  mutableValue.SetStyle(YAML::EmitterStyle::Block);
116  *yamlConf << mutableValue << std::endl;
117 }
118 
127 void GOption::printHelp(bool detailed) const {
128  if (name == GVERSION_STRING) return;
129  long int fill_width = string(HELPFILLSPACE).size() + 1;
130  cout.fill('.');
131  string helpString = "-" + name + RST;
132  bool is_sequence = defaultValue.begin()->second.IsSequence();
133  helpString += is_sequence ? "=<sequence>" : "=<value>";
134  helpString += " ";
135  cout << KGRN << " " << left;
136  cout.width(fill_width);
137  if (detailed) {
138  cout << helpString << ": " << description << endl << endl;
139  cout << detailedHelp() << endl;
140  } else {
141  cout << helpString << ": " << description << endl;
142  }
143 }
144 
153 string GOption::detailedHelp() const {
154  string newHelp = "";
155  YAML::Node yvalues = defaultValue.begin()->second;
156  if (yvalues.IsSequence()) {
157  newHelp += "\n";
158  for (unsigned i = 0; i < yvalues.size(); i++) {
159  YAML::Node this_node = yvalues[i];
160  for (auto it = this_node.begin(); it != this_node.end(); ++it) {
161  cout << TGREENPOINTITEM << " " << KGRN << it->first.as<string>() << RST
162  << ": " << gvar_descs[i] << ". Default value: " << it->second.as<string>() << endl;
163  }
164  }
165  }
166  newHelp += "\n";
167  vector<string> help_lines = gutilities::getStringVectorFromStringWithDelimiter(help, "\n");
168  for (auto line : help_lines) {
169  newHelp += GTAB + line + "\n";
170  }
171  return newHelp;
172 }
173 
183 void GOption::set_sub_option_value(const string &subkey, const string &subvalue) {
184  YAML::Node option_node = value.begin()->second;
185  if (option_node.IsSequence()) {
186  bool updated = false;
187  for (auto it = option_node.begin(); it != option_node.end(); ++it) {
188  if ((*it).IsMap() && (*it)[subkey]) {
189  (*it)[subkey] = YAML::Load(subvalue);
190  updated = true;
191  }
192  }
193  if (!updated) {
194  cerr << "Sub-option key '" << subkey << "' not found in option '" << name << "'." << endl;
195  exit(EC__NOOPTIONFOUND);
196  }
197  } else if (option_node.IsMap()) {
198  if (option_node[subkey]) {
199  option_node[subkey] = YAML::Load(subvalue);
200  } else {
201  cerr << "Sub-option key '" << subkey << "' not found in option '" << name << "'." << endl;
202  exit(EC__NOOPTIONFOUND);
203  }
204  } else {
205  cerr << "Option '" << name << "' is not structured to accept sub–options." << endl;
206  exit(EC__NOOPTIONFOUND);
207  }
208 }
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
#define EC__NOOPTIONFOUND
#define HELPFILLSPACE
#define GVERSION_STRING
#define EC__MANDATORY_NOT_FILLED