X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f9541e9299d8464d8a4d13ada458a7883a36a9d5..374ad05d1c53e13938d24ab3c6af22d36db9c074:/include/xbt/config.hpp diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index 0866cf44e3..5c2f0988e3 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -1,15 +1,18 @@ -/* Copyright (c) 2016. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2016-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#ifndef _XBT_CONFIG_HPP_ -#define _XBT_CONFIG_HPP_ +#ifndef XBT_CONFIG_HPP +#define XBT_CONFIG_HPP + +#include #include #include +#include +#include #include #include #include @@ -17,6 +20,7 @@ #include #include +#include namespace simgrid { namespace config { @@ -41,13 +45,12 @@ inline std::string to_string(std::string&& value) // Get config -template -XBT_PUBLIC(T const&) getConfig(const char* name); +template XBT_PUBLIC T const& getConfig(const char* name); -extern template XBT_PUBLIC(int const&) getConfig(const char* name); -extern template XBT_PUBLIC(double const&) getConfig(const char* name); -extern template XBT_PUBLIC(bool const&) getConfig(const char* name); -extern template XBT_PUBLIC(std::string const&) getConfig(const char* name); +extern template XBT_PUBLIC int const& getConfig(const char* name); +extern template XBT_PUBLIC double const& getConfig(const char* name); +extern template XBT_PUBLIC bool const& getConfig(const char* name); +extern template XBT_PUBLIC std::string const& getConfig(const char* name); // Register: @@ -58,18 +61,22 @@ extern template XBT_PUBLIC(std::string const&) getConfig(const char * @param value Initial/default value * @param callback called with the option value */ -template -XBT_PUBLIC(void) declareFlag(const char* name, const char* description, - T value, std::function callback = std::function()); - -extern template XBT_PUBLIC(void) declareFlag(const char* name, - const char* description, int value, std::function callback); -extern template XBT_PUBLIC(void) declareFlag(const char* name, - const char* description, double value, std::function callback); -extern template XBT_PUBLIC(void) declareFlag(const char* name, - const char* description, bool value, std::function callback); -extern template XBT_PUBLIC(void) declareFlag(const char* name, - const char* description, std::string value, std::function callback); +template +XBT_PUBLIC void declareFlag(const char* name, const char* description, T value, + std::function callback = std::function()); + +extern template XBT_PUBLIC void declareFlag(const char* name, const char* description, int value, + std::function callback); +extern template XBT_PUBLIC void declareFlag(const char* name, const char* description, double value, + std::function callback); +extern template XBT_PUBLIC void declareFlag(const char* name, const char* description, bool value, + std::function callback); +extern template XBT_PUBLIC void declareFlag(const char* name, const char* description, std::string value, + std::function callback); + +// ***** alias ***** + +XBT_PUBLIC void alias(const char* realname, std::initializer_list aliases); /** Bind a variable to configuration flag * @@ -80,35 +87,16 @@ extern template XBT_PUBLIC(void) declareFlag(const char* name, template void bindFlag(T& value, const char* name, const char* description) { - using namespace std; declareFlag(name, description, value, [&value](T const& val) { value = val; }); } -/** Bind a variable to configuration flag - * - *

- *  static int x;
- *  simgrid::config::bindFlag(a, "x", [](const char* value) {
- *    return simgrid::config::parse(value);
- *  }
- *  
- */ -// F is a parser, F : const char* -> T -template -typename std::enable_if()(std::declval()) - ) >::type ->::value, void>::type -bindFlag(T& value, const char* name, const char* description, - F callback) +template +void bindFlag(T& value, const char* name, std::initializer_list aliases, const char* description) { - declareFlag(name, description, value, [&value,callback](const char* val) { - value = callback(val); - }); + bindFlag(value, name, description); + alias(name, std::move(aliases)); } /** Bind a variable to configuration flag @@ -119,29 +107,59 @@ bindFlag(T& value, const char* name, const char* description, * if (x < x_min || x => x_max) * throw std::range_error("must be in [x_min, x_max)") * }); - * + * */ // F is a checker, F : T& -> () -template -typename std::enable_if()(std::declval()) ) ->::value, void>::type -bindFlag(T& value, const char* name, const char* description, - F callback) +template +typename std::enable_if()(std::declval()))>::value, void>::type +bindFlag(T& value, const char* name, const char* description, F callback) { - declareFlag(name, description, value, [&value,callback](const T& val) { - callback(val); - value = std::move(val); - }); + declareFlag(name, description, value, std::function([&value, callback](const T& val) { + callback(val); + value = std::move(val); + })); } +template +typename std::enable_if()(std::declval()))>::value, void>::type +bindFlag(T& value, const char* name, std::initializer_list aliases, const char* description, F callback) +{ + bindFlag(value, name, description, std::move(callback)); + alias(name, std::move(aliases)); +} + +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 template @@ -152,18 +170,18 @@ typename std::enable_if([&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);
  *  
*/ @@ -183,12 +201,37 @@ public: simgrid::config::bindFlag(value_, name, desc); } + /** Constructor taking also an array of aliases for name */ + Flag(const char* name, std::initializer_list aliases, const char* desc, T value) : value_(value) + { + simgrid::config::bindFlag(value_, name, std::move(aliases), 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)); } + template + Flag(const char* name, std::initializer_list aliases, const char* desc, T value, F callback) + : value_(value) + { + simgrid::config::bindFlag(value_, name, std::move(aliases), 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; @@ -202,17 +245,26 @@ public: operator T const&() const{ return value_; } // Basic interop with T: - Flag& operator=(T const& that) { value_ = that; return *this; } - Flag& operator=(T && that) { value_ = that; return *this; } - bool operator==(T const& that) const { return value_ == that; } - bool operator!=(T const& that) const { return value_ != that; } - bool operator<(T const& that) const { return value_ < that; } - bool operator>(T const& that) const { return value_ > that; } - bool operator<=(T const& that) const { return value_ <= that; } - bool operator>=(T const& that) const { return value_ >= that; } + template + Flag& operator=(U const& that) { value_ = that; return *this; } + template + Flag& operator=(U && that) { value_ = that; return *this; } + template + bool operator==(U const& that) const { return value_ == that; } + template + bool operator!=(U const& that) const { return value_ != that; } + template + bool operator<(U const& that) const { return value_ < that; } + template + bool operator>(U const& that) const { return value_ > that; } + template + bool operator<=(U const& that) const { return value_ <= that; } + template + bool operator>=(U const& that) const { return value_ >= that; } }; } } +XBT_PUBLIC std::string xbt_cfg_get_string(const char* name); #endif