mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
#include <Common/getMultipleKeysFromConfig.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
#include <Common/StringUtils/StringUtils.h>
|
|
|
|
namespace DB
|
|
{
|
|
std::vector<std::string> getMultipleKeysFromConfig(const Poco::Util::AbstractConfiguration & config, const std::string & root, const std::string & name)
|
|
{
|
|
std::vector<std::string> values;
|
|
Poco::Util::AbstractConfiguration::Keys config_keys;
|
|
config.keys(root, config_keys);
|
|
for (const auto & key : config_keys)
|
|
{
|
|
if (key != name && !(startsWith(key, name + "[") && endsWith(key, "]")))
|
|
continue;
|
|
values.emplace_back(key);
|
|
}
|
|
return values;
|
|
}
|
|
|
|
|
|
std::vector<std::string> getMultipleValuesFromConfig(const Poco::Util::AbstractConfiguration & config, const std::string & root, const std::string & name)
|
|
{
|
|
std::vector<std::string> values;
|
|
for (const auto & key : DB::getMultipleKeysFromConfig(config, root, name))
|
|
values.emplace_back(config.getString(root.empty() ? key : root + "." + key));
|
|
return values;
|
|
}
|
|
|
|
}
|