#pragma once #include #include #include namespace DB { /** Apply the macros from the config in the line. */ 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; private: using MacroMap = std::map; MacroMap macros; }; }