#pragma once #include #include #include #include namespace Poco { namespace Util { class AbstractConfiguration; } } namespace DB { /** Apply substitutions from the macros in config to the string. */ class Macros { public: Macros(); Macros(const Poco::Util::AbstractConfiguration & config, const String & key); /** Replace the substring of the form {macro_name} with the value for macro_name, obtained from the config file. * level - the level of recursion. */ String expand(const String & s, size_t level = 0, const String & database_name = "", const String & table_name = "") const; /** Apply expand for the list. */ Names expand(const Names & source_names, size_t level = 0) const; using MacroMap = std::map; const MacroMap getMacroMap() const { return macros; } private: MacroMap macros; }; }