2019-06-20 09:12:49 +00:00
|
|
|
#include "config_functions.h"
|
2018-10-12 08:46:53 +00:00
|
|
|
#if USE_BASE64
|
2018-10-10 01:04:07 +00:00
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionHelpers.h>
|
|
|
|
#include <Functions/GatherUtils/Algorithms.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
2019-12-25 19:44:00 +00:00
|
|
|
#include <turbob64.h>
|
2018-10-10 01:04:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
using namespace GatherUtils;
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int ILLEGAL_COLUMN;
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
extern const int INCORRECT_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Base64Encode
|
|
|
|
{
|
|
|
|
static constexpr auto name = "base64Encode";
|
2018-11-02 19:06:05 +00:00
|
|
|
static size_t getBufferSize(size_t string_length, size_t string_count)
|
|
|
|
{
|
2018-11-24 01:48:06 +00:00
|
|
|
return ((string_length - string_count) / 3 + string_count) * 4 + string_count;
|
2018-11-02 19:06:05 +00:00
|
|
|
}
|
2018-10-10 01:04:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Base64Decode
|
|
|
|
{
|
|
|
|
static constexpr auto name = "base64Decode";
|
2018-11-02 19:06:05 +00:00
|
|
|
|
|
|
|
static size_t getBufferSize(size_t string_length, size_t string_count)
|
|
|
|
{
|
2018-11-24 01:48:06 +00:00
|
|
|
return ((string_length - string_count) / 4 + string_count) * 3 + string_count;
|
2018-11-02 19:06:05 +00:00
|
|
|
}
|
2018-10-10 01:04:07 +00:00
|
|
|
};
|
|
|
|
|
2018-11-02 19:06:05 +00:00
|
|
|
struct TryBase64Decode
|
|
|
|
{
|
|
|
|
static constexpr auto name = "tryBase64Decode";
|
|
|
|
|
|
|
|
static size_t getBufferSize(size_t string_length, size_t string_count)
|
|
|
|
{
|
|
|
|
return Base64Decode::getBufferSize(string_length, string_count);
|
|
|
|
}
|
|
|
|
};
|
2018-10-10 01:04:07 +00:00
|
|
|
|
|
|
|
template <typename Func>
|
|
|
|
class FunctionBase64Conversion : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = Func::name;
|
|
|
|
|
|
|
|
static FunctionPtr create(const Context &)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionBase64Conversion>();
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return Func::name;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-10-11 16:22:50 +00:00
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2018-10-10 01:04:07 +00:00
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
|
|
|
|
{
|
|
|
|
if (!WhichDataType(arguments[0].type).isString())
|
|
|
|
throw Exception(
|
|
|
|
"Illegal type " + arguments[0].type->getName() + " of 1 argument of function " + getName() + ". Must be String.",
|
|
|
|
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_string = block.getByPosition(arguments[0]).column;
|
|
|
|
const ColumnString * input = checkAndGetColumn<ColumnString>(column_string.get());
|
|
|
|
|
|
|
|
if (!input)
|
|
|
|
throw Exception(
|
|
|
|
"Illegal column " + block.getByPosition(arguments[0]).column->getName() + " of first argument of function " + getName(),
|
|
|
|
ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
|
|
|
|
auto dst_column = ColumnString::create();
|
|
|
|
auto & dst_data = dst_column->getChars();
|
|
|
|
auto & dst_offsets = dst_column->getOffsets();
|
|
|
|
|
2018-11-02 19:06:05 +00:00
|
|
|
size_t reserve = Func::getBufferSize(input->getChars().size(), input->size());
|
2018-10-10 01:04:07 +00:00
|
|
|
dst_data.resize(reserve);
|
|
|
|
dst_offsets.resize(input_rows_count);
|
|
|
|
|
|
|
|
const ColumnString::Offsets & src_offsets = input->getOffsets();
|
|
|
|
|
2019-12-25 19:44:00 +00:00
|
|
|
auto source = input->getChars().data();
|
|
|
|
auto dst = dst_data.data();
|
2018-10-10 01:04:07 +00:00
|
|
|
auto dst_pos = dst;
|
|
|
|
|
|
|
|
size_t src_offset_prev = 0;
|
|
|
|
|
|
|
|
for (size_t row = 0; row < input_rows_count; ++row)
|
|
|
|
{
|
|
|
|
size_t srclen = src_offsets[row] - src_offset_prev - 1;
|
|
|
|
size_t outlen = 0;
|
|
|
|
|
|
|
|
if constexpr (std::is_same_v<Func, Base64Encode>)
|
|
|
|
{
|
2020-02-22 08:44:23 +00:00
|
|
|
outlen = _tb64e(reinterpret_cast<const uint8_t *>(source), srclen, reinterpret_cast<uint8_t *>(dst_pos));
|
2018-10-10 01:04:07 +00:00
|
|
|
}
|
2018-11-02 19:06:05 +00:00
|
|
|
else if constexpr (std::is_same_v<Func, Base64Decode>)
|
2018-10-10 01:04:07 +00:00
|
|
|
{
|
2019-12-25 19:44:00 +00:00
|
|
|
if (srclen > 0)
|
2018-10-10 01:04:07 +00:00
|
|
|
{
|
2020-02-22 08:44:23 +00:00
|
|
|
outlen = _tb64d(reinterpret_cast<const uint8_t *>(source), srclen, reinterpret_cast<uint8_t *>(dst_pos));
|
2019-12-25 19:44:00 +00:00
|
|
|
if (!outlen)
|
|
|
|
throw Exception("Failed to " + getName() + " input '" + String(reinterpret_cast<const char *>(source), srclen) + "'", ErrorCodes::INCORRECT_DATA);
|
2018-10-10 01:04:07 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-02 19:06:05 +00:00
|
|
|
else
|
|
|
|
{
|
2019-12-25 19:44:00 +00:00
|
|
|
if (srclen > 0)
|
2018-11-02 19:06:05 +00:00
|
|
|
{
|
2019-12-25 19:44:00 +00:00
|
|
|
// during decoding character array can be partially polluted
|
|
|
|
// if fail, revert back and clean
|
|
|
|
auto savepoint = dst_pos;
|
2020-02-22 08:44:23 +00:00
|
|
|
outlen = _tb64d(reinterpret_cast<const uint8_t *>(source), srclen, reinterpret_cast<uint8_t *>(dst_pos));
|
2019-12-25 19:44:00 +00:00
|
|
|
if (!outlen)
|
|
|
|
{
|
|
|
|
outlen = 0;
|
|
|
|
dst_pos = savepoint;
|
|
|
|
// clean the symbol
|
|
|
|
dst_pos[0] = 0;
|
|
|
|
}
|
2018-11-02 19:06:05 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-10 01:04:07 +00:00
|
|
|
|
|
|
|
source += srclen + 1;
|
|
|
|
dst_pos += outlen + 1;
|
|
|
|
|
|
|
|
dst_offsets[row] = dst_pos - dst;
|
|
|
|
src_offset_prev = src_offsets[row];
|
|
|
|
}
|
|
|
|
|
|
|
|
dst_data.resize(dst_pos - dst);
|
|
|
|
|
|
|
|
block.getByPosition(result).column = std::move(dst_column);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2019-12-26 01:42:51 +00:00
|
|
|
|
2018-11-23 18:54:23 +00:00
|
|
|
#endif
|