#pragma once #include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } namespace Conditional { namespace { template 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 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 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 class IArraySource { public: virtual void next() = 0; virtual Chunk get() const = 0; virtual size_t getDataSize() const = 0; virtual bool isConst() const = 0; virtual ~IArraySource() {} }; template using IArraySourcePtr = std::unique_ptr >; template using IArraySources = std::vector >; /// Column type-specific implementation of IArraySource for arrays. template class ArraySource final : public IArraySource { public: ArraySource(const PaddedPODArray & 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 get() const override { const TType * pos_begin = &data[prev_offset]; const TType * pos_end = pos_begin + (offsets[i] - prev_offset); std::function get_value = [pos_begin](size_t j) { return static_cast(*(pos_begin + j)); }; size_t size = pos_end - pos_begin; return Chunk{get_value, size}; }; size_t getDataSize() const override { return data.size(); } bool isConst() const override { return false; } private: const PaddedPODArray & 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 class ConstArraySource final : public IArraySource { 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 get() const override { if (!converted) { converted = std::make_unique >(array.size()); size_t size = array.size(); for (size_t i = 0; i < size; ++i) (*converted)[i] = array[i].template get::Type>(); } 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 > converted; }; /// Access provider to the target array that receives the results of the /// execution of the function multiIf. template class ArraySink { public: ArraySink(PaddedPODArray & data_, ColumnArray::Offsets_t & offsets_, size_t data_size_, size_t offsets_size_) : data{data_}, offsets{offsets_} { offsets.resize(offsets_size_); data.reserve(data_size_); } ArraySink(const ArraySink &) = delete; ArraySink & operator=(const ArraySink &) = delete; ArraySink(ArraySink &&) = default; ArraySink & operator=(ArraySink &&) = default; void store(const Chunk & chunk) { data.resize(data.size() + chunk.getSize()); if (chunk.isConst()) { /// Copy from const. memcpySmallAllowReadWriteOverflow15(&data[prev_offset], chunk.data(), chunk.getSize() * sizeof(typename Chunk::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 & 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 class ArraySourceCreator final { public: static bool execute(IArraySources & sources, const Block & block, const ColumnNumbers & args, const Branch & br) { auto type_name = br.type->getName(); if (TypeName::get() == type_name) { const IColumn * col = block.getByPosition(args[br.index]).column.get(); const ColumnArray * col_array = typeid_cast(col); const ColumnConstArray * col_const_array = typeid_cast(col); IArraySourcePtr source; if (col_array != nullptr) { const ColumnVector * content = typeid_cast *>(&col_array->getData()); if (content == nullptr) throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR}; source = std::make_unique >(content->getData(), col_array->getOffsets()); } else if (col_const_array != nullptr) source = std::make_unique >(col_const_array->getData()); sources.push_back(std::move(source)); return true; } else return false; } }; const Array null_array{Null()}; /// Case for null sources. template class ArraySourceCreator final { public: static bool execute(IArraySources & sources, const Block & block, const ColumnNumbers & args, const Branch & br) { auto type_name = br.type->getName(); if (TypeName::get() == type_name) { const IColumn * col = block.getByPosition(args[br.index]).column.get(); const ColumnNull * null_col = typeid_cast(col); if (null_col == nullptr) throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR}; IArraySourcePtr source; source = std::make_unique >(null_array); sources.push_back(std::move(source)); return true; } else return false; } }; } /// Processing of multiIf in the case of numeric array types. template class ArrayEvaluator final { public: static void perform(const Branches & branches, Block & block, const ColumnNumbers & args, size_t result, NullMapBuilder & builder) { const CondSources conds = createConds(block, args); size_t row_count = conds[0].getSize(); IArraySources sources = createSources(block, args, branches); ArraySink sink = createSink(block, sources, result, row_count); if (builder) builder.init(args); 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()); if (builder) builder.update(args[branches[cur_source].index], cur_row); has_triggered_cond = true; break; } ++cur_source; } if (!has_triggered_cond) { sink.store(sources.back()->get()); if (builder) builder.update(args[branches.back().index], cur_row); } 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 createSources(const Block & block, const ColumnNumbers & args, const Branches & branches) { IArraySources sources; sources.reserve(branches.size()); for (const auto & br : branches) { if (! (ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br) || ArraySourceCreator::execute(sources, block, args, br))) throw Exception{"Internal error", ErrorCodes::LOGICAL_ERROR}; } return sources; } static size_t computeResultSize(const IArraySources & 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 createSink(Block & block, const IArraySources & sources, size_t result, size_t row_count) { size_t offsets_size = row_count; size_t data_size = computeResultSize(sources, row_count); auto col_res_vec = std::make_shared>(); auto col_res_array = std::make_shared(col_res_vec); block.getByPosition(result).column = col_res_array; return ArraySink{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 { public: /// 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) { throw CondException{CondErrorCodes::ARRAY_EVALUATOR_INVALID_TYPES}; } }; } }