hb-ot-layout-gsubgpos.hh 85.8 KB
Newer Older
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2007,2008,2009,2010  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3
 * Copyright © 2010,2012  Google, Inc.
4
 *
B
Behdad Esfahbod 已提交
5
 *  This is part of HarfBuzz, a text shaping library.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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.
 *
 * Red Hat Author(s): Behdad Esfahbod
26
 * Google Author(s): Behdad Esfahbod
27 28
 */

29 30
#ifndef HB_OT_LAYOUT_GSUBGPOS_HH
#define HB_OT_LAYOUT_GSUBGPOS_HH
31

32 33 34 35
#include "hb.hh"
#include "hb-buffer.hh"
#include "hb-map.hh"
#include "hb-set.hh"
36 37
#include "hb-ot-layout-common.hh"
#include "hb-ot-layout-gdef-table.hh"
38

39

40 41
namespace OT {

B
Behdad Esfahbod 已提交
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
struct hb_intersects_context_t :
       hb_dispatch_context_t<hb_intersects_context_t, bool, 0>
{
  inline const char *get_name (void) { return "INTERSECTS"; }
  template <typename T>
  inline return_t dispatch (const T &obj) { return obj.intersects (this->glyphs); }
  static return_t default_return_value (void) { return false; }
  bool stop_sublookup_iteration (return_t r) const { return r; }

  const hb_set_t *glyphs;
  unsigned int debug_depth;

  hb_intersects_context_t (const hb_set_t *glyphs_) :
			     glyphs (glyphs_),
			     debug_depth (0) {}
};

B
Behdad Esfahbod 已提交
60 61
struct hb_closure_context_t :
       hb_dispatch_context_t<hb_closure_context_t, hb_void_t, HB_DEBUG_CLOSURE>
62
{
63
  inline const char *get_name (void) { return "CLOSURE"; }
64 65
  typedef return_t (*recurse_func_t) (hb_closure_context_t *c, unsigned int lookup_index);
  template <typename T>
66
  inline return_t dispatch (const T &obj) { obj.closure (this); return HB_VOID; }
67
  static return_t default_return_value (void) { return HB_VOID; }
68
  bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
69
  void recurse (unsigned int lookup_index)
70
  {
71
    if (unlikely (nesting_level_left == 0 || !recurse_func))
72
      return;
73 74 75 76 77 78

    nesting_level_left--;
    recurse_func (this, lookup_index);
    nesting_level_left++;
  }

79
  bool should_visit_lookup (unsigned int lookup_index)
80 81 82 83 84 85 86 87 88
  {
    if (is_lookup_done (lookup_index))
      return false;
    done_lookups->set (lookup_index, glyphs->get_population ());
    return true;
  }

  bool is_lookup_done (unsigned int lookup_index)
  {
89
    /* Have we visited this lookup with the current set of glyphs? */
90 91 92
    return done_lookups->get (lookup_index) == glyphs->get_population ();
  }

93
  hb_face_t *face;
94
  hb_set_t *glyphs;
95
  hb_auto_t<hb_set_t> out[1];
96
  recurse_func_t recurse_func;
97 98 99 100
  unsigned int nesting_level_left;
  unsigned int debug_depth;

  hb_closure_context_t (hb_face_t *face_,
101
			hb_set_t *glyphs_,
102
                        hb_map_t *done_lookups_,
103
		        unsigned int nesting_level_left_ = HB_MAX_NESTING_LEVEL) :
104 105
			  face (face_),
			  glyphs (glyphs_),
B
Behdad Esfahbod 已提交
106
			  recurse_func (nullptr),
107
			  nesting_level_left (nesting_level_left_),
108 109
			  debug_depth (0),
                          done_lookups (done_lookups_) {}
110

111 112 113 114 115
  ~hb_closure_context_t (void)
  {
    flush ();
  }

116
  void set_recurse_func (recurse_func_t func) { recurse_func = func; }
117

118 119 120 121 122 123
  void flush (void)
  {
    hb_set_union (glyphs, out);
    hb_set_clear (out);
  }

124 125
  private:
  hb_map_t *done_lookups;
126 127 128
};


B
Behdad Esfahbod 已提交
129 130
struct hb_would_apply_context_t :
       hb_dispatch_context_t<hb_would_apply_context_t, bool, HB_DEBUG_WOULD_APPLY>
131
{
132
  inline const char *get_name (void) { return "WOULD_APPLY"; }
B
Behdad Esfahbod 已提交
133
  template <typename T>
134
  inline return_t dispatch (const T &obj) { return obj.would_apply (this); }
B
Behdad Esfahbod 已提交
135
  static return_t default_return_value (void) { return false; }
136
  bool stop_sublookup_iteration (return_t r) const { return r; }
B
Behdad Esfahbod 已提交
137

138
  hb_face_t *face;
139
  const hb_codepoint_t *glyphs;
140
  unsigned int len;
141
  bool zero_context;
142 143 144
  unsigned int debug_depth;

  hb_would_apply_context_t (hb_face_t *face_,
145 146
			    const hb_codepoint_t *glyphs_,
			    unsigned int len_,
B
Behdad Esfahbod 已提交
147
			    bool zero_context_) :
148
			      face (face_),
149 150
			      glyphs (glyphs_),
			      len (len_),
151
			      zero_context (zero_context_),
152
			      debug_depth (0) {}
153 154 155
};


B
Behdad Esfahbod 已提交
156 157
struct hb_collect_glyphs_context_t :
       hb_dispatch_context_t<hb_collect_glyphs_context_t, hb_void_t, HB_DEBUG_COLLECT_GLYPHS>
158
{
159
  inline const char *get_name (void) { return "COLLECT_GLYPHS"; }
B
Behdad Esfahbod 已提交
160
  typedef return_t (*recurse_func_t) (hb_collect_glyphs_context_t *c, unsigned int lookup_index);
B
Behdad Esfahbod 已提交
161
  template <typename T>
162
  inline return_t dispatch (const T &obj) { obj.collect_glyphs (this); return HB_VOID; }
163
  static return_t default_return_value (void) { return HB_VOID; }
164
  bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
165
  void recurse (unsigned int lookup_index)
B
Behdad Esfahbod 已提交
166
  {
B
Behdad Esfahbod 已提交
167
    if (unlikely (nesting_level_left == 0 || !recurse_func))
168
      return;
B
Behdad Esfahbod 已提交
169

B
Behdad Esfahbod 已提交
170
    /* Note that GPOS sets recurse_func to nullptr already, so it doesn't get
171
     * past the previous check.  For GSUB, we only want to collect the output
172 173 174 175 176 177 178
     * glyphs in the recursion.  If output is not requested, we can go home now.
     *
     * Note further, that the above is not exactly correct.  A recursed lookup
     * is allowed to match input that is not matched in the context, but that's
     * not how most fonts are built.  It's possible to relax that and recurse
     * with all sets here if it proves to be an issue.
     */
179 180

    if (output == hb_set_get_empty ())
181
      return;
182

183
    /* Return if new lookup was recursed to before. */
B
Behdad Esfahbod 已提交
184
    if (recursed_lookups->has (lookup_index))
185
      return;
186

187 188 189 190
    hb_set_t *old_before = before;
    hb_set_t *old_input  = input;
    hb_set_t *old_after  = after;
    before = input = after = hb_set_get_empty ();
191

B
Behdad Esfahbod 已提交
192
    nesting_level_left--;
193
    recurse_func (this, lookup_index);
B
Behdad Esfahbod 已提交
194
    nesting_level_left++;
195 196 197 198 199

    before = old_before;
    input  = old_input;
    after  = old_after;

B
Behdad Esfahbod 已提交
200
    recursed_lookups->add (lookup_index);
201

202
    return;
B
Behdad Esfahbod 已提交
203 204
  }

205
  hb_face_t *face;
B
Minor  
Behdad Esfahbod 已提交
206 207 208 209
  hb_set_t *before;
  hb_set_t *input;
  hb_set_t *after;
  hb_set_t *output;
B
Behdad Esfahbod 已提交
210
  recurse_func_t recurse_func;
B
Behdad Esfahbod 已提交
211
  hb_set_t *recursed_lookups;
B
Behdad Esfahbod 已提交
212
  unsigned int nesting_level_left;
213 214 215
  unsigned int debug_depth;

  hb_collect_glyphs_context_t (hb_face_t *face_,
B
Behdad Esfahbod 已提交
216 217 218 219
			       hb_set_t  *glyphs_before, /* OUT. May be nullptr */
			       hb_set_t  *glyphs_input,  /* OUT. May be nullptr */
			       hb_set_t  *glyphs_after,  /* OUT. May be nullptr */
			       hb_set_t  *glyphs_output, /* OUT. May be nullptr */
220
			       unsigned int nesting_level_left_ = HB_MAX_NESTING_LEVEL) :
221
			      face (face_),
B
Minor  
Behdad Esfahbod 已提交
222 223 224 225
			      before (glyphs_before ? glyphs_before : hb_set_get_empty ()),
			      input  (glyphs_input  ? glyphs_input  : hb_set_get_empty ()),
			      after  (glyphs_after  ? glyphs_after  : hb_set_get_empty ()),
			      output (glyphs_output ? glyphs_output : hb_set_get_empty ()),
B
Behdad Esfahbod 已提交
226
			      recurse_func (nullptr),
227
			      recursed_lookups (hb_set_create ()),
B
Behdad Esfahbod 已提交
228
			      nesting_level_left (nesting_level_left_),
229 230
			      debug_depth (0) {}
  ~hb_collect_glyphs_context_t (void) { hb_set_destroy (recursed_lookups); }
B
Behdad Esfahbod 已提交
231 232

  void set_recurse_func (recurse_func_t func) { recurse_func = func; }
233 234 235 236
};



237
template <typename set_t>
B
Behdad Esfahbod 已提交
238 239
struct hb_add_coverage_context_t :
       hb_dispatch_context_t<hb_add_coverage_context_t<set_t>, const Coverage &, HB_DEBUG_GET_COVERAGE>
240
{
241
  inline const char *get_name (void) { return "GET_COVERAGE"; }
242 243
  typedef const Coverage &return_t;
  template <typename T>
244
  inline return_t dispatch (const T &obj) { return obj.get_coverage (); }
245
  static return_t default_return_value (void) { return Null(Coverage); }
246 247 248 249 250
  bool stop_sublookup_iteration (return_t r) const
  {
    r.add_coverage (set);
    return false;
  }
B
Behdad Esfahbod 已提交
251

252 253
  hb_add_coverage_context_t (set_t *set_) :
			    set (set_),
254 255
			    debug_depth (0) {}

256
  set_t *set;
257
  unsigned int debug_depth;
258 259 260
};


261 262
struct hb_ot_apply_context_t :
       hb_dispatch_context_t<hb_ot_apply_context_t, bool, HB_DEBUG_APPLY>
263
{
264
  struct matcher_t
B
Behdad Esfahbod 已提交
265
  {
266 267
    inline matcher_t (void) :
	     lookup_props (0),
268 269
	     ignore_zwnj (false),
	     ignore_zwj (false),
270 271 272 273
	     mask (-1),
#define arg1(arg) (arg) /* Remove the macro to see why it's needed! */
	     syllable arg1(0),
#undef arg1
B
Behdad Esfahbod 已提交
274 275
	     match_func (nullptr),
	     match_data (nullptr) {};
276

B
Behdad Esfahbod 已提交
277
    typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data);
278 279

    inline void set_ignore_zwnj (bool ignore_zwnj_) { ignore_zwnj = ignore_zwnj_; }
280
    inline void set_ignore_zwj (bool ignore_zwj_) { ignore_zwj = ignore_zwj_; }
281 282 283 284 285 286 287
    inline void set_lookup_props (unsigned int lookup_props_) { lookup_props = lookup_props_; }
    inline void set_mask (hb_mask_t mask_) { mask = mask_; }
    inline void set_syllable (uint8_t syllable_)  { syllable = syllable_; }
    inline void set_match_func (match_func_t match_func_,
				const void *match_data_)
    { match_func = match_func_; match_data = match_data_; }

288 289 290 291 292 293 294
    enum may_match_t {
      MATCH_NO,
      MATCH_YES,
      MATCH_MAYBE
    };

    inline may_match_t may_match (const hb_glyph_info_t &info,
B
Behdad Esfahbod 已提交
295
				  const HBUINT16          *glyph_data) const
B
Behdad Esfahbod 已提交
296
    {
297 298 299 300 301 302 303 304
      if (!(info.mask & mask) ||
	  (syllable && syllable != info.syllable ()))
	return MATCH_NO;

      if (match_func)
        return match_func (info.codepoint, *glyph_data, match_data) ? MATCH_YES : MATCH_NO;

      return MATCH_MAYBE;
B
Behdad Esfahbod 已提交
305
    }
306 307 308 309 310 311 312 313

    enum may_skip_t {
      SKIP_NO,
      SKIP_YES,
      SKIP_MAYBE
    };

    inline may_skip_t
314
    may_skip (const hb_ot_apply_context_t *c,
315
	      const hb_glyph_info_t    &info) const
B
Behdad Esfahbod 已提交
316
    {
B
Behdad Esfahbod 已提交
317
      if (!c->check_glyph_property (&info, lookup_props))
318 319
	return SKIP_YES;

320
      if (unlikely (_hb_glyph_info_is_default_ignorable_and_not_hidden (&info) &&
321
		    (ignore_zwnj || !_hb_glyph_info_is_zwnj (&info)) &&
322
		    (ignore_zwj || !_hb_glyph_info_is_zwj (&info))))
323 324 325
	return SKIP_MAYBE;

      return SKIP_NO;
B
Behdad Esfahbod 已提交
326
    }
327 328 329 330

    protected:
    unsigned int lookup_props;
    bool ignore_zwnj;
331
    bool ignore_zwj;
332 333 334 335 336 337
    hb_mask_t mask;
    uint8_t syllable;
    match_func_t match_func;
    const void *match_data;
  };

338
  struct skipping_iterator_t
339
  {
340
    inline void init (hb_ot_apply_context_t *c_, bool context_match = false)
B
Behdad Esfahbod 已提交
341
    {
342
      c = c_;
B
Behdad Esfahbod 已提交
343 344
      match_glyph_data = nullptr;
      matcher.set_match_func (nullptr, nullptr);
345
      matcher.set_lookup_props (c->lookup_props);
346
      /* Ignore ZWNJ if we are matching GSUB context, or matching GPOS. */
347
      matcher.set_ignore_zwnj (c->table_index == 1 || (context_match && c->auto_zwnj));
348
      /* Ignore ZWJ if we are matching GSUB context, or matching GPOS, or if asked to. */
349
      matcher.set_ignore_zwj  (c->table_index == 1 || (context_match || c->auto_zwj));
350 351 352 353 354
      matcher.set_mask (context_match ? -1 : c->lookup_mask);
    }
    inline void set_lookup_props (unsigned int lookup_props)
    {
      matcher.set_lookup_props (lookup_props);
B
Behdad Esfahbod 已提交
355
    }
B
Behdad Esfahbod 已提交
356 357
    inline void set_match_func (matcher_t::match_func_t match_func_,
				const void *match_data_,
B
Behdad Esfahbod 已提交
358
				const HBUINT16 glyph_data[])
359
    {
B
Behdad Esfahbod 已提交
360
      matcher.set_match_func (match_func_, match_data_);
361
      match_glyph_data = glyph_data;
362
    }
363

364 365 366 367 368 369 370 371 372
    inline void reset (unsigned int start_index_,
		       unsigned int num_items_)
    {
      idx = start_index_;
      num_items = num_items_;
      end = c->buffer->len;
      matcher.set_syllable (start_index_ == c->buffer->idx ? c->buffer->cur().syllable () : 0);
    }

373
    inline void reject (void) { num_items++; match_glyph_data--; }
374

375
    inline matcher_t::may_skip_t
B
Behdad Esfahbod 已提交
376
    may_skip (const hb_glyph_info_t    &info) const
377 378 379 380
    {
      return matcher.may_skip (c, info);
    }

B
Behdad Esfahbod 已提交
381
    inline bool next (void)
B
Behdad Esfahbod 已提交
382
    {
383
      assert (num_items > 0);
384
      while (idx + num_items < end)
B
Behdad Esfahbod 已提交
385
      {
B
Behdad Esfahbod 已提交
386
	idx++;
387 388
	const hb_glyph_info_t &info = c->buffer->info[idx];

B
Minor  
Behdad Esfahbod 已提交
389
	matcher_t::may_skip_t skip = matcher.may_skip (c, info);
390 391 392
	if (unlikely (skip == matcher_t::SKIP_YES))
	  continue;

393
	matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data);
B
Behdad Esfahbod 已提交
394 395 396
	if (match == matcher_t::MATCH_YES ||
	    (match == matcher_t::MATCH_MAYBE &&
	     skip == matcher_t::SKIP_NO))
397 398 399 400 401 402 403
	{
	  num_items--;
	  match_glyph_data++;
	  return true;
	}

	if (skip == matcher_t::SKIP_NO)
B
Behdad Esfahbod 已提交
404
	  return false;
405 406
      }
      return false;
B
Behdad Esfahbod 已提交
407
    }
B
Behdad Esfahbod 已提交
408
    inline bool prev (void)
B
Behdad Esfahbod 已提交
409
    {
410
      assert (num_items > 0);
B
Behdad Esfahbod 已提交
411
      while (idx > num_items - 1)
B
Behdad Esfahbod 已提交
412 413
      {
	idx--;
414 415
	const hb_glyph_info_t &info = c->buffer->out_info[idx];

B
Minor  
Behdad Esfahbod 已提交
416
	matcher_t::may_skip_t skip = matcher.may_skip (c, info);
417 418 419
	if (unlikely (skip == matcher_t::SKIP_YES))
	  continue;

420
	matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data);
B
Behdad Esfahbod 已提交
421 422 423
	if (match == matcher_t::MATCH_YES ||
	    (match == matcher_t::MATCH_MAYBE &&
	     skip == matcher_t::SKIP_NO))
424 425 426 427 428 429 430
	{
	  num_items--;
	  match_glyph_data++;
	  return true;
	}

	if (skip == matcher_t::SKIP_NO)
B
Behdad Esfahbod 已提交
431
	  return false;
432 433
      }
      return false;
B
Behdad Esfahbod 已提交
434 435 436
    }

    unsigned int idx;
