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
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#ifndef HB_SET_HH
|
|
|
|
#define HB_SET_HH
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2019-05-18 01:21:34 +02:00
|
|
|
#include "hb-machinery.hh"
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2019-04-11 17:16:01 +02:00
|
|
|
HB_DELETE_COPY_ASSIGN (hb_set_t);
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_set_t () { init (); }
|
|
|
|
~hb_set_t () { fini (); }
|
2018-10-30 01:37:41 +01:00
|
|
|
|
2017-10-15 16:53:09 +02:00
|
|
|
struct page_map_t
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
int cmp (const page_map_t &o) const { return (int) o.major - (int) major; }
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
uint32_t major;
|
|
|
|
uint32_t index;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct page_t
|
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
void init0 () { v.clear (); }
|
|
|
|
void init1 () { v.clear (0xFF); }
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2021-05-26 22:26:05 +02:00
|
|
|
constexpr unsigned len () const
|
2017-10-15 16:53:09 +02:00
|
|
|
{ return ARRAY_LENGTH_CONST (v); }
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool is_empty () const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
2019-08-24 15:27:14 +02:00
|
|
|
if (v[i])
|
2017-10-15 16:53:09 +02:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void add (hb_codepoint_t g) { elt (g) |= mask (g); }
|
|
|
|
void del (hb_codepoint_t g) { elt (g) &= ~mask (g); }
|
2021-05-26 22:26:05 +02:00
|
|
|
constexpr bool get (hb_codepoint_t g) const { return elt (g) & mask (g); }
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void add_range (hb_codepoint_t a, hb_codepoint_t b)
|
2017-12-01 22:34:14 +01:00
|
|
|
{
|
2017-12-16 15:12:06 +01:00
|
|
|
elt_t *la = &elt (a);
|
|
|
|
elt_t *lb = &elt (b);
|
|
|
|
if (la == lb)
|
2019-08-24 15:27:14 +02:00
|
|
|
*la |= (mask (b) << 1) - mask(a);
|
2017-12-16 15:12:06 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
*la |= ~(mask (a) - 1);
|
|
|
|
la++;
|
2017-12-01 22:56:06 +01:00
|
|
|
|
2017-12-16 15:12:06 +01:00
|
|
|
memset (la, 0xff, (char *) lb - (char *) la);
|
2017-12-01 22:56:06 +01:00
|
|
|
|
2017-12-16 15:12:06 +01:00
|
|
|
*lb |= ((mask (b) << 1) - 1);
|
|
|
|
}
|
2017-12-01 22:34:14 +01:00
|
|
|
}
|
|
|
|
|
2020-02-25 02:09:48 +01:00
|
|
|
void del_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
|
|
|
elt_t *la = &elt (a);
|
|
|
|
elt_t *lb = &elt (b);
|
|
|
|
if (la == lb)
|
|
|
|
*la &= ~((mask (b) << 1) - mask(a));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*la &= mask (a) - 1;
|
|
|
|
la++;
|
|
|
|
|
|
|
|
memset (la, 0, (char *) lb - (char *) la);
|
|
|
|
|
|
|
|
*lb &= ~((mask (b) << 1) - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-26 22:24:27 +02:00
|
|
|
bool is_equal (const page_t &other) const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2021-05-26 22:24:27 +02:00
|
|
|
return 0 == hb_memcmp (&v, &other.v, sizeof (v));
|
|
|
|
}
|
|
|
|
bool is_subset (const page_t &larger_page) const
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < len (); i++)
|
|
|
|
if (~larger_page.v[i] & v[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned int get_population () const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
unsigned int pop = 0;
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
2019-08-24 15:27:14 +02:00
|
|
|
pop += hb_popcount (v[i]);
|
2017-10-15 16:53:09 +02:00
|
|
|
return pop;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool next (hb_codepoint_t *codepoint) const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
unsigned int m = (*codepoint + 1) & MASK;
|
|
|
|
if (!m)
|
|
|
|
{
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unsigned int i = m / ELT_BITS;
|
|
|
|
unsigned int j = m & ELT_MASK;
|
|
|
|
|
2018-02-17 03:14:41 +01:00
|
|
|
const elt_t vv = v[i] & ~((elt_t (1) << j) - 1);
|
|
|
|
for (const elt_t *p = &vv; i < len (); p = &v[++i])
|
|
|
|
if (*p)
|
|
|
|
{
|
|
|
|
*codepoint = i * ELT_BITS + elt_get_min (*p);
|
|
|
|
return true;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
2018-02-14 10:00:10 +01:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
bool previous (hb_codepoint_t *codepoint) const
|
2018-02-14 10:00:10 +01:00
|
|
|
{
|
|
|
|
unsigned int m = (*codepoint - 1) & MASK;
|
|
|
|
if (m == MASK)
|
|
|
|
{
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unsigned int i = m / ELT_BITS;
|
|
|
|
unsigned int j = m & ELT_MASK;
|
|
|
|
|
2019-11-20 20:22:01 +01:00
|
|
|
/* Fancy mask to avoid shifting by elt_t bitsize, which is undefined. */
|
|
|
|
const elt_t mask = j < 8 * sizeof (elt_t) - 1 ?
|
|
|
|
((elt_t (1) << (j + 1)) - 1) :
|
|
|
|
(elt_t) -1;
|
|
|
|
const elt_t vv = v[i] & mask;
|
2019-09-17 22:20:32 +02:00
|
|
|
const elt_t *p = &vv;
|
|
|
|
while (true)
|
|
|
|
{
|
2018-02-17 03:14:41 +01:00
|
|
|
if (*p)
|
|
|
|
{
|
|
|
|
*codepoint = i * ELT_BITS + elt_get_max (*p);
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-17 22:20:32 +02:00
|
|
|
if ((int) i <= 0) break;
|
|
|
|
p = &v[--i];
|
|
|
|
}
|
2018-02-14 10:00:10 +01:00
|
|
|
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_codepoint_t get_min () const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < len (); i++)
|
2019-08-24 15:27:14 +02:00
|
|
|
if (v[i])
|
2018-02-17 03:14:41 +01:00
|
|
|
return i * ELT_BITS + elt_get_min (v[i]);
|
2017-10-15 16:53:09 +02:00
|
|
|
return INVALID;
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_codepoint_t get_max () const
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
for (int i = len () - 1; i >= 0; i--)
|
2019-08-24 15:27:14 +02:00
|
|
|
if (v[i])
|
2018-02-17 03:14:41 +01:00
|
|
|
return i * ELT_BITS + elt_get_max (v[i]);
|
2017-10-15 16:53:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-17 02:45:09 +01:00
|
|
|
typedef unsigned long long elt_t;
|
2019-01-22 12:15:23 +01:00
|
|
|
static constexpr unsigned PAGE_BITS = 512;
|
2018-09-16 19:33:48 +02:00
|
|
|
static_assert ((PAGE_BITS & ((PAGE_BITS) - 1)) == 0, "");
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
static unsigned int elt_get_min (const elt_t &elt) { return hb_ctz (elt); }
|
|
|
|
static unsigned int elt_get_max (const elt_t &elt) { return hb_bit_storage (elt) - 1; }
|
2018-02-17 03:14:41 +01:00
|
|
|
|
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
|
|
|
|
2019-01-22 12:15:23 +01:00
|
|
|
static constexpr unsigned ELT_BITS = sizeof (elt_t) * 8;
|
|
|
|
static constexpr unsigned ELT_MASK = ELT_BITS - 1;
|
|
|
|
static constexpr unsigned BITS = sizeof (vector_t) * 8;
|
|
|
|
static constexpr unsigned MASK = BITS - 1;
|
2018-09-16 19:33:48 +02:00
|
|
|
static_assert ((unsigned) PAGE_BITS == (unsigned) BITS, "");
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
elt_t &elt (hb_codepoint_t g) { return v[(g & MASK) / ELT_BITS]; }
|
2021-05-26 23:05:48 +02:00
|
|
|
constexpr elt_t const &elt (hb_codepoint_t g) const { return v[(g & MASK) / ELT_BITS]; }
|
|
|
|
static constexpr elt_t mask (hb_codepoint_t g) { return elt_t (1) << (g & ELT_MASK); }
|
2018-06-02 02:18:57 +02:00
|
|
|
|
|
|
|
vector_t v;
|
2017-10-15 16:53:09 +02:00
|
|
|
};
|
2018-09-16 19:33:48 +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;
|
2018-06-01 05:03:00 +02:00
|
|
|
bool successful; /* Allocations successful */
|
2018-05-02 00:27:41 +02:00
|
|
|
mutable unsigned int population;
|
2019-01-08 00:33:04 +01:00
|
|
|
hb_sorted_vector_t<page_map_t> page_map;
|
2018-12-27 23:56:22 +01:00
|
|
|
hb_vector_t<page_t> pages;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void init_shallow ()
|
2017-12-14 22:37:48 +01:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
successful = true;
|
2018-05-02 00:27:41 +02:00
|
|
|
population = 0;
|
2017-12-14 22:37:48 +01:00
|
|
|
page_map.init ();
|
|
|
|
pages.init ();
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
void init ()
|
2018-05-02 18:56:21 +02:00
|
|
|
{
|
|
|
|
hb_object_init (this);
|
|
|
|
init_shallow ();
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini_shallow ()
|
2017-12-14 22:37:48 +01:00
|
|
|
{
|
2018-10-30 01:37:41 +01:00
|
|
|
population = 0;
|
2018-05-02 01:01:25 +02:00
|
|
|
page_map.fini ();
|
|
|
|
pages.fini ();
|
2017-12-14 22:37:48 +01:00
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini ()
|
2018-05-02 18:56:21 +02:00
|
|
|
{
|
|
|
|
hb_object_fini (this);
|
|
|
|
fini_shallow ();
|
|
|
|
}
|
2017-12-14 22:37:48 +01:00
|
|
|
|
2018-12-18 19:22:17 +01:00
|
|
|
bool in_error () const { return !successful; }
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool resize (unsigned int count)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2021-01-21 19:45:09 +01:00
|
|
|
if (unlikely (count > pages.length && !successful)) return false;
|
2017-10-15 16:53:09 +02:00
|
|
|
if (!pages.resize (count) || !page_map.resize (count))
|
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
pages.resize (page_map.length);
|
2018-06-01 05:03:00 +02:00
|
|
|
successful = false;
|
2017-10-15 16:53:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-06-06 09:30:09 +02:00
|
|
|
|
2019-04-03 05:13:16 +02:00
|
|
|
void reset ()
|
2018-11-03 20:03:06 +01:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
successful = true;
|
2020-06-29 06:02:51 +02:00
|
|
|
clear ();
|
2019-04-03 05:13:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear ()
|
|
|
|
{
|
2020-09-16 21:35:09 +02:00
|
|
|
if (resize (0))
|
|
|
|
population = 0;
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
bool is_empty () const
|
2018-11-03 20:03:06 +01:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = pages.length;
|
2017-10-15 16:53:09 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!pages[i].is_empty ())
|
2019-08-24 15:27:14 +02:00
|
|
|
return false;
|
2012-04-24 20:21:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
2020-06-29 07:41:09 +02:00
|
|
|
explicit operator bool () const { return !is_empty (); }
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2019-12-15 15:50:01 +01:00
|
|
|
void dirty () { population = UINT_MAX; }
|
2018-05-02 00:27:41 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void add (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return;
|
2013-09-06 21:29:22 +02:00
|
|
|
if (unlikely (g == INVALID)) return;
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
2017-12-16 17:36:16 +01:00
|
|
|
page_t *page = page_for_insert (g); if (unlikely (!page)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
page->add (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
bool add_range (hb_codepoint_t a, hb_codepoint_t b)
|
2012-06-09 08:02:46 +02:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return true; /* https://github.com/harfbuzz/harfbuzz/issues/657 */
|
2017-12-19 20:48:26 +01:00
|
|
|
if (unlikely (a > b || a == INVALID || b == INVALID)) return false;
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
2017-12-01 22:34:14 +01:00
|
|
|
unsigned int ma = get_major (a);
|
|
|
|
unsigned int mb = get_major (b);
|
|
|
|
if (ma == mb)
|
|
|
|
{
|
2017-12-16 17:36:16 +01:00
|
|
|
page_t *page = page_for_insert (a); if (unlikely (!page)) return false;
|
2017-12-01 22:34:14 +01:00
|
|
|
page->add_range (a, b);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-16 17:36:16 +01:00
|
|
|
page_t *page = page_for_insert (a); if (unlikely (!page)) return false;
|
2017-12-01 22:34:14 +01:00
|
|
|
page->add_range (a, major_start (ma + 1) - 1);
|
|
|
|
|
|
|
|
for (unsigned int m = ma + 1; m < mb; m++)
|
|
|
|
{
|
2017-12-16 17:36:16 +01:00
|
|
|
page = page_for_insert (major_start (m)); if (unlikely (!page)) return false;
|
2017-12-01 22:34:14 +01:00
|
|
|
page->init1 ();
|
|
|
|
}
|
|
|
|
|
2017-12-16 17:36:16 +01:00
|
|
|
page = page_for_insert (b); if (unlikely (!page)) return false;
|
2017-12-01 22:34:14 +01:00
|
|
|
page->add_range (major_start (mb), b);
|
|
|
|
}
|
2017-12-16 15:12:06 +01:00
|
|
|
return true;
|
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>
|
2018-12-16 20:08:10 +01:00
|
|
|
void add_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
|
2017-12-13 22:12:20 +01:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return;
|
2017-12-16 17:36:16 +01:00
|
|
|
if (!count) return;
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
2017-12-16 17:36:16 +01:00
|
|
|
hb_codepoint_t g = *array;
|
|
|
|
while (count)
|
2017-12-15 04:33:55 +01:00
|
|
|
{
|
2017-12-16 17:36:16 +01:00
|
|
|
unsigned int m = get_major (g);
|
|
|
|
page_t *page = page_for_insert (g); if (unlikely (!page)) return;
|
|
|
|
unsigned int start = major_start (m);
|
|
|
|
unsigned int end = major_start (m + 1);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
page->add (g);
|
|
|
|
|
2019-05-18 01:20:36 +02:00
|
|
|
array = &StructAtOffsetUnaligned<T> (array, stride);
|
2017-12-16 17:36:16 +01:00
|
|
|
count--;
|
|
|
|
}
|
|
|
|
while (count && (g = *array, start <= g && g < end));
|
2017-12-15 04:33:55 +01:00
|
|
|
}
|
2017-12-13 22:12:20 +01:00
|
|
|
}
|
2021-04-01 23:47:21 +02:00
|
|
|
template <typename T>
|
|
|
|
void add_array (const hb_array_t<const T>& arr) { add_array (&arr, arr.len ()); }
|
2017-12-16 17:36:16 +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>
|
2018-12-16 20:08:10 +01:00
|
|
|
bool add_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
|
2017-12-15 04:33:55 +01:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return true; /* https://github.com/harfbuzz/harfbuzz/issues/657 */
|
2017-12-16 17:36:16 +01:00
|
|
|
if (!count) return true;
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
2017-12-16 17:36:16 +01:00
|
|
|
hb_codepoint_t g = *array;
|
2017-12-16 17:49:39 +01:00
|
|
|
hb_codepoint_t last_g = g;
|
2017-12-16 17:36:16 +01:00
|
|
|
while (count)
|
2017-12-15 04:33:55 +01:00
|
|
|
{
|
2017-12-16 17:36:16 +01:00
|
|
|
unsigned int m = get_major (g);
|
|
|
|
page_t *page = page_for_insert (g); if (unlikely (!page)) return false;
|
|
|
|
unsigned int end = major_start (m + 1);
|
|
|
|
do
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
/* If we try harder we can change the following comparison to <=;
|
2017-12-16 17:49:39 +01:00
|
|
|
* Not sure if it's worth it. */
|
2019-08-24 15:27:14 +02:00
|
|
|
if (g < last_g) return false;
|
2017-12-16 17:49:39 +01:00
|
|
|
last_g = g;
|
2017-12-16 17:36:16 +01:00
|
|
|
page->add (g);
|
|
|
|
|
2018-02-08 01:07:45 +01:00
|
|
|
array = (const T *) ((const char *) array + stride);
|
2017-12-16 17:36:16 +01:00
|
|
|
count--;
|
|
|
|
}
|
2017-12-16 17:49:39 +01:00
|
|
|
while (count && (g = *array, g < end));
|
2017-12-15 04:33:55 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2021-04-01 23:47:21 +02:00
|
|
|
template <typename T>
|
|
|
|
bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr.len ()); }
|
2017-12-15 04:33:55 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void del (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
/* TODO perform op even if !successful. */
|
|
|
|
if (unlikely (!successful)) return;
|
2018-11-23 03:20:39 +01:00
|
|
|
page_t *page = page_for (g);
|
|
|
|
if (!page)
|
2017-10-15 16:53:09 +02:00
|
|
|
return;
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
2018-11-23 03:20:39 +01:00
|
|
|
page->del (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2020-02-25 02:09:48 +01:00
|
|
|
|
2020-02-26 00:03:12 +01:00
|
|
|
private:
|
|
|
|
void del_pages (int ds, int de)
|
|
|
|
{
|
|
|
|
if (ds <= de)
|
|
|
|
{
|
2020-09-16 22:56:33 +02:00
|
|
|
// Pre-allocate the workspace that compact() will need so we can bail on allocation failure
|
|
|
|
// before attempting to rewrite the page map.
|
2021-01-21 20:06:58 +01:00
|
|
|
hb_vector_t<unsigned> compact_workspace;
|
2021-01-21 19:45:09 +01:00
|
|
|
if (unlikely (!allocate_compact_workspace (compact_workspace))) return;
|
2020-09-16 22:56:33 +02:00
|
|
|
|
2020-02-26 00:03:12 +01:00
|
|
|
unsigned int write_index = 0;
|
|
|
|
for (unsigned int i = 0; i < page_map.length; i++)
|
|
|
|
{
|
|
|
|
int m = (int) page_map[i].major;
|
|
|
|
if (m < ds || de < m)
|
|
|
|
page_map[write_index++] = page_map[i];
|
|
|
|
}
|
2021-01-21 19:45:09 +01:00
|
|
|
compact (compact_workspace, write_index);
|
2020-02-26 18:35:32 +01:00
|
|
|
resize (write_index);
|
2020-02-26 00:03:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-16 22:56:33 +02:00
|
|
|
|
2020-02-26 00:03:12 +01:00
|
|
|
public:
|
2018-12-16 20:08:10 +01:00
|
|
|
void del_range (hb_codepoint_t a, hb_codepoint_t b)
|
2012-11-16 01:15:42 +01:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
/* TODO perform op even if !successful. */
|
|
|
|
if (unlikely (!successful)) return;
|
2020-02-25 02:09:48 +01:00
|
|
|
if (unlikely (a > b || a == INVALID || b == INVALID)) return;
|
|
|
|
dirty ();
|
|
|
|
unsigned int ma = get_major (a);
|
|
|
|
unsigned int mb = get_major (b);
|
2020-02-25 16:12:20 +01:00
|
|
|
/* Delete pages from ds through de if ds <= de. */
|
2020-02-26 00:03:12 +01:00
|
|
|
int ds = (a == major_start (ma))? (int) ma: (int) (ma + 1);
|
|
|
|
int de = (b + 1 == major_start (mb + 1))? (int) mb: ((int) mb - 1);
|
|
|
|
if (ds > de || (int) ma < ds)
|
2020-02-25 02:09:48 +01:00
|
|
|
{
|
|
|
|
page_t *page = page_for (a);
|
|
|
|
if (page)
|
|
|
|
{
|
|
|
|
if (ma == mb)
|
|
|
|
page->del_range (a, b);
|
|
|
|
else
|
|
|
|
page->del_range (a, major_start (ma + 1) - 1);
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 00:03:12 +01:00
|
|
|
if (de < (int) mb && ma != mb)
|
2020-02-25 02:09:48 +01:00
|
|
|
{
|
|
|
|
page_t *page = page_for (b);
|
|
|
|
if (page)
|
|
|
|
page->del_range (major_start (mb), b);
|
|
|
|
}
|
2020-02-26 00:03:12 +01:00
|
|
|
del_pages (ds, de);
|
2012-11-16 01:15:42 +01:00
|
|
|
}
|
2020-02-25 02:09:48 +01:00
|
|
|
|
2019-01-09 17:39:25 +01:00
|
|
|
bool get (hb_codepoint_t g) const
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2018-11-23 03:20:39 +01:00
|
|
|
const page_t *page = page_for (g);
|
|
|
|
if (!page)
|
2017-10-15 16:53:09 +02:00
|
|
|
return false;
|
2019-01-09 17:39:25 +01:00
|
|
|
return page->get (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2019-01-09 17:39:25 +01:00
|
|
|
|
2019-01-28 22:34:04 +01:00
|
|
|
/* Has interface. */
|
2019-01-25 15:34:03 +01:00
|
|
|
static constexpr bool SENTINEL = false;
|
2019-01-09 17:39:25 +01:00
|
|
|
typedef bool value_t;
|
|
|
|
value_t operator [] (hb_codepoint_t k) const { return get (k); }
|
|
|
|
bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; }
|
2019-01-28 22:34:04 +01:00
|
|
|
/* Predicate. */
|
2019-01-09 17:39:25 +01:00
|
|
|
bool operator () (hb_codepoint_t k) const { return has (k); }
|
|
|
|
|
2019-01-28 22:39:01 +01:00
|
|
|
/* Sink interface. */
|
2020-04-23 19:51:12 +02:00
|
|
|
hb_set_t& operator << (hb_codepoint_t v)
|
|
|
|
{ add (v); return *this; }
|
|
|
|
hb_set_t& operator << (const hb_pair_t<hb_codepoint_t, hb_codepoint_t>& range)
|
|
|
|
{ add_range (range.first, range.second); return *this; }
|
2019-01-28 22:39:01 +01:00
|
|
|
|
2019-01-09 17:39:25 +01:00
|
|
|
bool intersects (hb_codepoint_t first, hb_codepoint_t last) const
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
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
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
void set (const hb_set_t *other)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return;
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = other->pages.length;
|
2017-10-15 16:53:09 +02:00
|
|
|
if (!resize (count))
|
|
|
|
return;
|
2018-05-02 00:27:41 +02:00
|
|
|
population = other->population;
|
2018-11-29 20:34:44 +01:00
|
|
|
memcpy ((void *) pages, (const void *) other->pages, count * pages.item_size);
|
|
|
|
memcpy ((void *) page_map, (const void *) other->page_map, count * page_map.item_size);
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool is_equal (const hb_set_t *other) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2018-05-23 05:57:19 +02:00
|
|
|
if (get_population () != other->get_population ())
|
2018-05-02 00:27:41 +02:00
|
|
|
return false;
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int na = pages.length;
|
|
|
|
unsigned int nb = other->pages.length;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
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 ||
|
2021-05-26 22:24:27 +02:00
|
|
|
!page_at (a).is_equal (other->page_at (b)))
|
2019-08-24 15:27:14 +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
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool is_subset (const hb_set_t *larger_set) const
|
2018-06-07 01:46:50 +02:00
|
|
|
{
|
2021-05-26 22:27:02 +02:00
|
|
|
/* TODO: Merge this and is_equal() into something like process(). */
|
2021-05-19 09:34:09 +02:00
|
|
|
if (unlikely(larger_set->is_empty ()))
|
|
|
|
return is_empty ();
|
2018-06-07 01:46:50 +02:00
|
|
|
|
2021-05-19 09:34:09 +02:00
|
|
|
uint32_t spi = 0;
|
|
|
|
for (uint32_t lpi = 0; spi < page_map.length && lpi < larger_set->page_map.length; lpi++)
|
|
|
|
{
|
|
|
|
uint32_t spm = page_map[spi].major;
|
|
|
|
uint32_t lpm = larger_set->page_map[lpi].major;
|
|
|
|
auto sp = page_at (spi);
|
|
|
|
auto lp = larger_set->page_at (lpi);
|
|
|
|
|
|
|
|
if (spm < lpm && !sp.is_empty ())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (lpm < spm)
|
|
|
|
continue;
|
|
|
|
|
2021-05-26 22:24:27 +02:00
|
|
|
if (!sp.is_subset (lp))
|
|
|
|
return false;
|
2021-05-19 09:34:09 +02:00
|
|
|
|
|
|
|
spi++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (spi < page_map.length)
|
|
|
|
if (!page_at (spi++).is_empty ())
|
|
|
|
return false;
|
2018-06-07 01:46:50 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-01-21 20:06:58 +01:00
|
|
|
bool allocate_compact_workspace(hb_vector_t<unsigned>& workspace)
|
2020-01-28 22:55:31 +01:00
|
|
|
{
|
2021-01-21 19:45:09 +01:00
|
|
|
if (unlikely(!workspace.resize (pages.length)))
|
2020-09-16 22:56:33 +02:00
|
|
|
{
|
|
|
|
successful = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* workspace should be a pre-sized vector allocated to hold at exactly pages.length
|
|
|
|
* elements.
|
|
|
|
*/
|
2021-01-21 20:06:58 +01:00
|
|
|
void compact (hb_vector_t<unsigned>& workspace,
|
2020-09-16 22:56:33 +02:00
|
|
|
unsigned int length)
|
|
|
|
{
|
2021-01-21 19:45:09 +01:00
|
|
|
assert(workspace.length == pages.length);
|
2021-01-21 20:06:58 +01:00
|
|
|
hb_vector_t<unsigned>& old_index_to_page_map_index = workspace;
|
2020-09-16 22:56:33 +02:00
|
|
|
|
2021-01-21 20:18:48 +01:00
|
|
|
hb_fill (old_index_to_page_map_index.writer(), 0xFFFFFFFF);
|
|
|
|
/* TODO(iter) Rewrite as dagger? */
|
2021-01-21 20:06:58 +01:00
|
|
|
for (unsigned i = 0; i < length; i++)
|
2021-01-21 19:45:09 +01:00
|
|
|
old_index_to_page_map_index[page_map[i].index] = i;
|
2020-01-28 22:55:31 +01:00
|
|
|
|
2021-01-21 19:45:09 +01:00
|
|
|
compact_pages (old_index_to_page_map_index);
|
2020-01-28 22:55:31 +01:00
|
|
|
}
|
|
|
|
|
2021-01-21 20:06:58 +01:00
|
|
|
void compact_pages (const hb_vector_t<unsigned>& old_index_to_page_map_index)
|
2020-01-28 22:55:31 +01:00
|
|
|
{
|
|
|
|
unsigned int write_index = 0;
|
|
|
|
for (unsigned int i = 0; i < pages.length; i++)
|
|
|
|
{
|
2020-02-07 19:38:27 +01:00
|
|
|
if (old_index_to_page_map_index[i] == 0xFFFFFFFF) continue;
|
2020-01-28 22:55:31 +01:00
|
|
|
|
|
|
|
if (write_index < i)
|
2020-04-20 11:42:45 +02:00
|
|
|
pages[write_index] = pages[i];
|
2020-01-28 22:55:31 +01:00
|
|
|
|
|
|
|
page_map[old_index_to_page_map_index[i]].index = write_index;
|
|
|
|
write_index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 01:49:35 +02:00
|
|
|
template <typename Op>
|
|
|
|
void process (const Op& op, const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2021-01-21 22:27:45 +01:00
|
|
|
const bool passthru_left = op (1, 0);
|
|
|
|
const bool passthru_right = op (0, 1);
|
|
|
|
|
2018-06-01 05:03:00 +02:00
|
|
|
if (unlikely (!successful)) return;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-05-02 00:27:41 +02:00
|
|
|
dirty ();
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int na = pages.length;
|
|
|
|
unsigned int nb = other->pages.length;
|
2018-03-07 10:49:26 +01:00
|
|
|
unsigned int next_page = na;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-06-12 05:55:14 +02:00
|
|
|
unsigned int count = 0, newCount = 0;
|
2017-10-23 20:28:35 +02:00
|
|
|
unsigned int a = 0, b = 0;
|
2020-01-28 22:55:31 +01:00
|
|
|
unsigned int write_index = 0;
|
2020-09-16 22:56:33 +02:00
|
|
|
|
|
|
|
// Pre-allocate the workspace that compact() will need so we can bail on allocation failure
|
|
|
|
// before attempting to rewrite the page map.
|
2021-01-21 20:06:58 +01:00
|
|
|
hb_vector_t<unsigned> compact_workspace;
|
2021-01-21 22:27:45 +01:00
|
|
|
if (!passthru_left && unlikely (!allocate_compact_workspace (compact_workspace))) return;
|
2020-09-16 22:56:33 +02:00
|
|
|
|
2017-10-15 16:53:09 +02:00
|
|
|
for (; a < na && b < nb; )
|
|
|
|
{
|
|
|
|
if (page_map[a].major == other->page_map[b].major)
|
|
|
|
{
|
2021-01-21 22:27:45 +01:00
|
|
|
if (!passthru_left)
|
2020-04-20 11:42:45 +02:00
|
|
|
{
|
|
|
|
// Move page_map entries that we're keeping from the left side set
|
|
|
|
// to the front of the page_map vector. This isn't necessary if
|
|
|
|
// passthru_left is set since no left side pages will be removed
|
|
|
|
// in that case.
|
|
|
|
if (write_index < a)
|
|
|
|
page_map[write_index] = page_map[a];
|
|
|
|
write_index++;
|
|
|
|
}
|
2020-01-28 22:55:31 +01:00
|
|
|
|
2019-08-24 15:27:14 +02:00
|
|
|
count++;
|
2017-10-15 16:53:09 +02:00
|
|
|
a++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
else if (page_map[a].major < other->page_map[b].major)
|
|
|
|
{
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_left)
|
2017-10-15 16:53:09 +02:00
|
|
|
count++;
|
2019-08-24 15:27:14 +02:00
|
|
|
a++;
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_right)
|
2017-10-15 16:53:09 +02:00
|
|
|
count++;
|
2019-08-24 15:27:14 +02:00
|
|
|
b++;
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_left)
|
2017-10-15 16:53:09 +02:00
|
|
|
count += na - a;
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_right)
|
2017-10-15 16:53:09 +02:00
|
|
|
count += nb - b;
|
|
|
|
|
2021-01-21 22:27:45 +01:00
|
|
|
if (!passthru_left)
|
2020-01-28 22:55:31 +01:00
|
|
|
{
|
|
|
|
na = write_index;
|
|
|
|
next_page = write_index;
|
2021-01-21 19:45:09 +01:00
|
|
|
compact (compact_workspace, write_index);
|
2020-01-28 22:55:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!resize (count))
|
|
|
|
return;
|
|
|
|
|
2018-06-12 05:55:14 +02:00
|
|
|
newCount = count;
|
2017-10-15 16:53:09 +02:00
|
|
|
|
|
|
|
/* 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--;
|
2018-03-07 09:55:22 +01:00
|
|
|
count--;
|
2018-03-07 10:49:26 +01:00
|
|
|
page_map[count] = page_map[a];
|
2019-05-16 01:49:35 +02:00
|
|
|
page_at (count).v = op (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
|
|
|
{
|
2018-03-07 09:55:22 +01:00
|
|
|
a--;
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_left)
|
2018-03-07 09:55:22 +01:00
|
|
|
{
|
|
|
|
count--;
|
2018-03-07 10:49:26 +01:00
|
|
|
page_map[count] = page_map[a];
|
2018-03-07 09:55:22 +01:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-07 09:55:22 +01:00
|
|
|
b--;
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_right)
|
2018-03-07 09:55:22 +01:00
|
|
|
{
|
|
|
|
count--;
|
2018-03-07 10:49:26 +01:00
|
|
|
page_map[count].major = other->page_map[b].major;
|
|
|
|
page_map[count].index = next_page++;
|
2018-03-07 09:55:22 +01:00
|
|
|
page_at (count).v = other->page_at (b).v;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_left)
|
2017-10-23 20:28:35 +02:00
|
|
|
while (a)
|
2018-03-07 10:49:26 +01:00
|
|
|
{
|
|
|
|
a--;
|
|
|
|
count--;
|
|
|
|
page_map[count] = page_map [a];
|
|
|
|
}
|
2021-01-21 22:27:45 +01:00
|
|
|
if (passthru_right)
|
2017-10-23 20:28:35 +02:00
|
|
|
while (b)
|
2018-03-07 10:49:26 +01:00
|
|
|
{
|
|
|
|
b--;
|
|
|
|
count--;
|
|
|
|
page_map[count].major = other->page_map[b].major;
|
|
|
|
page_map[count].index = next_page++;
|
|
|
|
page_at (count).v = other->page_at (b).v;
|
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
assert (!count);
|
2018-12-22 00:46:51 +01:00
|
|
|
if (pages.length > newCount)
|
2020-09-16 21:35:09 +02:00
|
|
|
// This resize() doesn't need to be checked because we can't get here
|
|
|
|
// if the set is currently in_error() and this only resizes downwards
|
|
|
|
// which will always succeed if the set is not in_error().
|
2018-06-12 05:55:14 +02:00
|
|
|
resize (newCount);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2017-10-15 16:53:09 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void union_ (const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2019-05-16 01:49:35 +02:00
|
|
|
process (hb_bitwise_or, other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
void intersect (const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2019-05-16 01:49:35 +02:00
|
|
|
process (hb_bitwise_and, other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
void subtract (const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2019-05-16 01:49:35 +02:00
|
|
|
process (hb_bitwise_sub, other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
void symmetric_difference (const hb_set_t *other)
|
2012-05-25 19:48:00 +02:00
|
|
|
{
|
2019-05-16 01:49:35 +02:00
|
|
|
process (hb_bitwise_xor, other);
|
2013-01-03 05:50:36 +01:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
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;
|
2018-11-24 16:06:13 +01:00
|
|
|
page_map.bfind (map, &i, HB_BFIND_NOT_FOUND_STORE_CLOSEST);
|
2018-12-22 00:46:51 +01:00
|
|
|
if (i < page_map.length && page_map[i].major == map.major)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
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;
|
2018-02-14 10:00:10 +01: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
|
|
|
}
|
2018-12-22 00:46:51 +01:00
|
|
|
for (; i < page_map.length; i++)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
bool previous (hb_codepoint_t *codepoint) const
|
2018-02-14 10:00:10 +01:00
|
|
|
{
|
|
|
|
if (unlikely (*codepoint == INVALID)) {
|
|
|
|
*codepoint = get_max ();
|
|
|
|
return *codepoint != INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
page_map_t map = {get_major (*codepoint), 0};
|
|
|
|
unsigned int i;
|
2018-11-24 16:06:13 +01:00
|
|
|
page_map.bfind (map, &i, HB_BFIND_NOT_FOUND_STORE_CLOSEST);
|
2018-12-22 00:46:51 +01:00
|
|
|
if (i < page_map.length && page_map[i].major == map.major)
|
2018-02-14 10:00:10 +01:00
|
|
|
{
|
|
|
|
if (pages[page_map[i].index].previous (codepoint))
|
|
|
|
{
|
|
|
|
*codepoint += page_map[i].major * page_t::PAGE_BITS;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i--;
|
|
|
|
for (; (int) i >= 0; i--)
|
|
|
|
{
|
|
|
|
hb_codepoint_t m = pages[page_map[i].index].get_max ();
|
|
|
|
if (m != INVALID)
|
|
|
|
{
|
|
|
|
*codepoint = page_map[i].major * page_t::PAGE_BITS + m;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*codepoint = INVALID;
|
|
|
|
return false;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const
|
2012-11-16 01:15:42 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2018-02-14 10:00:10 +01:00
|
|
|
/* TODO Speed up. */
|
2012-11-16 01:15:42 +01:00
|
|
|
*last = *first = i;
|
|
|
|
while (next (&i) && i == *last + 1)
|
|
|
|
(*last)++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
bool previous_range (hb_codepoint_t *first, hb_codepoint_t *last) const
|
2018-02-14 10:00:10 +01:00
|
|
|
{
|
|
|
|
hb_codepoint_t i;
|
|
|
|
|
|
|
|
i = *first;
|
|
|
|
if (!previous (&i))
|
|
|
|
{
|
|
|
|
*last = *first = INVALID;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO Speed up. */
|
|
|
|
*last = *first = i;
|
|
|
|
while (previous (&i) && i == *first - 1)
|
|
|
|
(*first)--;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned int get_population () const
|
2012-11-16 01:15:42 +01:00
|
|
|
{
|
2019-12-15 15:50:01 +01:00
|
|
|
if (population != UINT_MAX)
|
2018-05-02 00:27:41 +02:00
|
|
|
return population;
|
|
|
|
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int pop = 0;
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = pages.length;
|
2017-10-15 16:53:09 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
pop += pages[i].get_population ();
|
2018-05-02 00:27:41 +02:00
|
|
|
|
|
|
|
population = pop;
|
2017-10-15 16:53:09 +02:00
|
|
|
return pop;
|
2012-11-16 01:15:42 +01:00
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_codepoint_t get_min () const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = pages.length;
|
2017-10-15 16:53:09 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (!page_at (i).is_empty ())
|
2019-08-24 15:27:14 +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
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_codepoint_t get_max () const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = pages.length;
|
2021-04-20 03:01:24 +02:00
|
|
|
for (int i = count - 1; i >= 0; i--)
|
2017-10-15 16:53:09 +02:00
|
|
|
if (!page_at (i).is_empty ())
|
2019-08-24 15:27:14 +02:00
|
|
|
return page_map[(unsigned) 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
|
|
|
|
2019-01-21 01:47:52 +01:00
|
|
|
static constexpr hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2018-12-22 02:06:17 +01:00
|
|
|
/*
|
|
|
|
* Iterator implementation.
|
|
|
|
*/
|
2019-01-30 02:10:19 +01:00
|
|
|
struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t>
|
2018-12-22 02:06:17 +01:00
|
|
|
{
|
2019-05-15 07:28:07 +02:00
|
|
|
static constexpr bool is_sorted_iterator = true;
|
2020-04-20 11:42:45 +02:00
|
|
|
iter_t (const hb_set_t &s_ = Null (hb_set_t),
|
2019-11-18 19:09:29 +01:00
|
|
|
bool init = true) : s (&s_), v (INVALID), l(0)
|
|
|
|
{
|
|
|
|
if (init)
|
|
|
|
{
|
|
|
|
l = s->get_population () + 1;
|
|
|
|
__next__ ();
|
|
|
|
}
|
|
|
|
}
|
2018-12-22 02:06:17 +01:00
|
|
|
|
2019-01-09 08:48:35 +01:00
|
|
|
typedef hb_codepoint_t __item_t__;
|
2018-12-27 23:17:28 +01:00
|
|
|
hb_codepoint_t __item__ () const { return v; }
|
2018-12-22 02:06:17 +01:00
|
|
|
bool __more__ () const { return v != INVALID; }
|
2018-12-27 00:54:27 +01:00
|
|
|
void __next__ () { s->next (&v); if (l) l--; }
|
|
|
|
void __prev__ () { s->previous (&v); }
|
|
|
|
unsigned __len__ () const { return l; }
|
2019-11-18 19:09:29 +01:00
|
|
|
iter_t end () const { return iter_t (*s, false); }
|
2019-05-07 04:57:15 +02:00
|
|
|
bool operator != (const iter_t& o) const
|
|
|
|
{ return s != o.s || v != o.v; }
|
2018-12-22 02:06:17 +01:00
|
|
|
|
|
|
|
protected:
|
2018-12-27 00:54:27 +01:00
|
|
|
const hb_set_t *s;
|
2018-12-22 02:06:17 +01:00
|
|
|
hb_codepoint_t v;
|
2018-12-22 17:11:10 +01:00
|
|
|
unsigned l;
|
2018-12-22 02:06:17 +01:00
|
|
|
};
|
2018-12-27 01:49:13 +01:00
|
|
|
iter_t iter () const { return iter_t (*this); }
|
|
|
|
operator iter_t () const { return iter (); }
|
2018-12-22 02:06:17 +01:00
|
|
|
|
2018-12-22 02:00:52 +01:00
|
|
|
protected:
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
page_t *page_for_insert (hb_codepoint_t g)
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
page_map_t map = {get_major (g), pages.length};
|
2017-10-15 16:53:09 +02:00
|
|
|
unsigned int i;
|
2018-11-24 16:06:13 +01:00
|
|
|
if (!page_map.bfind (map, &i, HB_BFIND_NOT_FOUND_STORE_CLOSEST))
|
2017-10-15 16:53:09 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
if (!resize (pages.length + 1))
|
2017-10-15 16:53:09 +02:00
|
|
|
return nullptr;
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2017-12-01 22:34:14 +01:00
|
|
|
pages[map.index].init0 ();
|
2018-10-26 01:50:38 +02:00
|
|
|
memmove (page_map + i + 1,
|
|
|
|
page_map + i,
|
2018-12-22 00:46:51 +01:00
|
|
|
(page_map.length - 1 - i) * page_map.item_size);
|
2017-10-15 16:53:09 +02:00
|
|
|
page_map[i] = map;
|
|
|
|
}
|
|
|
|
return &pages[page_map[i].index];
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
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)};
|
2018-02-08 04:13:10 +01:00
|
|
|
const page_map_t *found = page_map.bsearch (key);
|
2017-10-15 16:53:09 +02:00
|
|
|
if (found)
|
|
|
|
return &pages[found->index];
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
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)};
|
2018-02-08 04:13:10 +01:00
|
|
|
const page_map_t *found = page_map.bsearch (key);
|
2017-10-15 16:53:09 +02:00
|
|
|
if (found)
|
|
|
|
return &pages[found->index];
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
page_t &page_at (unsigned int i) { return pages[page_map[i].index]; }
|
|
|
|
const page_t &page_at (unsigned int i) const { return pages[page_map[i].index]; }
|
|
|
|
unsigned int get_major (hb_codepoint_t g) const { return g / page_t::PAGE_BITS; }
|
|
|
|
hb_codepoint_t major_start (unsigned int major) const { return major * page_t::PAGE_BITS; }
|
2012-04-24 04:41:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#endif /* HB_SET_HH */
|