#pragma once #include #include #include #include #include #include #include #include namespace DB { class Context; class IDataType; using DataTypePtr = std::shared_ptr; using DataTypes = std::vector; /** * The invoker has arguments: name of aggregate function, types of arguments, values of parameters. * Parameters are for "parametric" aggregate functions. * For example, in quantileWeighted(0.9)(x, weight), 0.9 is "parameter" and x, weight are "arguments". */ using AggregateFunctionCreator = std::function; struct AggregateFunctionWithProperties { AggregateFunctionCreator creator; AggregateFunctionProperties properties; AggregateFunctionWithProperties() = default; AggregateFunctionWithProperties(const AggregateFunctionWithProperties &) = default; AggregateFunctionWithProperties & operator = (const AggregateFunctionWithProperties &) = default; template > * = nullptr> AggregateFunctionWithProperties(Creator creator_, AggregateFunctionProperties properties_ = {}) : creator(std::forward(creator_)), properties(std::move(properties_)) { } }; /** Creates an aggregate function by name. */ class AggregateFunctionFactory final : private boost::noncopyable, public IFactoryWithAliases { public: static AggregateFunctionFactory & instance(); /// Register a function by its name. /// No locking, you must register all functions before usage of get. void registerFunction( const String & name, Value creator, CaseSensitiveness case_sensitiveness = CaseSensitive); /// Throws an exception if not found. AggregateFunctionPtr get(const String & name, const DataTypes & argument_types, const Array & parameters, AggregateFunctionProperties & out_properties) const; /// Returns nullptr if not found. AggregateFunctionPtr tryGet( const String & name, const DataTypes & argument_types, const Array & parameters, AggregateFunctionProperties & out_properties) const; /// Get properties if the aggregate function exists. std::optional tryGetProperties(const String & name) const; bool isAggregateFunctionName(const String & name) const; private: AggregateFunctionPtr getImpl( const String & name, const DataTypes & argument_types, const Array & parameters, AggregateFunctionProperties & out_properties, bool has_null_arguments) const; std::optional tryGetPropertiesImpl(const String & name) const; using AggregateFunctions = std::unordered_map; AggregateFunctions aggregate_functions; /// Case insensitive aggregate functions will be additionally added here with lowercased name. AggregateFunctions case_insensitive_aggregate_functions; const AggregateFunctions & getMap() const override { return aggregate_functions; } const AggregateFunctions & getCaseInsensitiveMap() const override { return case_insensitive_aggregate_functions; } String getFactoryName() const override { return "AggregateFunctionFactory"; } }; }