437
    protected:
438
    hb_ot_apply_context_t *c;
439
    matcher_t matcher;
B
Behdad Esfahbod 已提交
440
    const HBUINT16 *match_glyph_data;
441

B
Behdad Esfahbod 已提交
442
    unsigned int num_items;
443
    unsigned int end;
B
Behdad Esfahbod 已提交
444 445
  };

B
Behdad Esfahbod 已提交
446 447

  inline const char *get_name (void) { return "APPLY"; }
448
  typedef return_t (*recurse_func_t) (hb_ot_apply_context_t *c, unsigned int lookup_index);
B
Behdad Esfahbod 已提交
449 450 451 452
  template <typename T>
  inline return_t dispatch (const T &obj) { return obj.apply (this); }
  static return_t default_return_value (void) { return false; }
  bool stop_sublookup_iteration (return_t r) const { return r; }
B
Behdad Esfahbod 已提交
453
  return_t recurse (unsigned int sub_lookup_index)
B
Behdad Esfahbod 已提交
454
  {
455
    if (unlikely (nesting_level_left == 0 || !recurse_func || buffer->max_ops-- <= 0))
B
Behdad Esfahbod 已提交
456 457 458
      return default_return_value ();

    nesting_level_left--;
B
Behdad Esfahbod 已提交
459
    bool ret = recurse_func (this, sub_lookup_index);
B
Behdad Esfahbod 已提交
460 461 462 463
    nesting_level_left++;
    return ret;
  }

464 465
  skipping_iterator_t iter_input, iter_context;

B
Behdad Esfahbod 已提交
466 467 468 469 470
  hb_font_t *font;
  hb_face_t *face;
  hb_buffer_t *buffer;
  recurse_func_t recurse_func;
  const GDEF &gdef;
471
  const VariationStore &var_store;
472 473 474 475

  hb_direction_t direction;
  hb_mask_t lookup_mask;
  unsigned int table_index; /* GSUB/GPOS */
476
  unsigned int lookup_index;
477 478
  unsigned int lookup_props;
  unsigned int nesting_level_left;
B
Behdad Esfahbod 已提交
479 480
  unsigned int debug_depth;

481 482 483 484
  bool auto_zwnj;
  bool auto_zwj;
  bool has_glyph_classes;

B
Behdad Esfahbod 已提交
485

486
  hb_ot_apply_context_t (unsigned int table_index_,
B
Behdad Esfahbod 已提交
487 488
		      hb_font_t *font_,
		      hb_buffer_t *buffer_) :
489
			iter_input (), iter_context (),
B
Behdad Esfahbod 已提交
490
			font (font_), face (font->face), buffer (buffer_),
B
Behdad Esfahbod 已提交
491
			recurse_func (nullptr),
492
			gdef (_get_gdef (face)),
493
			var_store (gdef.get_var_store ()),
494 495 496
			direction (buffer_->props.direction),
			lookup_mask (1),
			table_index (table_index_),
497
			lookup_index ((unsigned int) -1),
498 499 500 501 502 503
			lookup_props (0),
			nesting_level_left (HB_MAX_NESTING_LEVEL),
			debug_depth (0),
			auto_zwnj (true),
			auto_zwj (true),
			has_glyph_classes (gdef.has_glyph_classes ()) {}
B
Behdad Esfahbod 已提交
504 505 506

  inline void set_lookup_mask (hb_mask_t mask) { lookup_mask = mask; }
  inline void set_auto_zwj (bool auto_zwj_) { auto_zwj = auto_zwj_; }
507
  inline void set_auto_zwnj (bool auto_zwnj_) { auto_zwnj = auto_zwnj_; }
B
Behdad Esfahbod 已提交
508
  inline void set_recurse_func (recurse_func_t func) { recurse_func = func; }
509
  inline void set_lookup_index (unsigned int lookup_index_) { lookup_index = lookup_index_; }
510 511 512 513 514 515
  inline void set_lookup_props (unsigned int lookup_props_)
  {
    lookup_props = lookup_props_;
    iter_input.init (this, false);
    iter_context.init (this, true);
  }
B
Behdad Esfahbod 已提交
516

517 518 519
  inline bool
  match_properties_mark (hb_codepoint_t  glyph,
			 unsigned int    glyph_props,
B
Behdad Esfahbod 已提交
520
			 unsigned int    match_props) const
521 522
  {
    /* If using mark filtering sets, the high short of
B
Behdad Esfahbod 已提交
523
     * match_props has the set index.
524
     */
B
Behdad Esfahbod 已提交
525 526
    if (match_props & LookupFlag::UseMarkFilteringSet)
      return gdef.mark_set_covers (match_props >> 16, glyph);
527

B
Behdad Esfahbod 已提交
528
    /* The second byte of match_props has the meaning
529 530 531
     * "ignore marks of attachment type different than
     * the attachment type specified."
     */
B
Behdad Esfahbod 已提交
532 533
    if (match_props & LookupFlag::MarkAttachmentType)
      return (match_props & LookupFlag::MarkAttachmentType) == (glyph_props & LookupFlag::MarkAttachmentType);
534 535 536 537 538

    return true;
  }

  inline bool
B
Behdad Esfahbod 已提交
539
  check_glyph_property (const hb_glyph_info_t *info,
B
Behdad Esfahbod 已提交
540
			unsigned int  match_props) const
541
  {
B
Behdad Esfahbod 已提交
542 543 544
    hb_codepoint_t glyph = info->codepoint;
    unsigned int glyph_props = _hb_glyph_info_get_glyph_props (info);

545
    /* Not covered, if, for example, glyph class is ligature and
B
Behdad Esfahbod 已提交
546
     * match_props includes LookupFlags::IgnoreLigatures
547
     */
B
Behdad Esfahbod 已提交
548
    if (glyph_props & match_props & LookupFlag::IgnoreFlags)
549 550
      return false;

551
    if (unlikely (glyph_props & HB_OT_LAYOUT_GLYPH_PROPS_MARK))
B
Behdad Esfahbod 已提交
552
      return match_properties_mark (glyph, glyph_props, match_props);
553 554 555 556

    return true;
  }

557
  inline void _set_glyph_props (hb_codepoint_t glyph_index,
558
			  unsigned int class_guess = 0,
559 560
			  bool ligature = false,
			  bool component = false) const
561
  {
562 563 564 565
    unsigned int add_in = _hb_glyph_info_get_glyph_props (&buffer->cur()) &
			  HB_OT_LAYOUT_GLYPH_PROPS_PRESERVE;
    add_in |= HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED;
    if (ligature)
566
    {
567
      add_in |= HB_OT_LAYOUT_GLYPH_PROPS_LIGATED;
568 569 570 571 572 573 574 575 576 577
      /* In the only place that the MULTIPLIED bit is used, Uniscribe
       * seems to only care about the "last" transformation between
       * Ligature and Multiple substitions.  Ie. if you ligate, expand,
       * and ligate again, it forgives the multiplication and acts as
       * if only ligation happened.  As such, clear MULTIPLIED bit.
       */
      add_in &= ~HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED;
    }
    if (component)
      add_in |= HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED;
578
    if (likely (has_glyph_classes))
579
      _hb_glyph_info_set_glyph_props (&buffer->cur(), add_in | gdef.get_glyph_props (glyph_index));
580
    else if (class_guess)
581
      _hb_glyph_info_set_glyph_props (&buffer->cur(), add_in | class_guess);
582
  }
B
Behdad Esfahbod 已提交
583

584
  inline void replace_glyph (hb_codepoint_t glyph_index) const
585
  {
586 587
    _set_glyph_props (glyph_index);
    buffer->replace_glyph (glyph_index);
588
  }
589
  inline void replace_glyph_inplace (hb_codepoint_t glyph_index) const
590
  {
591 592 593 594 595 596
    _set_glyph_props (glyph_index);
    buffer->cur().codepoint = glyph_index;
  }
  inline void replace_glyph_with_ligature (hb_codepoint_t glyph_index,
					   unsigned int class_guess) const
  {
597
    _set_glyph_props (glyph_index, class_guess, true);
598 599
    buffer->replace_glyph (glyph_index);
  }
600 601
  inline void output_glyph_for_component (hb_codepoint_t glyph_index,
					  unsigned int class_guess) const
B
Behdad Esfahbod 已提交
602
  {
603
    _set_glyph_props (glyph_index, class_guess, false, true);
604
    buffer->output_glyph (glyph_index);
B
Behdad Esfahbod 已提交
605
  }
606 607
};

608

B
Behdad Esfahbod 已提交
609

610
typedef bool (*intersects_func_t) (const hb_set_t *glyphs, const HBUINT16 &value, const void *data);
B
Behdad Esfahbod 已提交
611 612
typedef void (*collect_glyphs_func_t) (hb_set_t *glyphs, const HBUINT16 &value, const void *data);
typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data);
613

