ClickHouse/dbms/src/Functions/FunctionFactory.h

79 lines
2.2 KiB
C++
Raw Normal View History

#pragma once
#include <Functions/IFunction.h>
#include <ext/singleton.h>
2017-08-14 04:23:38 +00:00
#include <functional>
#include <memory>
#include <string>
#include <unordered_map>
namespace DB
{
class Context;
2016-07-09 23:37:29 +00:00
/** Creates function by name.
* Function could use for initialization (take ownership of shared_ptr, for example)
* some dictionaries from Context.
*/
class FunctionFactory : public ext::singleton<FunctionFactory>
{
friend class StorageSystemFunctions;
2015-04-24 15:49:30 +00:00
public:
2018-02-02 08:33:36 +00:00
using Creator = std::function<FunctionBuilderPtr(const Context &)>;
2017-08-14 04:23:38 +00:00
/// For compatibility with SQL, it's possible to specify that certain function name is case insensitive.
enum CaseSensitiveness
{
CaseSensitive,
CaseInsensitive
};
2018-02-02 08:33:36 +00:00
template <typename Function>
void registerFunction(CaseSensitiveness case_sensitiveness = CaseSensitive)
2018-02-02 08:33:36 +00:00
{
registerFunction<Function>(Function::name, case_sensitiveness);
2018-02-02 08:33:36 +00:00
}
2017-08-14 04:23:38 +00:00
template <typename Function>
void registerFunction(const std::string & name, CaseSensitiveness case_sensitiveness = CaseSensitive)
2017-08-14 04:23:38 +00:00
{
2018-02-02 08:33:36 +00:00
if constexpr (std::is_base_of<IFunction, Function>::value)
registerFunction(name, &createDefaultFunction<Function>, case_sensitiveness);
2018-02-02 08:33:36 +00:00
else
registerFunction(name, &Function::create, case_sensitiveness);
}
/// Throws an exception if not found.
2018-02-02 08:33:36 +00:00
FunctionBuilderPtr get(const std::string & name, const Context & context) const;
/// Returns nullptr if not found.
2018-02-02 08:33:36 +00:00
FunctionBuilderPtr tryGet(const std::string & name, const Context & context) const;
private:
using Functions = std::unordered_map<std::string, Creator>;
Functions functions;
Functions case_insensitive_functions;
template <typename Function>
static FunctionBuilderPtr createDefaultFunction(const Context & context)
{
return std::make_shared<DefaultFunctionBuilder>(Function::create(context));
}
/// Register a function by its name.
/// No locking, you must register all functions before usage of get.
void registerFunction(
const std::string & name,
Creator creator,
CaseSensitiveness case_sensitiveness = CaseSensitive);
};
}