2018-12-21 06:23:34 +01:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2018-12-21 23:35:58 +01:00
|
|
|
#include "hb.hh"
|
2018-12-21 06:23:34 +01:00
|
|
|
#include "hb-iter.hh"
|
|
|
|
|
2018-12-21 07:53:27 +01:00
|
|
|
#include "hb-array.hh"
|
2018-12-22 22:11:22 +01:00
|
|
|
#include "hb-set.hh"
|
2018-12-27 22:55:18 +01:00
|
|
|
#include "hb-ot-layout-common.hh"
|
2018-12-22 22:11:22 +01:00
|
|
|
|
2018-12-21 07:53:27 +01:00
|
|
|
|
|
|
|
template <typename T>
|
2019-01-30 02:10:19 +01:00
|
|
|
struct array_iter_t : hb_iter_with_fallback_t<array_iter_t<T>, T&>
|
2018-12-21 07:53:27 +01:00
|
|
|
{
|
|
|
|
array_iter_t (hb_array_t<T> arr_) : arr (arr_) {}
|
|
|
|
|
2019-01-09 08:48:35 +01:00
|
|
|
typedef T& __item_t__;
|
2019-01-25 15:34:03 +01:00
|
|
|
static constexpr bool is_random_access_iterator = true;
|
2018-12-21 07:53:27 +01:00
|
|
|
T& __item_at__ (unsigned i) const { return arr[i]; }
|
|
|
|
void __forward__ (unsigned n) { arr += n; }
|
|
|
|
void __rewind__ (unsigned n) { arr -= n; }
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned __len__ () const { return arr.length; }
|
2018-12-21 07:53:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
hb_array_t<T> arr;
|
|
|
|
};
|
|
|
|
|
2018-12-21 09:03:46 +01:00
|
|
|
template <typename T>
|
|
|
|
struct some_array_t
|
|
|
|
{
|
|
|
|
some_array_t (hb_array_t<T> arr_) : arr (arr_) {}
|
|
|
|
|
|
|
|
typedef array_iter_t<T> iter_t;
|
|
|
|
array_iter_t<T> iter () { return array_iter_t<T> (arr); }
|
|
|
|
operator array_iter_t<T> () { return iter (); }
|
|
|
|
operator hb_iter_t<array_iter_t<T> > () { return iter (); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
hb_array_t<T> arr;
|
|
|
|
};
|
|
|
|
|
2018-12-27 00:54:27 +01:00
|
|
|
|
2019-01-09 10:02:38 +01:00
|
|
|
template <typename Iter,
|
|
|
|
hb_enable_if (hb_is_iterator (Iter))>
|
|
|
|
static void
|
2019-01-08 20:23:12 +01:00
|
|
|
test_iterator (Iter it)
|
2018-12-27 00:54:27 +01:00
|
|
|
{
|
2019-01-08 20:23:12 +01:00
|
|
|
Iter default_constructed;
|
2018-12-27 01:56:37 +01:00
|
|
|
|
2019-01-26 22:54:25 +01:00
|
|
|
assert (!default_constructed);
|
|
|
|
|
2018-12-27 00:54:27 +01:00
|
|
|
/* Iterate over a copy of it. */
|
|
|
|
for (auto c = it.iter (); c; c++)
|
|
|
|
*c;
|
|
|
|
|
2019-01-27 00:51:43 +01:00
|
|
|
/* Same. */
|
|
|
|
for (auto c = +it; c; c++)
|
|
|
|
*c;
|
|
|
|
|
2018-12-30 07:40:08 +01:00
|
|
|
it += it.len ();
|
2018-12-30 08:11:03 +01:00
|
|
|
it = it + 10;
|
|
|
|
it = 10 + it;
|
2018-12-27 00:54:27 +01:00
|
|
|
|
|
|
|
assert (*it == it[0]);
|
2018-12-27 01:01:30 +01:00
|
|
|
|
2019-01-27 00:44:45 +01:00
|
|
|
static_assert (true || it.is_random_access_iterator, "");
|
|
|
|
static_assert (true || it.is_sorted_iterator, "");
|
2018-12-27 00:54:27 +01:00
|
|
|
}
|
|
|
|
|
2019-01-09 10:02:38 +01:00
|
|
|
template <typename Iterable,
|
|
|
|
hb_enable_if (hb_is_iterable (Iterable))>
|
|
|
|
static void
|
2018-12-27 22:55:18 +01:00
|
|
|
test_iterable (const Iterable &lst = Null(Iterable))
|
2018-12-27 00:54:27 +01:00
|
|
|
{
|
|
|
|
// Test that can take iterator from.
|
|
|
|
test_iterator (lst.iter ());
|
|
|
|
}
|
|
|
|
|
2018-12-21 06:23:34 +01:00
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2018-12-21 06:54:55 +01:00
|
|
|
const int src[10] = {};
|
|
|
|
int dst[20];
|
2018-12-21 07:59:37 +01:00
|
|
|
hb_vector_t<int> v;
|
2018-12-21 06:54:55 +01:00
|
|
|
|
2018-12-21 07:59:37 +01:00
|
|
|
array_iter_t<const int> s (src); /* Implicit conversion from static array. */
|
|
|
|
array_iter_t<const int> s2 (v); /* Implicit conversion from vector. */
|
2018-12-21 07:53:27 +01:00
|
|
|
array_iter_t<int> t (dst);
|
2018-12-21 06:54:55 +01:00
|
|
|
|
2019-01-09 01:33:31 +01:00
|
|
|
static_assert (hb_is_random_access_iterator (array_iter_t<int>), "");
|
2019-01-08 21:53:02 +01:00
|
|
|
|
2018-12-21 09:03:46 +01:00
|
|
|
some_array_t<const int> a (src);
|
|
|
|
|
2018-12-21 06:54:55 +01:00
|
|
|
s2 = s;
|
|
|
|
|
2019-01-27 01:03:56 +01:00
|
|
|
hb_iter (src);
|
|
|
|
hb_iter (src, 2);
|
|
|
|
|
2018-12-21 08:47:04 +01:00
|
|
|
hb_fill (t, 42);
|
2019-04-01 04:17:07 +02:00
|
|
|
hb_copy (s, t);
|
|
|
|
hb_copy (a.iter (), t);
|
2018-12-21 06:54:55 +01:00
|
|
|
|
2018-12-27 00:54:27 +01:00
|
|
|
test_iterable (v);
|
|
|
|
hb_set_t st;
|
|
|
|
test_iterable (st);
|
2018-12-27 19:29:51 +01:00
|
|
|
hb_sorted_array_t<int> sa;
|
|
|
|
test_iterable (sa);
|
2018-12-27 00:54:27 +01:00
|
|
|
|
2018-12-27 22:55:18 +01:00
|
|
|
test_iterable<hb_array_t<int> > ();
|
|
|
|
test_iterable<hb_sorted_array_t<const int> > ();
|
|
|
|
test_iterable<hb_vector_t<float> > ();
|
|
|
|
test_iterable<hb_set_t> ();
|
|
|
|
test_iterable<OT::Coverage> ();
|
|
|
|
|
2019-01-09 08:57:16 +01:00
|
|
|
test_iterator (hb_zip (st, v));
|
|
|
|
|
2019-03-30 07:31:07 +01:00
|
|
|
hb_any (st);
|
2019-02-16 01:55:08 +01:00
|
|
|
|
2019-01-08 03:38:49 +01:00
|
|
|
hb_array_t<hb_vector_t<int> > pa;
|
|
|
|
pa->as_array ();
|
|
|
|
|
2019-01-27 01:03:56 +01:00
|
|
|
+ hb_iter (src)
|
2019-01-27 00:44:45 +01:00
|
|
|
| hb_map (hb_identity)
|
|
|
|
| hb_filter ()
|
|
|
|
| hb_filter (hb_bool)
|
|
|
|
| hb_filter (hb_bool, hb_identity)
|
2019-02-14 19:51:02 +01:00
|
|
|
| hb_sink (st)
|
2019-01-27 00:44:45 +01:00
|
|
|
;
|
|
|
|
|
2019-02-14 20:40:22 +01:00
|
|
|
+ hb_iter (src)
|
2019-02-14 23:04:05 +01:00
|
|
|
| hb_apply (&st)
|
|
|
|
;
|
|
|
|
|
|
|
|
+ hb_iter (src)
|
|
|
|
| hb_drain
|
|
|
|
;
|
2019-02-14 20:40:22 +01:00
|
|
|
|
2019-01-28 22:23:12 +01:00
|
|
|
t << 1;
|
|
|
|
long vl;
|
|
|
|
s >> vl;
|
|
|
|
|
2018-12-21 06:23:34 +01:00
|
|
|
return 0;
|
|
|
|
}
|