mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
93 lines
3.8 KiB
C++
93 lines
3.8 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <Columns/ColumnString.h>
|
||
|
#include <Columns/ColumnFixedString.h>
|
||
|
#include <Columns/ColumnConst.h>
|
||
|
#include <DataTypes/DataTypeString.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
namespace ErrorCodes
|
||
|
{
|
||
|
extern const int ILLEGAL_COLUMN;
|
||
|
extern const int ARGUMENT_OUT_OF_BOUND;
|
||
|
}
|
||
|
|
||
|
|
||
|
template <typename Impl, typename Name>
|
||
|
class FunctionStringReplace : public IFunction
|
||
|
{
|
||
|
public:
|
||
|
static constexpr auto name = Name::name;
|
||
|
static FunctionPtr create(const Context &) { return std::make_shared<FunctionStringReplace>(); }
|
||
|
|
||
|
String getName() const override { return name; }
|
||
|
|
||
|
size_t getNumberOfArguments() const override { return 3; }
|
||
|
|
||
|
bool useDefaultImplementationForConstants() const override { return true; }
|
||
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {1, 2}; }
|
||
|
|
||
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
||
|
{
|
||
|
if (!isStringOrFixedString(arguments[0]))
|
||
|
throw Exception(
|
||
|
"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName(),
|
||
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
||
|
|
||
|
if (!isStringOrFixedString(arguments[1]))
|
||
|
throw Exception(
|
||
|
"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName(),
|
||
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
||
|
|
||
|
if (!isStringOrFixedString(arguments[2]))
|
||
|
throw Exception(
|
||
|
"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName(),
|
||
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
||
|
|
||
|
return std::make_shared<DataTypeString>();
|
||
|
}
|
||
|
|
||
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t /*input_rows_count*/) override
|
||
|
{
|
||
|
const ColumnPtr column_src = block.getByPosition(arguments[0]).column;
|
||
|
const ColumnPtr column_needle = block.getByPosition(arguments[1]).column;
|
||
|
const ColumnPtr column_replacement = block.getByPosition(arguments[2]).column;
|
||
|
|
||
|
if (!isColumnConst(*column_needle) || !isColumnConst(*column_replacement))
|
||
|
throw Exception("2nd and 3rd arguments of function " + getName() + " must be constants.", ErrorCodes::ILLEGAL_COLUMN);
|
||
|
|
||
|
const IColumn * c1 = block.getByPosition(arguments[1]).column.get();
|
||
|
const IColumn * c2 = block.getByPosition(arguments[2]).column.get();
|
||
|
const ColumnConst * c1_const = typeid_cast<const ColumnConst *>(c1);
|
||
|
const ColumnConst * c2_const = typeid_cast<const ColumnConst *>(c2);
|
||
|
String needle = c1_const->getValue<String>();
|
||
|
String replacement = c2_const->getValue<String>();
|
||
|
|
||
|
if (needle.empty())
|
||
|
throw Exception("Length of the second argument of function replace must be greater than 0.", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
||
|
|
||
|
if (const ColumnString * col = checkAndGetColumn<ColumnString>(column_src.get()))
|
||
|
{
|
||
|
auto col_res = ColumnString::create();
|
||
|
Impl::vector(col->getChars(), col->getOffsets(), needle, replacement, col_res->getChars(), col_res->getOffsets());
|
||
|
block.getByPosition(result).column = std::move(col_res);
|
||
|
}
|
||
|
else if (const ColumnFixedString * col_fixed = checkAndGetColumn<ColumnFixedString>(column_src.get()))
|
||
|
{
|
||
|
auto col_res = ColumnString::create();
|
||
|
Impl::vectorFixed(col_fixed->getChars(), col_fixed->getN(), needle, replacement, col_res->getChars(), col_res->getOffsets());
|
||
|
block.getByPosition(result).column = std::move(col_res);
|
||
|
}
|
||
|
else
|
||
|
throw Exception(
|
||
|
"Illegal column " + block.getByPosition(arguments[0]).column->getName() + " of first argument of function " + getName(),
|
||
|
ErrorCodes::ILLEGAL_COLUMN);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|