ClickHouse/src/Functions/FunctionFactory.cpp

178 lines
5.4 KiB
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/UserDefinedFunction.h>
#include <Interpreters/Context.h>
#include <Common/Exception.h>
2021-01-22 09:02:58 +00:00
#include <Common/CurrentThread.h>
#include <Poco/String.h>
#include <IO/WriteHelpers.h>
#include <AggregateFunctions/AggregateFunctionFactory.h>
2021-01-22 09:02:58 +00:00
namespace DB
{
class UserDefinedFunction;
2016-01-12 02:21:15 +00:00
namespace ErrorCodes
{
extern const int UNKNOWN_FUNCTION;
extern const int LOGICAL_ERROR;
extern const int FUNCTION_ALREADY_EXISTS;
2021-05-14 22:43:04 +00:00
extern const int CANNOT_DROP_SYSTEM_FUNCTION;
2016-01-12 02:21:15 +00:00
}
2021-02-14 11:09:36 +00:00
const String & getFunctionCanonicalNameIfAny(const String & name)
{
return FunctionFactory::instance().getCanonicalNameIfAny(name);
}
2017-08-14 04:23:38 +00:00
void FunctionFactory::registerFunction(const
std::string & name,
2020-06-14 07:44:02 +00:00
Value creator,
CaseSensitiveness case_sensitiveness)
{
2017-08-14 04:23:38 +00:00
if (!functions.emplace(name, creator).second)
throw Exception("FunctionFactory: the function name '" + name + "' is not unique",
2019-12-09 14:41:55 +00:00
ErrorCodes::LOGICAL_ERROR);
2017-08-14 04:23:38 +00:00
String function_name_lowercase = Poco::toLower(name);
if (isAlias(name) || isAlias(function_name_lowercase))
throw Exception("FunctionFactory: the function name '" + name + "' is already registered as alias",
ErrorCodes::LOGICAL_ERROR);
2021-02-14 11:09:36 +00:00
if (case_sensitiveness == CaseInsensitive)
{
if (!case_insensitive_functions.emplace(function_name_lowercase, creator).second)
throw Exception("FunctionFactory: the case insensitive function name '" + name + "' is not unique",
ErrorCodes::LOGICAL_ERROR);
case_insensitive_name_mapping[function_name_lowercase] = name;
}
}
2021-05-15 17:33:15 +00:00
FunctionOverloadResolverPtr FunctionFactory::getImpl(
const std::string & name,
2021-06-01 12:20:52 +00:00
ContextPtr context) const
{
2019-12-09 14:41:55 +00:00
auto res = tryGetImpl(name, context);
if (!res)
{
String extra_info;
if (AggregateFunctionFactory::instance().hasNameOrAlias(name))
extra_info = ". There is an aggregate function with the same name, but ordinary function is expected here";
auto hints = this->getHints(name);
if (!hints.empty())
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown function {}{}. Maybe you meant: {}", name, extra_info, toString(hints));
else
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown function {}{}", name, extra_info);
}
return res;
}
2020-05-11 21:21:40 +00:00
std::vector<std::string> FunctionFactory::getAllNames() const
{
2020-05-11 21:18:50 +00:00
std::vector<std::string> res;
res.reserve(functions.size());
2020-05-11 21:21:40 +00:00
for (const auto & func : functions)
2020-05-11 21:18:50 +00:00
res.emplace_back(func.first);
return res;
}
2019-12-09 14:41:55 +00:00
FunctionOverloadResolverPtr FunctionFactory::get(
const std::string & name,
2021-06-01 12:20:52 +00:00
ContextPtr context) const
2019-12-09 14:41:55 +00:00
{
2021-05-15 17:33:15 +00:00
return getImpl(name, context);
2019-12-09 14:41:55 +00:00
}
2021-05-15 17:33:15 +00:00
FunctionOverloadResolverPtr FunctionFactory::tryGetImpl(
const std::string & name_param,
2021-06-01 12:20:52 +00:00
ContextPtr context) const
{
String name = getAliasToOrName(name_param);
2021-05-15 17:33:15 +00:00
FunctionOverloadResolverPtr res;
auto it = functions.find(name);
if (functions.end() != it)
res = it->second(context);
else
{
2021-01-28 09:22:01 +00:00
name = Poco::toLower(name);
it = case_insensitive_functions.find(name);
if (case_insensitive_functions.end() != it)
res = it->second(context);
}
if (!res)
return nullptr;
if (CurrentThread::isInitialized())
{
auto query_context = CurrentThread::get().getQueryContext();
if (query_context && query_context->getSettingsRef().log_queries)
query_context->addQueryFactoriesInfo(Context::QueryLogFactories::Function, name);
}
return res;
}
2019-12-09 14:41:55 +00:00
FunctionOverloadResolverPtr FunctionFactory::tryGet(
const std::string & name,
2021-06-01 12:20:52 +00:00
ContextPtr context) const
2019-12-09 14:41:55 +00:00
{
auto impl = tryGetImpl(name, context);
2021-05-15 17:33:15 +00:00
return impl ? std::move(impl) : nullptr;
2019-12-09 14:41:55 +00:00
}
FunctionFactory & FunctionFactory::instance()
{
static FunctionFactory ret;
return ret;
}
2021-05-14 22:43:04 +00:00
void FunctionFactory::registerUserDefinedFunction(const ASTCreateFunctionQuery & create_function_query)
{
if (hasNameOrAlias(create_function_query.function_name))
2021-05-14 22:43:04 +00:00
throw Exception(ErrorCodes::FUNCTION_ALREADY_EXISTS, "The function {} already exists", create_function_query.function_name);
registerFunction(create_function_query.function_name, [create_function_query](ContextPtr context)
{
auto function = UserDefinedFunction::create(context);
function->setName(create_function_query.function_name);
function->setFunctionCore(create_function_query.function_core);
2021-06-14 23:07:20 +00:00
FunctionOverloadResolverPtr res = std::make_unique<FunctionToOverloadResolverAdaptor>(function);
return res;
2021-05-14 22:43:04 +00:00
}, CaseSensitiveness::CaseSensitive);
user_defined_functions.insert(create_function_query.function_name);
}
void FunctionFactory::unregisterUserDefinedFunction(const String & name)
{
if (functions.contains(name))
{
if (user_defined_functions.contains(name))
{
functions.erase(name);
user_defined_functions.erase(name);
return;
} else
throw Exception("System functions cannot be dropped", ErrorCodes::CANNOT_DROP_SYSTEM_FUNCTION);
}
auto hints = this->getHints(name);
if (!hints.empty())
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown function {}. Maybe you meant: {}", name, toString(hints));
else
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown function {}", name);
}
}