614 615 616 617
struct ContextClosureFuncs
{
  intersects_func_t intersects;
};
618 619 620 621
struct ContextCollectGlyphsFuncs
{
  collect_glyphs_func_t collect;
};
622
struct ContextApplyFuncs
B
Behdad Esfahbod 已提交
623
{
624
  match_func_t match;
625 626
};

627

628
static inline bool intersects_glyph (const hb_set_t *glyphs, const HBUINT16 &value, const void *data HB_UNUSED)
629 630 631
{
  return glyphs->has (value);
}
632
static inline bool intersects_class (const hb_set_t *glyphs, const HBUINT16 &value, const void *data)
633 634 635 636
{
  const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
  return class_def.intersects_class (glyphs, value);
}
637
static inline bool intersects_coverage (const hb_set_t *glyphs, const HBUINT16 &value, const void *data)
638 639 640 641 642
{
  const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
  return (data+coverage).intersects (glyphs);
}

643
static inline bool intersects_array (const hb_set_t *glyphs,
644
				     unsigned int count,
B
Behdad Esfahbod 已提交
645
				     const HBUINT16 values[],
646 647 648 649
				     intersects_func_t intersects_func,
				     const void *intersects_data)
{
  for (unsigned int i = 0; i < count; i++)
650
    if (likely (!intersects_func (glyphs, values[i], intersects_data)))
651 652 653 654
      return false;
  return true;
}

655

B
Behdad Esfahbod 已提交
656
static inline void collect_glyph (hb_set_t *glyphs, const HBUINT16 &value, const void *data HB_UNUSED)
657 658 659
{
  glyphs->add (value);
}
B
Behdad Esfahbod 已提交
660
static inline void collect_class (hb_set_t *glyphs, const HBUINT16 &value, const void *data)
661 662
{
  const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
663
  class_def.add_class (glyphs, value);
664
}
B
Behdad Esfahbod 已提交
665
static inline void collect_coverage (hb_set_t *glyphs, const HBUINT16 &value, const void *data)
666 667 668 669
{
  const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
  (data+coverage).add_coverage (glyphs);
}
B
Behdad Esfahbod 已提交
670
static inline void collect_array (hb_collect_glyphs_context_t *c HB_UNUSED,
671
				  hb_set_t *glyphs,
672
				  unsigned int count,
B
Behdad Esfahbod 已提交
673
				  const HBUINT16 values[],
674 675 676 677
				  collect_glyphs_func_t collect_func,
				  const void *collect_data)
{
  for (unsigned int i = 0; i < count; i++)
678
    collect_func (glyphs, values[i], collect_data);
679 680 681
}


B
Behdad Esfahbod 已提交
682
static inline bool match_glyph (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data HB_UNUSED)
B
Behdad Esfahbod 已提交
683
{
684 685
  return glyph_id == value;
}
B
Behdad Esfahbod 已提交
686
static inline bool match_class (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data)
B
Behdad Esfahbod 已提交
687
{
B
Behdad Esfahbod 已提交
688
  const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
689 690
  return class_def.get_class (glyph_id) == value;
}
B
Behdad Esfahbod 已提交
691
static inline bool match_coverage (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data)
B
Behdad Esfahbod 已提交
692
{
693
  const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
694
  return (data+coverage).get_coverage (glyph_id) != NOT_COVERED;
695 696
}

697 698
static inline bool would_match_input (hb_would_apply_context_t *c,
				      unsigned int count, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
699
				      const HBUINT16 input[], /* Array of input values--start with second glyph */
700 701 702 703 704 705 706
				      match_func_t match_func,
				      const void *match_data)
{
  if (count != c->len)
    return false;

  for (unsigned int i = 1; i < count; i++)
707
    if (likely (!match_func (c->glyphs[i], input[i - 1], match_data)))
708 709 710 711
      return false;

  return true;
}
712
static inline bool match_input (hb_ot_apply_context_t *c,
B
Behdad Esfahbod 已提交
713
				unsigned int count, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
714
				const HBUINT16 input[], /* Array of input values--start with second glyph */
B
Behdad Esfahbod 已提交
715
				match_func_t match_func,
B
Behdad Esfahbod 已提交
716
				const void *match_data,
B
Behdad Esfahbod 已提交
717
				unsigned int *end_offset,
718
				unsigned int match_positions[HB_MAX_CONTEXT_LENGTH],
B
Behdad Esfahbod 已提交
719 720
				bool *p_is_mark_ligature = nullptr,
				unsigned int *p_total_component_count = nullptr)
B
Behdad Esfahbod 已提交
721
{
B
Behdad Esfahbod 已提交
722
  TRACE_APPLY (nullptr);
723

724
  if (unlikely (count > HB_MAX_CONTEXT_LENGTH)) return_trace (false);
725

B
Behdad Esfahbod 已提交
726 727
  hb_buffer_t *buffer = c->buffer;

728
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_input;
729
  skippy_iter.reset (buffer->idx, count - 1);
730
  skippy_iter.set_match_func (match_func, match_data, input);
731

732 733 734 735 736 737 738 739 740 741 742
  /*
   * This is perhaps the trickiest part of OpenType...  Remarks:
   *
   * - If all components of the ligature were marks, we call this a mark ligature.
   *
   * - If there is no GDEF, and the ligature is NOT a mark ligature, we categorize
   *   it as a ligature glyph.
   *
   * - Ligatures cannot be formed across glyphs attached to different components
   *   of previous ligatures.  Eg. the sequence is LAM,SHADDA,LAM,FATHA,HEH, and
   *   LAM,LAM,HEH form a ligature, leaving SHADDA,FATHA next to eachother.
743 744 745 746 747 748 749 750 751 752
   *   However, it would be wrong to ligate that SHADDA,FATHA sequence.
   *   There are a couple of exceptions to this:
   *
   *   o If a ligature tries ligating with marks that belong to it itself, go ahead,
   *     assuming that the font designer knows what they are doing (otherwise it can
   *     break Indic stuff when a matra wants to ligate with a conjunct,
   *
   *   o If two marks want to ligate and they belong to different components of the
   *     same ligature glyph, and said ligature glyph is to be ignored according to
   *     mark-filtering rules, then allow.
753
   *     https://github.com/harfbuzz/harfbuzz/issues/545
754 755
   */

B
Behdad Esfahbod 已提交
756
  bool is_mark_ligature = _hb_glyph_info_is_mark (&buffer->cur());
757 758

  unsigned int total_component_count = 0;
B
Behdad Esfahbod 已提交
759
  total_component_count += _hb_glyph_info_get_lig_num_comps (&buffer->cur());
760

B
Behdad Esfahbod 已提交
761 762
  unsigned int first_lig_id = _hb_glyph_info_get_lig_id (&buffer->cur());
  unsigned int first_lig_comp = _hb_glyph_info_get_lig_comp (&buffer->cur());
B
Behdad Esfahbod 已提交
763

764 765 766 767 768 769
  enum {
    LIGBASE_NOT_CHECKED,
    LIGBASE_MAY_NOT_SKIP,
    LIGBASE_MAY_SKIP
  } ligbase = LIGBASE_NOT_CHECKED;

B
Behdad Esfahbod 已提交
770
  match_positions[0] = buffer->idx;
B
Minor  
Behdad Esfahbod 已提交
771
  for (unsigned int i = 1; i < count; i++)
B
Behdad Esfahbod 已提交
772
  {
B
Behdad Esfahbod 已提交
773
    if (!skippy_iter.next ()) return_trace (false);
B
Behdad Esfahbod 已提交
774 775

    match_positions[i] = skippy_iter.idx;
776

B
Behdad Esfahbod 已提交
777 778
    unsigned int this_lig_id = _hb_glyph_info_get_lig_id (&buffer->info[skippy_iter.idx]);
    unsigned int this_lig_comp = _hb_glyph_info_get_lig_comp (&buffer->info[skippy_iter.idx]);
779

780 781
    if (first_lig_id && first_lig_comp)
    {
782 783
      /* If first component was attached to a previous ligature component,
       * all subsequent components should be attached to the same ligature
784
       * component, otherwise we shouldn't ligate them... */
785
      if (first_lig_id != this_lig_id || first_lig_comp != this_lig_comp)
786 787 788
      {
        /* ...unless, we are attached to a base ligature and that base
	 * ligature is ignorable. */
789
        if (ligbase == LIGBASE_NOT_CHECKED)
790
	{
791 792 793 794
	  bool found = false;
	  const hb_glyph_info_t *out = buffer->out_info;
	  unsigned int j = buffer->out_len;
	  while (j && _hb_glyph_info_get_lig_id (&out[j - 1]) == first_lig_id)
795
	  {
796 797 798 799 800 801
	    if (_hb_glyph_info_get_lig_comp (&out[j - 1]) == 0)
	    {
	      j--;
	      found = true;
	      break;
	    }
802 803 804
	    j--;
	  }

B
Behdad Esfahbod 已提交
805
	  if (found && skippy_iter.may_skip (out[j]) == hb_ot_apply_context_t::matcher_t::SKIP_YES)
806 807 808 809
	    ligbase = LIGBASE_MAY_SKIP;
	  else
	    ligbase = LIGBASE_MAY_NOT_SKIP;
	}
810

811
        if (ligbase == LIGBASE_MAY_NOT_SKIP)
812 813 814 815
	  return_trace (false);
      }
    }
    else
816
    {
817 818 819 820
      /* If first component was NOT attached to a previous ligature component,
       * all subsequent components should also NOT be attached to any ligature
       * component, unless they are attached to the first component itself! */
      if (this_lig_id && this_lig_comp && (this_lig_id != first_lig_id))
B
Behdad Esfahbod 已提交
821
	return_trace (false);
822 823
    }

B
Behdad Esfahbod 已提交
824
    is_mark_ligature = is_mark_ligature && _hb_glyph_info_is_mark (&buffer->info[skippy_iter.idx]);
B
Behdad Esfahbod 已提交
825
    total_component_count += _hb_glyph_info_get_lig_num_comps (&buffer->info[skippy_iter.idx]);
B
Behdad Esfahbod 已提交
826 827
  }

B
Behdad Esfahbod 已提交
828
  *end_offset = skippy_iter.idx - buffer->idx + 1;
B
Behdad Esfahbod 已提交
829

830 831 832 833 834 835
  if (p_is_mark_ligature)
    *p_is_mark_ligature = is_mark_ligature;

  if (p_total_component_count)
    *p_total_component_count = total_component_count;

B
Behdad Esfahbod 已提交
836
  return_trace (true);
B
Behdad Esfahbod 已提交
837
}
838
static inline bool ligate_input (hb_ot_apply_context_t *c,
839
				 unsigned int count, /* Including the first glyph */
840
				 unsigned int match_positions[HB_MAX_CONTEXT_LENGTH], /* Including the first glyph */
841
				 unsigned int match_length,
842 843 844 845
				 hb_codepoint_t lig_glyph,
				 bool is_mark_ligature,
				 unsigned int total_component_count)
{
B
Behdad Esfahbod 已提交
846
  TRACE_APPLY (nullptr);
847

B
Behdad Esfahbod 已提交
848 849 850
  hb_buffer_t *buffer = c->buffer;

  buffer->merge_clusters (buffer->idx, buffer->idx + match_length);
851

852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
  /*
   * - If it *is* a mark ligature, we don't allocate a new ligature id, and leave
   *   the ligature to keep its old ligature id.  This will allow it to attach to
   *   a base ligature in GPOS.  Eg. if the sequence is: LAM,LAM,SHADDA,FATHA,HEH,
   *   and LAM,LAM,HEH for a ligature, they will leave SHADDA and FATHA wit a
   *   ligature id and component value of 2.  Then if SHADDA,FATHA form a ligature
   *   later, we don't want them to lose their ligature id/component, otherwise
   *   GPOS will fail to correctly position the mark ligature on top of the
   *   LAM,LAM,HEH ligature.  See:
   *     https://bugzilla.gnome.org/show_bug.cgi?id=676343
   *
   * - If a ligature is formed of components that some of which are also ligatures
   *   themselves, and those ligature components had marks attached to *their*
   *   components, we have to attach the marks to the new ligature component
   *   positions!  Now *that*'s tricky!  And these marks may be following the
   *   last component of the whole sequence, so we should loop forward looking
   *   for them and update them.
   *
   *   Eg. the sequence is LAM,LAM,SHADDA,FATHA,HEH, and the font first forms a
   *   'calt' ligature of LAM,HEH, leaving the SHADDA and FATHA with a ligature
   *   id and component == 1.  Now, during 'liga', the LAM and the LAM-HEH ligature
   *   form a LAM-LAM-HEH ligature.  We need to reassign the SHADDA and FATHA to
   *   the new ligature with a component value of 2.
   *
   *   This in fact happened to a font...  See:
   *   https://bugzilla.gnome.org/show_bug.cgi?id=437633
   */

880
  unsigned int klass = is_mark_ligature ? 0 : HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE;
B
Behdad Esfahbod 已提交
881 882 883
  unsigned int lig_id = is_mark_ligature ? 0 : _hb_allocate_lig_id (buffer);
  unsigned int last_lig_id = _hb_glyph_info_get_lig_id (&buffer->cur());
  unsigned int last_num_components = _hb_glyph_info_get_lig_num_comps (&buffer->cur());
884 885 886
  unsigned int components_so_far = last_num_components;

  if (!is_mark_ligature)
887
  {
B
Behdad Esfahbod 已提交
888
    _hb_glyph_info_set_lig_props_for_ligature (&buffer->cur(), lig_id, total_component_count);
B
Behdad Esfahbod 已提交
889
    if (_hb_glyph_info_get_general_category (&buffer->cur()) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
890
    {
B
Minor  
Behdad Esfahbod 已提交
891
      _hb_glyph_info_set_general_category (&buffer->cur(), HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER);
892
    }
893
  }
894
  c->replace_glyph_with_ligature (lig_glyph, klass);
895 896 897

  for (unsigned int i = 1; i < count; i++)
  {
B
Behdad Esfahbod 已提交
898
    while (buffer->idx < match_positions[i] && buffer->successful)
899 900
    {
      if (!is_mark_ligature) {
901 902
        unsigned int this_comp = _hb_glyph_info_get_lig_comp (&buffer->cur());
	if (this_comp == 0)
903
	  this_comp = last_num_components;
904
	unsigned int new_lig_comp = components_so_far - last_num_components +
905 906
				    MIN (this_comp, last_num_components);
	  _hb_glyph_info_set_lig_props_for_mark (&buffer->cur(), lig_id, new_lig_comp);
907
      }
B
Behdad Esfahbod 已提交
908
      buffer->next_glyph ();
909 910
    }

B
Behdad Esfahbod 已提交
911 912
    last_lig_id = _hb_glyph_info_get_lig_id (&buffer->cur());
    last_num_components = _hb_glyph_info_get_lig_num_comps (&buffer->cur());
913 914 915
    components_so_far += last_num_components;

    /* Skip the base glyph */
B
Behdad Esfahbod 已提交
916
    buffer->idx++;
917 918 919 920
  }

  if (!is_mark_ligature && last_lig_id) {
    /* Re-adjust components for any marks following. */
B
Behdad Esfahbod 已提交
921
    for (unsigned int i = buffer->idx; i < buffer->len; i++) {
B
Behdad Esfahbod 已提交
922
      if (last_lig_id == _hb_glyph_info_get_lig_id (&buffer->info[i])) {
923 924 925
        unsigned int this_comp = _hb_glyph_info_get_lig_comp (&buffer->info[i]);
	if (!this_comp)
	  break;
926
	unsigned int new_lig_comp = components_so_far - last_num_components +
927
				    MIN (this_comp, last_num_components);
B
Behdad Esfahbod 已提交
928
	_hb_glyph_info_set_lig_props_for_mark (&buffer->info[i], lig_id, new_lig_comp);
929 930 931 932
      } else
	break;
    }
  }
B
Behdad Esfahbod 已提交
933
  return_trace (true);
934
}
B
Behdad Esfahbod 已提交
935

936
static inline bool match_backtrack (hb_ot_apply_context_t *c,
937
				    unsigned int count,
B
Behdad Esfahbod 已提交
938
				    const HBUINT16 backtrack[],
939
				    match_func_t match_func,
940 941
				    const void *match_data,
				    unsigned int *match_start)
942
{
B
Behdad Esfahbod 已提交
943
  TRACE_APPLY (nullptr);
944

945
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_context;
946
  skippy_iter.reset (c->buffer->backtrack_len (), count);
947
  skippy_iter.set_match_func (match_func, match_data, backtrack);
948

949
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
950
    if (!skippy_iter.prev ())
B
Behdad Esfahbod 已提交
951
      return_trace (false);
952

953 954
  *match_start = skippy_iter.idx;

B
Behdad Esfahbod 已提交
955
  return_trace (true);
956 957
}

958
static inline bool match_lookahead (hb_ot_apply_context_t *c,
B
Behdad Esfahbod 已提交
959
				    unsigned int count,
B
Behdad Esfahbod 已提交
960
				    const HBUINT16 lookahead[],
B
Behdad Esfahbod 已提交
961
				    match_func_t match_func,
B
Behdad Esfahbod 已提交
962
				    const void *match_data,
963 964
				    unsigned int offset,
				    unsigned int *end_index)
965
{
B
Behdad Esfahbod 已提交
966
  TRACE_APPLY (nullptr);
967

968
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_context;
969
  skippy_iter.reset (c->buffer->idx + offset - 1, count);
970
  skippy_iter.set_match_func (match_func, match_data, lookahead);
971

B
Minor  
Behdad Esfahbod 已提交
972
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
973
    if (!skippy_iter.next ())
B
Behdad Esfahbod 已提交
974
      return_trace (false);
975

976 977
  *end_index = skippy_iter.idx + 1;

B
Behdad Esfahbod 已提交
978
  return_trace (true);
979 980
}

B
Behdad Esfahbod 已提交
981

982

B
Behdad Esfahbod 已提交
983 984
struct LookupRecord
{
B
Behdad Esfahbod 已提交
985 986
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
987
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
988
    return_trace (c->check_struct (this));
B
Behdad Esfahbod 已提交
989 990
  }

B
Behdad Esfahbod 已提交
991
  HBUINT16	sequenceIndex;		/* Index into current glyph
992
					 * sequence--first glyph = 0 */
B
Behdad Esfahbod 已提交
993
  HBUINT16	lookupListIndex;	/* Lookup to apply to that
994
					 * position--zero--based */
B
Behdad Esfahbod 已提交
995 996
  public:
  DEFINE_SIZE_STATIC (4);
997 998
};

