ClickHouse/dbms/src/Functions/FunctionFactory.cpp

63 lines
1.5 KiB
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Interpreters/Context.h>
#include <Common/Exception.h>
#include <Poco/String.h>
namespace DB
{
2016-01-12 02:21:15 +00:00
namespace ErrorCodes
{
extern const int UNKNOWN_FUNCTION;
2017-08-18 16:36:02 +00:00
extern const int LOGICAL_ERROR;
2016-01-12 02:21:15 +00:00
}
2017-08-14 04:23:38 +00:00
void FunctionFactory::registerFunction(const
std::string & name,
Creator 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",
ErrorCodes::LOGICAL_ERROR);
if (case_sensitiveness == CaseInsensitive
&& !case_insensitive_functions.emplace(Poco::toLower(name), creator).second)
throw Exception("FunctionFactory: the case insensitive function name '" + name + "' is not unique",
ErrorCodes::LOGICAL_ERROR);
}
2018-02-02 08:33:36 +00:00
FunctionBuilderPtr FunctionFactory::get(
const std::string & name,
const Context & context) const
{
auto res = tryGet(name, context);
if (!res)
throw Exception("Unknown function " + name, ErrorCodes::UNKNOWN_FUNCTION);
return res;
}
2018-02-02 08:33:36 +00:00
FunctionBuilderPtr FunctionFactory::tryGet(
const std::string & name,
const Context & context) const
{
auto it = functions.find(name);
if (functions.end() != it)
return it->second(context);
2017-08-14 04:23:38 +00:00
it = case_insensitive_functions.find(Poco::toLower(name));
if (case_insensitive_functions.end() != it)
return it->second(context);
return {};
}
}