ClickHouse/dbms/src/Functions/FunctionFactory.h

83 lines
2.6 KiB
C++
Raw Normal View History

#pragma once
#include <Functions/IFunctionImpl.h>
#include <Common/IFactoryWithAliases.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.
*/
2019-12-09 14:41:55 +00:00
class FunctionFactory : private boost::noncopyable, public IFactoryWithAliases<std::function<FunctionOverloadResolverImplPtr(const Context &)>>
{
public:
2017-08-14 04:23:38 +00:00
static FunctionFactory & instance();
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.
2019-12-08 21:06:37 +00:00
FunctionOverloadResolverPtr get(const std::string & name, const Context & context) const;
/// Returns nullptr if not found.
2019-12-08 21:06:37 +00:00
FunctionOverloadResolverPtr tryGet(const std::string & name, const Context & context) const;
2019-12-09 14:41:55 +00:00
/// Throws an exception if not found.
FunctionOverloadResolverImplPtr getImpl(const std::string & name, const Context & context) const;
/// Returns nullptr if not found.
FunctionOverloadResolverImplPtr tryGetImpl(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>
2019-12-09 14:41:55 +00:00
static FunctionOverloadResolverImplPtr createDefaultFunction(const Context & context)
{
2019-12-09 14:41:55 +00:00
return std::make_unique<DefaultFunctionBuilder>(Function::create(context));
}
const Functions & getCreatorMap() const override { return functions; }
const Functions & getCaseInsensitiveCreatorMap() const override { return case_insensitive_functions; }
String getFactoryName() const override { return "FunctionFactory"; }
/// 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);
};
}