2012-12-18 20:06:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-12 14:16:59 +00:00
|
|
|
#include <Functions/IFunctionAdaptors.h>
|
2018-07-25 16:08:23 +00:00
|
|
|
#include <Common/IFactoryWithAliases.h>
|
2020-10-09 07:41:28 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2017-08-14 04:23:38 +00:00
|
|
|
|
2017-08-18 17:06:22 +00:00
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
2012-12-18 20:06:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
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.
|
2012-12-18 20:06:36 +00:00
|
|
|
*/
|
2019-12-09 14:41:55 +00:00
|
|
|
class FunctionFactory : private boost::noncopyable, public IFactoryWithAliases<std::function<FunctionOverloadResolverImplPtr(const Context &)>>
|
2012-12-18 20:06:36 +00:00
|
|
|
{
|
2017-08-18 17:06:22 +00:00
|
|
|
public:
|
2019-08-22 03:24:05 +00:00
|
|
|
static FunctionFactory & instance();
|
|
|
|
|
2018-02-02 08:33:36 +00:00
|
|
|
template <typename Function>
|
2018-02-06 19:34:53 +00:00
|
|
|
void registerFunction(CaseSensitiveness case_sensitiveness = CaseSensitive)
|
2018-02-02 08:33:36 +00:00
|
|
|
{
|
2018-02-06 19:34:53 +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>
|
2018-02-06 19:34:53 +00:00
|
|
|
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)
|
2018-02-06 19:34:53 +00:00
|
|
|
registerFunction(name, &createDefaultFunction<Function>, case_sensitiveness);
|
2018-02-02 08:33:36 +00:00
|
|
|
else
|
2018-02-06 19:34:53 +00:00
|
|
|
registerFunction(name, &Function::create, case_sensitiveness);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-08-18 17:06:22 +00:00
|
|
|
|
2020-05-11 21:22:34 +00:00
|
|
|
/// This function is used by YQL - internal Yandex product that depends on ClickHouse by source code.
|
2020-05-11 21:18:50 +00:00
|
|
|
std::vector<std::string> getAllNames() const;
|
|
|
|
|
2017-08-18 17:06:22 +00:00
|
|
|
/// Throws an exception if not found.
|
2019-12-08 21:06:37 +00:00
|
|
|
FunctionOverloadResolverPtr get(const std::string & name, const Context & context) const;
|
2017-08-18 17:06:22 +00:00
|
|
|
|
|
|
|
/// Returns nullptr if not found.
|
2019-12-08 21:06:37 +00:00
|
|
|
FunctionOverloadResolverPtr tryGet(const std::string & name, const Context & context) const;
|
2017-08-18 17:06:22 +00:00
|
|
|
|
2019-12-12 14:16:59 +00:00
|
|
|
/// The same methods to get developer interface implementation.
|
2019-12-09 14:41:55 +00:00
|
|
|
FunctionOverloadResolverImplPtr getImpl(const std::string & name, const Context & context) const;
|
|
|
|
FunctionOverloadResolverImplPtr tryGetImpl(const std::string & name, const Context & context) const;
|
|
|
|
|
2017-08-18 17:06:22 +00:00
|
|
|
private:
|
2020-06-14 07:44:02 +00:00
|
|
|
using Functions = std::unordered_map<std::string, Value>;
|
2017-08-18 17:06:22 +00:00
|
|
|
|
|
|
|
Functions functions;
|
|
|
|
Functions case_insensitive_functions;
|
2018-02-06 19:34:53 +00:00
|
|
|
|
|
|
|
template <typename Function>
|
2019-12-09 14:41:55 +00:00
|
|
|
static FunctionOverloadResolverImplPtr createDefaultFunction(const Context & context)
|
2018-02-06 19:34:53 +00:00
|
|
|
{
|
2019-12-12 14:16:59 +00:00
|
|
|
return std::make_unique<DefaultOverloadResolver>(Function::create(context));
|
2018-02-06 19:34:53 +00:00
|
|
|
}
|
|
|
|
|
2020-06-14 07:44:02 +00:00
|
|
|
const Functions & getMap() const override { return functions; }
|
2018-07-25 16:08:23 +00:00
|
|
|
|
2020-06-14 07:44:02 +00:00
|
|
|
const Functions & getCaseInsensitiveMap() const override { return case_insensitive_functions; }
|
2018-07-25 16:08:23 +00:00
|
|
|
|
|
|
|
String getFactoryName() const override { return "FunctionFactory"; }
|
|
|
|
|
2018-02-06 19:34:53 +00:00
|
|
|
/// Register a function by its name.
|
|
|
|
/// No locking, you must register all functions before usage of get.
|
|
|
|
void registerFunction(
|
|
|
|
const std::string & name,
|
2020-06-14 07:44:02 +00:00
|
|
|
Value creator,
|
2018-02-06 19:34:53 +00:00
|
|
|
CaseSensitiveness case_sensitiveness = CaseSensitive);
|
2012-12-18 20:06:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|