From 87c4d939f7cb04f488e98a943f4afa91006bc920 Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Wed, 1 Mar 2017 14:49:24 +0100 Subject: [PATCH] kill two dynars --- src/xbt/config.cpp | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/src/xbt/config.cpp b/src/xbt/config.cpp index 5dd6ca28f5..476ceff697 100644 --- a/src/xbt/config.cpp +++ b/src/xbt/config.cpp @@ -5,6 +5,7 @@ #include +#include #include #include #include @@ -14,6 +15,7 @@ #include #include #include +#include #include #include @@ -151,7 +153,7 @@ public: ConfigurationElement(const char* key, const char* desc, xbt_cfg_cb_t cb) : key(key ? key : ""), desc(desc ? desc : ""), old_callback(cb) {} - virtual ~ConfigurationElement(); + virtual ~ConfigurationElement()=default; virtual std::string getStringValue() = 0; virtual void setStringValue(const char* value) = 0; @@ -177,8 +179,6 @@ public: std::string const& getDescription() const { return desc; } }; -ConfigurationElement::~ConfigurationElement() {} - // **** TypedConfigurationElement **** // TODO, could we use boost::any with some Type* reference? @@ -201,7 +201,7 @@ public: : ConfigurationElement(key, desc), content(std::move(value)), callback(std::move(callback)) {} - ~TypedConfigurationElement() override; + ~TypedConfigurationElement()=default; std::string getStringValue() override; const char* getTypeName() override; @@ -255,10 +255,6 @@ const char* TypedConfigurationElement::getTypeName() // override return ConfigType::type_name; } -template -TypedConfigurationElement::~TypedConfigurationElement() -{} - } // end of anonymous namespace // **** Config **** @@ -390,16 +386,15 @@ void Config::dump(const char *name, const char *indent) void Config::showAliases() { xbt_dict_cursor_t dict_cursor; - unsigned int dynar_cursor; xbt_dictelm_t dictel; char *name; - xbt_dynar_t names = xbt_dynar_new(sizeof(char *), nullptr); + std::vector names; xbt_dict_foreach(this->aliases, dict_cursor, name, dictel) - xbt_dynar_push(names, &name); - xbt_dynar_sort_strings(names); + names.push_back(name); + std::sort(names.begin(), names.end(), ::strcmp); - xbt_dynar_foreach(names, dynar_cursor, name) + for (auto name : names) printf(" %s: %s\n", name, (*this)[name].getDescription().c_str()); } @@ -407,22 +402,20 @@ void Config::showAliases() void Config::help() { xbt_dict_cursor_t dict_cursor; - unsigned int dynar_cursor; simgrid::config::ConfigurationElement* variable; char *name; - xbt_dynar_t names = xbt_dynar_new(sizeof(char *), nullptr); + std::vector names; xbt_dict_foreach(this->options, dict_cursor, name, variable) - xbt_dynar_push(names, &name); - xbt_dynar_sort_strings(names); + names.push_back(name); + std::sort(names.begin(), names.end(), ::strcmp); - xbt_dynar_foreach(names, dynar_cursor, name) { + for (auto name : names) { variable = (simgrid::config::ConfigurationElement*) xbt_dict_get(this->options, name); printf(" %s: %s\n", name, variable->getDescription().c_str()); printf(" Type: %s; ", variable->getTypeName()); printf("Current value: %s\n", variable->getStringValue().c_str()); } - xbt_dynar_free(&names); } // ***** getConfig ***** -- 2.20.1