2012-04-24 04:41:09 +02:00
|
|
|
/*
|
2017-10-15 16:53:09 +02:00
|
|
|
* Copyright © 2012,2017 Google, Inc.
|
2012-04-24 04:41:09 +02:00
|
|
|
*
|
|
|
|
* 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_SET_PRIVATE_HH
|
|
|
|
#define HB_SET_PRIVATE_HH
|
|
|
|
|
|
|
|
#include "hb-private.hh"
|
|
|
|
#include "hb-object-private.hh"
|
|
|
|
|
|
|
|
|
2013-04-18 00:19:21 +02:00
|
|
|
/*
|
|
|
|
* hb_set_t
|
|
|
|
*/
|
2013-04-17 05:21:38 +02:00
|
|
|
|
2017-12-03 00:22:04 +01:00
|
|
|
/* TODO Keep a free-list so we can free pages that are completely zeroed. At that
|
|
|
|
* point maybe also use a sentinel value for "all-1" pages? */
|
|
|
|
|
2012-06-16 21:21:55 +02:00
|
|
|
struct hb_set_t
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
struct page_map_t
|
|
|
|
{
|
|
|
|
inline int cmp (const page_map_t *o) const { return (int) o->major - (int) major; }
|
|
|
|
|
|
|
|
uint32_t major;
|
|
|
|
uint32_t index;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct page_t
|
|
|
|
{
|
2017-12-01 22:34:14 +01:00
|
|
|
inline void init0 (void) { memset (&v, 0, sizeof (v)); }
|
|
|
|
inline void init1 (void) { memset (&v, 0xff, sizeof (v)); }
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
inline unsigned int len (void) const
|
|
|
|
{ return ARRAY_LENGTH_CONST (v); }
|
|
|
|
|
|
|
|
inline bool is_empty (void) const
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
|
|
|
if (v[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void add (hb_codepoint_t g) { elt (g) |= mask (g); }
|
|
|
|
inline void del (hb_codepoint_t g) { elt (g) &= ~mask (g); }
|
|
|
|
inline bool has (hb_codepoint_t g) const { return !!(elt (g) & mask (g)); }
|
|
|
|
|
2017-12-01 22:34:14 +01:00
|
|
|
inline void add_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
2017-12-01 22:56:06 +01:00
|
|
|
elt_t *la = &elt (a);
|
|
|
|
elt_t *lb = &elt (b);
|
|
|
|
if (la == lb)
|
|
|
|
*la |= (mask (b) << 1) - mask(a);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*la |= ~(mask (a) - 1);
|
2017-12-03 00:22:04 +01:00
|
|
|
la++;
|
2017-12-01 22:56:06 +01:00
|
|
|
|
|
|
|
memset (la, 0xff, (char *) lb - (char *) la);
|
|
|
|
|
|
|
|
*lb |= ((mask (b) << 1) - 1);
|
|
|
|
|
|
|
|
}
|
2017-12-01 22:34:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-15 16:53:09 +02:00
|
|
|
inline bool is_equal (const page_t *other) const
|
|
|
|
{
|
|
|
|
return 0 == memcmp (&v, &other->v, sizeof (v));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_population (void) const
|
|
|
|
{
|
|
|
|
unsigned int pop = 0;
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
|
|
|
pop += _hb_popcount (v[i]);
|
|
|
|
return pop;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool next (hb_codepoint_t *codepoint) const
|
|
|
|
{
|
|
|
|
unsigned int m = (*codepoint + 1) & MASK;
|
|
|
|
if (!m)
|
|
|
|
{
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unsigned int i = m / ELT_BITS;
|
|
|
|
unsigned int j = m & ELT_MASK;
|
|
|
|
|
|
|
|
for (; j < ELT_BITS; j++)
|
|
|
|
if (v[i] & (elt_t (1) << j))
|
|
|
|
goto found;
|
|
|
|
for (i++; i < len (); i++)
|
|
|
|
if (v[i])
|
2017-10-26 16:08:29 +02:00
|
|
|
for (j = 0; j < ELT_BITS; j++)
|
2017-10-15 16:53:09 +02:00
|
|
|
if (v[i] & (elt_t (1) << j))
|
|
|
|
goto found;
|
|
|
|
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
found:
|
|
|
|
*codepoint = i * ELT_BITS + j;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
inline hb_codepoint_t get_min (void) const
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
|
|
|
if (v[i])
|
|
|
|
{
|
|
|
|
elt_t e = v[i];
|
|
|
|
for (unsigned int j = 0; j < ELT_BITS; j++)
|
|
|
|
if (e & (elt_t (1) << j))
|
|
|
|
return i * ELT_BITS + j;
|
|
|
|
}
|
|
|
|
return INVALID;
|
|
|
|
}
|
|
|
|
inline hb_codepoint_t get_max (void) const
|
|
|
|
{
|
|
|
|
for (int i = len () - 1; i >= 0; i--)
|
|
|
|
if (v[i])
|
|
|
|
{
|
|
|
|
elt_t e = v[i];
|
|
|
|
for (int j = ELT_BITS - 1; j >= 0; j--)
|
|
|
|
if (e & (elt_t (1) << j))
|
|
|
|
return i * ELT_BITS + j;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:30:38 +01:00
|
|
|
static const unsigned int PAGE_BITS = 8192; /* Use to tune. */
|
2017-10-15 16:53:09 +02:00
|
|
|
static_assert ((PAGE_BITS & ((PAGE_BITS) - 1)) == 0, "");
|
|
|
|
|
2017-10-15 22:10:35 +02:00
|
|
|
typedef uint64_t elt_t;
|
|
|
|
|
2017-10-16 00:20:25 +02:00
|
|
|
#if 0 && HAVE_VECTOR_SIZE
|
|
|
|
/* The vectorized version does not work with clang as non-const
|
2017-10-16 00:21:35 +02:00
|
|
|
* elt() errs "non-const reference cannot bind to vector element". */
|
2017-10-15 16:53:09 +02:00
|
|
|
typedef elt_t vector_t __attribute__((vector_size (PAGE_BITS / 8)));
|
|
|
|
#else
|
2017-10-15 22:21:03 +02:00
|
|
|
typedef hb_vector_size_t<elt_t, PAGE_BITS / 8> vector_t;
|
2017-10-15 16:53:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
vector_t v;
|
|
|
|
|
|
|
|
static const unsigned int ELT_BITS = sizeof (elt_t) * 8;
|
|
|
|
static const unsigned int ELT_MASK = ELT_BITS - 1;
|
2017-10-17 20:16:36 +02:00
|
|
|
static const unsigned int BITS = sizeof (vector_t) * 8;
|
2017-10-15 16:53:09 +02:00
|
|
|
static const unsigned int MASK = BITS - 1;
|
|
|
|
static_assert (PAGE_BITS == BITS, "");
|
|
|
|
|
|
|
|
elt_t &elt (hb_codepoint_t g) { return v[(g & MASK) / ELT_BITS]; }
|
|
|
|
elt_t const &elt (hb_codepoint_t g) const { return v[(g & MASK) / ELT_BITS]; }
|
|
|
|
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & ELT_MASK); }
|
|
|
|
};
|
2017-10-23 14:34:30 +02:00
|
|
|
static_assert (page_t::PAGE_BITS == sizeof (page_t) * 8, "");
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2012-06-06 09:30:09 +02:00
|
|
|
hb_object_header_t header;
|
|
|
|
ASSERT_POD ();
|
2013-01-03 05:50:36 +01:00
|
|
|
bool in_error;
|
2017-10-15 16:53:09 +02:00
|
|
|
hb_prealloced_array_t<page_map_t, 8> page_map;
|
2017-12-15 04:04:55 +01:00
|
|
|
hb_prealloced_array_t<page_t, 1> pages;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2017-12-14 22:37:48 +01:00
|
|
|
inline void init (void)
|
|
|
|
{
|
|
|
|
page_map.init ();
|
|
|
|
pages.init ();
|
|
|
|
}
|
|
|
|
inline void finish (void)
|
|
|
|
{
|
|
|
|
page_map.finish ();
|
|
|
|
pages.finish ();
|
|
|
|
}
|
|
|
|
|
2017-10-15 16:53:09 +02:00
|
|
|
inline bool resize (unsigned int count)
|
|
|
|
{
|
|
|
|
if (unlikely (in_error)) return false;
|
|
|
|
if (!pages.resize (count) || !page_map.resize (count))
|
|
|
|
{
|
|
|
|
pages.resize (page_map.len);
|
|
|
|
in_error = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-06-06 09:30:09 +02:00
|
|
|
|
2012-04-24 04:41:09 +02:00
|
|
|
inline void clear (void) {
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (hb_object_is_inert (this)))
|
|
|
|
return;
|
|
|
|
in_error = false;
|
2017-10-15 16:53:09 +02:00
|
|
|
page_map.resize (0);
|
|
|
|
pages.resize (0);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool is_empty (void) const {
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int count = pages.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!pages[i].is_empty ())
|
2012-04-24 20:21:15 +02:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void add (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2013-09-06 21:29:22 +02:00
|
|
|
if (unlikely (g == INVALID)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
page_t *page = page_for_insert (g);
|
2017-12-01 22:34:14 +01:00
|
|
|
if (unlikely (!page)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
page->add (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2012-06-09 08:02:46 +02:00
|
|
|
inline void add_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
2017-12-03 00:22:04 +01:00
|
|
|
if (unlikely (in_error || a > b || a == INVALID || b == INVALID)) return;
|
2017-12-01 22:34:14 +01:00
|
|
|
unsigned int ma = get_major (a);
|
|
|
|
unsigned int mb = get_major (b);
|
|
|
|
if (ma == mb)
|
|
|
|
{
|
|
|
|
page_t *page = page_for_insert (a);
|
|
|
|
if (unlikely (!page)) return;
|
|
|
|
page->add_range (a, b);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
page_t *page = page_for_insert (a);
|
|
|
|
if (unlikely (!page)) return;
|
|
|
|
page->add_range (a, major_start (ma + 1) - 1);
|
|
|
|
|
|
|
|
for (unsigned int m = ma + 1; m < mb; m++)
|
|
|
|
{
|
|
|
|
page = page_for_insert (major_start (m));
|
|
|
|
if (unlikely (!page)) return;
|
|
|
|
page->init1 ();
|
|
|
|
}
|
|
|
|
|
2017-12-03 00:22:04 +01:00
|
|
|
page = page_for_insert (b);
|
|
|
|
if (unlikely (!page)) return;
|
2017-12-01 22:34:14 +01:00
|
|
|
page->add_range (major_start (mb), b);
|
|
|
|
}
|
2012-06-09 08:02:46 +02:00
|
|
|
}
|
2017-12-15 04:33:55 +01:00
|
|
|
|
2017-12-13 22:12:20 +01:00
|
|
|
template <typename T>
|
2017-12-15 04:33:55 +01:00
|
|
|
inline void add_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
|
2017-12-13 22:12:20 +01:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2017-12-15 04:33:55 +01:00
|
|
|
{
|
|
|
|
add (*array);
|
|
|
|
array = (const T *) (stride + (const char *) array);
|
|
|
|
}
|
2017-12-13 22:12:20 +01:00
|
|
|
}
|
2017-12-15 04:33:55 +01:00
|
|
|
/* Might return false if array looks unsorted.
|
|
|
|
* Used for faster rejection of corrupt data. */
|
|
|
|
template <typename T>
|
|
|
|
inline bool add_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
add (*array);
|
|
|
|
array = (const T *) (stride + (const char *) array);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void del (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
page_t *p = page_for (g);
|
|
|
|
if (!p)
|
|
|
|
return;
|
|
|
|
p->del (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline void del_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
2017-12-03 00:22:04 +01:00
|
|
|
/* TODO Optimize, like add_range(). */
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-11-16 01:15:42 +01:00
|
|
|
for (unsigned int i = a; i < b + 1; i++)
|
|
|
|
del (i);
|
|
|
|
}
|
2012-04-24 04:41:09 +02:00
|
|
|
inline bool has (hb_codepoint_t g) const
|
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
const page_t *p = page_for (g);
|
|
|
|
if (!p)
|
|
|
|
return false;
|
|
|
|
return p->has (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
|
|
|
inline bool intersects (hb_codepoint_t first,
|
|
|
|
hb_codepoint_t last) const
|
|
|
|
{
|
2017-10-15 22:56:05 +02:00
|
|
|
hb_codepoint_t c = first - 1;
|
|
|
|
return next (&c) && c <= last;
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
inline void set (const hb_set_t *other)
|
|
|
|
{
|
|
|
|
if (unlikely (in_error)) return;
|
|
|
|
unsigned int count = other->pages.len;
|
|
|
|
if (!resize (count))
|
|
|
|
return;
|
|
|
|
|
|
|
|
memcpy (pages.array, other->pages.array, count * sizeof (pages.array[0]));
|
|
|
|
memcpy (page_map.array, other->page_map.array, count * sizeof (page_map.array[0]));
|
|
|
|
}
|
|
|
|
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool is_equal (const hb_set_t *other) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int na = pages.len;
|
|
|
|
unsigned int nb = other->pages.len;
|
|
|
|
|
|
|
|
unsigned int a = 0, b = 0;
|
|
|
|
for (; a < na && b < nb; )
|
|
|
|
{
|
|
|
|
if (page_at (a).is_empty ()) { a++; continue; }
|
|
|
|
if (other->page_at (b).is_empty ()) { b++; continue; }
|
|
|
|
if (page_map[a].major != other->page_map[b].major ||
|
|
|
|
!page_at (a).is_equal (&other->page_at (b)))
|
2012-04-24 20:21:15 +02:00
|
|
|
return false;
|
2017-10-15 16:53:09 +02:00
|
|
|
a++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
for (; a < na; a++)
|
|
|
|
if (!page_at (a).is_empty ()) { return false; }
|
|
|
|
for (; b < nb; b++)
|
|
|
|
if (!other->page_at (b).is_empty ()) { return false; }
|
|
|
|
|
2012-04-24 20:21:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
template <class Op>
|
|
|
|
inline void process (const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2017-10-23 20:28:35 +02:00
|
|
|
unsigned int na = pages.len;
|
|
|
|
unsigned int nb = other->pages.len;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
unsigned int count = 0;
|
2017-10-23 20:28:35 +02:00
|
|
|
unsigned int a = 0, b = 0;
|
2017-10-15 16:53:09 +02:00
|
|
|
for (; a < na && b < nb; )
|
|
|
|
{
|
|
|
|
if (page_map[a].major == other->page_map[b].major)
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
a++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
else if (page_map[a].major < other->page_map[b].major)
|
|
|
|
{
|
|
|
|
if (Op::passthru_left)
|
|
|
|
count++;
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (Op::passthru_right)
|
|
|
|
count++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Op::passthru_left)
|
|
|
|
count += na - a;
|
|
|
|
if (Op::passthru_right)
|
|
|
|
count += nb - b;
|
|
|
|
|
|
|
|
if (!resize (count))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Process in-place backward. */
|
2017-10-23 20:28:35 +02:00
|
|
|
a = na;
|
|
|
|
b = nb;
|
|
|
|
for (; a && b; )
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2017-10-26 17:59:50 +02:00
|
|
|
if (page_map[a - 1].major == other->page_map[b - 1].major)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
a--;
|
|
|
|
b--;
|
2017-10-23 20:28:35 +02:00
|
|
|
Op::process (page_at (--count).v, page_at (a).v, other->page_at (b).v);
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
2017-10-26 17:59:50 +02:00
|
|
|
else if (page_map[a - 1].major > other->page_map[b - 1].major)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2017-10-23 20:28:35 +02:00
|
|
|
a--;
|
2017-10-15 16:53:09 +02:00
|
|
|
if (Op::passthru_left)
|
|
|
|
page_at (--count).v = page_at (a).v;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-23 20:28:35 +02:00
|
|
|
b--;
|
2017-10-15 16:53:09 +02:00
|
|
|
if (Op::passthru_right)
|
|
|
|
page_at (--count).v = other->page_at (b).v;
|
|
|
|
}
|
|
|
|
}
|
2017-10-23 20:26:48 +02:00
|
|
|
if (Op::passthru_left)
|
2017-10-23 20:28:35 +02:00
|
|
|
while (a)
|
|
|
|
page_at (--count).v = page_at (--a).v;
|
2017-10-23 20:26:48 +02:00
|
|
|
if (Op::passthru_right)
|
2017-10-23 20:28:35 +02:00
|
|
|
while (b)
|
|
|
|
page_at (--count).v = other->page_at (--b).v;
|
2017-10-15 16:53:09 +02:00
|
|
|
assert (!count);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2012-04-24 20:21:15 +02:00
|
|
|
inline void union_ (const hb_set_t *other)
|
|
|
|
{
|
2017-10-15 22:10:35 +02:00
|
|
|
process<HbOpOr> (other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
|
|
|
inline void intersect (const hb_set_t *other)
|
|
|
|
{
|
2017-10-15 22:10:35 +02:00
|
|
|
process<HbOpAnd> (other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
|
|
|
inline void subtract (const hb_set_t *other)
|
|
|
|
{
|
2017-10-15 22:10:35 +02:00
|
|
|
process<HbOpMinus> (other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-05-25 19:48:00 +02:00
|
|
|
inline void symmetric_difference (const hb_set_t *other)
|
|
|
|
{
|
2017-10-15 22:10:35 +02:00
|
|
|
process<HbOpXor> (other);
|
2013-01-03 05:50:36 +01:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool next (hb_codepoint_t *codepoint) const
|
2012-05-25 20:17:54 +02:00
|
|
|
{
|
2013-09-06 21:29:22 +02:00
|
|
|
if (unlikely (*codepoint == INVALID)) {
|
2017-10-15 16:53:09 +02:00
|
|
|
*codepoint = get_min ();
|
|
|
|
return *codepoint != INVALID;
|
|
|
|
}
|
|
|
|
|
2017-10-23 14:36:40 +02:00
|
|
|
page_map_t map = {get_major (*codepoint), 0};
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int i;
|
|
|
|
page_map.bfind (&map, &i);
|
|
|
|
if (i < page_map.len)
|
|
|
|
{
|
|
|
|
if (pages[page_map[i].index].next (codepoint))
|
|
|
|
{
|
2017-10-23 14:34:30 +02:00
|
|
|
*codepoint += page_map[i].major * page_t::PAGE_BITS;
|
2017-10-15 16:53:09 +02:00
|
|
|
return true;
|
2013-09-06 21:29:22 +02:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
i++;
|
2012-05-25 20:17:54 +02:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
for (; i < page_map.len; i++)
|
|
|
|
{
|
|
|
|
hb_codepoint_t m = pages[page_map[i].index].get_min ();
|
|
|
|
if (m != INVALID)
|
|
|
|
{
|
2017-10-23 14:34:30 +02:00
|
|
|
*codepoint = page_map[i].major * page_t::PAGE_BITS + m;
|
2012-05-25 20:17:54 +02:00
|
|
|
return true;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
2013-09-06 21:29:22 +02:00
|
|
|
*codepoint = INVALID;
|
2012-05-25 20:17:54 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const
|
|
|
|
{
|
|
|
|
hb_codepoint_t i;
|
|
|
|
|
|
|
|
i = *last;
|
|
|
|
if (!next (&i))
|
2013-09-06 21:29:22 +02:00
|
|
|
{
|
|
|
|
*last = *first = INVALID;
|
2012-11-16 01:15:42 +01:00
|
|
|
return false;
|
2013-09-06 21:29:22 +02:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
|
|
|
|
*last = *first = i;
|
|
|
|
while (next (&i) && i == *last + 1)
|
|
|
|
(*last)++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_population (void) const
|
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int pop = 0;
|
|
|
|
unsigned int count = pages.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
pop += pages[i].get_population ();
|
|
|
|
return pop;
|
2012-11-16 01:15:42 +01:00
|
|
|
}
|
2012-05-18 02:55:12 +02:00
|
|
|
inline hb_codepoint_t get_min (void) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int count = pages.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!page_at (i).is_empty ())
|
2017-10-23 14:34:30 +02:00
|
|
|
return page_map[i].major * page_t::PAGE_BITS + page_at (i).get_min ();
|
2013-09-06 21:29:22 +02:00
|
|
|
return INVALID;
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-05-18 02:55:12 +02:00
|
|
|
inline hb_codepoint_t get_max (void) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int count = pages.len;
|
|
|
|
for (int i = count - 1; i >= 0; i++)
|
|
|
|
if (!page_at (i).is_empty ())
|
2017-10-23 14:34:30 +02:00
|
|
|
return page_map[i].major * page_t::PAGE_BITS + page_at (i).get_max ();
|
2013-09-06 21:29:22 +02:00
|
|
|
return INVALID;
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2017-12-01 22:34:14 +01:00
|
|
|
inline page_t *page_for_insert (hb_codepoint_t g)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2017-10-23 14:36:40 +02:00
|
|
|
page_map_t map = {get_major (g), pages.len};
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int i;
|
|
|
|
if (!page_map.bfind (&map, &i))
|
|
|
|
{
|
|
|
|
if (!resize (pages.len + 1))
|
|
|
|
return nullptr;
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2017-12-01 22:34:14 +01:00
|
|
|
pages[map.index].init0 ();
|
2017-10-15 16:53:09 +02:00
|
|
|
memmove (&page_map[i + 1], &page_map[i], (page_map.len - 1 - i) * sizeof (page_map[0]));
|
|
|
|
page_map[i] = map;
|
|
|
|
}
|
|
|
|
return &pages[page_map[i].index];
|
|
|
|
}
|
2017-12-01 22:34:14 +01:00
|
|
|
inline page_t *page_for (hb_codepoint_t g)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2017-10-23 14:36:40 +02:00
|
|
|
page_map_t key = {get_major (g)};
|
2017-10-15 16:53:09 +02:00
|
|
|
const page_map_t *found = page_map.bsearch (&key);
|
|
|
|
if (found)
|
|
|
|
return &pages[found->index];
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-12-01 22:34:14 +01:00
|
|
|
inline const page_t *page_for (hb_codepoint_t g) const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2017-10-23 14:36:40 +02:00
|
|
|
page_map_t key = {get_major (g)};
|
2017-10-15 16:53:09 +02:00
|
|
|
const page_map_t *found = page_map.bsearch (&key);
|
|
|
|
if (found)
|
|
|
|
return &pages[found->index];
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-12-01 22:34:14 +01:00
|
|
|
inline page_t &page_at (unsigned int i) { return pages[page_map[i].index]; }
|
|
|
|
inline const page_t &page_at (unsigned int i) const { return pages[page_map[i].index]; }
|
|
|
|
inline unsigned int get_major (hb_codepoint_t g) const { return g / page_t::PAGE_BITS; }
|
|
|
|
inline hb_codepoint_t major_start (unsigned int major) const { return major * page_t::PAGE_BITS; }
|
2012-04-24 04:41:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_SET_PRIVATE_HH */
|