mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
97 lines
2.4 KiB
C++
97 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <DB/Parsers/ASTWithAlias.h>
|
|
#include <DB/Parsers/ASTExpressionList.h>
|
|
#include <DB/Functions/IFunction.h>
|
|
#include <DB/AggregateFunctions/IAggregateFunction.h>
|
|
#include <DB/IO/WriteBufferFromString.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Применение функции или оператора
|
|
*/
|
|
class ASTFunction : public ASTWithAlias
|
|
{
|
|
public:
|
|
enum FunctionKind
|
|
{
|
|
UNKNOWN,
|
|
TABLE_FUNCTION,
|
|
FUNCTION,
|
|
AGGREGATE_FUNCTION,
|
|
LAMBDA_EXPRESSION,
|
|
ARRAY_JOIN,
|
|
};
|
|
|
|
/// имя функции
|
|
String name;
|
|
/// аргументы
|
|
ASTPtr arguments;
|
|
/// параметры - для параметрических агрегатных функций. Пример: quantile(0.9)(x) - то, что в первых скобках - параметры.
|
|
ASTPtr parameters;
|
|
|
|
FunctionKind kind{UNKNOWN};
|
|
|
|
ASTFunction() = default;
|
|
ASTFunction(const StringRange range_) : ASTWithAlias(range_) {}
|
|
|
|
/** Получить текст, который идентифицирует этот элемент. */
|
|
String getID() const override { return "Function_" + name; }
|
|
|
|
void updateHashWith(SipHash & hash) const override
|
|
{
|
|
hash.update("Function", strlen("Function") + 1);
|
|
hash.update(name.data(), name.size() + 1);
|
|
}
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
ASTFunction * res = new ASTFunction(*this);
|
|
ASTPtr ptr{res};
|
|
|
|
res->children.clear();
|
|
|
|
if (arguments) { res->arguments = arguments->clone(); res->children.push_back(res->arguments); }
|
|
if (parameters) { res->parameters = parameters->clone(); res->children.push_back(res->parameters); }
|
|
|
|
return ptr;
|
|
}
|
|
};
|
|
|
|
|
|
template <typename... Args>
|
|
ASTPtr makeASTFunction(const String & name, Args &&... args)
|
|
{
|
|
const auto function = new ASTFunction{};
|
|
ASTPtr result{function};
|
|
|
|
function->name = name;
|
|
function->arguments = new ASTExpressionList{};
|
|
function->children.push_back(function->arguments);
|
|
|
|
function->arguments->children = { std::forward<Args>(args)... };
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
template <typename... Args>
|
|
ASTPtr makeASTFunction(const String & name, const StringRange & function_range,
|
|
const StringRange & arguments_range, Args &&... args)
|
|
{
|
|
const auto function = new ASTFunction{function_range};
|
|
ASTPtr result{function};
|
|
|
|
function->name = name;
|
|
function->arguments = new ASTExpressionList{arguments_range};
|
|
function->children.push_back(function->arguments);
|
|
|
|
function->arguments->children = { std::forward<Args>(args)... };
|
|
|
|
return result;
|
|
}
|
|
|
|
}
|