Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moved a line for comprehension
[simgrid.git] / src / xbt / config.cpp
1 /* Copyright (c) 2004-2020. The SimGrid Team. All rights reserved.     */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <cstdio>
7
8 #include <algorithm>
9 #include <cerrno>
10 #include <cstring>
11 #include <climits>
12
13 #include <functional>
14 #include <map>
15 #include <memory>
16 #include <stdexcept>
17 #include <string>
18 #include <string>
19 #include <type_traits>
20 #include <typeinfo>
21 #include <vector>
22
23 #include "simgrid/Exception.hpp"
24 #include "simgrid/sg_config.hpp"
25 #include "xbt/dynar.h"
26 #include "xbt/log.h"
27 #include "xbt/misc.h"
28 #include "xbt/sysdep.h"
29 #include <xbt/config.h>
30 #include <xbt/config.hpp>
31
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_cfg, xbt, "configuration support");
33
34 XBT_EXPORT_NO_IMPORT xbt_cfg_t simgrid_config = nullptr;
35
36 namespace simgrid {
37 namespace config {
38
39 namespace {
40
41 const char* true_values[] = {
42   "yes", "on", "true", "1"
43 };
44 const char* false_values[] = {
45   "no", "off", "false", "0"
46 };
47
48 static bool parse_bool(const char* value)
49 {
50   for (const char* const& true_value : true_values)
51     if (std::strcmp(true_value, value) == 0)
52       return true;
53   for (const char* const& false_value : false_values)
54     if (std::strcmp(false_value, value) == 0)
55       return false;
56   throw std::range_error("not a boolean");
57 }
58
59 static double parse_double(const char* value)
60 {
61   char* end;
62   errno = 0;
63   double res = std::strtod(value, &end);
64   if (errno == ERANGE)
65     throw std::range_error("out of range");
66   else if (errno)
67     xbt_die("Unexpected errno");
68   if (end == value || *end != '\0')
69     throw std::range_error("invalid double");
70   else
71     return res;
72 }
73
74 static long int parse_long(const char* value)
75 {
76   char* end;
77   errno = 0;
78   long int res = std::strtol(value, &end, 0);
79   if (errno) {
80     if (res == LONG_MIN && errno == ERANGE)
81       throw std::range_error("underflow");
82     else if (res == LONG_MAX && errno == ERANGE)
83       throw std::range_error("overflow");
84     xbt_die("Unexpected errno");
85   }
86   if (end == value || *end != '\0')
87     throw std::range_error("invalid integer");
88   else
89     return res;
90 }
91
92 // ***** ConfigType *****
93
94 /// A trait which define possible options types:
95 template <class T> class ConfigType;
96
97 template <> class ConfigType<int> {
98 public:
99   static constexpr const char* type_name = "int";
100   static inline double parse(const char* value)
101   {
102     return parse_long(value);
103   }
104 };
105 template <> class ConfigType<double> {
106 public:
107   static constexpr const char* type_name = "double";
108   static inline double parse(const char* value)
109   {
110     return parse_double(value);
111   }
112 };
113 template <> class ConfigType<std::string> {
114 public:
115   static constexpr const char* type_name = "string";
116   static inline std::string parse(const char* value)
117   {
118     return std::string(value);
119   }
120 };
121 template <> class ConfigType<bool> {
122 public:
123   static constexpr const char* type_name = "boolean";
124   static inline bool parse(const char* value)
125   {
126     return parse_bool(value);
127   }
128 };
129
130 // **** Forward declarations ****
131
132 class ConfigurationElement ;
133 template<class T> class TypedConfigurationElement;
134
135 // **** ConfigurationElement ****
136
137 class ConfigurationElement {
138 private:
139   std::string key;
140   std::string desc;
141   bool isdefault = true;
142
143 public:
144   ConfigurationElement(const std::string& key, const std::string& desc) : key(key), desc(desc) {}
145
146   virtual ~ConfigurationElement() = default;
147
148   virtual std::string get_string_value()           = 0;
149   virtual void set_string_value(const char* value) = 0;
150   virtual const char* get_type_name()              = 0;
151
152   template <class T> T const& get_value() const
153   {
154     return static_cast<const TypedConfigurationElement<T>&>(*this).get_value();
155   }
156   template <class T> void set_value(T value)
157   {
158     static_cast<TypedConfigurationElement<T>&>(*this).set_value(std::move(value));
159   }
160   template <class T> void set_default_value(T value)
161   {
162     static_cast<TypedConfigurationElement<T>&>(*this).set_default_value(std::move(value));
163   }
164   void unset_default() { isdefault = false; }
165   bool is_default() const { return isdefault; }
166
167   std::string const& get_description() const { return desc; }
168   std::string const& get_key() const { return key; }
169 };
170
171 // **** TypedConfigurationElement<T> ****
172
173 // TODO, could we use boost::any with some Type* reference?
174 template<class T>
175 class TypedConfigurationElement : public ConfigurationElement {
176 private:
177   T content;
178   std::function<void(T&)> callback;
179
180 public:
181   TypedConfigurationElement(const std::string& key, const std::string& desc, T value = T())
182       : ConfigurationElement(key, desc), content(std::move(value))
183   {}
184   TypedConfigurationElement(const std::string& key, const std::string& desc, T value, std::function<void(T&)> callback)
185       : ConfigurationElement(key, desc), content(std::move(value)), callback(std::move(callback))
186   {}
187   ~TypedConfigurationElement() = default;
188
189   std::string get_string_value() override;
190   const char* get_type_name() override;
191   void set_string_value(const char* value) override;
192
193   void update()
194   {
195     if (this->callback)
196       this->callback(this->content);
197   }
198
199   T const& get_value() const { return content; }
200
201   void set_value(T value)
202   {
203     this->content = std::move(value);
204     this->update();
205     this->unset_default();
206   }
207
208   void set_default_value(T value)
209   {
210     if (this->is_default()) {
211       this->content = std::move(value);
212       this->update();
213     } else {
214       XBT_DEBUG("Do not override configuration variable '%s' with value '%s' because it was already set.",
215                 get_key().c_str(), to_string(value).c_str());
216     }
217   }
218 };
219
220 template <class T> std::string TypedConfigurationElement<T>::get_string_value() // override
221 {
222   return to_string(content);
223 }
224
225 template <class T> void TypedConfigurationElement<T>::set_string_value(const char* value) // override
226 {
227   this->content = ConfigType<T>::parse(value);
228   this->unset_default();
229   this->update();
230 }
231
232 template <class T> const char* TypedConfigurationElement<T>::get_type_name() // override
233 {
234   return ConfigType<T>::type_name;
235 }
236
237 } // end of anonymous namespace
238
239 // **** Config ****
240
241 class Config {
242 private:
243   // name -> ConfigElement:
244   std::map<std::string, std::unique_ptr<ConfigurationElement>> options;
245   // alias -> ConfigElement from options:
246   std::map<std::string, ConfigurationElement*> aliases;
247   bool warn_for_aliases = true;
248
249 public:
250   Config();
251
252   // No copy:
253   Config(Config const&) = delete;
254   Config& operator=(Config const&) = delete;
255
256   ConfigurationElement& operator[](const std::string& name);
257   void alias(const std::string& realname, const std::string& aliasname);
258
259   template <class T, class... A> TypedConfigurationElement<T>* register_option(const std::string& name, A&&... a)
260   {
261     xbt_assert(options.find(name) == options.end(), "Refusing to register the config element '%s' twice.",
262                name.c_str());
263     TypedConfigurationElement<T>* variable = new TypedConfigurationElement<T>(name, std::forward<A>(a)...);
264     XBT_DEBUG("Register cfg elm %s (%s) of type %s @%p in set %p)", name.c_str(), variable->get_description().c_str(),
265               variable->get_type_name(), variable, this);
266     options[name].reset(variable);
267     variable->update();
268     return variable;
269   }
270
271   // Debug:
272   void dump(const char *name, const char *indent);
273   void show_aliases();
274   void help();
275
276 protected:
277   ConfigurationElement* get_dict_element(const std::string& name);
278 };
279
280 Config::Config()
281 {
282   atexit(&sg_config_finalize);
283 }
284
285 inline ConfigurationElement* Config::get_dict_element(const std::string& name)
286 {
287   auto opt = options.find(name);
288   if (opt != options.end()) {
289     return opt->second.get();
290   } else {
291     auto als = aliases.find(name);
292     if (als != aliases.end()) {
293       ConfigurationElement* res = als->second;
294       if (warn_for_aliases)
295         XBT_INFO("Option %s has been renamed to %s. Consider switching.", name.c_str(), res->get_key().c_str());
296       return res;
297     } else {
298       std::string msg = "Bad config key: " + name + "\nExisting config keys:\n";
299       for (auto const& elm : options)
300         msg += "  " + elm.first + ": (" + elm.second->get_type_name() + ")" + elm.second->get_string_value() + "\n";
301       throw std::out_of_range(msg);
302     }
303   }
304 }
305
306 inline ConfigurationElement& Config::operator[](const std::string& name)
307 {
308   return *(get_dict_element(name));
309 }
310
311 void Config::alias(const std::string& realname, const std::string& aliasname)
312 {
313   xbt_assert(aliases.find(aliasname) == aliases.end(), "Alias '%s' already.", aliasname.c_str());
314   ConfigurationElement* element = this->get_dict_element(realname);
315   xbt_assert(element, "Cannot define an alias to the non-existing option '%s'.", realname.c_str());
316   this->aliases.insert({aliasname, element});
317 }
318
319 /** @brief Dump a config set for debugging purpose
320  *
321  * @param name The name to give to this config set
322  * @param indent what to write at the beginning of each line (right number of spaces)
323  */
324 void Config::dump(const char *name, const char *indent)
325 {
326   if (name)
327     XBT_CVERB(xbt_help, "%s>> Dumping of the config set '%s':", indent, name);
328
329   for (auto const& elm : options)
330     XBT_CVERB(xbt_help, "%s  %s: ()%s) %s", indent, elm.first.c_str(), elm.second->get_type_name(),
331               elm.second->get_string_value().c_str());
332
333   if (name)
334     XBT_CVERB(xbt_help, "%s<< End of the config set '%s'", indent, name);
335 }
336
337 /** @brief Displays the declared aliases and their replacement */
338 void Config::show_aliases()
339 {
340   for (auto const& elm : aliases)
341     XBT_HELP("   %-40s %s", elm.first.c_str(), elm.second->get_key().c_str());
342 }
343
344 /** @brief Displays the declared options and their description */
345 void Config::help()
346 {
347   for (auto const& elm : options) {
348     simgrid::config::ConfigurationElement* variable = elm.second.get();
349     XBT_HELP("   %s: %s", elm.first.c_str(), variable->get_description().c_str());
350     XBT_HELP("       Type: %s; Current value: %s", variable->get_type_name(), variable->get_string_value().c_str());
351   }
352 }
353
354 // ***** set_default *****
355
356 template <class T> XBT_PUBLIC void set_default(const char* name, T value)
357 {
358   (*simgrid_config)[name].set_default_value<T>(std::move(value));
359 }
360
361 template XBT_PUBLIC void set_default<int>(const char* name, int value);
362 template XBT_PUBLIC void set_default<double>(const char* name, double value);
363 template XBT_PUBLIC void set_default<bool>(const char* name, bool value);
364 template XBT_PUBLIC void set_default<std::string>(const char* name, std::string value);
365
366 bool is_default(const char* name)
367 {
368   return (*simgrid_config)[name].is_default();
369 }
370
371 // ***** set_value *****
372
373 template <class T> XBT_PUBLIC void set_value(const char* name, T value)
374 {
375   (*simgrid_config)[name].set_value<T>(std::move(value));
376 }
377
378 template XBT_PUBLIC void set_value<int>(const char* name, int value);
379 template XBT_PUBLIC void set_value<double>(const char* name, double value);
380 template XBT_PUBLIC void set_value<bool>(const char* name, bool value);
381 template XBT_PUBLIC void set_value<std::string>(const char* name, std::string value);
382
383 void set_as_string(const char* name, const std::string& value)
384 {
385   (*simgrid_config)[name].set_string_value(value.c_str());
386 }
387
388 void set_parse(const std::string& opt)
389 {
390   std::string options(opt);
391   XBT_DEBUG("List to parse and set:'%s'", options.c_str());
392   while (not options.empty()) {
393     XBT_DEBUG("Still to parse and set: '%s'", options.c_str());
394
395     // skip separators
396     size_t pos = options.find_first_not_of(" \t\n,");
397     options.erase(0, pos);
398     // find option
399     pos              = options.find_first_of(" \t\n,");
400     std::string name = options.substr(0, pos);
401     options.erase(0, pos);
402     XBT_DEBUG("parse now:'%s'; parse later:'%s'", name.c_str(), options.c_str());
403
404     if (name.empty())
405       continue;
406
407     pos = name.find(':');
408     xbt_assert(pos != std::string::npos, "Option '%s' badly formatted. Should be of the form 'name:value'",
409                name.c_str());
410
411     std::string val = name.substr(pos + 1);
412     name.erase(pos);
413
414     const std::string path("path");
415     if (name.compare(0, path.length(), path) != 0)
416       XBT_INFO("Configuration change: Set '%s' to '%s'", name.c_str(), val.c_str());
417
418     set_as_string(name.c_str(), val);
419   }
420 }
421
422 // ***** get_value *****
423
424 template <class T> XBT_PUBLIC T const& get_value(const std::string& name)
425 {
426   return (*simgrid_config)[name].get_value<T>();
427 }
428
429 template XBT_PUBLIC int const& get_value<int>(const std::string& name);
430 template XBT_PUBLIC double const& get_value<double>(const std::string& name);
431 template XBT_PUBLIC bool const& get_value<bool>(const std::string& name);
432 template XBT_PUBLIC std::string const& get_value<std::string>(const std::string& name);
433
434 // ***** alias *****
435
436 void alias(const char* realname, std::initializer_list<const char*> aliases)
437 {
438   for (auto const& aliasname : aliases)
439     simgrid_config->alias(realname, aliasname);
440 }
441
442 // ***** declare_flag *****
443
444 template <class T>
445 XBT_PUBLIC void declare_flag(const std::string& name, const std::string& description, T value,
446                              std::function<void(const T&)> callback)
447 {
448   if (simgrid_config == nullptr)
449     simgrid_config = new simgrid::config::Config();
450   simgrid_config->register_option<T>(name, description, std::move(value), std::move(callback));
451 }
452
453 template XBT_PUBLIC void declare_flag(const std::string& name, const std::string& description, int value,
454                                       std::function<void(int const&)> callback);
455 template XBT_PUBLIC void declare_flag(const std::string& name, const std::string& description, double value,
456                                       std::function<void(double const&)> callback);
457 template XBT_PUBLIC void declare_flag(const std::string& name, const std::string& description, bool value,
458                                       std::function<void(bool const&)> callback);
459 template XBT_PUBLIC void declare_flag(const std::string& name, const std::string& description, std::string value,
460                                       std::function<void(std::string const&)> callback);
461
462 void finalize()
463 {
464   delete simgrid_config;
465   simgrid_config = nullptr;
466 }
467
468 void show_aliases()
469 {
470   simgrid_config->show_aliases();
471 }
472
473 void help()
474 {
475   simgrid_config->help();
476 }
477 }
478 }
479
480 /*----[ Setting ]---------------------------------------------------------*/
481
482 /** @brief Set an integer value to \a name within \a cfg
483  *
484  * @param key the name of the variable
485  * @param value the value of the variable
486  */
487 void sg_cfg_set_int(const char* key, int value)
488 {
489   (*simgrid_config)[key].set_value<int>(value);
490 }
491
492 /** @brief Set or add a double value to \a name within \a cfg
493  *
494  * @param key the name of the variable
495  * @param value the double to set
496  */
497 void sg_cfg_set_double(const char* key, double value)
498 {
499   (*simgrid_config)[key].set_value<double>(value);
500 }
501
502 /** @brief Set or add a string value to \a name within \a cfg
503  *
504  * @param key the name of the variable
505  * @param value the value to be added
506  *
507  */
508 void sg_cfg_set_string(const char* key, const char* value)
509 {
510   (*simgrid_config)[key].set_value<std::string>(value);
511 }
512
513 /** @brief Set or add a boolean value to \a name within \a cfg
514  *
515  * @param key the name of the variable
516  * @param value the value of the variable
517  */
518 void sg_cfg_set_boolean(const char* key, const char* value)
519 {
520   (*simgrid_config)[key].set_value<bool>(simgrid::config::parse_bool(value));
521 }
522
523 /*----[ Getting ]---------------------------------------------------------*/
524 /** @brief Retrieve an integer value of a variable (get a warning if not uniq)
525  *
526  * @param key the name of the variable
527  *
528  * Returns the first value from the config set under the given name.
529  */
530 int sg_cfg_get_int(const char* key)
531 {
532   return (*simgrid_config)[key].get_value<int>();
533 }
534
535 /** @brief Retrieve a double value of a variable (get a warning if not uniq)
536  *
537  * @param key the name of the variable
538  *
539  * Returns the first value from the config set under the given name.
540  */
541 double sg_cfg_get_double(const char* key)
542 {
543   return (*simgrid_config)[key].get_value<double>();
544 }
545
546 /** @brief Retrieve a boolean value of a variable (get a warning if not uniq)
547  *
548  * @param key the name of the variable
549  *
550  * Returns the first value from the config set under the given name.
551  * If there is more than one value, it will issue a warning.
552  */
553 int sg_cfg_get_boolean(const char* key)
554 {
555   return (*simgrid_config)[key].get_value<bool>() ? 1 : 0;
556 }