mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
3ebfd2fb7f
This reverts commit 34b3f738a67432b44f6f69238dd1529535984d1a.
36 lines
1021 B
C++
36 lines
1021 B
C++
#pragma once
|
||
|
||
#include <DB/Functions/IFunction.h>
|
||
#include <Yandex/singleton.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
class Context;
|
||
|
||
|
||
/** Позволяет получить функцию по имени.
|
||
* Функция при создании также может использовать для инициализации (например, захватить SharedPtr)
|
||
* какие-нибудь справочники, находящиеся в Context-е.
|
||
*/
|
||
class FunctionFactory : public Singleton<FunctionFactory>
|
||
{
|
||
private:
|
||
typedef IFunction* (*Creator)(const Context & context); /// Не std::function, так как меньше indirection и размер объекта.
|
||
std::unordered_map<String, Creator> functions;
|
||
|
||
public:
|
||
FunctionFactory();
|
||
|
||
FunctionPtr get(const String & name, const Context & context) const;
|
||
|
||
template <typename F> void registerFunction()
|
||
{
|
||
static_assert(std::is_same<decltype(&F::create), Creator>::value, "F::create has incorrect type");
|
||
functions[F::name] = &F::create;
|
||
}
|
||
};
|
||
|
||
}
|