mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
148 lines
5.1 KiB
C++
148 lines
5.1 KiB
C++
#include <Columns/ColumnFixedString.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Columns/ColumnStringHelpers.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
#include <Functions/IFunction.h>
|
|
#include <Functions/formatString.h>
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ILLEGAL_COLUMN;
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
class FormatFunction : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "format";
|
|
|
|
static FunctionPtr create(ContextPtr) { return std::make_shared<FormatFunction>(); }
|
|
|
|
String getName() const override { return name; }
|
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) 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.size() < 2)
|
|
throw Exception(
|
|
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH,
|
|
"Number of arguments for function {} doesn't match: passed {}, should be at least 2",
|
|
getName(),
|
|
arguments.size());
|
|
|
|
return std::make_shared<DataTypeString>();
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
|
|
{
|
|
const ColumnPtr & c0 = arguments[0].column;
|
|
const ColumnConst * c0_const_string = typeid_cast<const ColumnConst *>(&*c0);
|
|
|
|
if (!c0_const_string)
|
|
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "First argument of function {} must be constant string", getName());
|
|
|
|
String pattern = c0_const_string->getValue<String>();
|
|
|
|
auto col_res = ColumnString::create();
|
|
|
|
std::vector<const ColumnString::Chars *> data(arguments.size() - 1);
|
|
std::vector<const ColumnString::Offsets *> offsets(arguments.size() - 1);
|
|
std::vector<size_t> fixed_string_sizes(arguments.size() - 1);
|
|
std::vector<std::optional<String>> constant_strings(arguments.size() - 1);
|
|
std::vector<ColumnString::MutablePtr> converted_col_ptrs(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 = arguments[i].column;
|
|
if (const ColumnString * col = checkAndGetColumn<ColumnString>(column.get()))
|
|
{
|
|
has_column_string = true;
|
|
data[i - 1] = &col->getChars();
|
|
offsets[i - 1] = &col->getOffsets();
|
|
}
|
|
else if (const ColumnFixedString * fixed_col = checkAndGetColumn<ColumnFixedString>(column.get()))
|
|
{
|
|
has_column_fixed_string = true;
|
|
data[i - 1] = &fixed_col->getChars();
|
|
fixed_string_sizes[i - 1] = fixed_col->getN();
|
|
}
|
|
else if (const ColumnConst * const_col = checkAndGetColumnConstStringOrFixedString(column.get()))
|
|
{
|
|
constant_strings[i - 1] = const_col->getValue<String>();
|
|
}
|
|
else
|
|
{
|
|
/// A non-String/non-FixedString-type argument: use the default serialization to convert it to String
|
|
auto full_column = column->convertToFullIfNeeded();
|
|
auto serialization = arguments[i].type->getDefaultSerialization();
|
|
auto converted_col_str = ColumnString::create();
|
|
ColumnStringHelpers::WriteHelper write_helper(*converted_col_str, column->size());
|
|
auto & write_buffer = write_helper.getWriteBuffer();
|
|
FormatSettings format_settings;
|
|
for (size_t row = 0; row < column->size(); ++row)
|
|
{
|
|
serialization->serializeText(*full_column, row, write_buffer, format_settings);
|
|
write_helper.rowWritten();
|
|
}
|
|
write_helper.finalize();
|
|
|
|
/// Same as the normal `ColumnString` branch
|
|
has_column_string = true;
|
|
data[i - 1] = &converted_col_str->getChars();
|
|
offsets[i - 1] = &converted_col_str->getOffsets();
|
|
|
|
/// Keep the pointer alive
|
|
converted_col_ptrs[i - 1] = std::move(converted_col_str);
|
|
}
|
|
}
|
|
|
|
FormatStringImpl::formatExecute(
|
|
has_column_string,
|
|
has_column_fixed_string,
|
|
std::move(pattern),
|
|
data,
|
|
offsets,
|
|
fixed_string_sizes,
|
|
constant_strings,
|
|
col_res->getChars(),
|
|
col_res->getOffsets(),
|
|
input_rows_count);
|
|
|
|
return col_res;
|
|
}
|
|
};
|
|
|
|
|
|
using FunctionFormat = FormatFunction;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Format)
|
|
{
|
|
factory.registerFunction<FunctionFormat>();
|
|
}
|
|
|
|
}
|