From c74cfd8088ac941f8e93ee2ea9ec94d758bf2cdf Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 19 Dec 2021 14:25:44 -0800 Subject: [PATCH] ircd::conf: Use stringops replace; minor reorg/rename. --- ircd/conf.cc | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/ircd/conf.cc b/ircd/conf.cc index bab4165db..53e89c00e 100644 --- a/ircd/conf.cc +++ b/ircd/conf.cc @@ -343,8 +343,9 @@ const namespace ircd::conf { - static void call_env(item &) noexcept; - static void call_init(item &) noexcept; + static string_view make_env_name(const mutable_buffer &, const item &); + static void set_from_env(item &) noexcept; + static void set_from_closure(item &) noexcept; } void @@ -353,16 +354,16 @@ ircd::conf::item::call_init() // The conf item's default value specified by the constructor is its // current value at this point; now we make callbacks to allow that value // to be replaced with a better one (i.e reading a saved value from DB). - conf::call_init(*this); + conf::set_from_closure(*this); // Environmental variables now get the final say; this allows any // misconfiguration to be overridden by env vars. The variable name is // the conf item name with any '.' replaced to '_', case is preserved. - conf::call_env(*this); + conf::set_from_env(*this); } void -ircd::conf::call_init(item &item) +ircd::conf::set_from_closure(item &item) noexcept try { on_init(item); @@ -378,20 +379,18 @@ catch(const std::exception &e) } void -ircd::conf::call_env(item &item) +ircd::conf::set_from_env(item &item) noexcept try { - assert(size(item.name) <= conf::NAME_MAX_LEN); - thread_local char key[conf::NAME_MAX_LEN]; - const string_view name + thread_local char buf[conf::NAME_MAX_LEN]; + const string_view key { - key, - std::replace_copy(begin(item.name), end(item.name), key, '.', '_') + make_env_name(buf, item) }; const string_view val { - util::getenv(name) + util::getenv(key) }; if(!empty(val)) @@ -407,6 +406,14 @@ catch(const std::exception &e) }; } +ircd::string_view +ircd::conf::make_env_name(const mutable_buffer &buf, + const item &item) +{ + assert(size(item.name) <= conf::NAME_MAX_LEN); + return replace(buf, item.name, '.', '_'); +} + // // Non-inline template specialization definitions //