X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88fad0aaff9eb463f048bfdfe4ad6218aba44ddb..5ce1cdec3a6f447bb36c3080e7ab38a5be033351:/include/xbt/config.hpp diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index 1ce01c3b2b..1f46590a3f 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -12,6 +12,7 @@ #include #include +#include #include #include #include @@ -19,6 +20,7 @@ #include #include +#include namespace simgrid { namespace config { @@ -152,12 +154,37 @@ bindFlag(T& value, const char* name, const char* description, } )); } - +template +typename std::enable_if()(std::declval()))>::value, void>::type +bindFlag(T& value, const char* name, const char* description, std::map valid_values, F callback) +{ + declareFlag(name, description, value, + std::function([&value, name, valid_values, callback](const T& val) { + callback(val); + bool found = false; + for (auto kv : valid_values) { + if (kv.first == val) + found = true; + } + if (not found || std::string(val) == "help") { + std::string mesg; + if (std::string(val) == "help") + mesg = std::string("\nPossible values for option ") + name + ":\n"; + else + mesg = std::string("\nInvalid value '") + val + "' for option " + name + ". Possible values:\n"; + for (auto kv : valid_values) + mesg += " - '" + std::string(kv.first) + "': " + kv.second + + (kv.first == value ? " <=== DEFAULT" : "") + "\n"; + xbt_die("%s", mesg.c_str()); + } + value = std::move(val); + })); +} /** Bind a variable to configuration flag * *

  *  static int x;
- *  simgrid::config::bindFlag(a, "x", [](int x) { return return x > 0; });
+ *  simgrid::config::bindFlag(a, "x", [](int x) { return x > 0; });
  *  
*/ // F is a predicate, F : T const& -> bool @@ -169,20 +196,18 @@ typename std::enable_if([&value, callback](const T& val) { - if (not callback(val)) - throw std::range_error("invalid value"); - value = std::move(val); - }) - ); + declareFlag(name, description, value, std::function([&value, callback](const T& val) { + if (not callback(val)) + throw std::range_error("invalid value."); + value = std::move(val); + })); } /** A variable bound to a CLI option * *

  *  static simgrid::config::flag answer("answer", "Expected answer", 42);
- *  static simgrid::config::flag name("name", "Ford Prefect", "John Doe");
+ *  static simgrid::config::flag name("name", "Ford Perfect", "John Doe");
  *  static simgrid::config::flag gamma("gamma", "Gamma factor", 1.987);
  *  
*/ @@ -202,12 +227,24 @@ public: simgrid::config::bindFlag(value_, name, desc); } + /* A constructor accepting a callback that will be passed the parameter. + * It can either return a boolean (informing whether the parameter is valid), or returning void. + */ template Flag(const char* name, const char* desc, T value, F callback) : value_(value) { simgrid::config::bindFlag(value_, name, desc, std::move(callback)); } + /* A constructor accepting a map of valid values -> their description, + * and producing an informative error message when an invalid value is passed, or when help is passed as a value. + */ + template + Flag(const char* name, const char* desc, T value, std::map valid_values, F callback) : value_(value) + { + simgrid::config::bindFlag(value_, name, desc, std::move(valid_values), std::move(callback)); + } + // No copy: Flag(Flag const&) = delete; Flag& operator=(Flag const&) = delete;