Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 1 | /* |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 2 | * Copyright © 2012,2017 Google, Inc. |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Google Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
| 27 | #ifndef HB_SET_PRIVATE_HH |
| 28 | #define HB_SET_PRIVATE_HH |
| 29 | |
| 30 | #include "hb-private.hh" |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 31 | #include "hb-object-private.hh" |
| 32 | |
| 33 | |
Behdad Esfahbod | 0edd0fd | 2013-04-17 17:26:56 -0400 | [diff] [blame] | 34 | /* |
Behdad Esfahbod | 0d5798a | 2013-04-17 18:19:21 -0400 | [diff] [blame] | 35 | * hb_set_t |
| 36 | */ |
Behdad Esfahbod | b40f2c0 | 2013-04-16 23:21:38 -0400 | [diff] [blame] | 37 | |
Behdad Esfahbod | 1bc1cb3 | 2012-06-16 15:21:55 -0400 | [diff] [blame] | 38 | struct hb_set_t |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 39 | { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 40 | struct page_map_t |
| 41 | { |
| 42 | inline int cmp (const page_map_t *o) const { return (int) o->major - (int) major; } |
| 43 | |
| 44 | uint32_t major; |
| 45 | uint32_t index; |
| 46 | }; |
| 47 | |
| 48 | struct page_t |
| 49 | { |
| 50 | inline void init (void) { |
| 51 | memset (&v, 0, sizeof (v)); |
| 52 | } |
| 53 | |
| 54 | inline unsigned int len (void) const |
| 55 | { return ARRAY_LENGTH_CONST (v); } |
| 56 | |
| 57 | inline bool is_empty (void) const |
| 58 | { |
| 59 | for (unsigned int i = 0; i < len (); i++) |
| 60 | if (v[i]) |
| 61 | return false; |
| 62 | return true; |
| 63 | } |
| 64 | |
| 65 | inline void add (hb_codepoint_t g) { elt (g) |= mask (g); } |
| 66 | inline void del (hb_codepoint_t g) { elt (g) &= ~mask (g); } |
| 67 | inline bool has (hb_codepoint_t g) const { return !!(elt (g) & mask (g)); } |
| 68 | |
| 69 | inline bool is_equal (const page_t *other) const |
| 70 | { |
| 71 | return 0 == memcmp (&v, &other->v, sizeof (v)); |
| 72 | } |
| 73 | |
| 74 | inline unsigned int get_population (void) const |
| 75 | { |
| 76 | unsigned int pop = 0; |
| 77 | for (unsigned int i = 0; i < len (); i++) |
| 78 | pop += _hb_popcount (v[i]); |
| 79 | return pop; |
| 80 | } |
| 81 | |
| 82 | inline bool next (hb_codepoint_t *codepoint) const |
| 83 | { |
| 84 | unsigned int m = (*codepoint + 1) & MASK; |
| 85 | if (!m) |
| 86 | { |
| 87 | *codepoint = INVALID; |
| 88 | return false; |
| 89 | } |
| 90 | unsigned int i = m / ELT_BITS; |
| 91 | unsigned int j = m & ELT_MASK; |
| 92 | |
| 93 | for (; j < ELT_BITS; j++) |
| 94 | if (v[i] & (elt_t (1) << j)) |
| 95 | goto found; |
| 96 | for (i++; i < len (); i++) |
| 97 | if (v[i]) |
| 98 | for (unsigned int j = 0; j < ELT_BITS; j++) |
| 99 | if (v[i] & (elt_t (1) << j)) |
| 100 | goto found; |
| 101 | |
| 102 | *codepoint = INVALID; |
| 103 | return false; |
| 104 | |
| 105 | found: |
| 106 | *codepoint = i * ELT_BITS + j; |
| 107 | return true; |
| 108 | } |
| 109 | inline hb_codepoint_t get_min (void) const |
| 110 | { |
| 111 | for (unsigned int i = 0; i < len (); i++) |
| 112 | if (v[i]) |
| 113 | { |
| 114 | elt_t e = v[i]; |
| 115 | for (unsigned int j = 0; j < ELT_BITS; j++) |
| 116 | if (e & (elt_t (1) << j)) |
| 117 | return i * ELT_BITS + j; |
| 118 | } |
| 119 | return INVALID; |
| 120 | } |
| 121 | inline hb_codepoint_t get_max (void) const |
| 122 | { |
| 123 | for (int i = len () - 1; i >= 0; i--) |
| 124 | if (v[i]) |
| 125 | { |
| 126 | elt_t e = v[i]; |
| 127 | for (int j = ELT_BITS - 1; j >= 0; j--) |
| 128 | if (e & (elt_t (1) << j)) |
| 129 | return i * ELT_BITS + j; |
| 130 | } |
| 131 | return 0; |
| 132 | } |
| 133 | |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 134 | static const unsigned int PAGE_BITS = 512; /* Use to tune. */ |
| 135 | static_assert ((PAGE_BITS & ((PAGE_BITS) - 1)) == 0, ""); |
| 136 | |
Behdad Esfahbod | f8a0ec5 | 2017-10-15 16:10:35 -0400 | [diff] [blame] | 137 | typedef uint64_t elt_t; |
| 138 | |
Behdad Esfahbod | bb99179 | 2017-10-15 18:20:25 -0400 | [diff] [blame] | 139 | #if 0 && HAVE_VECTOR_SIZE |
| 140 | /* The vectorized version does not work with clang as non-const |
Behdad Esfahbod | ab8f327 | 2017-10-15 18:21:35 -0400 | [diff] [blame] | 141 | * elt() errs "non-const reference cannot bind to vector element". */ |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 142 | typedef elt_t vector_t __attribute__((vector_size (PAGE_BITS / 8))); |
| 143 | #else |
Behdad Esfahbod | 7737e87 | 2017-10-15 16:21:03 -0400 | [diff] [blame] | 144 | typedef hb_vector_size_t<elt_t, PAGE_BITS / 8> vector_t; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 145 | #endif |
| 146 | |
| 147 | vector_t v; |
| 148 | |
| 149 | static const unsigned int ELT_BITS = sizeof (elt_t) * 8; |
| 150 | static const unsigned int ELT_MASK = ELT_BITS - 1; |
Behdad Esfahbod | ba8b569 | 2017-10-17 11:16:36 -0700 | [diff] [blame] | 151 | static const unsigned int BITS = sizeof (vector_t) * 8; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 152 | static const unsigned int MASK = BITS - 1; |
| 153 | static_assert (PAGE_BITS == BITS, ""); |
| 154 | |
| 155 | elt_t &elt (hb_codepoint_t g) { return v[(g & MASK) / ELT_BITS]; } |
| 156 | elt_t const &elt (hb_codepoint_t g) const { return v[(g & MASK) / ELT_BITS]; } |
| 157 | elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & ELT_MASK); } |
| 158 | }; |
Behdad Esfahbod | d0f0ff8 | 2017-10-23 08:34:30 -0400 | [diff] [blame] | 159 | static_assert (page_t::PAGE_BITS == sizeof (page_t) * 8, ""); |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 160 | |
Behdad Esfahbod | 6220e5f | 2012-06-06 03:30:09 -0400 | [diff] [blame] | 161 | hb_object_header_t header; |
| 162 | ASSERT_POD (); |
Behdad Esfahbod | 8165f27 | 2013-01-02 22:50:36 -0600 | [diff] [blame] | 163 | bool in_error; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 164 | hb_prealloced_array_t<page_map_t, 8> page_map; |
| 165 | hb_prealloced_array_t<page_t, 8> pages; |
| 166 | |
| 167 | inline bool resize (unsigned int count) |
| 168 | { |
| 169 | if (unlikely (in_error)) return false; |
| 170 | if (!pages.resize (count) || !page_map.resize (count)) |
| 171 | { |
| 172 | pages.resize (page_map.len); |
| 173 | in_error = true; |
| 174 | return false; |
| 175 | } |
| 176 | return true; |
| 177 | } |
Behdad Esfahbod | 6220e5f | 2012-06-06 03:30:09 -0400 | [diff] [blame] | 178 | |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 179 | inline void clear (void) { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 180 | if (unlikely (hb_object_is_inert (this))) |
| 181 | return; |
| 182 | in_error = false; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 183 | page_map.resize (0); |
| 184 | pages.resize (0); |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 185 | } |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 186 | inline bool is_empty (void) const { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 187 | unsigned int count = pages.len; |
| 188 | for (unsigned int i = 0; i < count; i++) |
| 189 | if (!pages[i].is_empty ()) |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 190 | return false; |
| 191 | return true; |
| 192 | } |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 193 | |
Behdad Esfahbod | 5caece6 | 2012-04-23 23:03:12 -0400 | [diff] [blame] | 194 | inline void add (hb_codepoint_t g) |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 195 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 196 | if (unlikely (in_error)) return; |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 197 | if (unlikely (g == INVALID)) return; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 198 | page_t *page = page_for_insert (g); |
| 199 | if (!page) |
| 200 | return; |
| 201 | page->add (g); |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 202 | } |
Behdad Esfahbod | 67bb9e8 | 2012-06-09 02:02:46 -0400 | [diff] [blame] | 203 | inline void add_range (hb_codepoint_t a, hb_codepoint_t b) |
| 204 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 205 | if (unlikely (in_error)) return; |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 206 | /* TODO Speedup */ |
Behdad Esfahbod | 67bb9e8 | 2012-06-09 02:02:46 -0400 | [diff] [blame] | 207 | for (unsigned int i = a; i < b + 1; i++) |
| 208 | add (i); |
| 209 | } |
Behdad Esfahbod | 5caece6 | 2012-04-23 23:03:12 -0400 | [diff] [blame] | 210 | inline void del (hb_codepoint_t g) |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 211 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 212 | if (unlikely (in_error)) return; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 213 | page_t *p = page_for (g); |
| 214 | if (!p) |
| 215 | return; |
| 216 | p->del (g); |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 217 | } |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 218 | inline void del_range (hb_codepoint_t a, hb_codepoint_t b) |
| 219 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 220 | if (unlikely (in_error)) return; |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 221 | for (unsigned int i = a; i < b + 1; i++) |
| 222 | del (i); |
| 223 | } |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 224 | inline bool has (hb_codepoint_t g) const |
| 225 | { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 226 | const page_t *p = page_for (g); |
| 227 | if (!p) |
| 228 | return false; |
| 229 | return p->has (g); |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 230 | } |
| 231 | inline bool intersects (hb_codepoint_t first, |
| 232 | hb_codepoint_t last) const |
| 233 | { |
Behdad Esfahbod | 10d4365 | 2017-10-15 16:56:05 -0400 | [diff] [blame] | 234 | hb_codepoint_t c = first - 1; |
| 235 | return next (&c) && c <= last; |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 236 | } |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 237 | inline void set (const hb_set_t *other) |
| 238 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 239 | if (unlikely (in_error)) return; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 240 | unsigned int count = other->pages.len; |
| 241 | if (!resize (count)) |
| 242 | return; |
| 243 | |
| 244 | memcpy (pages.array, other->pages.array, count * sizeof (pages.array[0])); |
| 245 | memcpy (page_map.array, other->page_map.array, count * sizeof (page_map.array[0])); |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 246 | } |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 247 | |
| 248 | inline bool is_equal (const hb_set_t *other) const |
| 249 | { |
| 250 | unsigned int na = pages.len; |
| 251 | unsigned int nb = other->pages.len; |
| 252 | |
| 253 | unsigned int a = 0, b = 0; |
| 254 | for (; a < na && b < nb; ) |
| 255 | { |
| 256 | if (page_at (a).is_empty ()) { a++; continue; } |
| 257 | if (other->page_at (b).is_empty ()) { b++; continue; } |
| 258 | if (page_map[a].major != other->page_map[b].major || |
| 259 | !page_at (a).is_equal (&other->page_at (b))) |
| 260 | return false; |
| 261 | a++; |
| 262 | b++; |
| 263 | } |
| 264 | for (; a < na; a++) |
| 265 | if (!page_at (a).is_empty ()) { return false; } |
| 266 | for (; b < nb; b++) |
| 267 | if (!other->page_at (b).is_empty ()) { return false; } |
| 268 | |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | template <class Op> |
| 273 | inline void process (const hb_set_t *other) |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 274 | { |
Behdad Esfahbod | 7b1b720 | 2013-01-02 23:02:59 -0600 | [diff] [blame] | 275 | if (unlikely (in_error)) return; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 276 | |
| 277 | int na = pages.len; |
| 278 | int nb = other->pages.len; |
| 279 | |
| 280 | unsigned int count = 0; |
| 281 | int a = 0, b = 0; |
| 282 | for (; a < na && b < nb; ) |
| 283 | { |
| 284 | if (page_map[a].major == other->page_map[b].major) |
| 285 | { |
| 286 | count++; |
| 287 | a++; |
| 288 | b++; |
| 289 | } |
| 290 | else if (page_map[a].major < other->page_map[b].major) |
| 291 | { |
| 292 | if (Op::passthru_left) |
| 293 | count++; |
| 294 | a++; |
| 295 | } |
| 296 | else |
| 297 | { |
| 298 | if (Op::passthru_right) |
| 299 | count++; |
| 300 | b++; |
| 301 | } |
| 302 | } |
| 303 | if (Op::passthru_left) |
| 304 | count += na - a; |
| 305 | if (Op::passthru_right) |
| 306 | count += nb - b; |
| 307 | |
| 308 | if (!resize (count)) |
| 309 | return; |
| 310 | |
| 311 | /* Process in-place backward. */ |
| 312 | a = na - 1, b = nb - 1; |
| 313 | for (; a >= 0 && b >= 0; ) |
| 314 | { |
| 315 | if (page_map[a].major == other->page_map[b].major) |
| 316 | { |
| 317 | Op::process (page_at (--count).v, page_at (a).v, other->page_at (b).v); |
| 318 | a--; |
| 319 | b--; |
| 320 | } |
Behdad Esfahbod | a11249e | 2017-10-16 01:33:32 -0400 | [diff] [blame] | 321 | else if (page_map[a].major > other->page_map[b].major) |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 322 | { |
| 323 | if (Op::passthru_left) |
| 324 | page_at (--count).v = page_at (a).v; |
| 325 | a--; |
| 326 | } |
| 327 | else |
| 328 | { |
| 329 | if (Op::passthru_right) |
| 330 | page_at (--count).v = other->page_at (b).v; |
| 331 | b--; |
| 332 | } |
| 333 | } |
| 334 | while (a >= 0) |
| 335 | page_at (--count).v = page_at (--a).v; |
| 336 | while (b >= 0) |
| 337 | page_at (--count).v = other->page_at (--b).v; |
| 338 | assert (!count); |
| 339 | } |
| 340 | |
| 341 | inline void union_ (const hb_set_t *other) |
| 342 | { |
Behdad Esfahbod | f8a0ec5 | 2017-10-15 16:10:35 -0400 | [diff] [blame] | 343 | process<HbOpOr> (other); |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 344 | } |
| 345 | inline void intersect (const hb_set_t *other) |
| 346 | { |
Behdad Esfahbod | f8a0ec5 | 2017-10-15 16:10:35 -0400 | [diff] [blame] | 347 | process<HbOpAnd> (other); |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 348 | } |
| 349 | inline void subtract (const hb_set_t *other) |
| 350 | { |
Behdad Esfahbod | f8a0ec5 | 2017-10-15 16:10:35 -0400 | [diff] [blame] | 351 | process<HbOpMinus> (other); |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 352 | } |
Behdad Esfahbod | 62c3e11 | 2012-05-25 13:48:00 -0400 | [diff] [blame] | 353 | inline void symmetric_difference (const hb_set_t *other) |
| 354 | { |
Behdad Esfahbod | f8a0ec5 | 2017-10-15 16:10:35 -0400 | [diff] [blame] | 355 | process<HbOpXor> (other); |
Behdad Esfahbod | 8165f27 | 2013-01-02 22:50:36 -0600 | [diff] [blame] | 356 | } |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 357 | inline bool next (hb_codepoint_t *codepoint) const |
Behdad Esfahbod | 29ce446 | 2012-05-25 14:17:54 -0400 | [diff] [blame] | 358 | { |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 359 | if (unlikely (*codepoint == INVALID)) { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 360 | *codepoint = get_min (); |
| 361 | return *codepoint != INVALID; |
| 362 | } |
| 363 | |
Behdad Esfahbod | dd33e4e | 2017-10-23 08:36:40 -0400 | [diff] [blame^] | 364 | page_map_t map = {get_major (*codepoint), 0}; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 365 | unsigned int i; |
| 366 | page_map.bfind (&map, &i); |
| 367 | if (i < page_map.len) |
| 368 | { |
| 369 | if (pages[page_map[i].index].next (codepoint)) |
| 370 | { |
Behdad Esfahbod | d0f0ff8 | 2017-10-23 08:34:30 -0400 | [diff] [blame] | 371 | *codepoint += page_map[i].major * page_t::PAGE_BITS; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 372 | return true; |
| 373 | } |
| 374 | i++; |
| 375 | } |
| 376 | for (; i < page_map.len; i++) |
| 377 | { |
| 378 | hb_codepoint_t m = pages[page_map[i].index].get_min (); |
| 379 | if (m != INVALID) |
| 380 | { |
Behdad Esfahbod | d0f0ff8 | 2017-10-23 08:34:30 -0400 | [diff] [blame] | 381 | *codepoint = page_map[i].major * page_t::PAGE_BITS + m; |
Behdad Esfahbod | 29ce446 | 2012-05-25 14:17:54 -0400 | [diff] [blame] | 382 | return true; |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 383 | } |
Behdad Esfahbod | 29ce446 | 2012-05-25 14:17:54 -0400 | [diff] [blame] | 384 | } |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 385 | *codepoint = INVALID; |
Behdad Esfahbod | 29ce446 | 2012-05-25 14:17:54 -0400 | [diff] [blame] | 386 | return false; |
| 387 | } |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 388 | inline bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const |
| 389 | { |
| 390 | hb_codepoint_t i; |
| 391 | |
| 392 | i = *last; |
| 393 | if (!next (&i)) |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 394 | { |
| 395 | *last = *first = INVALID; |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 396 | return false; |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 397 | } |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 398 | |
| 399 | *last = *first = i; |
| 400 | while (next (&i) && i == *last + 1) |
| 401 | (*last)++; |
| 402 | |
| 403 | return true; |
| 404 | } |
| 405 | |
| 406 | inline unsigned int get_population (void) const |
| 407 | { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 408 | unsigned int pop = 0; |
| 409 | unsigned int count = pages.len; |
| 410 | for (unsigned int i = 0; i < count; i++) |
| 411 | pop += pages[i].get_population (); |
| 412 | return pop; |
Behdad Esfahbod | aec89de | 2012-11-15 16:15:42 -0800 | [diff] [blame] | 413 | } |
Behdad Esfahbod | f039e79 | 2012-05-17 20:55:12 -0400 | [diff] [blame] | 414 | inline hb_codepoint_t get_min (void) const |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 415 | { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 416 | unsigned int count = pages.len; |
| 417 | for (unsigned int i = 0; i < count; i++) |
| 418 | if (!page_at (i).is_empty ()) |
Behdad Esfahbod | d0f0ff8 | 2017-10-23 08:34:30 -0400 | [diff] [blame] | 419 | return page_map[i].major * page_t::PAGE_BITS + page_at (i).get_min (); |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 420 | return INVALID; |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 421 | } |
Behdad Esfahbod | f039e79 | 2012-05-17 20:55:12 -0400 | [diff] [blame] | 422 | inline hb_codepoint_t get_max (void) const |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 423 | { |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 424 | unsigned int count = pages.len; |
| 425 | for (int i = count - 1; i >= 0; i++) |
| 426 | if (!page_at (i).is_empty ()) |
Behdad Esfahbod | d0f0ff8 | 2017-10-23 08:34:30 -0400 | [diff] [blame] | 427 | return page_map[i].major * page_t::PAGE_BITS + page_at (i).get_max (); |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 428 | return INVALID; |
Behdad Esfahbod | 6c6ccaf | 2012-04-24 14:21:15 -0400 | [diff] [blame] | 429 | } |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 430 | |
Behdad Esfahbod | 20cbc1f | 2013-09-06 15:29:22 -0400 | [diff] [blame] | 431 | static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID; |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 432 | |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 433 | page_t *page_for_insert (hb_codepoint_t g) |
| 434 | { |
Behdad Esfahbod | dd33e4e | 2017-10-23 08:36:40 -0400 | [diff] [blame^] | 435 | page_map_t map = {get_major (g), pages.len}; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 436 | unsigned int i; |
| 437 | if (!page_map.bfind (&map, &i)) |
| 438 | { |
| 439 | if (!resize (pages.len + 1)) |
| 440 | return nullptr; |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 441 | |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 442 | pages[map.index].init (); |
| 443 | memmove (&page_map[i + 1], &page_map[i], (page_map.len - 1 - i) * sizeof (page_map[0])); |
| 444 | page_map[i] = map; |
| 445 | } |
| 446 | return &pages[page_map[i].index]; |
| 447 | } |
| 448 | page_t *page_for (hb_codepoint_t g) |
| 449 | { |
Behdad Esfahbod | dd33e4e | 2017-10-23 08:36:40 -0400 | [diff] [blame^] | 450 | page_map_t key = {get_major (g)}; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 451 | const page_map_t *found = page_map.bsearch (&key); |
| 452 | if (found) |
| 453 | return &pages[found->index]; |
| 454 | return nullptr; |
| 455 | } |
| 456 | const page_t *page_for (hb_codepoint_t g) const |
| 457 | { |
Behdad Esfahbod | dd33e4e | 2017-10-23 08:36:40 -0400 | [diff] [blame^] | 458 | page_map_t key = {get_major (g)}; |
Behdad Esfahbod | deed4a4 | 2017-10-15 16:53:09 +0200 | [diff] [blame] | 459 | const page_map_t *found = page_map.bsearch (&key); |
| 460 | if (found) |
| 461 | return &pages[found->index]; |
| 462 | return nullptr; |
| 463 | } |
| 464 | page_t &page_at (unsigned int i) { return pages[page_map[i].index]; } |
| 465 | const page_t &page_at (unsigned int i) const { return pages[page_map[i].index]; } |
Behdad Esfahbod | dd33e4e | 2017-10-23 08:36:40 -0400 | [diff] [blame^] | 466 | unsigned int get_major (hb_codepoint_t g) const { return g / page_t::PAGE_BITS; } |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 467 | }; |
| 468 | |
Behdad Esfahbod | 0b08adb | 2012-04-23 22:41:09 -0400 | [diff] [blame] | 469 | |
| 470 | #endif /* HB_SET_PRIVATE_HH */ |