X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/36b1fa831a191c389b1c907bfa35655b4283f06d..8e8adb4298d76faafc4947256f0719c8aedc8508:/include/xbt/config.hpp diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index f773739c86..701b5b39ca 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -25,15 +25,6 @@ namespace simgrid { namespace config { -class XBT_PUBLIC missing_key_error : public std::runtime_error { -public: - explicit missing_key_error(const std::string& what) - : std::runtime_error(what) {} - explicit missing_key_error(const char* what) - : std::runtime_error(what) {} - ~missing_key_error() override; -}; - template inline std::string to_string(T&& value) { @@ -127,33 +118,24 @@ void bindFlag(T& value, std::initializer_list names, const char* de * */ // F is a checker, F : T& -> () -template -typename std::enable_if()(std::declval()) ) ->::value, void>::type -bindFlag(T& value, std::initializer_list names, 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) { - bindFlag(value, *names.begin(), description); - alias(names); + 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, const char* description, - F callback) +template +typename std::enable_if()(std::declval()))>::value, void>::type +bindFlag(T& value, std::initializer_list names, const char* description, F callback) { - declareFlag(name, description, value, - std::function([&value,callback](const T& val) { - callback(val); - value = std::move(val); - } - )); + bindFlag(value, *names.begin(), description, std::move(callback)); + alias(names); } + 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) @@ -196,13 +178,11 @@ 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 @@ -229,6 +209,12 @@ public: simgrid::config::bindFlag(value_, name, desc); } + /** Constructor taking an array of aliases as name */ + Flag(std::initializer_list names, const char* desc, T value) : value_(value) + { + simgrid::config::bindFlag(value_, names, 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. */