999 1000 1001 1002
template <typename context_t>
static inline void recurse_lookups (context_t *c,
				    unsigned int lookupCount,
				    const LookupRecord lookupRecord[] /* Array of LookupRecords--in design order */)
1003 1004
{
  for (unsigned int i = 0; i < lookupCount; i++)
B
Behdad Esfahbod 已提交
1005
    c->recurse (lookupRecord[i].lookupListIndex);
1006
}
B
Behdad Esfahbod 已提交
1007

1008
static inline bool apply_lookup (hb_ot_apply_context_t *c,
1009
				 unsigned int count, /* Including the first glyph */
1010
				 unsigned int match_positions[HB_MAX_CONTEXT_LENGTH], /* Including the first glyph */
1011
				 unsigned int lookupCount,
1012 1013
				 const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */
				 unsigned int match_length)
1014
{
B
Behdad Esfahbod 已提交
1015
  TRACE_APPLY (nullptr);
1016

1017
  hb_buffer_t *buffer = c->buffer;
1018
  int end;
B
Behdad Esfahbod 已提交
1019

1020 1021 1022 1023 1024
  /* All positions are distance from beginning of *output* buffer.
   * Adjust. */
  {
    unsigned int bl = buffer->backtrack_len ();
    end = bl + match_length;
1025

1026 1027 1028 1029 1030
    int delta = bl - buffer->idx;
    /* Convert positions to new indexing. */
    for (unsigned int j = 0; j < count; j++)
      match_positions[j] += delta;
  }
1031

B
Behdad Esfahbod 已提交
1032
  for (unsigned int i = 0; i < lookupCount && buffer->successful; i++)
B
Behdad Esfahbod 已提交
1033
  {
1034 1035 1036
    unsigned int idx = lookupRecord[i].sequenceIndex;
    if (idx >= count)
      continue;
1037

1038 1039 1040 1041 1042
    /* Don't recurse to ourself at same position.
     * Note that this test is too naive, it doesn't catch longer loops. */
    if (idx == 0 && lookupRecord[i].lookupListIndex == c->lookup_index)
      continue;

1043 1044
    if (unlikely (!buffer->move_to (match_positions[idx])))
      break;
1045

1046 1047 1048
    if (unlikely (buffer->max_ops <= 0))
      break;

1049 1050 1051
    unsigned int orig_len = buffer->backtrack_len () + buffer->lookahead_len ();
    if (!c->recurse (lookupRecord[i].lookupListIndex))
      continue;
1052

1053 1054
    unsigned int new_len = buffer->backtrack_len () + buffer->lookahead_len ();
    int delta = new_len - orig_len;
1055

1056 1057
    if (!delta)
        continue;
1058

B
Behdad Esfahbod 已提交
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
    /* Recursed lookup changed buffer len.  Adjust.
     *
     * TODO:
     *
     * Right now, if buffer length increased by n, we assume n new glyphs
     * were added right after the current position, and if buffer length
     * was decreased by n, we assume n match positions after the current
     * one where removed.  The former (buffer length increased) case is
     * fine, but the decrease case can be improved in at least two ways,
     * both of which are significant:
     *
     *   - If recursed-to lookup is MultipleSubst and buffer length
     *     decreased, then it's current match position that was deleted,
     *     NOT the one after it.
     *
     *   - If buffer length was decreased by n, it does not necessarily
     *     mean that n match positions where removed, as there might
     *     have been marks and default-ignorables in the sequence.  We
     *     should instead drop match positions between current-position
     *     and current-position + n instead.
     *
     * It should be possible to construct tests for both of these cases.
     */
1082

1083
    end += delta;
1084
    if (end <= int (match_positions[idx]))
1085
    {
1086
      /* End might end up being smaller than match_positions[idx] if the recursed
1087
       * lookup ended up removing many items, more than we have had matched.
1088 1089 1090
       * Just never rewind end back and get out of here.
       * https://bugs.chromium.org/p/chromium/issues/detail?id=659496 */
      end = match_positions[idx];
1091
      /* There can't be any further changes. */
1092 1093
      break;
    }
1094

1095 1096 1097 1098
    unsigned int next = idx + 1; /* next now is the position after the recursed lookup. */

    if (delta > 0)
    {
1099
      if (unlikely (delta + count > HB_MAX_CONTEXT_LENGTH))
1100
	break;
1101 1102 1103
    }
    else
    {
1104
      /* NOTE: delta is negative. */
1105 1106
      delta = MAX (delta, (int) next - (int) count);
      next -= delta;
1107
    }
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121

    /* Shift! */
    memmove (match_positions + next + delta, match_positions + next,
	     (count - next) * sizeof (match_positions[0]));
    next += delta;
    count += delta;

    /* Fill in new entries. */
    for (unsigned int j = idx + 1; j < next; j++)
      match_positions[j] = match_positions[j - 1] + 1;

    /* And fixup the rest. */
    for (; next < count; next++)
      match_positions[next] += delta;
1122 1123
  }

1124 1125
  buffer->move_to (end);

B
Behdad Esfahbod 已提交
1126
  return_trace (true);
1127
}
1128

B
Behdad Esfahbod 已提交
1129

1130 1131 1132

/* Contextual lookups */

1133 1134 1135 1136 1137 1138
struct ContextClosureLookupContext
{
  ContextClosureFuncs funcs;
  const void *intersects_data;
};

1139 1140 1141 1142 1143 1144
struct ContextCollectGlyphsLookupContext
{
  ContextCollectGlyphsFuncs funcs;
  const void *collect_data;
};

1145
struct ContextApplyLookupContext
B
Behdad Esfahbod 已提交
1146
{
1147
  ContextApplyFuncs funcs;
B
Behdad Esfahbod 已提交
1148
  const void *match_data;
1149 1150
};

1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
static inline bool context_intersects (const hb_set_t *glyphs,
				       unsigned int inputCount, /* Including the first glyph (not matched) */
				       const HBUINT16 input[], /* Array of input values--start with second glyph */
				       ContextClosureLookupContext &lookup_context)
{
  return intersects_array (glyphs,
			   inputCount ? inputCount - 1 : 0, input,
			   lookup_context.funcs.intersects, lookup_context.intersects_data);
}

B
Behdad Esfahbod 已提交
1161
static inline void context_closure_lookup (hb_closure_context_t *c,
1162
					   unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1163
					   const HBUINT16 input[], /* Array of input values--start with second glyph */
1164 1165 1166 1167
					   unsigned int lookupCount,
					   const LookupRecord lookupRecord[],
					   ContextClosureLookupContext &lookup_context)
{
1168 1169 1170
  if (context_intersects (c->glyphs,
			  inputCount, input,
			  lookup_context))
1171 1172
    recurse_lookups (c,
		     lookupCount, lookupRecord);
1173 1174
}

1175 1176
static inline void context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c,
						  unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1177
						  const HBUINT16 input[], /* Array of input values--start with second glyph */
1178 1179 1180 1181
						  unsigned int lookupCount,
						  const LookupRecord lookupRecord[],
						  ContextCollectGlyphsLookupContext &lookup_context)
{
B
Minor  
Behdad Esfahbod 已提交
1182
  collect_array (c, c->input,
1183 1184 1185 1186 1187
		 inputCount ? inputCount - 1 : 0, input,
		 lookup_context.funcs.collect, lookup_context.collect_data);
  recurse_lookups (c,
		   lookupCount, lookupRecord);
}
1188

1189 1190
static inline bool context_would_apply_lookup (hb_would_apply_context_t *c,
					       unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1191
					       const HBUINT16 input[], /* Array of input values--start with second glyph */
B
Behdad Esfahbod 已提交
1192 1193
					       unsigned int lookupCount HB_UNUSED,
					       const LookupRecord lookupRecord[] HB_UNUSED,
1194 1195 1196 1197 1198 1199
					       ContextApplyLookupContext &lookup_context)
{
  return would_match_input (c,
			    inputCount, input,
			    lookup_context.funcs.match, lookup_context.match_data);
}
1200
static inline bool context_apply_lookup (hb_ot_apply_context_t *c,
1201
					 unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1202
					 const HBUINT16 input[], /* Array of input values--start with second glyph */
1203 1204 1205
					 unsigned int lookupCount,
					 const LookupRecord lookupRecord[],
					 ContextApplyLookupContext &lookup_context)
1206
{
1207
  unsigned int match_length = 0;
1208
  unsigned int match_positions[HB_MAX_CONTEXT_LENGTH];
B
Behdad Esfahbod 已提交
1209
  return match_input (c,
B
Behdad Esfahbod 已提交
1210
		      inputCount, input,
1211 1212
		      lookup_context.funcs.match, lookup_context.match_data,
		      &match_length, match_positions)
1213 1214
      && (c->buffer->unsafe_to_break (c->buffer->idx, c->buffer->idx + match_length),
	  apply_lookup (c,
1215 1216
		       inputCount, match_positions,
		       lookupCount, lookupRecord,
1217
		       match_length));
1218 1219
}

