harfbuzz/src/hb-set-private.hh

235 lines
6.2 KiB
C++
Raw Normal View History

2012-04-24 04:41:09 +02:00
/*
* Copyright © 2012 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_SET_PRIVATE_HH
#define HB_SET_PRIVATE_HH
#include "hb-private.hh"
#include "hb-object-private.hh"
/*
* hb_set_t
*/
2013-04-17 05:21:38 +02:00
2012-05-25 20:17:54 +02:00
/* TODO Make this faster and memmory efficient. */
2012-04-24 04:41:09 +02:00
struct hb_set_t
2012-04-24 04:41:09 +02:00
{
2012-06-06 09:30:09 +02:00
hb_object_header_t header;
ASSERT_POD ();
bool in_error;
2012-06-06 09:30:09 +02:00
inline void init (void) {
hb_object_init (this);
clear ();
}
2012-04-25 06:14:46 +02:00
inline void fini (void) {
}
2012-04-24 04:41:09 +02:00
inline void clear (void) {
if (unlikely (hb_object_is_inert (this)))
return;
in_error = false;
2012-04-24 04:41:09 +02:00
memset (elts, 0, sizeof elts);
}
2012-11-16 01:15:42 +01:00
inline bool is_empty (void) const {
for (unsigned int i = 0; i < ARRAY_LENGTH (elts); i++)
if (elts[i])
return false;
return true;
}
2012-04-24 05:03:12 +02:00
inline void add (hb_codepoint_t g)
2012-04-24 04:41:09 +02:00
{
if (unlikely (in_error)) return;
if (unlikely (g == INVALID)) return;
2012-04-24 05:03:12 +02:00
if (unlikely (g > MAX_G)) return;
elt (g) |= mask (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)
{
if (unlikely (in_error)) return;
2012-11-16 01:15:42 +01:00
/* TODO Speedup */
2012-06-09 08:02:46 +02:00
for (unsigned int i = a; i < b + 1; i++)
add (i);
}
2012-04-24 05:03:12 +02:00
inline void del (hb_codepoint_t g)
2012-04-24 04:41:09 +02:00
{
if (unlikely (in_error)) return;
2012-04-24 05:03:12 +02:00
if (unlikely (g > MAX_G)) return;
elt (g) &= ~mask (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)
{
if (unlikely (in_error)) return;
2012-11-16 01:15:42 +01:00
/* TODO Speedup */
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
{
if (unlikely (g > MAX_G)) return false;
return !!(elt (g) & mask (g));
}
inline bool intersects (hb_codepoint_t first,
hb_codepoint_t last) const
{
if (unlikely (first > MAX_G)) return false;
if (unlikely (last > MAX_G)) last = MAX_G;
unsigned int end = last + 1;
for (hb_codepoint_t i = first; i < end; i++)
if (has (i))
return true;
return false;
}
2012-11-16 01:15:42 +01:00
inline bool is_equal (const hb_set_t *other) const
{
for (unsigned int i = 0; i < ELTS; i++)
if (elts[i] != other->elts[i])
return false;
return true;
}
inline void set (const hb_set_t *other)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] = other->elts[i];
}
inline void union_ (const hb_set_t *other)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] |= other->elts[i];
}
inline void intersect (const hb_set_t *other)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] &= other->elts[i];
}
inline void subtract (const hb_set_t *other)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] &= ~other->elts[i];
}
2012-05-25 19:48:00 +02:00
inline void symmetric_difference (const hb_set_t *other)
{
if (unlikely (in_error)) return;
2012-05-25 19:48:00 +02:00
for (unsigned int i = 0; i < ELTS; i++)
elts[i] ^= other->elts[i];
}
inline void invert (void)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] = ~elts[i];
}
2012-11-16 01:15:42 +01:00
inline bool next (hb_codepoint_t *codepoint) const
2012-05-25 20:17:54 +02:00
{
if (unlikely (*codepoint == INVALID)) {
2012-05-25 20:17:54 +02:00
hb_codepoint_t i = get_min ();
if (i != INVALID) {
2012-05-25 20:17:54 +02:00
*codepoint = i;
return true;
} else {
*codepoint = INVALID;
2012-05-25 20:17:54 +02:00
return false;
}
2012-05-25 20:17:54 +02:00
}
for (hb_codepoint_t i = *codepoint + 1; i < MAX_G + 1; i++)
if (has (i)) {
*codepoint = i;
return true;
}
*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))
{
*last = *first = INVALID;
2012-11-16 01:15:42 +01:00
return false;
}
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
{
unsigned int count = 0;
for (unsigned int i = 0; i < ELTS; i++)
count += _hb_popcount32 (elts[i]);
return count;
}
inline hb_codepoint_t get_min (void) const
{
for (unsigned int i = 0; i < ELTS; i++)
if (elts[i])
for (unsigned int j = 0; j < BITS; j++)
if (elts[i] & (1u << j))
return i * BITS + j;
return INVALID;
}
inline hb_codepoint_t get_max (void) const
{
for (unsigned int i = ELTS; i; i--)
if (elts[i - 1])
for (unsigned int j = BITS; j; j--)
if (elts[i - 1] & (1u << (j - 1)))
return (i - 1) * BITS + (j - 1);
return INVALID;
}
2012-04-24 04:41:09 +02:00
typedef uint32_t elt_t;
2012-05-25 20:17:54 +02:00
static const unsigned int MAX_G = 65536 - 1; /* XXX Fix this... */
2012-04-24 04:41:09 +02:00
static const unsigned int SHIFT = 5;
static const unsigned int BITS = (1 << SHIFT);
static const unsigned int MASK = BITS - 1;
static const unsigned int ELTS = (MAX_G + 1 + (BITS - 1)) / BITS;
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
2012-04-24 04:41:09 +02:00
elt_t &elt (hb_codepoint_t g) { return elts[g >> SHIFT]; }
elt_t const &elt (hb_codepoint_t g) const { return elts[g >> SHIFT]; }
2012-04-24 04:41:09 +02:00
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & MASK); }
2012-05-10 23:09:48 +02:00
elt_t elts[ELTS]; /* XXX 8kb */
2012-04-24 04:41:09 +02:00
static_assert ((sizeof (elt_t) * 8 == BITS), "");
static_assert ((sizeof (elt_t) * 8 * ELTS > MAX_G), "");
2012-04-24 04:41:09 +02:00
};
#endif /* HB_SET_PRIVATE_HH */