/* * Copyright © 2018 Google, Inc. * * This is part of HarfBuzz, a text shaping library. * * Permission is hereby granted, without written agreement and without * license or royalty fees, to use, copy, modify, and distribute this * software and its documentation for any purpose, provided that the * above copyright notice and the following two paragraphs appear in * all copies of this software. * * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * Google Author(s): Behdad Esfahbod */ #ifndef HB_ITER_HH #define HB_ITER_HH #include "hb.hh" #include "hb-meta.hh" /* Unified iterator object. * * The goal of this template is to make the same iterator interface * available to all types, and make it very easy and compact to use. * hb_iter_tator objects are small, light-weight, objects that can be * copied by value. If the collection / object being iterated on * is writable, then the iterator returns lvalues, otherwise it * returns rvalues. */ /* * Base classes for iterators. */ /* Base class for all iterators. */ template struct hb_iter_t { typedef Item item_t; static constexpr unsigned item_size = hb_static_size (Item); static constexpr bool is_iterator = true; static constexpr bool is_random_access_iterator = false; static constexpr bool is_sorted_iterator = false; private: /* https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern */ const iter_t* thiz () const { return static_cast (this); } iter_t* thiz () { return static_cast< iter_t *> (this); } public: /* TODO: * Port operators below to use hb_enable_if to sniff which method implements * an operator and use it, and remove hb_iter_fallback_mixin_t completely. */ /* Operators. */ iter_t iter () const { return *thiz(); } iter_t operator + () const { return *thiz(); } explicit operator bool () const { return thiz()->__more__ (); } unsigned len () const { return thiz()->__len__ (); } /* The following can only be enabled if item_t is reference type. Otherwise * it will be returning pointer to temporary rvalue. */ template hb_remove_reference (item_t)* operator -> () const { return hb_addressof (**thiz()); } item_t operator * () const { return thiz()->__item__ (); } item_t operator [] (unsigned i) const { return thiz()->__item_at__ (i); } iter_t& operator += (unsigned count) { thiz()->__forward__ (count); return *thiz(); } iter_t& operator ++ () { thiz()->__next__ (); return *thiz(); } iter_t& operator -= (unsigned count) { thiz()->__rewind__ (count); return *thiz(); } iter_t& operator -- () { thiz()->__prev__ (); return *thiz(); } iter_t operator + (unsigned count) const { auto c = thiz()->iter (); c += count; return c; } friend iter_t operator + (unsigned count, const iter_t &it) { return it + count; } iter_t operator ++ (int) { iter_t c (*thiz()); ++*thiz(); return c; } iter_t operator - (unsigned count) const { auto c = thiz()->iter (); c -= count; return c; } iter_t operator -- (int) { iter_t c (*thiz()); --*thiz(); return c; } template iter_t& operator >> (T &v) { v = **thiz(); ++*thiz(); return *thiz(); } template iter_t& operator << (const T v) { **thiz() = v; ++*thiz(); return *thiz(); } protected: hb_iter_t () {} hb_iter_t (const hb_iter_t &o HB_UNUSED) {} void operator = (const hb_iter_t &o HB_UNUSED) {} }; #define HB_ITER_USING(Name) \ using item_t = typename Name::item_t; \ using Name::item_size; \ using Name::is_iterator; \ using Name::iter; \ using Name::operator bool; \ using Name::len; \ using Name::operator ->; \ using Name::operator *; \ using Name::operator []; \ using Name::operator +=; \ using Name::operator ++; \ using Name::operator -=; \ using Name::operator --; \ using Name::operator +; \ using Name::operator -; \ using Name::operator >>; \ using Name::operator <<; \ static_assert (true, "") /* Returns iterator type of a type. */ #define hb_iter_t(Iterable) decltype (hb_declval (Iterable).iter ()) /* TODO Change to function-object. */ template struct hb_array_t; static const struct { template hb_iter_t (T) operator () (T&& c) const { return c.iter (); } /* Specialization for C arrays. */ template inline hb_array_t operator () (Type *array, unsigned int length) const { return hb_array_t (array, length); } template hb_array_t operator () (Type (&array)[length]) const { return hb_array_t (array, length); } } hb_iter HB_UNUSED; /* Mixin to fill in what the subclass doesn't provide. */ template struct hb_iter_fallback_mixin_t { private: /* https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern */ const iter_t* thiz () const { return static_cast (this); } iter_t* thiz () { return static_cast< iter_t *> (this); } public: /* Access: Implement __item__(), or __item_at__() if random-access. */ item_t __item__ () const { return (*thiz())[0]; } item_t __item_at__ (unsigned i) const { return *(*thiz() + i); } /* Termination: Implement __more__(), or __len__() if random-access. */ bool __more__ () const { return thiz()->len (); } unsigned __len__ () const { iter_t c (*thiz()); unsigned l = 0; while (c) { c++; l++; }; return l; } /* Advancing: Implement __next__(), or __forward__() if random-access. */ void __next__ () { *thiz() += 1; } void __forward__ (unsigned n) { while (n--) ++*thiz(); } /* Rewinding: Implement __prev__() or __rewind__() if bidirectional. */ void __prev__ () { *thiz() -= 1; } void __rewind__ (unsigned n) { while (n--) --*thiz(); } protected: hb_iter_fallback_mixin_t () {} hb_iter_fallback_mixin_t (const hb_iter_fallback_mixin_t &o HB_UNUSED) {} void operator = (const hb_iter_fallback_mixin_t &o HB_UNUSED) {} }; template struct hb_iter_with_fallback_t : hb_iter_t, hb_iter_fallback_mixin_t { protected: hb_iter_with_fallback_t () {} hb_iter_with_fallback_t (const hb_iter_with_fallback_t &o HB_UNUSED) : hb_iter_t (o), hb_iter_fallback_mixin_t (o) {} void operator = (const hb_iter_with_fallback_t &o HB_UNUSED) {} }; /* * Meta-programming predicates. */ /* hb_is_iterable() */ template struct _hb_is_iterable { enum { value = false }; }; template struct _hb_is_iterable > { enum { value = true }; }; template struct hb_is_iterable { enum { value = _hb_is_iterable::value }; }; #define hb_is_iterable(Iterable) hb_is_iterable::value /* TODO Add hb_is_iterable_of(). * TODO Add random_access / sorted variants. */ /* hb_is_iterator() / hb_is_random_access_iterator() / hb_is_sorted_iterator() */ template struct _hb_is_iterator_of { char operator () (...) { return 0; } template int operator () (hb_iter_t *) { return 0; } template int operator () (hb_iter_t *) { return 0; } template int operator () (hb_iter_t *) { return 0; } template int operator () (hb_iter_t *) { return 0; } static_assert (sizeof (char) != sizeof (int), ""); }; template struct hb_is_iterator_of { enum { value = sizeof (int) == sizeof (hb_declval (_hb_is_iterator_of) (hb_declval (Iter*))) }; }; #define hb_is_iterator_of(Iter, Item) hb_is_iterator_of::value #define hb_is_iterator(Iter) hb_is_iterator_of (Iter, typename Iter::item_t) #define hb_is_random_access_iterator_of(Iter, Item) \ hb_is_iterator_of (Iter, Item) && Iter::is_random_access_iterator #define hb_is_random_access_iterator(Iter) \ hb_is_random_access_iterator_of (Iter, typename Iter::item_t) #define hb_is_sorted_iterator_of(Iter, Item) \ hb_is_iterator_of (Iter, Item) && Iter::is_sorted_iterator #define hb_is_sorted_iterator(Iter) \ hb_is_sorted_iterator_of (Iter, typename Iter::item_t) /* * Adaptors, combiners, etc. */ template static inline decltype (hb_declval (Rhs) (hb_declval (Lhs))) operator | (Lhs lhs, const Rhs &rhs) { return rhs (lhs); } /* hb_map(), hb_filter(), hb_reduce() */ template struct hb_map_iter_t : hb_iter_t, decltype (hb_declval (Proj) (hb_declval (typename Iter::item_t)))> { hb_map_iter_t (const Iter& it, Proj&& f) : it (it), f (f) {} typedef decltype (hb_declval (Proj) (hb_declval (typename Iter::item_t))) __item_t__; static constexpr bool is_random_access_iterator = Iter::is_random_access_iterator; __item_t__ __item__ () const { return f (*it); } __item_t__ __item_at__ (unsigned i) const { return f (it[i]); } bool __more__ () const { return bool (it); } unsigned __len__ () const { return it.len (); } void __next__ () { ++it; } void __forward__ (unsigned n) { it += n; } void __prev__ () { --it; } void __rewind__ (unsigned n) { it -= n; } private: Iter it; Proj f; }; template struct hb_map_iter_factory_t { hb_map_iter_factory_t (Proj f) : f (f) {} template hb_map_iter_t operator () (Iter it) const { return hb_map_iter_t (it, f); } private: Proj f; }; static const struct { template hb_map_iter_factory_t operator () (Proj&& f) const { return hb_map_iter_factory_t (f); } } hb_map HB_UNUSED; template struct hb_filter_iter_t : hb_iter_with_fallback_t, typename Iter::item_t> { hb_filter_iter_t (const Iter& it_, Pred&& p, Proj&& f) : it (it_), p (p), f (f) { while (it && !p (f (*it))) ++it; } typedef typename Iter::item_t __item_t__; static constexpr bool is_sorted_iterator = Iter::is_sorted_iterator; __item_t__ __item__ () const { return *it; } bool __more__ () const { return bool (it); } void __next__ () { do ++it; while (it && !p (f (*it))); } void __prev__ () { --it; } private: Iter it; Pred p; Proj f; }; template struct hb_filter_iter_factory_t { hb_filter_iter_factory_t (Pred p, Proj f) : p (p), f (f) {} template hb_filter_iter_t operator () (Iter it) const { return hb_filter_iter_t (it, p, f); } private: Pred p; Proj f; }; static const struct { template hb_filter_iter_factory_t operator () (Pred&& p = hb_bool, Proj&& f = hb_identity) const { return hb_filter_iter_factory_t (p, f); } } hb_filter HB_UNUSED; /* hb_zip() */ template struct hb_zip_iter_t : hb_iter_t, hb_pair_t > { hb_zip_iter_t () {} hb_zip_iter_t (const A& a, const B& b) : a (a), b (b) {} typedef hb_pair_t __item_t__; static constexpr bool is_random_access_iterator = A::is_random_access_iterator && B::is_random_access_iterator; static constexpr bool is_sorted_iterator = A::is_sorted_iterator && B::is_sorted_iterator; __item_t__ __item__ () const { return __item_t__ (*a, *b); } __item_t__ __item_at__ (unsigned i) const { return __item_t__ (a[i], b[i]); } bool __more__ () const { return a && b; } unsigned __len__ () const { return MIN (a.len (), b.len ()); } void __next__ () { ++a; ++b; } void __forward__ (unsigned n) { a += n; b += n; } void __prev__ () { --a; --b; } void __rewind__ (unsigned n) { a -= n; b -= n; } private: A a; B b; }; static const struct { template hb_zip_iter_t operator () (A& a, B &b) const { return hb_zip_iter_t (hb_iter (a), hb_iter (b)); } } hb_zip HB_UNUSED; /* hb_enumerate */ template struct hb_enumerate_iter_t : hb_iter_t, hb_pair_t > { hb_enumerate_iter_t (const Iter& it) : i (0), it (it) {} typedef hb_pair_t __item_t__; static constexpr bool is_random_access_iterator = Iter::is_random_access_iterator; static constexpr bool is_sorted_iterator = true; __item_t__ __item__ () const { return __item_t__ (+i, *it); } __item_t__ __item_at__ (unsigned j) const { return __item_t__ (i + j, it[j]); } bool __more__ () const { return bool (it); } unsigned __len__ () const { return it.len (); } void __next__ () { ++i; ++it; } void __forward__ (unsigned n) { i += n; it += n; } void __prev__ () { --i; --it; } void __rewind__ (unsigned n) { i -= n; it -= n; } private: unsigned i; Iter it; }; static const struct { template hb_enumerate_iter_t operator () (Iterable& it) const { return hb_enumerate_iter_t (hb_iter (it)); } } hb_enumerate HB_UNUSED; /* hb_apply() */ template struct hb_apply_t { hb_apply_t (Appl a) : a (a) {} template void operator () (Iter it) const { for (; it; ++it) a (*it); } private: Appl a; }; static const struct { template hb_apply_t operator () (Appl&& a) const { return hb_apply_t (a); } template hb_apply_t operator () (Appl *a) const { return hb_apply_t (*a); } } hb_apply HB_UNUSED; /* hb_sink() */ template struct hb_sink_t { hb_sink_t (Sink&& s) : s (s) {} template void operator () (Iter it) const { for (; it; ++it) s << *it; } private: Sink s; }; static const struct { template hb_sink_t operator () (Sink&& s) const { return hb_sink_t (s); } template hb_sink_t operator () (Sink *s) const { return hb_sink_t (*s); } } hb_sink HB_UNUSED; static const struct { template void operator () (Iter it) const { for (; it; ++it) (void) *it; } } hb_drain HB_UNUSED; /* hb-all, hb-any, hb-none. */ static const struct { template bool operator () (Iterable&& c) const { for (auto it = hb_iter (c); it; ++it) if (!*it) return false; return true; } } hb_all HB_UNUSED; static const struct { template bool operator () (Iterable&& c) const { for (auto it = hb_iter (c); it; ++it) if (it) return true; return false; } } hb_any HB_UNUSED; static const struct { template bool operator () (Iterable&& c) const { for (auto it = hb_iter (c); it; ++it) if (it) return false; return true; } } hb_none HB_UNUSED; /* * Algorithms operating on iterators. */ template inline void hb_fill (C& c, const V &v) { for (auto i = hb_iter (c); i; i++) *i = v; } template inline bool hb_copy (D id, S is) { for (; id && is; ++id, ++is) *id = *is; return !is; } #endif /* HB_ITER_HH */