123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- // (c) Daniel Llorens - 2017
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- /// @file iterator.H
- /// @brief Array iterator for SmallView, plus row-major STL iterator.
- #pragma once
- #include "ra/traits.H"
- #include "ra/opcheck.H"
- #include <iostream>
- #ifdef RA_CHECK_BOUNDS
- #define RA_CHECK_BOUNDS_RA_ITERATOR_SMALL RA_CHECK_BOUNDS
- #else
- #ifndef RA_CHECK_BOUNDS_RA_ITERATOR_SMALL
- #define RA_CHECK_BOUNDS_RA_ITERATOR_SMALL 1
- #endif
- #endif
- #if RA_CHECK_BOUNDS_RA_ITERATOR_SMALL==0
- #define CHECK_BOUNDS( cond )
- #else
- #define CHECK_BOUNDS( cond ) assert( cond )
- #endif
- namespace ra {
- template <class I> struct Print_iterator_small { I i; };
- template <class I> auto print_iterator_small(I && i) { return Print_iterator_small<I> { std::forward<I>(i) }; }
- template <class I>
- std::ostream & operator<<(std::ostream & o, Print_iterator_small<I> && p)
- {
- o << "we'll see";
- return o;
- }
- // V is SmallBase (FIXME so why parameterize? apparently only for order-of-decl.)
- // Child is ra_iterator_small
- template <class V, rank_t cellr_, class Child>
- struct cell_iterator_small
- {
- constexpr static rank_t cellr_spec = cellr_;
- static_assert(cellr_spec!=RANK_ANY && cellr_spec!=RANK_BAD, "bad cell rank");
- constexpr static rank_t fullr = V::rank_s();
- constexpr static rank_t cellr = dependent_cell_rank(fullr, cellr_spec);
- constexpr static rank_t framer = dependent_frame_rank(fullr, cellr_spec);
- static_assert(cellr>=0 || cellr==RANK_ANY, "bad cell rank");
- static_assert(framer>=0 || framer==RANK_ANY, "bad frame rank");
- static_assert(fullr==cellr || gt_rank(fullr, cellr), "bad cell rank");
- constexpr static rank_t rank_s() { return framer; }
- constexpr rank_t rank() const { return dependent_frame_rank(rank_t(dim.size()), cellr_spec); }
- using shape_type = mp::If_<rank_s()==DIM_ANY, std::vector<dim_t>, Small<dim_t, rank_s()>>;
- using dims_p = decltype(std::declval<V const>().dim); // FIXME can this be & ?
- using atom_type = typename ra_traits<V>::value_type;
- using cell_type = SmallView<atom_type, mp::Drop_<typename V::sizes, typename V::strides> >;
- using value_type = mp::If_<cellr==0, atom_type, cell_type>;
- dims_p dim; // FIXME take V & and ask through that. Should be const.
- cell_type c;
- constexpr cell_iterator_small() { c.p = nullptr; } // end marker only.
- constexpr cell_iterator_small(cell_iterator_small const & ci): dim(ci.dim), c { ci.c.dim, ci.c.p } {}
- constexpr cell_iterator_small & operator=(cell_iterator_small const & ci) = delete;
- // needed because View = View copies contents, not the View itself [ra11]
- constexpr cell_iterator_small & assign(cell_iterator_small const & ci) { dim = ci.dim; c.dim = ci.c.dim; c.p = ci.c.p; return *this; }
- // s_ is array's full shape; split it into dim/i (frame) and c (cell).
- template <class SS> constexpr
- cell_iterator_small(SS const & s_, atom_type * p_): dim(s_)
- {
- rank_t const rank = this->rank();
- c.p = p_; // see stl_iterator for the case of s_[0]=0, etc. [ra12].
- rank_t const cellr = dependent_cell_rank(rank_t(dim.size()), cellr_spec);
- resize(c.dim, cellr);
- for (int k=0; k<cellr; ++k) {
- c.dim[k] = s_[k+rank];
- }
- }
- constexpr static dim_t size_s()
- {
- constexpr dim_t fullsize_s = ra_traits<V>::size_s();
- return fullsize_s==DIM_ANY ? DIM_ANY : fullsize_s / ra_traits<cell_type>::size_s();
- }
- constexpr shape_type shape() const
- {
- rank_t const iend = rank();
- shape_type s(ra_traits<shape_type>::make(iend));
- for (rank_t i=0; i!=iend; ++i) {
- s[i] = dim[i].size;
- }
- return s;
- }
- constexpr dim_t size(int j) const { CHECK_BOUNDS(inside(j, rank())); return dim[j].size; }
- constexpr dim_t stride(int j) const { return j<rank() ? dim[j].stride : 0; }
- constexpr bool keep_stride(dim_t step, int z, int j) const { return step*stride(z)==stride(j); }
- constexpr void adv(rank_t k, dim_t d) { c.p += stride(k)*d; }
- };
- #define DEF_ASSIGNOPS(OP) \
- template <class X> void operator OP(X && x) \
- { for_each([](auto && y, auto && x) { std::forward<decltype(y)>(y) OP x; }, *this, x); } \
- template <class X> void operator OP(ra_iterator_small const & x) \
- { for_each([](auto && y, auto && x) { std::forward<decltype(y)>(y) OP x; }, *this, x); }
- template <class C>
- struct CellFlat
- {
- C c;
- constexpr void operator+=(dim_t const s) { c.p += s; }
- constexpr C & operator*() { return c; }
- };
- template <class V, rank_t cellr=0>
- struct ra_iterator_small: public cell_iterator_small<V, cellr, ra_iterator_small<V, cellr>>
- {
- using P = cell_iterator_small<V, cellr, ra_iterator_small<V, cellr>>;
- ra_iterator_small(): P() {};
- template <class SS> ra_iterator_small(SS const & s_, typename P::atom_type * p_): P(s_, p_) {};
- auto flat() const { return CellFlat<typename P::cell_type> { P::c }; }
- // Return type to allow either View & or View const & verb. Can't set self b/c original p isn't kept. TODO Think this over.
- template <class I>
- decltype(auto) at(I const & i_)
- {
- CHECK_BOUNDS(P::rank()<=dim_t(i_.size()) && "too few indices");
- return typename P::cell_type { P::c.dim, P::c.p+Indexer1::index_short(P::rank(), P::dim, i_) };
- }
- decltype(auto) operator_star() const { return P::c; }
- decltype(auto) operator_star() { return P::c; }
- FOR_EACH(DEF_ASSIGNOPS, =, *=, +=, -=, /=)
- };
- template <class V>
- struct ra_iterator_small<V, 0>: public cell_iterator_small<V, 0, ra_iterator_small<V, 0>>
- {
- using P = cell_iterator_small<V, 0, ra_iterator_small<V, 0>>;
- ra_iterator_small(): P() {};
- template <class SS> ra_iterator_small(SS const & s_, typename P::atom_type * p_): P(s_, p_) {};
- auto flat() const { return P::c.p; }
- template <class I>
- decltype(auto) at(I const & i_)
- {
- CHECK_BOUNDS(P::rank()<=rank_t(i_.size()) && "too few indices");
- return P::c.p[Indexer1::index_short(P::rank(), P::dim, i_)];
- }
- decltype(auto) operator_star() const { return *P::c.p; }
- decltype(auto) operator_star() { return *P::c.p; }
- FOR_EACH(DEF_ASSIGNOPS, =, *=, +=, -=, /=)
- };
- #undef DEF_ASSIGNOPS
- template <class Iterator>
- struct stl_iterator_small
- {
- using value_type = typename Iterator::value_type;
- using difference_type = dim_t;
- using pointer = value_type *;
- using reference = value_type &;
- using const_reference = value_type const &;
- using iterator_category = std::forward_iterator_tag;
- using shape_type = typename Iterator::P::shape_type;
- Iterator ii;
- shape_type i;
- stl_iterator_small(): ii() {};
- // be careful to avoid ii = it.ii, see [ra11] above.
- stl_iterator_small(stl_iterator_small const & it) = default;
- stl_iterator_small & operator=(stl_iterator_small const & it) { i=it.i; ii.assign(it.ii); return *this; }
- template <class SS> stl_iterator_small(SS const & s_, typename Iterator::P::atom_type * p_)
- : ii(s_, p_), i(ra::ra_traits<shape_type>::make(dependent_frame_rank(s_.size(), ii.cellr_spec), 0))
- {
- // [ra12] so begin()==end() for un-plied iterator on empty range. For plying sizes are used instead, so we don't care.
- for (auto dim: s_) {
- if (dim.size==0) {
- ii.c.p = nullptr;
- break;
- }
- }
- };
- template <class PP> bool operator==(PP const & j) const { return ii.c.p==j.ii.c.p; }
- template <class PP> bool operator!=(PP const & j) const { return ii.c.p!=j.ii.c.p; }
- // taken from Iterator to handle the special case for cellr=0.
- decltype(auto) operator*() const { return ii.operator_star(); }
- decltype(auto) operator*() { return ii.operator_star(); }
- stl_iterator_small & operator++()
- {
- next_in_cube(ii.rank(), ii.dim, i, ii.c.p);
- return *this;
- }
- };
- template <int cell_rank, class A> inline constexpr
- auto iter(A && a) { return a.template iter<cell_rank>(); }
- } // namespace ra
- #undef CHECK_BOUNDS
- #undef RA_CHECK_BOUNDS_RA_ITERATOR_SMALL
|