B
Behdad Esfahbod 已提交
1220 1221
struct Rule
{
1222 1223 1224 1225 1226 1227 1228
  inline bool intersects (const hb_set_t *glyphs, ContextClosureLookupContext &lookup_context) const
  {
    return context_intersects (glyphs,
			       inputCount, inputZ,
			       lookup_context);
  }

B
Behdad Esfahbod 已提交
1229
  inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
1230
  {
B
Behdad Esfahbod 已提交
1231
    TRACE_CLOSURE (this);
1232
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1233
    context_closure_lookup (c,
1234
			    inputCount, inputZ,
B
Behdad Esfahbod 已提交
1235 1236
			    lookupCount, lookupRecord,
			    lookup_context);
1237 1238
  }

1239 1240 1241
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
1242
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
1243
    context_collect_glyphs_lookup (c,
1244
				   inputCount, inputZ,
1245 1246 1247 1248
				   lookupCount, lookupRecord,
				   lookup_context);
  }

1249 1250
  inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1251
    TRACE_WOULD_APPLY (this);
1252
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1253
    return_trace (context_would_apply_lookup (c, inputCount, inputZ, lookupCount, lookupRecord, lookup_context));
1254 1255
  }

1256
  inline bool apply (hb_ot_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1257
  {
B
Behdad Esfahbod 已提交
1258
    TRACE_APPLY (this);
1259
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1260
    return_trace (context_apply_lookup (c, inputCount, inputZ, lookupCount, lookupRecord, lookup_context));
1261 1262
  }

B
Behdad Esfahbod 已提交
1263
  public:
B
Behdad Esfahbod 已提交
1264 1265
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1266
    TRACE_SANITIZE (this);
1267 1268 1269 1270
    return_trace (inputCount.sanitize (c) &&
		  lookupCount.sanitize (c) &&
		  c->check_range (inputZ,
				  inputZ[0].static_size * inputCount +
1271
				  LookupRecord::static_size * lookupCount));
B
Behdad Esfahbod 已提交
1272 1273
  }

1274
  protected:
B
Behdad Esfahbod 已提交
1275
  HBUINT16	inputCount;		/* Total number of glyphs in input
1276
					 * glyph sequence--includes the first
1277
					 * glyph */
B
Behdad Esfahbod 已提交
1278 1279
  HBUINT16	lookupCount;		/* Number of LookupRecords */
  HBUINT16	inputZ[VAR];		/* Array of match inputs--start with
1280
					 * second glyph */
1281
/*LookupRecord	lookupRecordX[VAR];*/	/* Array of LookupRecords--in
1282
					 * design order */
B
Behdad Esfahbod 已提交
1283
  public:
1284
  DEFINE_SIZE_ARRAY (4, inputZ);
1285 1286
};

B
Behdad Esfahbod 已提交
1287 1288
struct RuleSet
{
1289 1290 1291 1292 1293 1294 1295 1296 1297
  inline bool intersects (const hb_set_t *glyphs, ContextClosureLookupContext &lookup_context) const
  {
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
      if ((this+rule[i]).intersects (glyphs, lookup_context))
        return true;
    return false;
  }

B
Behdad Esfahbod 已提交
1298
  inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
1299
  {
B
Behdad Esfahbod 已提交
1300
    TRACE_CLOSURE (this);
1301 1302
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1303
      (this+rule[i]).closure (c, lookup_context);
1304 1305
  }

1306 1307 1308 1309 1310 1311 1312 1313
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
      (this+rule[i]).collect_glyphs (c, lookup_context);
  }

1314 1315
  inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1316
    TRACE_WOULD_APPLY (this);
1317 1318 1319 1320
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
    {
      if ((this+rule[i]).would_apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1321
        return_trace (true);
1322
    }
B
Behdad Esfahbod 已提交
1323
    return_trace (false);
1324 1325
  }

1326
  inline bool apply (hb_ot_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1327
  {
B
Behdad Esfahbod 已提交
1328
    TRACE_APPLY (this);
1329
    unsigned int num_rules = rule.len;
B
Behdad Esfahbod 已提交
1330 1331
    for (unsigned int i = 0; i < num_rules; i++)
    {
B
Behdad Esfahbod 已提交
1332
      if ((this+rule[i]).apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1333
        return_trace (true);
1334
    }
B
Behdad Esfahbod 已提交
1335
    return_trace (false);
1336 1337
  }

B
Behdad Esfahbod 已提交
1338 1339
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1340
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1341
    return_trace (rule.sanitize (c, this));
B
Behdad Esfahbod 已提交
1342 1343
  }

1344
  protected:
1345
  OffsetArrayOf<Rule>
1346
		rule;			/* Array of Rule tables
1347
					 * ordered by preference */
B
Behdad Esfahbod 已提交
1348
  public:
1349
  DEFINE_SIZE_ARRAY (2, rule);
1350 1351 1352
};


B
Behdad Esfahbod 已提交
1353 1354
struct ContextFormat1
{
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
  inline bool intersects (const hb_set_t *glyphs) const
  {
    struct ContextClosureLookupContext lookup_context = {
      {intersects_glyph},
      nullptr
    };

    unsigned int count = ruleSet.len;
    for (hb_auto_t<Coverage::Iter> iter (this+coverage); iter.more (); iter.next ())
    {
      if (unlikely (iter.get_coverage () >= count))
        break; /* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
      if (glyphs->has (iter.get_glyph ()) &&
	  (this+ruleSet[iter.get_coverage ()]).intersects (glyphs, lookup_context))
        return true;
    }
    return false;
  }

1374
  inline void closure (hb_closure_context_t *c) const
1375
  {
B
Behdad Esfahbod 已提交
1376
    TRACE_CLOSURE (this);
1377 1378

    struct ContextClosureLookupContext lookup_context = {
1379
      {intersects_glyph},
B
Behdad Esfahbod 已提交
1380
      nullptr
1381 1382 1383
    };

    unsigned int count = ruleSet.len;
1384 1385 1386 1387 1388 1389 1390
    for (hb_auto_t<Coverage::Iter> iter (this+coverage); iter.more (); iter.next ())
    {
      if (unlikely (iter.get_coverage () >= count))
        break; /* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
      if (c->glyphs->has (iter.get_glyph ()))
	(this+ruleSet[iter.get_coverage ()]).closure (c, lookup_context);
    }
1391 1392
  }

B
Behdad Esfahbod 已提交
1393 1394
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1395
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1396
    (this+coverage).add_coverage (c->input);
1397 1398 1399

    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_glyph},
B
Behdad Esfahbod 已提交
1400
      nullptr
1401 1402 1403 1404
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
1405
      (this+ruleSet[i]).collect_glyphs (c, lookup_context);
B
Behdad Esfahbod 已提交
1406 1407
  }

1408 1409
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1410
    TRACE_WOULD_APPLY (this);
1411

1412
    const RuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
1413
    struct ContextApplyLookupContext lookup_context = {
1414
      {match_glyph},
B
Behdad Esfahbod 已提交
1415
      nullptr
1416
    };
B
Behdad Esfahbod 已提交
1417
    return_trace (rule_set.would_apply (c, lookup_context));
1418 1419
  }

1420
  inline const Coverage &get_coverage (void) const
1421
  { return this+coverage; }
1422

1423
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1424
  {
B
Behdad Esfahbod 已提交
1425
    TRACE_APPLY (this);
1426
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
1427
    if (likely (index == NOT_COVERED))
B
Behdad Esfahbod 已提交
1428
      return_trace (false);
1429

1430
    const RuleSet &rule_set = this+ruleSet[index];
1431
    struct ContextApplyLookupContext lookup_context = {
1432
      {match_glyph},
B
Behdad Esfahbod 已提交
1433
      nullptr
1434
    };
B
Behdad Esfahbod 已提交
1435
    return_trace (rule_set.apply (c, lookup_context));
1436 1437
  }

B
Behdad Esfahbod 已提交
1438 1439
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1440
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1441
    return_trace (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
1442 1443
  }

1444
  protected:
B
Behdad Esfahbod 已提交
1445
  HBUINT16	format;			/* Format identifier--format = 1 */
1446 1447 1448 1449 1450 1451
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
					 * beginning of table */
  OffsetArrayOf<RuleSet>
		ruleSet;		/* Array of RuleSet tables
					 * ordered by Coverage Index */
1452
  public:
1453
  DEFINE_SIZE_ARRAY (6, ruleSet);
1454 1455 1456
};


B
Behdad Esfahbod 已提交
1457 1458
struct ContextFormat2
{
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
  inline bool intersects (const hb_set_t *glyphs) const
  {
    if (!(this+coverage).intersects (glyphs))
      return false;

    const ClassDef &class_def = this+classDef;

    struct ContextClosureLookupContext lookup_context = {
      {intersects_class},
      &class_def
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (class_def.intersects_class (glyphs, i) &&
	  (this+ruleSet[i]).intersects (glyphs, lookup_context))
        return true;

    return false;
  }

1480
  inline void closure (hb_closure_context_t *c) const
1481
  {
B
Behdad Esfahbod 已提交
1482
    TRACE_CLOSURE (this);
1483
    if (!(this+coverage).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
1484
      return;
1485 1486 1487 1488

    const ClassDef &class_def = this+classDef;

    struct ContextClosureLookupContext lookup_context = {
1489
      {intersects_class},
1490
      &class_def
1491 1492 1493 1494 1495 1496
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (class_def.intersects_class (c->glyphs, i)) {
	const RuleSet &rule_set = this+ruleSet[i];
B
Behdad Esfahbod 已提交
1497
	rule_set.closure (c, lookup_context);
1498
      }
1499 1500
  }

B
Behdad Esfahbod 已提交
1501 1502
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1503
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1504
    (this+coverage).add_coverage (c->input);
1505

1506
    const ClassDef &class_def = this+classDef;
1507 1508
    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_class},
1509
      &class_def
1510 1511 1512 1513
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
1514
      (this+ruleSet[i]).collect_glyphs (c, lookup_context);
B
Behdad Esfahbod 已提交
1515 1516
  }

1517 1518
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1519
    TRACE_WOULD_APPLY (this);
1520 1521

    const ClassDef &class_def = this+classDef;
1522
    unsigned int index = class_def.get_class (c->glyphs[0]);
1523 1524
    const RuleSet &rule_set = this+ruleSet[index];
    struct ContextApplyLookupContext lookup_context = {
1525
      {match_class},
1526 1527
      &class_def
    };
B
Behdad Esfahbod 已提交
1528
    return_trace (rule_set.would_apply (c, lookup_context));
1529 1530
  }

1531
  inline const Coverage &get_coverage (void) const
1532
  { return this+coverage; }
1533

1534
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1535
  {
B
Behdad Esfahbod 已提交
1536
    TRACE_APPLY (this);
1537
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
1538
    if (likely (index == NOT_COVERED)) return_trace (false);
1539 1540

    const ClassDef &class_def = this+classDef;
1541
    index = class_def.get_class (c->buffer->cur().codepoint);
1542
    const RuleSet &rule_set = this+ruleSet[index];
1543
    struct ContextApplyLookupContext lookup_context = {
1544
      {match_class},
B
Behdad Esfahbod 已提交
1545
      &class_def
1546
    };
B
Behdad Esfahbod 已提交
1547
    return_trace (rule_set.apply (c, lookup_context));
1548 1549
  }

B
Behdad Esfahbod 已提交
1550 1551
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1552
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1553
    return_trace (coverage.sanitize (c, this) && classDef.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
1554 1555
  }

1556
  protected:
B
Behdad Esfahbod 已提交
1557
  HBUINT16	format;			/* Format identifier--format = 2 */
1558 1559 1560 1561 1562 1563 1564 1565 1566
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
					 * beginning of table */
  OffsetTo<ClassDef>
		classDef;		/* Offset to glyph ClassDef table--from
					 * beginning of table */
  OffsetArrayOf<RuleSet>
		ruleSet;		/* Array of RuleSet tables
					 * ordered by class */
1567
  public:
1568
  DEFINE_SIZE_ARRAY (8, ruleSet);
1569 1570 1571
};


B
Behdad Esfahbod 已提交
1572 1573
struct ContextFormat3
{
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
  inline bool intersects (const hb_set_t *glyphs) const
  {
    if (!(this+coverageZ[0]).intersects (glyphs))
      return false;

    struct ContextClosureLookupContext lookup_context = {
      {intersects_coverage},
      this
    };
    return context_intersects (glyphs,
			       glyphCount, (const HBUINT16 *) (coverageZ + 1),
			       lookup_context);
  }

1588
  inline void closure (hb_closure_context_t *c) const
1589
  {
B
Behdad Esfahbod 已提交
1590
    TRACE_CLOSURE (this);
1591
    if (!(this+coverageZ[0]).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
1592
      return;
1593

1594
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1595
    struct ContextClosureLookupContext lookup_context = {
1596
      {intersects_coverage},
1597 1598
      this
    };
B
Behdad Esfahbod 已提交
1599
    context_closure_lookup (c,
B
Behdad Esfahbod 已提交
1600
			    glyphCount, (const HBUINT16 *) (coverageZ + 1),
B
Behdad Esfahbod 已提交
1601 1602
			    lookupCount, lookupRecord,
			    lookup_context);
1603 1604
  }

B
Behdad Esfahbod 已提交
1605 1606
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1607
    TRACE_COLLECT_GLYPHS (this);
1608
    (this+coverageZ[0]).add_coverage (c->input);
1609

1610
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1611 1612
    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_coverage},
1613
      this
1614 1615 1616
    };

    context_collect_glyphs_lookup (c,
B
Behdad Esfahbod 已提交
1617
				   glyphCount, (const HBUINT16 *) (coverageZ + 1),
1618 1619
				   lookupCount, lookupRecord,
				   lookup_context);
B
Behdad Esfahbod 已提交
1620 1621
  }

1622 1623
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1624
    TRACE_WOULD_APPLY (this);
1625

1626
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1627
    struct ContextApplyLookupContext lookup_context = {
1628
      {match_coverage},
1629 1630
      this
    };
B
Behdad Esfahbod 已提交
1631
    return_trace (context_would_apply_lookup (c, glyphCount, (const HBUINT16 *) (coverageZ + 1), lookupCount, lookupRecord, lookup_context));
1632 1633
  }

