// -*- C++ -*- #ifndef __block_h__ #define __block_h__ #include #include #include "base_def.h" namespace MultiArrayHelper { enum class BlockType { INDEF = 0, BLOCK = 1, VALUE = 2, SPLIT = 3, RESULT = 4 }; // manage vectorization in the future !! template class BlockBase { public: BlockBase() = default; BlockBase(size_t size); virtual BlockType type() const = 0; virtual size_t size() const; virtual const T& operator[](size_t pos) const = 0; template BlockResult operate(const BlockBase& in); protected: size_t mSize; }; template class Block : public BlockBase { public: Block() = default; Block(const std::vector& data, size_t begPos, size_t size); virtual BlockType type() const override; virtual const T& operator[](size_t pos) const override; protected: T* mBegPtr; }; template class BlockValue : public BlockBase { public: BlockValue() = default; BlockValue(const T& val, size_t size); virtual BlockType type() const override; virtual const T& operator[](size_t pos) const override; virtual BlockBase& set(size_t begPos) override; protected: T mVal; }; template class SplitBlock : public BlockBase { public: SplitBlock() = default; SplitBlock(std::vector&& begPtrVec); virtual BlockType type() const override; virtual const T& operator[](size_t pos) const override; virtual BlockBase& set(size_t begPos) override; protected: std::vector mBegPtrVec; }; template class BlockResult : public BlockBase { public: BlockResult() = default; BlockResult(size_t size); virtual BlockType type() const override; virtual const T& operator[](size_t pos) const override; virtual T& operator[](size_t i); virtual BlockBase& set(size_t begPos) override; protected: std::vector mRes; }; } // end namespace MultiArrayHelper #include "block.cc" #endif