2016-04-18 14:31:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-05-03 23:19:14 +00:00
|
|
|
#include <DB/Functions/Conditional/CondException.h>
|
2016-04-18 14:31:32 +00:00
|
|
|
#include <DB/Functions/Conditional/common.h>
|
2016-08-18 14:25:02 +00:00
|
|
|
#include <DB/Functions/Conditional/NullMapBuilder.h>
|
2016-04-18 14:31:32 +00:00
|
|
|
#include <DB/Functions/Conditional/CondSource.h>
|
|
|
|
#include <DB/DataTypes/DataTypeArray.h>
|
|
|
|
#include <DB/Columns/ColumnVector.h>
|
|
|
|
#include <DB/Columns/ColumnArray.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Conditional
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
template <typename TType>
|
|
|
|
class Chunk
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using value_type = TType;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Chunk(TType * pos_begin_, size_t size_)
|
|
|
|
: pos_begin{pos_begin_}, size{size_}, is_const{true}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk(std::function<TType(size_t)> accessor_, size_t size_)
|
|
|
|
: accessor{accessor_}, size{size_}, is_const{false}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk(const Chunk &) = delete;
|
|
|
|
Chunk & operator=(const Chunk &) = delete;
|
|
|
|
|
|
|
|
Chunk(Chunk &&) = default;
|
|
|
|
Chunk & operator=(Chunk &&) = default;
|
|
|
|
|
|
|
|
inline TType * data() const
|
|
|
|
{
|
|
|
|
return pos_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline TType operator[](size_t j) const
|
|
|
|
{
|
|
|
|
return accessor(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t getSize() const
|
|
|
|
{
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isConst() const
|
|
|
|
{
|
|
|
|
return is_const;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TType * pos_begin = nullptr;
|
|
|
|
std::function<TType(size_t)> accessor;
|
|
|
|
size_t size;
|
|
|
|
bool is_const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// This class provides type-independent access to the values of a numeric array
|
|
|
|
/// branch (then, else) column. Returned values have the type TResult.
|
|
|
|
template <typename TResult>
|
|
|
|
class IArraySource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void next() = 0;
|
|
|
|
virtual Chunk<TResult> get() const = 0;
|
|
|
|
virtual size_t getDataSize() const = 0;
|
|
|
|
virtual bool isConst() const = 0;
|
|
|
|
virtual ~IArraySource() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename TResult>
|
|
|
|
using IArraySourcePtr = std::unique_ptr<IArraySource<TResult> >;
|
|
|
|
|
|
|
|
template <typename TResult>
|
|
|
|
using IArraySources = std::vector<IArraySourcePtr<TResult> >;
|
|
|
|
|
|
|
|
/// Column type-specific implementation of IArraySource for arrays.
|
|
|
|
template <typename TResult, typename TType>
|
|
|
|
class ArraySource final : public IArraySource<TResult>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ArraySource(const PaddedPODArray<TType> & data_, const ColumnArray::Offsets_t & offsets_)
|
|
|
|
: data{data_}, offsets{offsets_}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ArraySource(const ArraySource &) = delete;
|
|
|
|
ArraySource & operator=(const ArraySource &) = delete;
|
|
|
|
|
|
|
|
ArraySource(ArraySource &&) = default;
|
|
|
|
ArraySource & operator=(ArraySource &&) = default;
|
|
|
|
|
|
|
|
void next() override
|
|
|
|
{
|
|
|
|
prev_offset = offsets[i];
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk<TResult> get() const override
|
|
|
|
{
|
|
|
|
const TType * pos_begin = &data[prev_offset];
|
|
|
|
const TType * pos_end = pos_begin + (offsets[i] - prev_offset);
|
|
|
|
|
|
|
|
std::function<TResult(size_t)> get_value = [pos_begin](size_t j)
|
|
|
|
{
|
|
|
|
return static_cast<TResult>(*(pos_begin + j));
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t size = pos_end - pos_begin;
|
|
|
|
return Chunk<TResult>{get_value, size};
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t getDataSize() const override
|
|
|
|
{
|
|
|
|
return data.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isConst() const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const PaddedPODArray<TType> & data;
|
|
|
|
const ColumnArray::Offsets_t & offsets;
|
|
|
|
ColumnArray::Offset_t prev_offset = 0;
|
|
|
|
size_t i = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Column type-specific implementation of IArraySource for constant arrays.
|
|
|
|
template <typename TResult, typename TType>
|
|
|
|
class ConstArraySource final : public IArraySource<TResult>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConstArraySource(const Array & array_)
|
|
|
|
: array{array_}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ConstArraySource(const ConstArraySource &) = delete;
|
|
|
|
ConstArraySource & operator=(const ConstArraySource &) = delete;
|
|
|
|
|
|
|
|
ConstArraySource(ConstArraySource &&) = default;
|
|
|
|
ConstArraySource & operator=(ConstArraySource &&) = default;
|
|
|
|
|
|
|
|
void next() override
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Chunk<TResult> get() const override
|
|
|
|
{
|
|
|
|
if (!converted)
|
|
|
|
{
|
|
|
|
converted = std::make_unique<PaddedPODArray<TResult> >(array.size());
|
|
|
|
size_t size = array.size();
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
2016-05-31 11:06:27 +00:00
|
|
|
(*converted)[i] = array[i].template get<typename NearestFieldType<TType>::Type>();
|
2016-04-18 14:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {converted->data(), converted->size()};
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getDataSize() const override
|
|
|
|
{
|
|
|
|
return array.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isConst() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Array & array;
|
|
|
|
mutable std::unique_ptr<PaddedPODArray<TResult> > converted;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Access provider to the target array that receives the results of the
|
|
|
|
/// execution of the function multiIf.
|
|
|
|
template <typename TResult>
|
|
|
|
class ArraySink
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ArraySink(PaddedPODArray<TResult> & data_, ColumnArray::Offsets_t & offsets_,
|
|
|
|
size_t data_size_, size_t offsets_size_)
|
|
|
|
: data{data_}, offsets{offsets_}
|
|
|
|
{
|
|
|
|
offsets.resize(offsets_size_);
|
2016-04-21 13:10:56 +00:00
|
|
|
data.reserve(data_size_);
|
2016-04-18 14:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ArraySink(const ArraySink &) = delete;
|
|
|
|
ArraySink & operator=(const ArraySink &) = delete;
|
|
|
|
|
|
|
|
ArraySink(ArraySink &&) = default;
|
|
|
|
ArraySink & operator=(ArraySink &&) = default;
|
|
|
|
|
|
|
|
void store(const Chunk<TResult> & chunk)
|
|
|
|
{
|
|
|
|
data.resize(data.size() + chunk.getSize());
|
|
|
|
|
|
|
|
if (chunk.isConst())
|
|
|
|
{
|
|
|
|
/// Copy from const.
|
|
|
|
memcpySmallAllowReadWriteOverflow15(&data[prev_offset], chunk.data(),
|
|
|
|
chunk.getSize() * sizeof(typename Chunk<TResult>::value_type));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Copy from vector.
|
|
|
|
for (size_t j = 0; j < chunk.getSize(); ++j)
|
|
|
|
data[prev_offset + j] = chunk[j];
|
|
|
|
}
|
|
|
|
|
|
|
|
prev_offset += chunk.getSize();
|
|
|
|
offsets[i] = prev_offset;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
PaddedPODArray<TResult> & data;
|
|
|
|
ColumnArray::Offsets_t & offsets;
|
|
|
|
ColumnArray::Offset_t prev_offset = 0;
|
|
|
|
size_t i = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Create a numeric array column accessor if TType is the type registered
|
|
|
|
/// in the specified branch info.
|
|
|
|
template <typename TResult, typename TType>
|
|
|
|
class ArraySourceCreator final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool execute(IArraySources<TResult> & sources, const Block & block,
|
|
|
|
const ColumnNumbers & args, const Branch & br)
|
|
|
|
{
|
|
|
|
auto type_name = br.type->getName();
|
|
|
|
if (TypeName<TType>::get() == type_name)
|
|
|
|
{
|
|
|
|
const IColumn * col = block.getByPosition(args[br.index]).column.get();
|
|
|
|
const ColumnArray * col_array = typeid_cast<const ColumnArray *>(col);
|
|
|
|
const ColumnConstArray * col_const_array = typeid_cast<const ColumnConstArray *>(col);
|
|
|
|
|
|
|
|
IArraySourcePtr<TResult> source;
|
|
|
|
|
|
|
|
if (col_array != nullptr)
|
|
|
|
{
|
|
|
|
const ColumnVector<TType> * content = typeid_cast<const ColumnVector<TType> *>(&col_array->getData());
|
|
|
|
if (content == nullptr)
|
|
|
|
throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR};
|
|
|
|
source = std::make_unique<ArraySource<TResult, TType> >(content->getData(), col_array->getOffsets());
|
|
|
|
}
|
|
|
|
else if (col_const_array != nullptr)
|
|
|
|
source = std::make_unique<ConstArraySource<TResult, TType> >(col_const_array->getData());
|
|
|
|
|
|
|
|
sources.push_back(std::move(source));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-04 15:06:27 +00:00
|
|
|
const Array null_array{Null()};
|
|
|
|
|
|
|
|
/// Case for null sources.
|
|
|
|
template <typename TResult>
|
|
|
|
class ArraySourceCreator<TResult, Null> final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool execute(IArraySources<TResult> & sources, const Block & block,
|
|
|
|
const ColumnNumbers & args, const Branch & br)
|
|
|
|
{
|
|
|
|
auto type_name = br.type->getName();
|
|
|
|
if (TypeName<Null>::get() == type_name)
|
|
|
|
{
|
|
|
|
const IColumn * col = block.getByPosition(args[br.index]).column.get();
|
|
|
|
const ColumnNull * null_col = typeid_cast<const ColumnNull *>(col);
|
|
|
|
if (null_col == nullptr)
|
|
|
|
throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR};
|
|
|
|
|
|
|
|
IArraySourcePtr<TResult> source;
|
|
|
|
source = std::make_unique<ConstArraySource<TResult, Null> >(null_array);
|
|
|
|
sources.push_back(std::move(source));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-18 14:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Processing of multiIf in the case of numeric array types.
|
|
|
|
template <typename TResult>
|
|
|
|
class ArrayEvaluator final
|
|
|
|
{
|
|
|
|
public:
|
2016-08-18 14:25:02 +00:00
|
|
|
static void perform(const Branches & branches, Block & block, const ColumnNumbers & args, size_t result, NullMapBuilder & builder)
|
2016-04-18 14:31:32 +00:00
|
|
|
{
|
|
|
|
const CondSources conds = createConds(block, args);
|
2016-04-22 10:21:52 +00:00
|
|
|
size_t row_count = conds[0].getSize();
|
2016-04-18 14:31:32 +00:00
|
|
|
IArraySources<TResult> sources = createSources(block, args, branches);
|
|
|
|
ArraySink<TResult> sink = createSink(block, sources, result, row_count);
|
|
|
|
|
2016-08-18 14:25:02 +00:00
|
|
|
if (builder)
|
|
|
|
builder.init(args);
|
2016-08-04 15:06:27 +00:00
|
|
|
|
2016-04-18 14:31:32 +00:00
|
|
|
for (size_t cur_row = 0; cur_row < row_count; ++cur_row)
|
|
|
|
{
|
|
|
|
bool has_triggered_cond = false;
|
|
|
|
|
|
|
|
size_t cur_source = 0;
|
|
|
|
for (const auto & cond : conds)
|
|
|
|
{
|
|
|
|
if (cond.get(cur_row))
|
|
|
|
{
|
|
|
|
sink.store(sources[cur_source]->get());
|
2016-08-18 14:25:02 +00:00
|
|
|
if (builder)
|
|
|
|
builder.update(args[branches[cur_source].index], cur_row);
|
2016-04-18 14:31:32 +00:00
|
|
|
has_triggered_cond = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++cur_source;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!has_triggered_cond)
|
2016-08-04 15:06:27 +00:00
|
|
|
{
|
2016-04-18 14:31:32 +00:00
|
|
|
sink.store(sources.back()->get());
|
2016-08-18 14:25:02 +00:00
|
|
|
if (builder)
|
|
|
|
builder.update(args[branches.back().index], cur_row);
|
2016-08-04 15:06:27 +00:00
|
|
|
}
|
2016-04-18 14:31:32 +00:00
|
|
|
|
|
|
|
for (auto & source : sources)
|
|
|
|
source->next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Create accessors for condition values.
|
|
|
|
static CondSources createConds(const Block & block, const ColumnNumbers & args)
|
|
|
|
{
|
|
|
|
CondSources conds;
|
|
|
|
conds.reserve(getCondCount(args));
|
|
|
|
|
|
|
|
for (size_t i = firstCond(); i < elseArg(args); i = nextCond(i))
|
|
|
|
conds.emplace_back(block, args, i);
|
|
|
|
return conds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create accessors for branch values.
|
|
|
|
static IArraySources<TResult> createSources(const Block & block,
|
|
|
|
const ColumnNumbers & args, const Branches & branches)
|
|
|
|
{
|
|
|
|
IArraySources<TResult> sources;
|
|
|
|
sources.reserve(branches.size());
|
|
|
|
|
|
|
|
for (const auto & br : branches)
|
|
|
|
{
|
2016-05-03 23:19:14 +00:00
|
|
|
if (! (ArraySourceCreator<TResult, UInt8>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, UInt16>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, UInt32>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, UInt64>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Int8>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Int16>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Int32>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Int64>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Float32>::execute(sources, block, args, br)
|
2016-08-04 15:06:27 +00:00
|
|
|
|| ArraySourceCreator<TResult, Float64>::execute(sources, block, args, br)
|
|
|
|
|| ArraySourceCreator<TResult, Null>::execute(sources, block, args, br)))
|
2016-04-18 14:31:32 +00:00
|
|
|
throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR};
|
|
|
|
}
|
|
|
|
|
|
|
|
return sources;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t computeResultSize(const IArraySources<TResult> & sources, size_t row_count)
|
|
|
|
{
|
|
|
|
size_t max_var = 0;
|
|
|
|
size_t max_const = 0;
|
|
|
|
|
|
|
|
for (const auto & source : sources)
|
|
|
|
{
|
|
|
|
if (source->isConst())
|
|
|
|
max_const = std::max(max_const, source->getDataSize());
|
|
|
|
else
|
|
|
|
max_var = std::max(max_var, source->getDataSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_var > 0)
|
|
|
|
return max_var;
|
|
|
|
else if (max_const > 0)
|
|
|
|
return max_const * row_count;
|
|
|
|
else
|
|
|
|
throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create the result column.
|
|
|
|
static ArraySink<TResult> createSink(Block & block, const IArraySources<TResult> & sources,
|
|
|
|
size_t result, size_t row_count)
|
|
|
|
{
|
|
|
|
size_t offsets_size = row_count;
|
|
|
|
size_t data_size = computeResultSize(sources, row_count);
|
|
|
|
|
2016-05-28 05:31:36 +00:00
|
|
|
auto col_res_vec = std::make_shared<ColumnVector<TResult>>();
|
|
|
|
auto col_res_array = std::make_shared<ColumnArray>(col_res_vec);
|
2016-04-18 14:31:32 +00:00
|
|
|
block.getByPosition(result).column = col_res_array;
|
|
|
|
|
|
|
|
return ArraySink<TResult>{col_res_vec->getData(), col_res_array->getOffsets(),
|
|
|
|
data_size, offsets_size};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Processing of multiIf in the case of an invalid return type.
|
|
|
|
template <>
|
|
|
|
class ArrayEvaluator<NumberTraits::Error>
|
|
|
|
{
|
|
|
|
public:
|
2016-08-18 14:25:02 +00:00
|
|
|
/// For the meaning of the builder parameter, see the FunctionMultiIf::perform() declaration.
|
|
|
|
static void perform(const Branches & branches, Block & block, const ColumnNumbers & args, size_t result, NullMapBuilder & builder)
|
2016-04-18 14:31:32 +00:00
|
|
|
{
|
2016-05-03 23:19:14 +00:00
|
|
|
throw CondException{CondErrorCodes::ARRAY_EVALUATOR_INVALID_TYPES};
|
2016-04-18 14:31:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|