1634
  inline const Coverage &get_coverage (void) const
1635
  { return this+coverageZ[0]; }
1636

1637
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1638
  {
B
Behdad Esfahbod 已提交
1639
    TRACE_APPLY (this);
1640
    unsigned int index = (this+coverageZ[0]).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
1641
    if (likely (index == NOT_COVERED)) return_trace (false);
1642

1643
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1644
    struct ContextApplyLookupContext lookup_context = {
1645
      {match_coverage},
B
Behdad Esfahbod 已提交
1646
      this
1647
    };
B
Behdad Esfahbod 已提交
1648
    return_trace (context_apply_lookup (c, glyphCount, (const HBUINT16 *) (coverageZ + 1), lookupCount, lookupRecord, lookup_context));
1649 1650
  }

B
Behdad Esfahbod 已提交
1651 1652
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1653
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1654
    if (!c->check_struct (this)) return_trace (false);
B
Behdad Esfahbod 已提交
1655
    unsigned int count = glyphCount;
B
Behdad Esfahbod 已提交
1656 1657
    if (!count) return_trace (false); /* We want to access coverageZ[0] freely. */
    if (!c->check_array (coverageZ, coverageZ[0].static_size, count)) return_trace (false);
B
Behdad Esfahbod 已提交
1658
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
1659
      if (!coverageZ[i].sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
1660
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * count);
B
Behdad Esfahbod 已提交
1661
    return_trace (c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount));
B
Behdad Esfahbod 已提交
1662 1663
  }

1664
  protected:
B
Behdad Esfahbod 已提交
1665 1666
  HBUINT16	format;			/* Format identifier--format = 3 */
  HBUINT16	glyphCount;		/* Number of glyphs in the input glyph
1667
					 * sequence */
B
Behdad Esfahbod 已提交
1668
  HBUINT16	lookupCount;		/* Number of LookupRecords */
1669
  OffsetTo<Coverage>
1670
		coverageZ[VAR];		/* Array of offsets to Coverage
1671
					 * table in glyph sequence order */
1672
/*LookupRecord	lookupRecordX[VAR];*/	/* Array of LookupRecords--in
1673
					 * design order */
B
Behdad Esfahbod 已提交
1674
  public:
1675
  DEFINE_SIZE_ARRAY (6, coverageZ);
1676 1677
};

B
Behdad Esfahbod 已提交
1678 1679
struct Context
{
1680
  template <typename context_t>
1681
  inline typename context_t::return_t dispatch (context_t *c) const
1682
  {
1683
    TRACE_DISPATCH (this, u.format);
1684
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
1685
    switch (u.format) {
B
Behdad Esfahbod 已提交
1686 1687 1688 1689
    case 1: return_trace (c->dispatch (u.format1));
    case 2: return_trace (c->dispatch (u.format2));
    case 3: return_trace (c->dispatch (u.format3));
    default:return_trace (c->default_return_value ());
1690 1691 1692
    }
  }

1693
  protected:
1694
  union {
B
Behdad Esfahbod 已提交
1695
  HBUINT16		format;		/* Format identifier */
B
Behdad Esfahbod 已提交
1696 1697 1698
  ContextFormat1	format1;
  ContextFormat2	format2;
  ContextFormat3	format3;
1699 1700 1701
  } u;
};

1702 1703 1704

/* Chaining Contextual lookups */

1705
struct ChainContextClosureLookupContext
B
Behdad Esfahbod 已提交
1706
{
1707 1708 1709 1710
  ContextClosureFuncs funcs;
  const void *intersects_data[3];
};

1711 1712 1713 1714 1715 1716
struct ChainContextCollectGlyphsLookupContext
{
  ContextCollectGlyphsFuncs funcs;
  const void *collect_data[3];
};

1717 1718 1719
struct ChainContextApplyLookupContext
{
  ContextApplyFuncs funcs;
B
Behdad Esfahbod 已提交
1720
  const void *match_data[3];
1721 1722
};

1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
static inline bool chain_context_intersects (const hb_set_t *glyphs,
					     unsigned int backtrackCount,
					     const HBUINT16 backtrack[],
					     unsigned int inputCount, /* Including the first glyph (not matched) */
					     const HBUINT16 input[], /* Array of input values--start with second glyph */
					     unsigned int lookaheadCount,
					     const HBUINT16 lookahead[],
					     ChainContextClosureLookupContext &lookup_context)
{
  return intersects_array (glyphs,
			   backtrackCount, backtrack,
			   lookup_context.funcs.intersects, lookup_context.intersects_data[0])
      && intersects_array (glyphs,
			   inputCount ? inputCount - 1 : 0, input,
			   lookup_context.funcs.intersects, lookup_context.intersects_data[1])
      && intersects_array (glyphs,
			  lookaheadCount, lookahead,
			  lookup_context.funcs.intersects, lookup_context.intersects_data[2]);
}

B
Behdad Esfahbod 已提交
1743
static inline void chain_context_closure_lookup (hb_closure_context_t *c,
1744
						 unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1745
						 const HBUINT16 backtrack[],
1746
						 unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1747
						 const HBUINT16 input[], /* Array of input values--start with second glyph */
1748
						 unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1749
						 const HBUINT16 lookahead[],
1750 1751 1752 1753
						 unsigned int lookupCount,
						 const LookupRecord lookupRecord[],
						 ChainContextClosureLookupContext &lookup_context)
{
1754 1755 1756 1757 1758
  if (chain_context_intersects (c->glyphs,
				backtrackCount, backtrack,
				inputCount, input,
				lookaheadCount, lookahead,
				lookup_context))
1759 1760
    recurse_lookups (c,
		     lookupCount, lookupRecord);
1761 1762
}

1763 1764
static inline void chain_context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c,
						        unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1765
						        const HBUINT16 backtrack[],
1766
						        unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1767
						        const HBUINT16 input[], /* Array of input values--start with second glyph */
1768
						        unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1769
						        const HBUINT16 lookahead[],
1770 1771 1772 1773
						        unsigned int lookupCount,
						        const LookupRecord lookupRecord[],
						        ChainContextCollectGlyphsLookupContext &lookup_context)
{
B
Minor  
Behdad Esfahbod 已提交
1774
  collect_array (c, c->before,
1775 1776
		 backtrackCount, backtrack,
		 lookup_context.funcs.collect, lookup_context.collect_data[0]);
B
Minor  
Behdad Esfahbod 已提交
1777
  collect_array (c, c->input,
1778 1779
		 inputCount ? inputCount - 1 : 0, input,
		 lookup_context.funcs.collect, lookup_context.collect_data[1]);
B
Minor  
Behdad Esfahbod 已提交
1780
  collect_array (c, c->after,
1781 1782 1783 1784 1785 1786
		 lookaheadCount, lookahead,
		 lookup_context.funcs.collect, lookup_context.collect_data[2]);
  recurse_lookups (c,
		   lookupCount, lookupRecord);
}

1787 1788
static inline bool chain_context_would_apply_lookup (hb_would_apply_context_t *c,
						     unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1789
						     const HBUINT16 backtrack[] HB_UNUSED,
1790
						     unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1791
						     const HBUINT16 input[], /* Array of input values--start with second glyph */
1792
						     unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1793
						     const HBUINT16 lookahead[] HB_UNUSED,
B
Behdad Esfahbod 已提交
1794 1795
						     unsigned int lookupCount HB_UNUSED,
						     const LookupRecord lookupRecord[] HB_UNUSED,
1796 1797
						     ChainContextApplyLookupContext &lookup_context)
{
1798
  return (c->zero_context ? !backtrackCount && !lookaheadCount : true)
1799
      && would_match_input (c,
1800 1801 1802 1803
			    inputCount, input,
			    lookup_context.funcs.match, lookup_context.match_data[1]);
}

1804
static inline bool chain_context_apply_lookup (hb_ot_apply_context_t *c,
1805
					       unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1806
					       const HBUINT16 backtrack[],
1807
					       unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1808
					       const HBUINT16 input[], /* Array of input values--start with second glyph */
1809
					       unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1810
					       const HBUINT16 lookahead[],
1811 1812 1813
					       unsigned int lookupCount,
					       const LookupRecord lookupRecord[],
					       ChainContextApplyLookupContext &lookup_context)
1814
{
1815
  unsigned int start_index = 0, match_length = 0, end_index = 0;
1816
  unsigned int match_positions[HB_MAX_CONTEXT_LENGTH];
B
Behdad Esfahbod 已提交
1817
  return match_input (c,
B
Behdad Esfahbod 已提交
1818 1819
		      inputCount, input,
		      lookup_context.funcs.match, lookup_context.match_data[1],
1820
		      &match_length, match_positions)
B
Behdad Esfahbod 已提交
1821 1822
      && match_backtrack (c,
			  backtrackCount, backtrack,
1823 1824
			  lookup_context.funcs.match, lookup_context.match_data[0],
			  &start_index)
B
Behdad Esfahbod 已提交
1825
      && match_lookahead (c,
B
Behdad Esfahbod 已提交
1826 1827
			  lookaheadCount, lookahead,
			  lookup_context.funcs.match, lookup_context.match_data[2],
1828 1829 1830
			  match_length, &end_index)
      && (c->buffer->unsafe_to_break_from_outbuffer (start_index, end_index),
          apply_lookup (c,
1831 1832
		       inputCount, match_positions,
		       lookupCount, lookupRecord,
1833
		       match_length));
1834
}
1835

B
Behdad Esfahbod 已提交
1836 1837
struct ChainRule
{
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
  inline bool intersects (const hb_set_t *glyphs, ChainContextClosureLookupContext &lookup_context) const
  {
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
    return chain_context_intersects (glyphs,
				     backtrack.len, backtrack.arrayZ,
				     input.len, input.arrayZ,
				     lookahead.len, lookahead.arrayZ,
				     lookup_context);
  }

B
Behdad Esfahbod 已提交
1849
  inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
1850
  {
B
Behdad Esfahbod 已提交
1851
    TRACE_CLOSURE (this);
B
Behdad Esfahbod 已提交
1852 1853
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1854
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1855
    chain_context_closure_lookup (c,
1856 1857 1858 1859
				  backtrack.len, backtrack.arrayZ,
				  input.len, input.arrayZ,
				  lookahead.len, lookahead.arrayZ,
				  lookup.len, lookup.arrayZ,
B
Behdad Esfahbod 已提交
1860
				  lookup_context);
1861 1862
  }

1863 1864 1865
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
B
Behdad Esfahbod 已提交
1866 1867
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1868 1869
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    chain_context_collect_glyphs_lookup (c,
1870 1871 1872 1873
					 backtrack.len, backtrack.arrayZ,
					 input.len, input.arrayZ,
					 lookahead.len, lookahead.arrayZ,
					 lookup.len, lookup.arrayZ,
1874 1875 1876
					 lookup_context);
  }

1877 1878
  inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1879
    TRACE_WOULD_APPLY (this);
B
Behdad Esfahbod 已提交
1880 1881
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1882
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1883
    return_trace (chain_context_would_apply_lookup (c,
1884 1885 1886 1887
						    backtrack.len, backtrack.arrayZ,
						    input.len, input.arrayZ,
						    lookahead.len, lookahead.arrayZ, lookup.len,
						    lookup.arrayZ, lookup_context));
1888 1889
  }

