X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ec1ff601331bbc2a69a3d7501f468e2238be2a5e..ae87d9697ce445eaa3221750fc5e18553f879498:/src/xbt/config.cpp diff --git a/src/xbt/config.cpp b/src/xbt/config.cpp index f915d8461b..5903d949d1 100644 --- a/src/xbt/config.cpp +++ b/src/xbt/config.cpp @@ -1,5 +1,7 @@ -/* Copyright (c) 2004-2014,2016. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2014,2016. 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. */ #include @@ -31,6 +33,8 @@ XBT_EXPORT_NO_IMPORT(xbt_cfg_t) simgrid_config = NULL; namespace simgrid { namespace config { +missing_key_error::~missing_key_error() noexcept {} + class Config; namespace { @@ -50,7 +54,7 @@ static bool parseBool(const char* value) for (const char* false_value : false_values) if (std::strcmp(false_value, value) == 0) return false; - throw std::domain_error("not a boolean"); + throw std::range_error("not a boolean"); } static double parseDouble(const char* value) @@ -339,7 +343,7 @@ ConfigurationElement& Config::operator[](const char* name) { xbt_dictelm_t elm = getDictElement(name); if (elm == nullptr) - throw std::invalid_argument(std::string("Bad config key, ") + name); + throw simgrid::config::missing_key_error(std::string("Bad config key, ") + name); return *(ConfigurationElement*)elm->content; } @@ -430,6 +434,13 @@ template XBT_PUBLIC(double const&) getConfig(const char* name); template XBT_PUBLIC(bool const&) getConfig(const char* name); template XBT_PUBLIC(std::string const&) getConfig(const char* name); +// ***** alias ***** + +void alias(const char* realname, const char* aliasname) +{ + simgrid_config->alias(realname, aliasname); +} + // ***** declareFlag ***** template @@ -451,7 +462,6 @@ template XBT_PUBLIC(void) declareFlag(const char* name, template XBT_PUBLIC(void) declareFlag(const char* name, const char* description, std::string value, std::function callback); - } } @@ -570,14 +580,36 @@ void xbt_cfg_set_parse(const char *options) try { (*simgrid_config)[name].setStringValue(val); } + catch (simgrid::config::missing_key_error& e) { + goto on_missing_key; + } catch (...) { - THROWF(not_found_error, 0, "Could not set the value %s for %s", val, name); + goto on_exception; } } free(optionlist_cpy); + return; + +on_missing_key: + free(optionlist_cpy); + THROWF(not_found_error, 0, "Could not set variables %s", options); + return; +on_exception: + free(optionlist_cpy); + THROWF(unknown_error, 0, "Could not set variables %s", options); + return; } +// Horrible mess to translate C++ exceptions to C exceptions: +// Exit from the catch blog (and do the correct exceptio cleaning) +// before attempting to THROWF. +#define TRANSLATE_EXCEPTIONS(...) \ + catch(simgrid::config::missing_key_error& e) { goto on_exception; } \ + catch(...) { goto on_missing_key; } \ + on_missing_key: THROWF(not_found_error, 0, __VA_ARGS__); \ + on_exception: THROWF(not_found_error, 0, __VA_ARGS__); + /** @brief Set the value of a variable, using the string representation of that value * * @param key name of the variable to modify @@ -588,10 +620,9 @@ void xbt_cfg_set_as_string(const char *key, const char *value) { try { (*simgrid_config)[key].setStringValue(value); + return; } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); - } + TRANSLATE_EXCEPTIONS("Could not set variable %s as string %s", key, value); } /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet @@ -599,14 +630,14 @@ void xbt_cfg_set_as_string(const char *key, const char *value) * This is useful to change the default value of a variable while allowing * users to override it with command line arguments */ -void xbt_cfg_setdefault_int(const char *name, int val) +void xbt_cfg_setdefault_int(const char *key, int value) { try { - (*simgrid_config)[name].setDefaultValue(val); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setDefaultValue(value); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to default integer %i", + key, value); } /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet @@ -614,14 +645,14 @@ void xbt_cfg_setdefault_int(const char *name, int val) * This is useful to change the default value of a variable while allowing * users to override it with command line arguments */ -void xbt_cfg_setdefault_double(const char *name, double val) +void xbt_cfg_setdefault_double(const char *key, double value) { try { - (*simgrid_config)[name].setDefaultValue(val); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setDefaultValue(value); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to default double %f", + key, value); } /** @brief Set a string value to \a name within \a cfg if it wasn't changed yet @@ -629,14 +660,14 @@ void xbt_cfg_setdefault_double(const char *name, double val) * This is useful to change the default value of a variable while allowing * users to override it with command line arguments */ -void xbt_cfg_setdefault_string(const char *name, const char *val) +void xbt_cfg_setdefault_string(const char *key, const char *value) { try { - (*simgrid_config)[name].setDefaultValue(val ? val : ""); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setDefaultValue(value ? value : ""); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to default string %s", + key, value); } /** @brief Set an boolean value to \a name within \a cfg if it wasn't changed yet @@ -644,128 +675,119 @@ void xbt_cfg_setdefault_string(const char *name, const char *val) * This is useful to change the default value of a variable while allowing * users to override it with command line arguments */ -void xbt_cfg_setdefault_boolean(const char *name, const char *val) +void xbt_cfg_setdefault_boolean(const char *key, const char *value) { try { - (*simgrid_config)[name].setDefaultValue(simgrid::config::parseBool(val)); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setDefaultValue(simgrid::config::parseBool(value)); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to default boolean %s", + key, value); } /** @brief Set an integer value to \a name within \a cfg * - * @param name the name of the variable - * @param val the value of the variable + * @param key the name of the variable + * @param value the value of the variable */ -void xbt_cfg_set_int(const char *name, int val) +void xbt_cfg_set_int(const char *key, int value) { try { - (*simgrid_config)[name].setValue(val); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setValue(value); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to integer %i", + key, value); } /** @brief Set or add a double value to \a name within \a cfg * - * @param name the name of the variable - * @param val the double to set + * @param key the name of the variable + * @param value the double to set */ -void xbt_cfg_set_double(const char *name, double val) +void xbt_cfg_set_double(const char *key, double value) { try { - (*simgrid_config)[name].setValue(val); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setValue(value); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to double %f", + key, value); } /** @brief Set or add a string value to \a name within \a cfg * - * @param cfg the config set - * @param name the name of the variable - * @param val the value to be added + * @param key the name of the variable + * @param value the value to be added * */ -void xbt_cfg_set_string(const char *name, const char *val) +void xbt_cfg_set_string(const char *key, const char *value) { try { - (*simgrid_config)[name].setValue(val ? val : ""); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setValue(value ? value : ""); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to string %s", + key, value); } /** @brief Set or add a boolean value to \a name within \a cfg * - * @param name the name of the variable - * @param val the value of the variable + * @param key the name of the variable + * @param value the value of the variable */ -void xbt_cfg_set_boolean(const char *name, const char *val) +void xbt_cfg_set_boolean(const char *key, const char *value) { try { - (*simgrid_config)[name].setValue(simgrid::config::parseBool(val)); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + (*simgrid_config)[key].setValue(simgrid::config::parseBool(value)); + return; } + TRANSLATE_EXCEPTIONS("Could not set variable %s to boolean %s", + key, value); } /* Say if the value is the default value */ -int xbt_cfg_is_default_value(const char *name) +int xbt_cfg_is_default_value(const char *key) { try { - return (*simgrid_config)[name].isDefault() ? 1 : 0; - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + return (*simgrid_config)[key].isDefault() ? 1 : 0; } + TRANSLATE_EXCEPTIONS("Could not get variable %s", key); } /*----[ Getting ]---------------------------------------------------------*/ /** @brief Retrieve an integer value of a variable (get a warning if not uniq) * - * @param name the name of the variable + * @param key the name of the variable * * Returns the first value from the config set under the given name. */ -int xbt_cfg_get_int(const char *name) +int xbt_cfg_get_int(const char *key) { try { - return (*simgrid_config)[name].getValue(); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + return (*simgrid_config)[key].getValue(); } + TRANSLATE_EXCEPTIONS("Could not get variable %s", key); } /** @brief Retrieve a double value of a variable (get a warning if not uniq) * - * @param cfg the config set - * @param name the name of the variable + * @param key the name of the variable * * Returns the first value from the config set under the given name. */ -double xbt_cfg_get_double(const char *name) +double xbt_cfg_get_double(const char *key) { try { - return (*simgrid_config)[name].getValue(); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + return (*simgrid_config)[key].getValue(); } + TRANSLATE_EXCEPTIONS("Could not get variable %s", key); } /** @brief Retrieve a string value of a variable (get a warning if not uniq) * - * @param cfg the config set - * @param name the name of the variable + * @param key the name of the variable * * Returns the first value from the config set under the given name. * If there is more than one value, it will issue a warning. @@ -773,32 +795,27 @@ double xbt_cfg_get_double(const char *name) * * \warning the returned value is the actual content of the config set */ -char *xbt_cfg_get_string(const char *name) +char *xbt_cfg_get_string(const char *key) { try { - return (char*) (*simgrid_config)[name].getValue().c_str(); - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + return (char*) (*simgrid_config)[key].getValue().c_str(); } + TRANSLATE_EXCEPTIONS("Could not get variable %s", key); } /** @brief Retrieve a boolean value of a variable (get a warning if not uniq) * - * @param cfg the config set - * @param name the name of the variable + * @param key the name of the variable * * Returns the first value from the config set under the given name. * If there is more than one value, it will issue a warning. */ -int xbt_cfg_get_boolean(const char *name) +int xbt_cfg_get_boolean(const char *key) { try { - return (*simgrid_config)[name].getValue() ? 1 : 0; - } - catch (std::exception const& e) { - THROWF(unknown_error, 0, "%s", e.what()); + return (*simgrid_config)[key].getValue() ? 1 : 0; } + TRANSLATE_EXCEPTIONS("Could not get variable %s", key); } #ifdef SIMGRID_TEST