#include #include #include #include #include #include #include #include #include #include #include #include "formatString.h" namespace DB { namespace ErrorCodes { extern const int ILLEGAL_COLUMN; extern const int ILLEGAL_TYPE_OF_ARGUMENT; extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; } template class FormatFunction : public IFunction { public: static constexpr auto name = Name::name; static FunctionPtr create(const Context &) { return std::make_shared(); } String getName() const override { return name; } bool isVariadic() const override { return true; } size_t getNumberOfArguments() const override { return 0; } ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {0}; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { if (arguments.empty()) throw Exception( "Number of arguments for function " + getName() + " doesn't match: passed " + toString(arguments.size()) + ", should be at least 1", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); if (arguments.size() > FormatImpl::argument_threshold) throw Exception( "Number of arguments for function " + getName() + " doesn't match: passed " + toString(arguments.size()) + ", should be at most " + std::to_string(FormatImpl::argument_threshold), ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); for (const auto arg_idx : ext::range(0, arguments.size())) { const auto arg = arguments[arg_idx].get(); if (!isStringOrFixedString(arg)) throw Exception( "Illegal type " + arg->getName() + " of argument " + std::to_string(arg_idx + 1) + " of function " + getName(), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); } return std::make_shared(); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override { const ColumnPtr & c0 = block.getByPosition(arguments[0]).column; const ColumnConst * c0_const_string = typeid_cast(&*c0); if (!c0_const_string) throw Exception("First argument of function " + getName() + " must be constant string", ErrorCodes::ILLEGAL_COLUMN); String pattern = c0_const_string->getValue(); auto col_res = ColumnString::create(); std::vector data(arguments.size() - 1); std::vector offsets(arguments.size() - 1); std::vector fixed_string_N(arguments.size() - 1); std::vector constant_strings(arguments.size() - 1); bool has_column_string = false; bool has_column_fixed_string = false; for (size_t i = 1; i < arguments.size(); ++i) { const ColumnPtr & column = block.getByPosition(arguments[i]).column; if (const ColumnString * col = checkAndGetColumn(column.get())) { has_column_string = true; data[i - 1] = &col->getChars(); offsets[i - 1] = &col->getOffsets(); } else if (const ColumnFixedString * fixed_col = checkAndGetColumn(column.get())) { has_column_fixed_string = true; data[i - 1] = &fixed_col->getChars(); fixed_string_N[i - 1] = fixed_col->getN(); } else if (const ColumnConst * const_col = checkAndGetColumnConstStringOrFixedString(column.get())) { constant_strings[i - 1] = const_col->getValue(); } else throw Exception( "Illegal column " + column->getName() + " of argument of function " + getName(), ErrorCodes::ILLEGAL_COLUMN); } FormatImpl::formatExecute( has_column_string, has_column_fixed_string, std::move(pattern), data, offsets, fixed_string_N, constant_strings, col_res->getChars(), col_res->getOffsets(), input_rows_count); block.getByPosition(result).column = std::move(col_res); } }; struct NameFormat { static constexpr auto name = "format"; }; using FunctionFormat = FormatFunction; void registerFunctionFormat(FunctionFactory & factory) { factory.registerFunction(); } }