1890
  inline bool apply (hb_ot_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1891
  {
B
Behdad Esfahbod 已提交
1892
    TRACE_APPLY (this);
B
Behdad Esfahbod 已提交
1893 1894
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1895
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1896
    return_trace (chain_context_apply_lookup (c,
1897 1898 1899 1900
					      backtrack.len, backtrack.arrayZ,
					      input.len, input.arrayZ,
					      lookahead.len, lookahead.arrayZ, lookup.len,
					      lookup.arrayZ, lookup_context));
1901 1902
  }

B
Behdad Esfahbod 已提交
1903 1904
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1905
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1906
    if (!backtrack.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1907
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
B
Behdad Esfahbod 已提交
1908
    if (!input.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1909
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
B
Behdad Esfahbod 已提交
1910
    if (!lookahead.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1911
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1912
    return_trace (lookup.sanitize (c));
B
Behdad Esfahbod 已提交
1913
  }
1914

1915
  protected:
B
Behdad Esfahbod 已提交
1916
  ArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1917
		backtrack;		/* Array of backtracking values
1918 1919
					 * (to be matched before the input
					 * sequence) */
B
Behdad Esfahbod 已提交
1920
  HeadlessArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1921
		inputX;			/* Array of input values (start with
1922
					 * second glyph) */
B
Behdad Esfahbod 已提交
1923
  ArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1924
		lookaheadX;		/* Array of lookahead values's (to be
1925
					 * matched after the input sequence) */
B
Behdad Esfahbod 已提交
1926
  ArrayOf<LookupRecord>
1927
		lookupX;		/* Array of LookupRecords--in
1928
					 * design order) */
1929
  public:
B
Behdad Esfahbod 已提交
1930
  DEFINE_SIZE_MIN (8);
1931 1932
};

B
Behdad Esfahbod 已提交
1933 1934
struct ChainRuleSet
{
1935 1936 1937 1938 1939 1940 1941 1942
  inline bool intersects (const hb_set_t *glyphs, ChainContextClosureLookupContext &lookup_context) const
  {
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
      if ((this+rule[i]).intersects (glyphs, lookup_context))
        return true;
    return false;
  }
B
Behdad Esfahbod 已提交
1943
  inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
1944
  {
B
Behdad Esfahbod 已提交
1945
    TRACE_CLOSURE (this);
1946 1947
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1948
      (this+rule[i]).closure (c, lookup_context);
1949 1950
  }

1951 1952 1953 1954 1955 1956 1957 1958
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
      (this+rule[i]).collect_glyphs (c, lookup_context);
  }

1959 1960
  inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1961
    TRACE_WOULD_APPLY (this);
1962 1963 1964
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
      if ((this+rule[i]).would_apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1965
        return_trace (true);
1966

B
Behdad Esfahbod 已提交
1967
    return_trace (false);
1968 1969
  }

1970
  inline bool apply (hb_ot_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1971
  {
B
Behdad Esfahbod 已提交
1972
    TRACE_APPLY (this);
1973
    unsigned int num_rules = rule.len;
B
Behdad Esfahbod 已提交
1974
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1975
      if ((this+rule[i]).apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1976
        return_trace (true);
1977

B
Behdad Esfahbod 已提交
1978
    return_trace (false);
1979
  }
1980

B
Behdad Esfahbod 已提交
1981 1982
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1983
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1984
    return_trace (rule.sanitize (c, this));
B
Behdad Esfahbod 已提交
1985 1986
  }

1987
  protected:
1988 1989 1990
  OffsetArrayOf<ChainRule>
		rule;			/* Array of ChainRule tables
					 * ordered by preference */
1991
  public:
1992
  DEFINE_SIZE_ARRAY (2, rule);
1993 1994
};

B
Behdad Esfahbod 已提交
1995 1996
struct ChainContextFormat1
{
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
  inline bool intersects (const hb_set_t *glyphs) const
  {
    struct ChainContextClosureLookupContext lookup_context = {
      {intersects_glyph},
      {nullptr, nullptr, nullptr}
    };

    unsigned int count = ruleSet.len;
    for (hb_auto_t<Coverage::Iter> iter (this+coverage); iter.more (); iter.next ())
    {
      if (unlikely (iter.get_coverage () >= count))
        break; /* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
      if (glyphs->has (iter.get_glyph ()) &&
	  (this+ruleSet[iter.get_coverage ()]).intersects (glyphs, lookup_context))
        return true;
    }
    return false;
  }

2016
  inline void closure (hb_closure_context_t *c) const
2017
  {
B
Behdad Esfahbod 已提交
2018
    TRACE_CLOSURE (this);
2019 2020

    struct ChainContextClosureLookupContext lookup_context = {
2021
      {intersects_glyph},
B
Behdad Esfahbod 已提交
2022
      {nullptr, nullptr, nullptr}
2023 2024 2025
    };

    unsigned int count = ruleSet.len;
2026 2027 2028 2029 2030 2031 2032
    for (hb_auto_t<Coverage::Iter> iter (this+coverage); iter.more (); iter.next ())
    {
      if (unlikely (iter.get_coverage () >= count))
        break; /* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
      if (c->glyphs->has (iter.get_glyph ()))
	(this+ruleSet[iter.get_coverage ()]).closure (c, lookup_context);
    }
2033 2034
  }

B
Behdad Esfahbod 已提交
2035 2036
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
2037
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
2038
    (this+coverage).add_coverage (c->input);
2039 2040 2041

    struct ChainContextCollectGlyphsLookupContext lookup_context = {
      {collect_glyph},
B
Behdad Esfahbod 已提交
2042
      {nullptr, nullptr, nullptr}
2043 2044 2045 2046 2047
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      (this+ruleSet[i]).collect_glyphs (c, lookup_context);
B
Behdad Esfahbod 已提交
2048 2049
  }

2050 2051
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2052
    TRACE_WOULD_APPLY (this);
2053

2054
    const ChainRuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
2055
    struct ChainContextApplyLookupContext lookup_context = {
2056
      {match_glyph},
B
Behdad Esfahbod 已提交
2057
      {nullptr, nullptr, nullptr}
2058
    };
B
Behdad Esfahbod 已提交
2059
    return_trace (rule_set.would_apply (c, lookup_context));
2060 2061
  }

2062
  inline const Coverage &get_coverage (void) const
2063
  { return this+coverage; }
2064

2065
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
2066
  {
B
Behdad Esfahbod 已提交
2067
    TRACE_APPLY (this);
2068
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
2069
    if (likely (index == NOT_COVERED)) return_trace (false);
2070

2071
    const ChainRuleSet &rule_set = this+ruleSet[index];
2072
    struct ChainContextApplyLookupContext lookup_context = {
2073
      {match_glyph},
B
Behdad Esfahbod 已提交
2074
      {nullptr, nullptr, nullptr}
2075
    };
B
Behdad Esfahbod 已提交
2076
    return_trace (rule_set.apply (c, lookup_context));
2077
  }
B
Behdad Esfahbod 已提交
2078

B
Behdad Esfahbod 已提交
2079 2080
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2081
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2082
    return_trace (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
2083 2084
  }

2085
  protected:
B
Behdad Esfahbod 已提交
2086
  HBUINT16	format;			/* Format identifier--format = 1 */
2087 2088
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
2089
					 * beginning of table */
2090 2091 2092
  OffsetArrayOf<ChainRuleSet>
		ruleSet;		/* Array of ChainRuleSet tables
					 * ordered by Coverage Index */
2093
  public:
2094
  DEFINE_SIZE_ARRAY (6, ruleSet);
2095 2096
};

B
Behdad Esfahbod 已提交
2097 2098
struct ChainContextFormat2
{
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
  inline bool intersects (const hb_set_t *glyphs) const
  {
    if (!(this+coverage).intersects (glyphs))
      return false;

    const ClassDef &backtrack_class_def = this+backtrackClassDef;
    const ClassDef &input_class_def = this+inputClassDef;
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;

    struct ChainContextClosureLookupContext lookup_context = {
      {intersects_class},
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (input_class_def.intersects_class (glyphs, i) &&
	  (this+ruleSet[i]).intersects (glyphs, lookup_context))
        return true;

    return false;
  }
2123
  inline void closure (hb_closure_context_t *c) const
2124
  {
B
Behdad Esfahbod 已提交
2125
    TRACE_CLOSURE (this);
2126
    if (!(this+coverage).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
2127
      return;
2128 2129 2130 2131 2132 2133

    const ClassDef &backtrack_class_def = this+backtrackClassDef;
    const ClassDef &input_class_def = this+inputClassDef;
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;

    struct ChainContextClosureLookupContext lookup_context = {
2134
      {intersects_class},
2135 2136 2137 2138 2139 2140 2141 2142 2143
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (input_class_def.intersects_class (c->glyphs, i)) {
	const ChainRuleSet &rule_set = this+ruleSet[i];
B
Behdad Esfahbod 已提交
2144
	rule_set.closure (c, lookup_context);
2145
      }
2146 2147
  }

B
Behdad Esfahbod 已提交
2148 2149
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
2150
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
2151
    (this+coverage).add_coverage (c->input);
2152

2153 2154 2155 2156
    const ClassDef &backtrack_class_def = this+backtrackClassDef;
    const ClassDef &input_class_def = this+inputClassDef;
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;

2157 2158
    struct ChainContextCollectGlyphsLookupContext lookup_context = {
      {collect_class},
2159 2160 2161
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2162 2163 2164 2165 2166
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      (this+ruleSet[i]).collect_glyphs (c, lookup_context);
B
Behdad Esfahbod 已提交
2167 2168
  }

2169 2170
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2171
    TRACE_WOULD_APPLY (this);
2172

2173
    const ClassDef &backtrack_class_def = this+backtrackClassDef;
2174
    const ClassDef &input_class_def = this+inputClassDef;
2175
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;
2176

2177
    unsigned int index = input_class_def.get_class (c->glyphs[0]);
2178 2179
    const ChainRuleSet &rule_set = this+ruleSet[index];
    struct ChainContextApplyLookupContext lookup_context = {
2180
      {match_class},
2181 2182 2183
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2184
    };
B
Behdad Esfahbod 已提交
2185
    return_trace (rule_set.would_apply (c, lookup_context));
2186 2187
  }

2188
  inline const Coverage &get_coverage (void) const
2189
  { return this+coverage; }
2190

2191
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
2192
  {
B
Behdad Esfahbod 已提交
2193
    TRACE_APPLY (this);
2194
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
2195
    if (likely (index == NOT_COVERED)) return_trace (false);
2196 2197 2198 2199 2200

    const ClassDef &backtrack_class_def = this+backtrackClassDef;
    const ClassDef &input_class_def = this+inputClassDef;
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;

2201
    index = input_class_def.get_class (c->buffer->cur().codepoint);
2202
    const ChainRuleSet &rule_set = this+ruleSet[index];
2203
    struct ChainContextApplyLookupContext lookup_context = {
2204
      {match_class},
B
Behdad Esfahbod 已提交
2205 2206 2207
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2208
    };
B
Behdad Esfahbod 已提交
2209
    return_trace (rule_set.apply (c, lookup_context));
2210 2211
  }

B
Behdad Esfahbod 已提交
2212 2213
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2214
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2215 2216 2217 2218 2219
    return_trace (coverage.sanitize (c, this) &&
		  backtrackClassDef.sanitize (c, this) &&
		  inputClassDef.sanitize (c, this) &&
		  lookaheadClassDef.sanitize (c, this) &&
		  ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
2220 2221
  }

2222
  protected:
B
Behdad Esfahbod 已提交
2223
  HBUINT16	format;			/* Format identifier--format = 2 */
2224 2225
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
2226
					 * beginning of table */
2227 2228
  OffsetTo<ClassDef>
		backtrackClassDef;	/* Offset to glyph ClassDef table
2229 2230
					 * containing backtrack sequence
					 * data--from beginning of table */
2231 2232
  OffsetTo<ClassDef>
		inputClassDef;		/* Offset to glyph ClassDef
2233 2234
					 * table containing input sequence
					 * data--from beginning of table */
2235 2236
  OffsetTo<ClassDef>
		lookaheadClassDef;	/* Offset to glyph ClassDef table
2237 2238
					 * containing lookahead sequence
					 * data--from beginning of table */
2239 2240 2241
  OffsetArrayOf<ChainRuleSet>
		ruleSet;		/* Array of ChainRuleSet tables
					 * ordered by class */
2242
  public:
2243
  DEFINE_SIZE_ARRAY (12, ruleSet);
2244 2245
};

B
Behdad Esfahbod 已提交
2246 2247
struct ChainContextFormat3
{
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
  inline bool intersects (const hb_set_t *glyphs) const
  {
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);

    if (!(this+input[0]).intersects (glyphs))
      return false;

    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    struct ChainContextClosureLookupContext lookup_context = {
      {intersects_coverage},
      {this, this, this}
    };
    return chain_context_intersects (glyphs,
				     backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
				     input.len, (const HBUINT16 *) input.arrayZ + 1,
				     lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
				     lookup_context);
  }

2267
  inline void closure (hb_closure_context_t *c) const
2268
  {
B
Behdad Esfahbod 已提交
2269
    TRACE_CLOSURE (this);
B
Behdad Esfahbod 已提交
2270 2271 2272 2273 2274 2275 2276 2277
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);

    if (!(this+input[0]).intersects (c->glyphs))
      return;

    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    struct ChainContextClosureLookupContext lookup_context = {
2278
      {intersects_coverage},
B
Behdad Esfahbod 已提交
2279 2280 2281
      {this, this, this}
    };
    chain_context_closure_lookup (c,
2282 2283 2284 2285
				  backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
				  input.len, (const HBUINT16 *) input.arrayZ + 1,
				  lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
				  lookup.len, lookup.arrayZ,
B
Behdad Esfahbod 已提交
2286
				  lookup_context);
2287 2288
  }

B
Behdad Esfahbod 已提交
2289 2290
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
2291 2292 2293
    TRACE_COLLECT_GLYPHS (this);
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);

B
Minor  
Behdad Esfahbod 已提交
2294
    (this+input[0]).add_coverage (c->input);
2295 2296 2297 2298 2299 2300 2301 2302

    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    struct ChainContextCollectGlyphsLookupContext lookup_context = {
      {collect_coverage},
      {this, this, this}
    };
    chain_context_collect_glyphs_lookup (c,
2303 2304 2305 2306
					 backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
					 input.len, (const HBUINT16 *) input.arrayZ + 1,
					 lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
					 lookup.len, lookup.arrayZ,
2307
					 lookup_context);
B
Behdad Esfahbod 已提交
2308 2309
  }

2310 2311
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2312
    TRACE_WOULD_APPLY (this);
2313

B
Behdad Esfahbod 已提交
2314
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
2315 2316 2317
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    struct ChainContextApplyLookupContext lookup_context = {
2318
      {match_coverage},
2319 2320
      {this, this, this}
    };
B
Behdad Esfahbod 已提交
2321
    return_trace (chain_context_would_apply_lookup (c,
2322 2323 2324 2325
						    backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
						    input.len, (const HBUINT16 *) input.arrayZ + 1,
						    lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
						    lookup.len, lookup.arrayZ, lookup_context));
2326 2327
  }

2328 2329 2330 2331 2332 2333
  inline const Coverage &get_coverage (void) const
  {
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
    return this+input[0];
  }

2334
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
2335
  {
B
Behdad Esfahbod 已提交
2336
    TRACE_APPLY (this);
2337
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
2338

2339
    unsigned int index = (this+input[0]).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
2340
    if (likely (index == NOT_COVERED)) return_trace (false);
2341

2342 2343
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
2344
    struct ChainContextApplyLookupContext lookup_context = {
2345
      {match_coverage},
B
Behdad Esfahbod 已提交
2346
      {this, this, this}
2347
    };
B
Behdad Esfahbod 已提交
2348
    return_trace (chain_context_apply_lookup (c,
2349 2350 2351 2352
					      backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
					      input.len, (const HBUINT16 *) input.arrayZ + 1,
					      lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
					      lookup.len, lookup.arrayZ, lookup_context));
2353 2354
  }

B
Behdad Esfahbod 已提交
2355 2356
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2357
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2358
    if (!backtrack.sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
2359
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
B
Behdad Esfahbod 已提交
2360 2361
    if (!input.sanitize (c, this)) return_trace (false);
    if (!input.len) return_trace (false); /* To be consistent with Context. */
B
Behdad Esfahbod 已提交
2362
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
B
Behdad Esfahbod 已提交
2363
    if (!lookahead.sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
2364
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
2365
    return_trace (lookup.sanitize (c));
B
Behdad Esfahbod 已提交
2366 2367
  }

2368
  protected:
B
Behdad Esfahbod 已提交
2369
  HBUINT16	format;			/* Format identifier--format = 3 */
B
Behdad Esfahbod 已提交
2370
  OffsetArrayOf<Coverage>
2371
		backtrack;		/* Array of coverage tables
2372 2373
					 * in backtracking sequence, in  glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2374
  OffsetArrayOf<Coverage>
2375
		inputX		;	/* Array of coverage
2376 2377
					 * tables in input sequence, in glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2378
  OffsetArrayOf<Coverage>
2379
		lookaheadX;		/* Array of coverage tables
2380 2381
					 * in lookahead sequence, in glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2382
  ArrayOf<LookupRecord>
2383
		lookupX;		/* Array of LookupRecords--in
B
Behdad Esfahbod 已提交
2384
					 * design order) */
2385
  public:
B
Behdad Esfahbod 已提交
2386
  DEFINE_SIZE_MIN (10);
2387 2388
};

B
Behdad Esfahbod 已提交
2389 2390
struct ChainContext
{
2391
  template <typename context_t>
2392
  inline typename context_t::return_t dispatch (context_t *c) const
2393
  {
2394
    TRACE_DISPATCH (this, u.format);
2395
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
2396
    switch (u.format) {
B
Behdad Esfahbod 已提交
2397 2398 2399 2400
    case 1: return_trace (c->dispatch (u.format1));
    case 2: return_trace (c->dispatch (u.format2));
    case 3: return_trace (c->dispatch (u.format3));
    default:return_trace (c->default_return_value ());
2401 2402 2403
    }
  }

2404
  protected:
2405
  union {
B
Behdad Esfahbod 已提交
2406
  HBUINT16		format;	/* Format identifier */
B
Behdad Esfahbod 已提交
2407 2408 2409
  ChainContextFormat1	format1;
  ChainContextFormat2	format2;
  ChainContextFormat3	format3;
2410 2411 2412 2413
  } u;
};


2414
template <typename T>
2415 2416 2417 2418
struct ExtensionFormat1
{
  inline unsigned int get_type (void) const { return extensionLookupType; }

2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
  template <typename X>
  inline const X& get_subtable (void) const
  {
    unsigned int offset = extensionOffset;
    if (unlikely (!offset)) return Null(typename T::LookupSubTable);
    return StructAtOffset<typename T::LookupSubTable> (this, offset);
  }

  template <typename context_t>
  inline typename context_t::return_t dispatch (context_t *c) const
  {
    TRACE_DISPATCH (this, format);
2431
    if (unlikely (!c->may_dispatch (this, this))) return_trace (c->no_dispatch_return_value ());
B
Behdad Esfahbod 已提交
2432
    return_trace (get_subtable<typename T::LookupSubTable> ().dispatch (c, get_type ()));
2433 2434 2435
  }

  /* This is called from may_dispatch() above with hb_sanitize_context_t. */
B
Behdad Esfahbod 已提交
2436 2437
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2438
    TRACE_SANITIZE (this);
2439 2440 2441
    return_trace (c->check_struct (this) &&
		  extensionOffset != 0 &&
		  extensionLookupType != T::LookupSubTable::Extension);
B
Behdad Esfahbod 已提交
2442 2443
  }

2444
  protected:
B
Behdad Esfahbod 已提交
2445 2446
  HBUINT16	format;			/* Format identifier. Set to 1. */
  HBUINT16	extensionLookupType;	/* Lookup type of subtable referenced
2447 2448
					 * by ExtensionOffset (i.e. the
					 * extension subtable). */
B
Behdad Esfahbod 已提交
2449
  HBUINT32	extensionOffset;	/* Offset to the extension subtable,
2450
					 * of lookup type subtable. */
2451 2452
  public:
  DEFINE_SIZE_STATIC (8);
2453 2454
};

B
Behdad Esfahbod 已提交
2455
template <typename T>
2456 2457 2458 2459 2460
struct Extension
{
  inline unsigned int get_type (void) const
  {
    switch (u.format) {
B
Behdad Esfahbod 已提交
2461
    case 1: return u.format1.get_type ();
2462 2463 2464
    default:return 0;
    }
  }
2465 2466 2467
  template <typename X>
  inline const X& get_subtable (void) const
  {
2468 2469 2470 2471
    switch (u.format) {
    case 1: return u.format1.template get_subtable<typename T::LookupSubTable> ();
    default:return Null(typename T::LookupSubTable);
    }
2472 2473
  }

B
Behdad Esfahbod 已提交
2474
  template <typename context_t>
2475
  inline typename context_t::return_t dispatch (context_t *c) const
B
Behdad Esfahbod 已提交
2476
  {
2477
    TRACE_DISPATCH (this, u.format);
2478
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
B
Behdad Esfahbod 已提交
2479
    switch (u.format) {
B
Behdad Esfahbod 已提交
2480 2481
    case 1: return_trace (u.format1.dispatch (c));
    default:return_trace (c->default_return_value ());
B
Behdad Esfahbod 已提交
2482 2483 2484
    }
  }

2485
  protected:
2486
  union {
B
Behdad Esfahbod 已提交
2487
  HBUINT16		format;		/* Format identifier */
2488
  ExtensionFormat1<T>	format1;
2489 2490 2491 2492
  } u;
};


B
Behdad Esfahbod 已提交
2493 2494 2495 2496
/*
 * GSUB/GPOS Common
 */

B
Behdad Esfahbod 已提交
2497 2498
struct GSUBGPOS
{
2499
  inline bool has_data (void) const { return version.to_int () != 0; }
2500 2501 2502 2503
  inline unsigned int get_script_count (void) const
  { return (this+scriptList).len; }
  inline const Tag& get_script_tag (unsigned int i) const
  { return (this+scriptList).get_tag (i); }
B
Behdad Esfahbod 已提交
2504 2505 2506 2507
  inline unsigned int get_script_tags (unsigned int start_offset,
				       unsigned int *script_count /* IN/OUT */,
				       hb_tag_t     *script_tags /* OUT */) const
  { return (this+scriptList).get_tags (start_offset, script_count, script_tags); }
2508 2509 2510 2511 2512 2513 2514
  inline const Script& get_script (unsigned int i) const
  { return (this+scriptList)[i]; }
  inline bool find_script_index (hb_tag_t tag, unsigned int *index) const
  { return (this+scriptList).find_index (tag, index); }

  inline unsigned int get_feature_count (void) const
  { return (this+featureList).len; }
2515 2516
  inline hb_tag_t get_feature_tag (unsigned int i) const
  { return i == Index::NOT_FOUND_INDEX ? HB_TAG_NONE : (this+featureList).get_tag (i); }
B
Behdad Esfahbod 已提交
2517 2518 2519 2520
  inline unsigned int get_feature_tags (unsigned int start_offset,
					unsigned int *feature_count /* IN/OUT */,
					hb_tag_t     *feature_tags /* OUT */) const
  { return (this+featureList).get_tags (start_offset, feature_count, feature_tags); }
2521 2522 2523 2524 2525 2526 2527 2528 2529
  inline const Feature& get_feature (unsigned int i) const
  { return (this+featureList)[i]; }
  inline bool find_feature_index (hb_tag_t tag, unsigned int *index) const
  { return (this+featureList).find_index (tag, index); }

  inline unsigned int get_lookup_count (void) const
  { return (this+lookupList).len; }
  inline const Lookup& get_lookup (unsigned int i) const
  { return (this+lookupList)[i]; }
B
Behdad Esfahbod 已提交
2530

2531 2532
  inline bool find_variations_index (const int *coords, unsigned int num_coords,
				     unsigned int *index) const
2533
  { return (version.to_int () >= 0x00010001u ? this+featureVars : Null(FeatureVariations))
2534
	   .find_index (coords, num_coords, index); }
2535 2536 2537 2538 2539 2540
  inline const Feature& get_feature_variation (unsigned int feature_index,
					       unsigned int variations_index) const
  {
    if (FeatureVariations::NOT_FOUND_INDEX != variations_index &&
	version.to_int () >= 0x00010001u)
    {
2541 2542
      const Feature *feature = (this+featureVars).find_substitute (variations_index,
								   feature_index);
2543 2544 2545 2546 2547
      if (feature)
        return *feature;
    }
    return get_feature (feature_index);
  }
2548

2549 2550 2551 2552 2553 2554 2555
  inline bool subset (hb_subset_context_t *c) const
  {
    TRACE_SUBSET (this);
    struct GSUBGPOS *out = c->serializer->embed (*this);
    if (unlikely (!out)) return_trace (false);
    out->scriptList.serialize_subset (c, this+scriptList, this);
    out->featureList.serialize_subset (c, this+featureList, this);
B
Behdad Esfahbod 已提交
2556
    out->lookupList.set (0); /* GSUB/GPOS fill this one in. */
2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567
    if (version.to_int () >= 0x00010001u)
     out->featureVars.serialize_subset (c, this+featureVars, this);
    return_trace (true);
  }

  inline unsigned int get_size (void) const
  {
    return min_size +
	   (version.to_int () >= 0x00010001u ? featureVars.static_size : 0);
  }

B
Behdad Esfahbod 已提交
2568 2569
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2570
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2571 2572 2573 2574
    return_trace (version.sanitize (c) &&
		  likely (version.major == 1) &&
		  scriptList.sanitize (c, this) &&
		  featureList.sanitize (c, this) &&
2575 2576
		  lookupList.sanitize (c, this) &&
		  (version.to_int () < 0x00010001u || featureVars.sanitize (c, this)));
B
Behdad Esfahbod 已提交
2577 2578
  }

B
WIP  
Behdad Esfahbod 已提交
2579 2580 2581 2582 2583 2584
  template <typename T>
  struct accelerator_t
  {
    inline void init (hb_face_t *face)
    {
      this->blob = hb_sanitize_context_t().reference_table<T> (face);
B
Behdad Esfahbod 已提交
2585
      table = this->blob->template as<T> ();
B
WIP  
Behdad Esfahbod 已提交
2586

2587
      this->lookup_count = table->get_lookup_count ();
B
WIP  
Behdad Esfahbod 已提交
2588 2589 2590 2591 2592 2593

      this->accels = (hb_ot_layout_lookup_accelerator_t *) calloc (this->lookup_count, sizeof (hb_ot_layout_lookup_accelerator_t));
      if (unlikely (!this->accels))
        this->lookup_count = 0;

      for (unsigned int i = 0; i < this->lookup_count; i++)
2594
	this->accels[i].init (table->get_lookup (i));
B
WIP  
Behdad Esfahbod 已提交
2595 2596 2597 2598
    }

    inline void fini (void)
    {
2599 2600 2601
      for (unsigned int i = 0; i < this->lookup_count; i++)
	this->accels[i].fini ();
      free (this->accels);
B
WIP  
Behdad Esfahbod 已提交
2602 2603 2604
      hb_blob_destroy (this->blob);
    }

2605 2606 2607 2608
    hb_blob_t *blob;
    const T *table;
    unsigned int lookup_count;
    hb_ot_layout_lookup_accelerator_t *accels;
B
WIP  
Behdad Esfahbod 已提交
2609 2610
  };

2611
  protected:
B
Behdad Esfahbod 已提交
2612
  FixedVersion<>version;	/* Version of the GSUB/GPOS table--initially set
2613
				 * to 0x00010000u */
B
Behdad Esfahbod 已提交
2614 2615 2616 2617 2618 2619
  OffsetTo<ScriptList>
		scriptList;  	/* ScriptList table */
  OffsetTo<FeatureList>
		featureList; 	/* FeatureList table */
  OffsetTo<LookupList>
		lookupList; 	/* LookupList table */
B
Behdad Esfahbod 已提交
2620
  LOffsetTo<FeatureVariations>
2621 2622 2623 2624
		featureVars;	/* Offset to Feature Variations
				   table--from beginning of table
				 * (may be NULL).  Introduced
				 * in version 0x00010001. */
2625
  public:
2626
  DEFINE_SIZE_MIN (10);
B
Behdad Esfahbod 已提交
2627
};
2628

2629

B
Behdad Esfahbod 已提交
2630
} /* namespace OT */
2631

B
Behdad Esfahbod 已提交
2632

2633
#endif /* HB_OT_LAYOUT_GSUBGPOS_HH */