Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define XBT_PUBLIC without parameter, just like XBT_PRIVATE.
[simgrid.git] / src / xbt / config.cpp
1 /* Copyright (c) 2004-2018. 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 <stdexcept>
16 #include <string>
17 #include <string>
18 #include <type_traits>
19 #include <typeinfo>
20 #include <vector>
21
22 #include <xbt/ex.hpp>
23 #include <xbt/config.h>
24 #include <xbt/config.hpp>
25 #include "xbt/misc.h"
26 #include "xbt/sysdep.h"
27 #include "xbt/log.h"
28 #include "xbt/dynar.h"
29
30 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_cfg, xbt, "configuration support");
31
32 XBT_EXPORT_NO_IMPORT(xbt_cfg_t) simgrid_config = nullptr;
33 extern "C" XBT_PUBLIC void sg_config_finalize();
34
35 namespace simgrid {
36 namespace config {
37
38 missing_key_error::~missing_key_error() = default;
39
40 namespace {
41
42 const char* true_values[] = {
43   "yes", "on", "true", "1"
44 };
45 const char* false_values[] = {
46   "no", "off", "false", "0"
47 };
48
49 static bool parseBool(const char* value)
50 {
51   for (const char* const& true_value : true_values)
52     if (std::strcmp(true_value, value) == 0)
53       return true;
54   for (const char* const& false_value : false_values)
55     if (std::strcmp(false_value, value) == 0)
56       return false;
57   throw std::range_error("not a boolean");
58 }
59
60 static double parseDouble(const char* value)
61 {
62   char* end;
63   errno = 0;
64   double res = std::strtod(value, &end);
65   if (errno == ERANGE)
66     throw std::range_error("out of range");
67   else if (errno)
68     xbt_die("Unexpected errno");
69   if (end == value || *end != '\0')
70     throw std::range_error("invalid double");
71   else
72     return res;
73 }
74
75 static long int parseLong(const char* value)
76 {
77   char* end;
78   errno = 0;
79   long int res = std::strtol(value, &end, 0);
80   if (errno) {
81     if (res == LONG_MIN && errno == ERANGE)
82       throw std::range_error("underflow");
83     else if (res == LONG_MAX && errno == ERANGE)
84       throw std::range_error("overflow");
85     xbt_die("Unexpected errno");
86   }
87   if (end == value || *end != '\0')
88     throw std::range_error("invalid integer");
89   else
90     return res;
91 }
92
93 // ***** ConfigType *****
94
95 /// A trait which define possible options types:
96 template <class T> class ConfigType;
97
98 template <> class ConfigType<int> {
99 public:
100   static constexpr const char* type_name = "int";
101   static inline double parse(const char* value)
102   {
103     return parseLong(value);
104   }
105 };
106 template <> class ConfigType<double> {
107 public:
108   static constexpr const char* type_name = "double";
109   static inline double parse(const char* value)
110   {
111     return parseDouble(value);
112   }
113 };
114 template <> class ConfigType<std::string> {
115 public:
116   static constexpr const char* type_name = "string";
117   static inline std::string parse(const char* value)
118   {
119     return std::string(value);
120   }
121 };
122 template <> class ConfigType<bool> {
123 public:
124   static constexpr const char* type_name = "boolean";
125   static inline bool parse(const char* value)
126   {
127     return parseBool(value);
128   }
129 };
130
131 // **** Forward declarations ****
132
133 class ConfigurationElement ;
134 template<class T> class TypedConfigurationElement;
135
136 // **** ConfigurationElement ****
137
138 class ConfigurationElement {
139 private:
140   std::string key;
141   std::string desc;
142   bool isdefault = true;
143
144 public:
145   /* Callback */
146   xbt_cfg_cb_t old_callback = nullptr;
147
148   ConfigurationElement(const char* key, const char* desc) : key(key ? key : ""), desc(desc ? desc : "") {}
149   ConfigurationElement(const char* key, const char* desc, xbt_cfg_cb_t cb)
150     : key(key ? key : ""), desc(desc ? desc : ""), old_callback(cb) {}
151
152   virtual ~ConfigurationElement()=default;
153
154   virtual std::string getStringValue() = 0;
155   virtual void setStringValue(const char* value) = 0;
156   virtual const char* getTypeName() = 0;
157
158   template<class T>
159   T const& getValue() const
160   {
161     return dynamic_cast<const TypedConfigurationElement<T>&>(*this).getValue();
162   }
163   template<class T>
164   void setValue(T value)
165   {
166     dynamic_cast<TypedConfigurationElement<T>&>(*this).setValue(std::move(value));
167   }
168   template<class T>
169   void setDefaultValue(T value)
170   {
171     dynamic_cast<TypedConfigurationElement<T>&>(*this).setDefaultValue(std::move(value));
172   }
173   void unsetDefault() { isdefault = false; }
174   bool isDefault() const { return isdefault; }
175
176   std::string const& getDescription() const { return desc; }
177   std::string const& getKey() const { return key; }
178 };
179
180 // **** TypedConfigurationElement<T> ****
181
182 // TODO, could we use boost::any with some Type* reference?
183 template<class T>
184 class TypedConfigurationElement : public ConfigurationElement {
185 private:
186   T content;
187   std::function<void(T&)> callback;
188
189 public:
190   TypedConfigurationElement(const char* key, const char* desc, T value = T())
191     : ConfigurationElement(key, desc), content(std::move(value))
192   {}
193   TypedConfigurationElement(const char* key, const char* desc, T value, xbt_cfg_cb_t cb)
194       : ConfigurationElement(key, desc, cb), content(std::move(value))
195   {}
196   TypedConfigurationElement(const char* key, const char* desc, T value, std::function<void(T&)> callback)
197       : ConfigurationElement(key, desc), content(std::move(value)), callback(std::move(callback))
198   {}
199   ~TypedConfigurationElement() = default;
200
201   std::string getStringValue() override;
202   const char* getTypeName() override;
203   void setStringValue(const char* value) override;
204
205   void update()
206   {
207     if (old_callback)
208       this->old_callback(getKey().c_str());
209     if (this->callback)
210       this->callback(this->content);
211   }
212
213   T const& getValue() const { return content; }
214
215   void setValue(T value)
216   {
217     this->content = std::move(value);
218     this->update();
219   }
220
221   void setDefaultValue(T value)
222   {
223     if (this->isDefault()) {
224       this->content = std::move(value);
225       this->update();
226     } else {
227       XBT_DEBUG("Do not override configuration variable '%s' with value '%s' because it was already set.",
228                 getKey().c_str(), to_string(value).c_str());
229     }
230   }
231 };
232
233 template<class T>
234 std::string TypedConfigurationElement<T>::getStringValue() // override
235 {
236   return to_string(content);
237 }
238
239 template<class T>
240 void TypedConfigurationElement<T>::setStringValue(const char* value) // override
241 {
242   this->content = ConfigType<T>::parse(value);
243   this->unsetDefault();
244   this->update();
245 }
246
247 template<class T>
248 const char* TypedConfigurationElement<T>::getTypeName() // override
249 {
250   return ConfigType<T>::type_name;
251 }
252
253 } // end of anonymous namespace
254
255 // **** Config ****
256
257 class Config {
258 private:
259   // name -> ConfigElement:
260   std::map<std::string, simgrid::config::ConfigurationElement*> options;
261   // alias -> ConfigElement from options:
262   std::map<std::string, simgrid::config::ConfigurationElement*> aliases;
263   bool warn_for_aliases = true;
264
265 public:
266   Config() = default;
267   ~Config();
268
269   // No copy:
270   Config(Config const&) = delete;
271   Config& operator=(Config const&) = delete;
272
273   ConfigurationElement& operator[](const char* name);
274   template<class T>
275   TypedConfigurationElement<T>& getTyped(const char* name);
276   void alias(const char* realname, const char* aliasname);
277
278   template<class T, class... A>
279   simgrid::config::TypedConfigurationElement<T>*
280     registerOption(const char* name, A&&... a)
281   {
282     xbt_assert(options.find(name) == options.end(), "Refusing to register the config element '%s' twice.", name);
283     TypedConfigurationElement<T>* variable = new TypedConfigurationElement<T>(name, std::forward<A>(a)...);
284     XBT_DEBUG("Register cfg elm %s (%s) of type %s @%p in set %p)", name, variable->getDescription().c_str(),
285               variable->getTypeName(), variable, this);
286     options.insert({name, variable});
287     variable->update();
288     return variable;
289   }
290
291   // Debug:
292   void dump(const char *name, const char *indent);
293   void showAliases();
294   void help();
295
296 protected:
297   ConfigurationElement* getDictElement(const char* name);
298 };
299
300 Config::~Config()
301 {
302   XBT_DEBUG("Frees cfg set %p", this);
303   for (auto const& elm : options)
304     delete elm.second;
305 }
306
307 inline ConfigurationElement* Config::getDictElement(const char* name)
308 {
309   auto opt = options.find(name);
310   if (opt != options.end()) {
311     return opt->second;
312   } else {
313     auto als = aliases.find(name);
314     if (als != aliases.end()) {
315       ConfigurationElement* res = als->second;
316       if (warn_for_aliases)
317         XBT_INFO("Option %s has been renamed to %s. Consider switching.", name, res->getKey().c_str());
318       return res;
319     } else {
320       throw simgrid::config::missing_key_error(std::string("Bad config key: ") + name);
321     }
322   }
323 }
324
325 inline ConfigurationElement& Config::operator[](const char* name)
326 {
327   return *(getDictElement(name));
328 }
329
330 void Config::alias(const char* realname, const char* aliasname)
331 {
332   xbt_assert(aliases.find(aliasname) == aliases.end(), "Alias '%s' already.", aliasname);
333   ConfigurationElement* element = this->getDictElement(realname);
334   xbt_assert(element, "Cannot define an alias to the non-existing option '%s'.", realname);
335   this->aliases.insert({aliasname, element});
336 }
337
338 /** @brief Dump a config set for debuging purpose
339  *
340  * @param name The name to give to this config set
341  * @param indent what to write at the beginning of each line (right number of spaces)
342  */
343 void Config::dump(const char *name, const char *indent)
344 {
345   if (name)
346     printf("%s>> Dumping of the config set '%s':\n", indent, name);
347
348   for (auto const& elm : options)
349     printf("%s  %s: ()%s) %s", indent, elm.first.c_str(), elm.second->getTypeName(),
350            elm.second->getStringValue().c_str());
351
352   if (name)
353     printf("%s<< End of the config set '%s'\n", indent, name);
354   fflush(stdout);
355 }
356
357 /** @brief Displays the declared aliases and their description */
358 void Config::showAliases()
359 {
360   bool old_warn_for_aliases = false;
361   std::swap(warn_for_aliases, old_warn_for_aliases);
362   for (auto const& elm : aliases)
363     printf("   %s: %s\n", elm.first.c_str(), (*this)[elm.first.c_str()].getDescription().c_str());
364   std::swap(warn_for_aliases, old_warn_for_aliases);
365 }
366
367 /** @brief Displays the declared options and their description */
368 void Config::help()
369 {
370   for (auto const& elm : options) {
371     simgrid::config::ConfigurationElement* variable = this->options.at(elm.first);
372     printf("   %s: %s\n", elm.first.c_str(), variable->getDescription().c_str());
373     printf("       Type: %s; ", variable->getTypeName());
374     printf("Current value: %s\n", variable->getStringValue().c_str());
375   }
376 }
377
378 // ***** getConfig *****
379
380 template <class T> XBT_PUBLIC T const& getConfig(const char* name)
381 {
382   return (*simgrid_config)[name].getValue<T>();
383 }
384
385 template XBT_PUBLIC int const& getConfig<int>(const char* name);
386 template XBT_PUBLIC double const& getConfig<double>(const char* name);
387 template XBT_PUBLIC bool const& getConfig<bool>(const char* name);
388 template XBT_PUBLIC std::string const& getConfig<std::string>(const char* name);
389
390 // ***** alias *****
391
392 void alias(const char* realname, const char* aliasname)
393 {
394   simgrid_config->alias(realname, aliasname);
395 }
396
397 // ***** declareFlag *****
398
399 template <class T>
400 XBT_PUBLIC void declareFlag(const char* name, const char* description, T value, std::function<void(const T&)> callback)
401 {
402   if (simgrid_config == nullptr) {
403     simgrid_config = xbt_cfg_new();
404     atexit(sg_config_finalize);
405   }
406   simgrid_config->registerOption<T>(
407     name, description, std::move(value), std::move(callback));
408 }
409
410 template XBT_PUBLIC void declareFlag(const char* name, const char* description, int value,
411                                      std::function<void(int const&)> callback);
412 template XBT_PUBLIC void declareFlag(const char* name, const char* description, double value,
413                                      std::function<void(double const&)> callback);
414 template XBT_PUBLIC void declareFlag(const char* name, const char* description, bool value,
415                                      std::function<void(bool const&)> callback);
416 template XBT_PUBLIC void declareFlag(const char* name, const char* description, std::string value,
417                                      std::function<void(std::string const&)> callback);
418 }
419 }
420
421 // ***** C bindings *****
422
423 xbt_cfg_t xbt_cfg_new()        { return new simgrid::config::Config(); }
424 void xbt_cfg_free(xbt_cfg_t * cfg) { delete *cfg; }
425
426 void xbt_cfg_dump(const char *name, const char *indent, xbt_cfg_t cfg)
427 {
428   cfg->dump(name, indent);
429 }
430
431 /*----[ Registering stuff ]-----------------------------------------------*/
432
433 void xbt_cfg_register_double(const char *name, double default_value,
434   xbt_cfg_cb_t cb_set, const char *desc)
435 {
436   if (simgrid_config == nullptr)
437     simgrid_config = xbt_cfg_new();
438   simgrid_config->registerOption<double>(name, desc, default_value, cb_set);
439 }
440
441 void xbt_cfg_register_int(const char *name, int default_value,xbt_cfg_cb_t cb_set, const char *desc)
442 {
443   if (simgrid_config == nullptr) {
444     simgrid_config = xbt_cfg_new();
445     atexit(&sg_config_finalize);
446   }
447   simgrid_config->registerOption<int>(name, desc, default_value, cb_set);
448 }
449
450 void xbt_cfg_register_string(const char *name, const char *default_value, xbt_cfg_cb_t cb_set, const char *desc)
451 {
452   if (simgrid_config == nullptr) {
453     simgrid_config = xbt_cfg_new();
454     atexit(sg_config_finalize);
455   }
456   simgrid_config->registerOption<std::string>(name, desc, default_value ? default_value : "", cb_set);
457 }
458
459 void xbt_cfg_register_boolean(const char *name, const char*default_value,xbt_cfg_cb_t cb_set, const char *desc)
460 {
461   if (simgrid_config == nullptr) {
462     simgrid_config = xbt_cfg_new();
463     atexit(sg_config_finalize);
464   }
465   simgrid_config->registerOption<bool>(name, desc, simgrid::config::parseBool(default_value), cb_set);
466 }
467
468 void xbt_cfg_register_alias(const char *realname, const char *aliasname)
469 {
470   if (simgrid_config == nullptr) {
471     simgrid_config = xbt_cfg_new();
472     atexit(sg_config_finalize);
473   }
474   simgrid_config->alias(realname, aliasname);
475 }
476
477 void xbt_cfg_aliases() { simgrid_config->showAliases(); }
478 void xbt_cfg_help()    { simgrid_config->help(); }
479
480 /*----[ Setting ]---------------------------------------------------------*/
481
482 /** @brief Add values parsed from a string into a config set
483  *
484  * @param options a string containing the content to add to the config set. This is a '\\t',' ' or '\\n' or ','
485  * separated list of variables. Each individual variable is like "[name]:[value]" where [name] is the name of an
486  * already registered variable, and [value] conforms to the data type under which this variable was registered.
487  *
488  * @todo This is a crude manual parser, it should be a proper lexer.
489  */
490 void xbt_cfg_set_parse(const char *options)
491 {
492   if (not options || not strlen(options)) { /* nothing to do */
493     return;
494   }
495
496   XBT_DEBUG("List to parse and set:'%s'", options);
497   std::string optionlist(options);
498   while (not optionlist.empty()) {
499     XBT_DEBUG("Still to parse and set: '%s'", optionlist.c_str());
500
501     // skip separators
502     size_t pos = optionlist.find_first_not_of(" \t\n,");
503     optionlist.erase(0, pos);
504     // find option
505     pos              = optionlist.find_first_of(" \t\n,");
506     std::string name = optionlist.substr(0, pos);
507     optionlist.erase(0, pos);
508     XBT_DEBUG("parse now:'%s'; parse later:'%s'", name.c_str(), optionlist.c_str());
509
510     if (name.empty())
511       continue;
512
513     pos = name.find(':');
514     xbt_assert(pos != std::string::npos, "Option '%s' badly formatted. Should be of the form 'name:value'",
515                name.c_str());
516
517     std::string val = name.substr(pos + 1);
518     name.erase(pos);
519
520     const std::string path("path");
521     if (name.compare(0, path.length(), path) != 0)
522       XBT_INFO("Configuration change: Set '%s' to '%s'", name.c_str(), val.c_str());
523
524     try {
525       (*simgrid_config)[name.c_str()].setStringValue(val.c_str());
526     }
527     catch (simgrid::config::missing_key_error& e) {
528       goto on_missing_key;
529     }
530     catch (...) {
531       goto on_exception;
532     }
533   }
534   return;
535
536   /* Do not THROWF from a C++ exception catching context, or some cleanups will be missing */
537 on_missing_key:
538   THROWF(not_found_error, 0, "Could not set variables %s", options);
539 on_exception:
540   THROWF(unknown_error, 0, "Could not set variables %s", options);
541 }
542
543 // Horrible mess to translate C++ exceptions to C exceptions:
544 // Exit from the catch block (and do the correct exception cleaning) before attempting to THROWF.
545 #define TRANSLATE_EXCEPTIONS(...) \
546   catch(simgrid::config::missing_key_error& e) { THROWF(not_found_error, 0, __VA_ARGS__); abort(); } \
547   catch(...) { THROWF(not_found_error, 0, __VA_ARGS__); abort(); }
548
549 /** @brief Set the value of a variable, using the string representation of that value
550  *
551  * @param key name of the variable to modify
552  * @param value string representation of the value to set
553  */
554
555 void xbt_cfg_set_as_string(const char *key, const char *value)
556 {
557   try {
558     (*simgrid_config)[key].setStringValue(value);
559     return;
560   }
561   TRANSLATE_EXCEPTIONS("Could not set variable %s as string %s", key, value);
562 }
563
564 /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet
565  *
566  * This is useful to change the default value of a variable while allowing
567  * users to override it with command line arguments
568  */
569 void xbt_cfg_setdefault_int(const char *key, int value)
570 {
571   try {
572     (*simgrid_config)[key].setDefaultValue<int>(value);
573     return;
574   }
575   TRANSLATE_EXCEPTIONS("Could not set variable %s to default integer %i", key, value);
576 }
577
578 /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet
579  *
580  * This is useful to change the default value of a variable while allowing
581  * users to override it with command line arguments
582  */
583 void xbt_cfg_setdefault_double(const char *key, double value)
584 {
585   try {
586     (*simgrid_config)[key].setDefaultValue<double>(value);
587     return;
588   }
589   TRANSLATE_EXCEPTIONS("Could not set variable %s to default double %f", key, value);
590 }
591
592 /** @brief Set a string value to \a name within \a cfg if it wasn't changed yet
593  *
594  * This is useful to change the default value of a variable while allowing
595  * users to override it with command line arguments
596  */
597 void xbt_cfg_setdefault_string(const char *key, const char *value)
598 {
599   try {
600     (*simgrid_config)[key].setDefaultValue<std::string>(value ? value : "");
601     return;
602   }
603   TRANSLATE_EXCEPTIONS("Could not set variable %s to default string %s", key, value);
604 }
605
606 /** @brief Set an boolean value to \a name within \a cfg if it wasn't changed yet
607  *
608  * This is useful to change the default value of a variable while allowing
609  * users to override it with command line arguments
610  */
611 void xbt_cfg_setdefault_boolean(const char *key, const char *value)
612 {
613   try {
614     (*simgrid_config)[key].setDefaultValue<bool>(simgrid::config::parseBool(value));
615     return;
616   }
617   TRANSLATE_EXCEPTIONS("Could not set variable %s to default boolean %s", key, value);
618 }
619
620 /** @brief Set an integer value to \a name within \a cfg
621  *
622  * @param key the name of the variable
623  * @param value the value of the variable
624  */
625 void xbt_cfg_set_int(const char *key, int value)
626 {
627   try {
628     (*simgrid_config)[key].setValue<int>(value);
629     return;
630   }
631   TRANSLATE_EXCEPTIONS("Could not set variable %s to integer %i", key, value);
632 }
633
634 /** @brief Set or add a double value to \a name within \a cfg
635  *
636  * @param key the name of the variable
637  * @param value the double to set
638  */
639 void xbt_cfg_set_double(const char *key, double value)
640 {
641   try {
642     (*simgrid_config)[key].setValue<double>(value);
643     return;
644   }
645   TRANSLATE_EXCEPTIONS("Could not set variable %s to double %f", key, value);
646 }
647
648 /** @brief Set or add a string value to \a name within \a cfg
649  *
650  * @param key the name of the variable
651  * @param value the value to be added
652  *
653  */
654 void xbt_cfg_set_string(const char* key, const char* value)
655 {
656   try {
657     (*simgrid_config)[key].setValue<std::string>(value);
658     return;
659   }
660   TRANSLATE_EXCEPTIONS("Could not set variable %s to string %s", key, value);
661 }
662
663 /** @brief Set or add a boolean value to \a name within \a cfg
664  *
665  * @param key the name of the variable
666  * @param value the value of the variable
667  */
668 void xbt_cfg_set_boolean(const char *key, const char *value)
669 {
670   try {
671     (*simgrid_config)[key].setValue<bool>(simgrid::config::parseBool(value));
672     return;
673   }
674   TRANSLATE_EXCEPTIONS("Could not set variable %s to boolean %s", key, value);
675 }
676
677
678 /* Say if the value is the default value */
679 int xbt_cfg_is_default_value(const char *key)
680 {
681   try {
682     return (*simgrid_config)[key].isDefault() ? 1 : 0;
683   }
684   TRANSLATE_EXCEPTIONS("Could not get variable %s", key);
685 }
686
687 /*----[ Getting ]---------------------------------------------------------*/
688 /** @brief Retrieve an integer value of a variable (get a warning if not uniq)
689  *
690  * @param key the name of the variable
691  *
692  * Returns the first value from the config set under the given name.
693  */
694 int xbt_cfg_get_int(const char *key)
695 {
696   try {
697     return (*simgrid_config)[key].getValue<int>();
698   }
699   TRANSLATE_EXCEPTIONS("Could not get variable %s", key);
700 }
701
702 /** @brief Retrieve a double value of a variable (get a warning if not uniq)
703  *
704  * @param key the name of the variable
705  *
706  * Returns the first value from the config set under the given name.
707  */
708 double xbt_cfg_get_double(const char *key)
709 {
710   try {
711     return (*simgrid_config)[key].getValue<double>();
712   }
713   TRANSLATE_EXCEPTIONS("Could not get variable %s", key);
714 }
715
716 /** @brief Retrieve a string value of a variable (get a warning if not uniq)
717  *
718  * @param key the name of the variable
719  *
720  * Returns the first value from the config set under the given name.
721  * If there is more than one value, it will issue a warning.
722  * Returns nullptr if there is no value.
723  *
724  * \warning the returned value is the actual content of the config set
725  */
726 std::string xbt_cfg_get_string(const char* key)
727 {
728   try {
729     return (*simgrid_config)[key].getValue<std::string>();
730   }
731   TRANSLATE_EXCEPTIONS("Could not get variable %s", key);
732 }
733
734 /** @brief Retrieve a boolean value of a variable (get a warning if not uniq)
735  *
736  * @param key the name of the variable
737  *
738  * Returns the first value from the config set under the given name.
739  * If there is more than one value, it will issue a warning.
740  */
741 int xbt_cfg_get_boolean(const char *key)
742 {
743   try {
744     return (*simgrid_config)[key].getValue<bool>() ? 1 : 0;
745   }
746   TRANSLATE_EXCEPTIONS("Could not get variable %s", key);
747 }
748
749 #ifdef SIMGRID_TEST
750
751 #include <string>
752
753 #include "xbt.h"
754 #include "xbt/ex.h"
755 #include <xbt/ex.hpp>
756
757 #include <xbt/config.hpp>
758
759 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_cfg);
760
761 XBT_TEST_SUITE("config", "Configuration support");
762
763 XBT_PUBLIC_DATA(xbt_cfg_t) simgrid_config;
764
765 static void make_set()
766 {
767   simgrid_config = nullptr;
768   xbt_log_threshold_set(&_XBT_LOGV(xbt_cfg), xbt_log_priority_critical);
769   xbt_cfg_register_int("speed", 0, nullptr, "");
770   xbt_cfg_register_string("peername", "", nullptr, "");
771   xbt_cfg_register_string("user", "", nullptr, "");
772 }                               /* end_of_make_set */
773
774 XBT_TEST_UNIT("memuse", test_config_memuse, "Alloc and free a config set")
775 {
776   auto temp = simgrid_config;
777   make_set();
778   xbt_test_add("Alloc and free a config set");
779   xbt_cfg_set_parse("peername:veloce user:bidule");
780   xbt_cfg_free(&simgrid_config);
781   simgrid_config = temp;
782 }
783
784 XBT_TEST_UNIT("use", test_config_use, "Data retrieving tests")
785 {
786   auto temp = simgrid_config;
787   make_set();
788   xbt_test_add("Get a single value");
789   {
790     /* get_single_value */
791     xbt_cfg_set_parse("peername:toto:42 speed:42");
792     int ival = xbt_cfg_get_int("speed");
793     if (ival != 42)
794       xbt_test_fail("Speed value = %d, I expected 42", ival);
795   }
796
797   xbt_test_add("Access to a non-existant entry");
798   {
799     try {
800       xbt_cfg_set_parse("color:blue");
801     } catch(xbt_ex& e) {
802       if (e.category != not_found_error)
803         xbt_test_exception(e);
804     }
805   }
806   xbt_cfg_free(&simgrid_config);
807   simgrid_config = temp;
808 }
809
810 XBT_TEST_UNIT("c++flags", test_config_cxx_flags, "C++ flags")
811 {
812   auto temp = simgrid_config;
813   make_set();
814   xbt_test_add("C++ declaration of flags");
815
816   simgrid::config::Flag<int> int_flag("int", "", 0);
817   simgrid::config::Flag<std::string> string_flag("string", "", "foo");
818   simgrid::config::Flag<double> double_flag("double", "", 0.32);
819   simgrid::config::Flag<bool> bool_flag1("bool1", "", false);
820   simgrid::config::Flag<bool> bool_flag2("bool2", "", true);
821
822   xbt_test_add("Parse values");
823   xbt_cfg_set_parse("int:42 string:bar double:8.0 bool1:true bool2:false");
824   xbt_test_assert(int_flag == 42, "Check int flag");
825   xbt_test_assert(string_flag == "bar", "Check string flag");
826   xbt_test_assert(double_flag == 8.0, "Check double flag");
827   xbt_test_assert(bool_flag1, "Check bool1 flag");
828   xbt_test_assert(not bool_flag2, "Check bool2 flag");
829
830   xbt_cfg_free(&simgrid_config);
831   simgrid_config = temp;
832 }
833
834 #endif                          /* SIMGRID_TEST */