ClickHouse/src/Functions/FunctionsDecimalArithmetics.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

418 lines
16 KiB
C++
Raw Normal View History

2022-10-18 12:38:48 +00:00
#pragma once
#include <type_traits>
#include <Core/AccurateComparison.h>
#include <DataTypes/DataTypesDecimal.h>
#include <Columns/ColumnsNumber.h>
#include <Functions/IFunction.h>
#include <Functions/FunctionHelpers.h>
#include <Functions/castTypeToEither.h>
#include <IO/WriteHelpers.h>
2022-10-28 12:31:03 +00:00
#include <Common/logger_useful.h>
#include <Poco/Logger.h>
#include <Loggers/Loggers.h>
2022-10-18 12:38:48 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int DECIMAL_OVERFLOW;
extern const int ILLEGAL_COLUMN;
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
2022-10-19 21:56:52 +00:00
extern const int ILLEGAL_DIVISION;
2022-10-18 12:38:48 +00:00
}
struct DecimalOpHerpers
{
// constexpr const static UInt256 MAX_INT256 = UInt256(-1) >> 1;
2022-10-28 12:31:03 +00:00
static std::vector<UInt8> multiply(const std::vector<UInt8> & num1, const std::vector<UInt8> & num2)
2022-10-18 12:38:48 +00:00
{
2022-11-03 13:55:14 +00:00
UInt16 const len1 = num1.size();
UInt16 const len2 = num2.size();
2022-10-18 12:38:48 +00:00
if (len1 == 0 || len2 == 0)
return {0};
2022-10-28 12:31:03 +00:00
std::vector<UInt8> result(76, 0);
2022-11-11 14:54:41 +00:00
UInt16 i_n1 = 0;
UInt16 i_n2;
2022-10-18 12:38:48 +00:00
2022-11-11 14:54:41 +00:00
for (Int32 i = len1 - 1; i >= 0; --i)
2022-10-18 12:38:48 +00:00
{
2022-11-03 13:55:14 +00:00
UInt16 carry = 0;
2022-10-18 12:38:48 +00:00
i_n2 = 0;
2022-11-11 14:54:41 +00:00
for (Int32 j = len2 - 1; j >= 0; --j)
2022-10-18 12:38:48 +00:00
{
if (unlikely(i_n1 + i_n2 >= 76))
throw DB::Exception("Numeric overflow: result bigger that Decimal256", ErrorCodes::DECIMAL_OVERFLOW);
2022-11-11 14:54:41 +00:00
UInt16 sum = num1[i] * num2[j] + result[i_n1 + i_n2] + carry;
2022-10-18 12:38:48 +00:00
carry = sum / 10;
result[i_n1 + i_n2] = sum % 10;
++i_n2;
}
if (carry > 0)
result[i_n1 + i_n2] += carry;
++i_n1;
}
2022-11-03 13:55:14 +00:00
Int32 i = static_cast<Int32>(result.size() - 1);
2022-10-18 12:38:48 +00:00
while (i >= 0 && result[i] == 0)
2022-10-28 12:31:03 +00:00
{
result.pop_back();
2022-10-18 12:38:48 +00:00
--i;
2022-10-28 12:31:03 +00:00
}
2022-10-18 12:38:48 +00:00
if (i == -1)
return {0};
std::reverse(result.begin(), result.end());
return result;
}
2022-10-28 12:31:03 +00:00
static std::vector<UInt8> divide(const std::vector<UInt8> & number, const Int256 & divisor)
2022-10-18 12:38:48 +00:00
{
2022-10-28 12:31:03 +00:00
std::vector<UInt8> result;
2022-11-11 20:59:03 +00:00
const auto max_index = number.size() - 1;
2022-10-18 12:38:48 +00:00
2022-11-11 20:59:03 +00:00
UInt16 idx = 0;
2022-11-11 15:36:11 +00:00
Int256 temp = number[idx];
2022-11-11 20:59:03 +00:00
while (temp < divisor && max_index >= idx)
{
temp = temp * 10 + number[++idx];
}
if (unlikely(temp == 0))
return {0};
2022-10-18 12:38:48 +00:00
2022-11-11 20:59:03 +00:00
while (max_index >= idx)
2022-10-19 11:00:46 +00:00
{
result.push_back(temp / divisor);
2022-10-18 12:38:48 +00:00
temp = (temp % divisor) * 10 + number[++idx];
}
2022-10-19 11:00:46 +00:00
return result;
2022-10-18 12:38:48 +00:00
}
2022-10-28 12:31:03 +00:00
static std::vector<UInt8> toDigits(Int256 x)
2022-10-18 12:38:48 +00:00
{
std::vector<UInt8> result;
if (x >= 10)
2022-10-28 12:31:03 +00:00
result = toDigits(x / 10);
2022-10-18 12:38:48 +00:00
result.push_back(x % 10);
return result;
}
static UInt256 fromDigits(const std::vector<UInt8> & digits)
2022-10-19 11:00:46 +00:00
{
2022-10-18 12:38:48 +00:00
Int256 result = 0;
2022-10-28 12:31:03 +00:00
Int256 scale = 0;
2022-10-20 10:55:18 +00:00
for (auto i = digits.rbegin(); i != digits.rend(); ++i)
2022-10-19 11:00:46 +00:00
{
2022-10-28 12:31:03 +00:00
result += DecimalUtils::scaleMultiplier<Decimal256>(scale) * (*i);
++scale;
2022-10-18 12:38:48 +00:00
}
return result;
}
};
struct DivideDecimalsImpl
{
static constexpr auto name = "divideDecimal";
template <typename FirstType, typename SecondType>
static inline NO_SANITIZE_UNDEFINED Decimal256
execute(FirstType a, SecondType b, UInt16 scale_a, UInt16 scale_b, UInt16 result_scale)
{
2022-10-19 21:56:52 +00:00
if (b.value == 0)
throw DB::Exception("Division by zero", ErrorCodes::ILLEGAL_DIVISION);
if (a.value == 0)
return Decimal256(0);
2022-10-18 12:38:48 +00:00
Int8 sign_a = a.value < 0 ? -1 : 1;
Int8 sign_b = b.value < 0 ? -1 : 1;
2022-10-19 21:56:52 +00:00
std::vector<UInt8> a_digits = DecimalOpHerpers::toDigits(a.value * sign_a);
2022-10-18 12:38:48 +00:00
while (scale_a < scale_b + result_scale)
{
2022-10-18 12:38:48 +00:00
a_digits.push_back(0);
2022-10-28 12:31:03 +00:00
++scale_a;
2022-10-18 12:38:48 +00:00
}
std::vector<UInt8> divided = DecimalOpHerpers::divide(a_digits, b.value * sign_b);
2022-10-28 12:31:03 +00:00
2022-11-11 20:59:03 +00:00
while (scale_a > scale_b + result_scale)
2022-10-19 21:56:52 +00:00
{
2022-10-28 12:31:03 +00:00
--scale_a;
divided.pop_back();
2022-10-19 21:56:52 +00:00
}
2022-10-18 12:38:48 +00:00
if (divided.size() > 76)
2022-10-19 21:56:52 +00:00
throw DB::Exception("Numeric overflow: result bigger that Decimal256", ErrorCodes::DECIMAL_OVERFLOW);
2022-10-18 12:38:48 +00:00
return Decimal256(sign_a * sign_b * DecimalOpHerpers::fromDigits(divided));
}
};
2022-10-19 11:00:46 +00:00
2022-10-18 12:38:48 +00:00
struct MultiplyDecimalsImpl
{
static constexpr auto name = "multiplyDecimal";
template <typename FirstType, typename SecondType>
static inline NO_SANITIZE_UNDEFINED Decimal256
execute(FirstType a, SecondType b, UInt16 scale_a, UInt16 scale_b, UInt16 result_scale)
{
if (a.value == 0 || b.value == 0)
return Decimal256(0);
2022-10-18 12:38:48 +00:00
Int8 sign_a = a.value < 0 ? -1 : 1;
Int8 sign_b = b.value < 0 ? -1 : 1;
2022-10-28 12:31:03 +00:00
std::vector<UInt8> a_digits = DecimalOpHerpers::toDigits(a.value * sign_a);
std::vector<UInt8> b_digits = DecimalOpHerpers::toDigits(b.value * sign_b);
2022-10-18 12:38:48 +00:00
std::vector<UInt8> multiplied = DecimalOpHerpers::multiply(a_digits, b_digits);
2022-10-19 21:56:52 +00:00
UInt16 product_scale = scale_a + scale_b;
while (product_scale < result_scale)
2022-10-19 21:56:52 +00:00
{
multiplied.push_back(0);
++product_scale;
2022-10-19 21:56:52 +00:00
}
while (product_scale > result_scale)
2022-10-19 21:56:52 +00:00
{
multiplied.pop_back();
--product_scale;
2022-10-19 21:56:52 +00:00
}
2022-10-18 12:38:48 +00:00
if (multiplied.size() > 76)
throw DB::Exception("Numeric overflow: result bigger that Decimal256", ErrorCodes::DECIMAL_OVERFLOW);
2022-10-18 12:38:48 +00:00
return Decimal256(sign_a * sign_b * DecimalOpHerpers::fromDigits(multiplied));
}
};
template <typename ResultType, typename Transform>
struct Processor
{
const Transform transform;
explicit Processor(Transform transform_)
: transform(std::move(transform_))
{}
template <typename FirstArgVectorType, typename SecondArgType>
void NO_INLINE
vectorConstant(const FirstArgVectorType & vec_first, const SecondArgType second_value,
PaddedPODArray<typename ResultType::FieldType> & vec_to, UInt16 scale_a, UInt16 scale_b, UInt16 result_scale) const
{
size_t size = vec_first.size();
vec_to.resize(size);
for (size_t i = 0; i < size; ++i)
vec_to[i] = transform.execute(vec_first[i], second_value, scale_a, scale_b, result_scale);
}
template <typename FirstArgVectorType, typename SecondArgVectorType>
void NO_INLINE NO_SANITIZE_UNDEFINED
vectorVector(const FirstArgVectorType & vec_first, const SecondArgVectorType & vec_second,
PaddedPODArray<typename ResultType::FieldType> & vec_to, UInt16 scale_a, UInt16 scale_b, UInt16 result_scale) const
{
size_t size = vec_first.size();
vec_to.resize(size);
for (size_t i = 0; i < size; ++i)
vec_to[i] = transform.execute(vec_first[i], vec_second[i], scale_a, scale_b, result_scale);
}
template <typename FirstArgType, typename SecondArgVectorType>
void NO_INLINE NO_SANITIZE_UNDEFINED
constantVector(const FirstArgType & first_value, const SecondArgVectorType & vec_second,
PaddedPODArray<typename ResultType::FieldType> & vec_to, UInt16 scale_a, UInt16 scale_b, UInt16 result_scale) const
{
size_t size = vec_second.size();
vec_to.resize(size);
for (size_t i = 0; i < size; ++i)
vec_to[i] = transform.execute(first_value, vec_second[i], scale_a, scale_b, result_scale);
}
};
template <typename FirstArgType, typename SecondArgType, typename ResultType, typename Transform>
struct DecimalArithmeticsImpl
{
static ColumnPtr execute(Transform transform, const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type)
{
using FirstArgValueType = typename FirstArgType::FieldType;
using FirstArgColumnType = typename FirstArgType::ColumnType;
using SecondArgValueType = typename SecondArgType::FieldType;
using SecondArgColumnType = typename SecondArgType::ColumnType;
using ResultColumnType = typename ResultType::ColumnType;
UInt16 scale_a = getDecimalScale(*arguments[0].type);
UInt16 scale_b = getDecimalScale(*arguments[1].type);
UInt16 result_scale = getDecimalScale(*result_type->getPtr());
auto op = Processor<ResultType, Transform>{std::move(transform)};
auto result_col = result_type->createColumn();
auto col_to = assert_cast<ResultColumnType *>(result_col.get());
const auto * first_col = checkAndGetColumn<FirstArgColumnType>(arguments[0].column.get());
const auto * second_col = checkAndGetColumn<SecondArgColumnType>(arguments[1].column.get());
const auto * first_col_const = typeid_cast<const ColumnConst *>(arguments[0].column.get());
const auto * second_col_const = typeid_cast<const ColumnConst *>(arguments[1].column.get());
if (first_col)
{
if (second_col_const)
op.vectorConstant(first_col->getData(), second_col_const->template getValue<SecondArgValueType>(), col_to->getData(), scale_a, scale_b, result_scale);
else
op.vectorVector(first_col->getData(), second_col->getData(), col_to->getData(), scale_a, scale_b, result_scale);
}
else if (first_col_const)
{
op.constantVector(first_col_const->template getValue<FirstArgValueType>(), second_col->getData(), col_to->getData(), scale_a, scale_b, result_scale);
}
else
{
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Illegal column {} of first argument of function {}",
arguments[0].column->getName(), Transform::name);
}
return result_col;
}
};
template <typename Transform>
class FunctionsDecimalArithmetics : public IFunction
{
public:
static constexpr auto name = Transform::name;
static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionsDecimalArithmetics>(); }
String getName() const override
{
return name;
}
bool isVariadic() const override { return true; }
size_t getNumberOfArguments() const override { return 0; }
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
{
2022-10-19 11:00:46 +00:00
if (arguments.size() != 2 && arguments.size() != 3)
2022-10-18 12:38:48 +00:00
throw Exception("Number of arguments for function " + getName() + " does not match: 2 or 3 expected",
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
if (!isDecimal(arguments[0].type) || !isDecimal(arguments[1].type))
throw Exception("Arguments for " + getName() + " function must be Decimal", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
if (arguments.size() == 3 && !isUnsignedInteger(arguments[2].type))
2022-10-19 11:00:46 +00:00
throw Exception("Illegal type " + arguments[2].type->getName() + " of third argument of function " + getName() +
". Should be constant Integer from range[0, 76]", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
2022-10-18 12:38:48 +00:00
2022-11-11 22:52:36 +00:00
UInt16 scale = arguments.size() == 3 ? checkAndGetColumnConst<ColumnConst>(arguments[2].column.get())->getValue<UInt16>() :
2022-10-18 12:38:48 +00:00
std::max(getDecimalScale(*arguments[0].type->getPtr()), getDecimalScale(*arguments[1].type->getPtr()));
/**
At compile time, result is unknown. We only know the Scale (number of fractional digits) at runtime.
Also nothing is known about size of whole part.
As in simple division/multiplication for decimals, we scale the result up, but is is explicit here and no downscale is performed.
It guarantees that result will have given scale and it can also be MANUALLY converted to other decimal types later.
**/
2022-11-11 22:52:36 +00:00
if (scale > DecimalUtils::max_precision<Decimal256>)
throw Exception("Illegal value of third argument of function " + this->getName() + ": must be integer in range [0, 76]",
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
2022-10-18 12:38:48 +00:00
2022-11-11 22:52:36 +00:00
return std::make_shared<DataTypeDecimal256>(DecimalUtils::max_precision<Decimal256>, scale);
2022-10-18 12:38:48 +00:00
}
bool useDefaultImplementationForConstants() const override { return true; }
ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {2}; }
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type, size_t /*input_rows_count*/) const override
{
return resolveOverload(arguments, result_type);
}
private:
//long resolver to call proper templated func
ColumnPtr resolveOverload(const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type) const
{
WhichDataType which_divident(arguments[0].type.get());
WhichDataType which_divisor(arguments[1].type.get());
if (which_divident.isDecimal32())
{
using DividentType = DataTypeDecimal32;
if (which_divisor.isDecimal32())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal32, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal64())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal64, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal128())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal128, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal256())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal256, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
}
else if (which_divident.isDecimal64())
{
using DividentType = DataTypeDecimal64;
if (which_divisor.isDecimal32())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal32, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal64())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal64, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal128())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal128, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal256())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal256, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
}
else if (which_divident.isDecimal128())
{
using DividentType = DataTypeDecimal128;
if (which_divisor.isDecimal32())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal32, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal64())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal64, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal128())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal128, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal256())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal256, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
}
else if (which_divident.isDecimal256())
{
using DividentType = DataTypeDecimal256;
if (which_divisor.isDecimal32())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal32, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal64())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal64, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal128())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal128, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
else if (which_divisor.isDecimal256())
return DecimalArithmeticsImpl<DividentType, DataTypeDecimal256, DataTypeDecimal256, Transform>::execute(Transform{}, arguments, result_type);
}
2022-10-28 12:31:03 +00:00
// the compiler is happy now
2022-10-18 12:38:48 +00:00
return nullptr;
}
};
}