hb-ot-layout-gsubgpos-private.hh 77.9 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_PRIVATE_HH
#define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH
31

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

38

39 40
namespace OT {

B
Behdad Esfahbod 已提交
41

B
Behdad Esfahbod 已提交
42 43
struct hb_closure_context_t :
       hb_dispatch_context_t<hb_closure_context_t, hb_void_t, HB_DEBUG_CLOSURE>
44
{
45
  inline const char *get_name (void) { return "CLOSURE"; }
46 47
  typedef return_t (*recurse_func_t) (hb_closure_context_t *c, unsigned int lookup_index);
  template <typename T>
48
  inline return_t dispatch (const T &obj) { obj.closure (this); return HB_VOID; }
49
  static return_t default_return_value (void) { return HB_VOID; }
50
  bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
51 52
  return_t recurse (unsigned int lookup_index)
  {
53
    if (unlikely (nesting_level_left == 0 || !recurse_func))
54
      return default_return_value ();
55 56 57 58

    nesting_level_left--;
    recurse_func (this, lookup_index);
    nesting_level_left++;
59
    return HB_VOID;
60 61
  }

62
  bool should_visit_lookup (unsigned int lookup_index)
63 64 65 66 67 68 69 70 71
  {
    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)
  {
72
    /* Have we visited this lookup with the current set of glyphs? */
73 74 75
    return done_lookups->get (lookup_index) == glyphs->get_population ();
  }

76
  hb_face_t *face;
77
  hb_set_t *glyphs;
78
  hb_auto_t<hb_set_t> out[1];
79
  recurse_func_t recurse_func;
80 81 82 83
  unsigned int nesting_level_left;
  unsigned int debug_depth;

  hb_closure_context_t (hb_face_t *face_,
84
			hb_set_t *glyphs_,
85
                        hb_map_t *done_lookups_,
86
		        unsigned int nesting_level_left_ = HB_MAX_NESTING_LEVEL) :
87 88
			  face (face_),
			  glyphs (glyphs_),
B
Behdad Esfahbod 已提交
89
			  recurse_func (nullptr),
90
			  nesting_level_left (nesting_level_left_),
91 92
			  debug_depth (0),
                          done_lookups (done_lookups_) {}
93

94 95 96 97 98
  ~hb_closure_context_t (void)
  {
    flush ();
  }

99
  void set_recurse_func (recurse_func_t func) { recurse_func = func; }
100

101 102 103 104 105 106
  void flush (void)
  {
    hb_set_union (glyphs, out);
    hb_set_clear (out);
  }

107 108
  private:
  hb_map_t *done_lookups;
109 110 111
};


B
Behdad Esfahbod 已提交
112 113
struct hb_would_apply_context_t :
       hb_dispatch_context_t<hb_would_apply_context_t, bool, HB_DEBUG_WOULD_APPLY>
114
{
115
  inline const char *get_name (void) { return "WOULD_APPLY"; }
B
Behdad Esfahbod 已提交
116
  template <typename T>
117
  inline return_t dispatch (const T &obj) { return obj.would_apply (this); }
B
Behdad Esfahbod 已提交
118
  static return_t default_return_value (void) { return false; }
119
  bool stop_sublookup_iteration (return_t r) const { return r; }
B
Behdad Esfahbod 已提交
120

121
  hb_face_t *face;
122
  const hb_codepoint_t *glyphs;
123
  unsigned int len;
124
  bool zero_context;
125 126 127
  unsigned int debug_depth;

  hb_would_apply_context_t (hb_face_t *face_,
128 129
			    const hb_codepoint_t *glyphs_,
			    unsigned int len_,
B
Behdad Esfahbod 已提交
130
			    bool zero_context_) :
131
			      face (face_),
132 133
			      glyphs (glyphs_),
			      len (len_),
134
			      zero_context (zero_context_),
135
			      debug_depth (0) {}
136 137 138
};


B
Behdad Esfahbod 已提交
139 140
struct hb_collect_glyphs_context_t :
       hb_dispatch_context_t<hb_collect_glyphs_context_t, hb_void_t, HB_DEBUG_COLLECT_GLYPHS>
141
{
142
  inline const char *get_name (void) { return "COLLECT_GLYPHS"; }
B
Behdad Esfahbod 已提交
143
  typedef return_t (*recurse_func_t) (hb_collect_glyphs_context_t *c, unsigned int lookup_index);
B
Behdad Esfahbod 已提交
144
  template <typename T>
145
  inline return_t dispatch (const T &obj) { obj.collect_glyphs (this); return HB_VOID; }
146
  static return_t default_return_value (void) { return HB_VOID; }
147
  bool stop_sublookup_iteration (return_t r HB_UNUSED) const { return false; }
B
Behdad Esfahbod 已提交
148 149
  return_t recurse (unsigned int lookup_index)
  {
B
Behdad Esfahbod 已提交
150 151 152
    if (unlikely (nesting_level_left == 0 || !recurse_func))
      return default_return_value ();

B
Behdad Esfahbod 已提交
153
    /* Note that GPOS sets recurse_func to nullptr already, so it doesn't get
154
     * past the previous check.  For GSUB, we only want to collect the output
155 156 157 158 159 160 161
     * 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.
     */
162 163

    if (output == hb_set_get_empty ())
164
      return HB_VOID;
165

166
    /* Return if new lookup was recursed to before. */
B
Behdad Esfahbod 已提交
167
    if (recursed_lookups->has (lookup_index))
168 169
      return HB_VOID;

170 171 172 173
    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 ();
174

B
Behdad Esfahbod 已提交
175
    nesting_level_left--;
176
    recurse_func (this, lookup_index);
B
Behdad Esfahbod 已提交
177
    nesting_level_left++;
178 179 180 181 182

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

B
Behdad Esfahbod 已提交
183
    recursed_lookups->add (lookup_index);
184

185
    return HB_VOID;
B
Behdad Esfahbod 已提交
186 187
  }

188
  hb_face_t *face;
B
Minor  
Behdad Esfahbod 已提交
189 190 191 192
  hb_set_t *before;
  hb_set_t *input;
  hb_set_t *after;
  hb_set_t *output;
B
Behdad Esfahbod 已提交
193
  recurse_func_t recurse_func;
B
Behdad Esfahbod 已提交
194
  hb_set_t *recursed_lookups;
B
Behdad Esfahbod 已提交
195
  unsigned int nesting_level_left;
196 197 198
  unsigned int debug_depth;

  hb_collect_glyphs_context_t (hb_face_t *face_,
B
Behdad Esfahbod 已提交
199 200 201 202
			       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 */
203
			       unsigned int nesting_level_left_ = HB_MAX_NESTING_LEVEL) :
204
			      face (face_),
B
Minor  
Behdad Esfahbod 已提交
205 206 207 208
			      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 已提交
209
			      recurse_func (nullptr),
B
Behdad Esfahbod 已提交
210
			      recursed_lookups (nullptr),
B
Behdad Esfahbod 已提交
211
			      nesting_level_left (nesting_level_left_),
212 213
			      debug_depth (0)
  {
B
Behdad Esfahbod 已提交
214
    recursed_lookups = hb_set_create ();
215 216 217
  }
  ~hb_collect_glyphs_context_t (void)
  {
B
Behdad Esfahbod 已提交
218
    hb_set_destroy (recursed_lookups);
219
  }
B
Behdad Esfahbod 已提交
220 221

  void set_recurse_func (recurse_func_t func) { recurse_func = func; }
222 223 224 225
};



B
Behdad Esfahbod 已提交
226 227
/* XXX Can we remove this? */

228
template <typename set_t>
B
Behdad Esfahbod 已提交
229 230
struct hb_add_coverage_context_t :
       hb_dispatch_context_t<hb_add_coverage_context_t<set_t>, const Coverage &, HB_DEBUG_GET_COVERAGE>
231
{
232
  inline const char *get_name (void) { return "GET_COVERAGE"; }
233 234
  typedef const Coverage &return_t;
  template <typename T>
235
  inline return_t dispatch (const T &obj) { return obj.get_coverage (); }
236
  static return_t default_return_value (void) { return Null(Coverage); }
237 238 239 240 241
  bool stop_sublookup_iteration (return_t r) const
  {
    r.add_coverage (set);
    return false;
  }
B
Behdad Esfahbod 已提交
242

243 244
  hb_add_coverage_context_t (set_t *set_) :
			    set (set_),
245 246
			    debug_depth (0) {}

247
  set_t *set;
248
  unsigned int debug_depth;
249 250 251
};


252 253
struct hb_ot_apply_context_t :
       hb_dispatch_context_t<hb_ot_apply_context_t, bool, HB_DEBUG_APPLY>
254
{
255
  struct matcher_t
B
Behdad Esfahbod 已提交
256
  {
257 258
    inline matcher_t (void) :
	     lookup_props (0),
259 260
	     ignore_zwnj (false),
	     ignore_zwj (false),
261 262 263 264
	     mask (-1),
#define arg1(arg) (arg) /* Remove the macro to see why it's needed! */
	     syllable arg1(0),
#undef arg1
B
Behdad Esfahbod 已提交
265 266
	     match_func (nullptr),
	     match_data (nullptr) {};
267

B
Behdad Esfahbod 已提交
268
    typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data);
269 270

    inline void set_ignore_zwnj (bool ignore_zwnj_) { ignore_zwnj = ignore_zwnj_; }
271
    inline void set_ignore_zwj (bool ignore_zwj_) { ignore_zwj = ignore_zwj_; }
272 273 274 275 276 277 278
    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_; }

279 280 281 282 283 284 285
    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 已提交
286
				  const HBUINT16          *glyph_data) const
B
Behdad Esfahbod 已提交
287
    {
288 289 290 291 292 293 294 295
      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 已提交
296
    }
297 298 299 300 301 302 303 304

    enum may_skip_t {
      SKIP_NO,
      SKIP_YES,
      SKIP_MAYBE
    };

    inline may_skip_t
305
    may_skip (const hb_ot_apply_context_t *c,
306
	      const hb_glyph_info_t    &info) const
B
Behdad Esfahbod 已提交
307
    {
B
Behdad Esfahbod 已提交
308
      if (!c->check_glyph_property (&info, lookup_props))
309 310
	return SKIP_YES;

311
      if (unlikely (_hb_glyph_info_is_default_ignorable_and_not_hidden (&info) &&
312
		    (ignore_zwnj || !_hb_glyph_info_is_zwnj (&info)) &&
313
		    (ignore_zwj || !_hb_glyph_info_is_zwj (&info))))
314 315 316
	return SKIP_MAYBE;

      return SKIP_NO;
B
Behdad Esfahbod 已提交
317
    }
318 319 320 321

    protected:
    unsigned int lookup_props;
    bool ignore_zwnj;
322
    bool ignore_zwj;
323 324 325 326 327 328
    hb_mask_t mask;
    uint8_t syllable;
    match_func_t match_func;
    const void *match_data;
  };

329
  struct skipping_iterator_t
330
  {
331
    inline void init (hb_ot_apply_context_t *c_, bool context_match = false)
B
Behdad Esfahbod 已提交
332
    {
333
      c = c_;
B
Behdad Esfahbod 已提交
334 335
      match_glyph_data = nullptr;
      matcher.set_match_func (nullptr, nullptr);
336
      matcher.set_lookup_props (c->lookup_props);
337
      /* Ignore ZWNJ if we are matching GSUB context, or matching GPOS. */
338
      matcher.set_ignore_zwnj (c->table_index == 1 || (context_match && c->auto_zwnj));
339
      /* Ignore ZWJ if we are matching GSUB context, or matching GPOS, or if asked to. */
340
      matcher.set_ignore_zwj  (c->table_index == 1 || (context_match || c->auto_zwj));
341 342 343 344 345
      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 已提交
346
    }
B
Behdad Esfahbod 已提交
347 348
    inline void set_match_func (matcher_t::match_func_t match_func_,
				const void *match_data_,
B
Behdad Esfahbod 已提交
349
				const HBUINT16 glyph_data[])
350
    {
B
Behdad Esfahbod 已提交
351
      matcher.set_match_func (match_func_, match_data_);
352
      match_glyph_data = glyph_data;
353
    }
354

355 356 357 358 359 360 361 362 363
    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);
    }

364
    inline void reject (void) { num_items++; match_glyph_data--; }
365

366
    inline matcher_t::may_skip_t
B
Behdad Esfahbod 已提交
367
    may_skip (const hb_glyph_info_t    &info) const
368 369 370 371
    {
      return matcher.may_skip (c, info);
    }

B
Behdad Esfahbod 已提交
372
    inline bool next (void)
B
Behdad Esfahbod 已提交
373
    {
374
      assert (num_items > 0);
375
      while (idx + num_items < end)
B
Behdad Esfahbod 已提交
376
      {
B
Behdad Esfahbod 已提交
377
	idx++;
378 379
	const hb_glyph_info_t &info = c->buffer->info[idx];

B
Minor  
Behdad Esfahbod 已提交
380
	matcher_t::may_skip_t skip = matcher.may_skip (c, info);
381 382 383
	if (unlikely (skip == matcher_t::SKIP_YES))
	  continue;

384
	matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data);
B
Behdad Esfahbod 已提交
385 386 387
	if (match == matcher_t::MATCH_YES ||
	    (match == matcher_t::MATCH_MAYBE &&
	     skip == matcher_t::SKIP_NO))
388 389 390 391 392 393 394
	{
	  num_items--;
	  match_glyph_data++;
	  return true;
	}

	if (skip == matcher_t::SKIP_NO)
B
Behdad Esfahbod 已提交
395
	  return false;
396 397
      }
      return false;
B
Behdad Esfahbod 已提交
398
    }
B
Behdad Esfahbod 已提交
399
    inline bool prev (void)
B
Behdad Esfahbod 已提交
400
    {
401
      assert (num_items > 0);
B
Behdad Esfahbod 已提交
402
      while (idx > num_items - 1)
B
Behdad Esfahbod 已提交
403 404
      {
	idx--;
405 406
	const hb_glyph_info_t &info = c->buffer->out_info[idx];

B
Minor  
Behdad Esfahbod 已提交
407
	matcher_t::may_skip_t skip = matcher.may_skip (c, info);
408 409 410
	if (unlikely (skip == matcher_t::SKIP_YES))
	  continue;

411
	matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data);
B
Behdad Esfahbod 已提交
412 413 414
	if (match == matcher_t::MATCH_YES ||
	    (match == matcher_t::MATCH_MAYBE &&
	     skip == matcher_t::SKIP_NO))
415 416 417 418 419 420 421
	{
	  num_items--;
	  match_glyph_data++;
	  return true;
	}

	if (skip == matcher_t::SKIP_NO)
B
Behdad Esfahbod 已提交
422
	  return false;
423 424
      }
      return false;
B
Behdad Esfahbod 已提交
425 426 427
    }

    unsigned int idx;
428
    protected:
429
    hb_ot_apply_context_t *c;
430
    matcher_t matcher;
B
Behdad Esfahbod 已提交
431
    const HBUINT16 *match_glyph_data;
432

B
Behdad Esfahbod 已提交
433
    unsigned int num_items;
434
    unsigned int end;
B
Behdad Esfahbod 已提交
435 436
  };

B
Behdad Esfahbod 已提交
437 438

  inline const char *get_name (void) { return "APPLY"; }
439
  typedef return_t (*recurse_func_t) (hb_ot_apply_context_t *c, unsigned int lookup_index);
B
Behdad Esfahbod 已提交
440 441 442 443
  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 已提交
444
  return_t recurse (unsigned int sub_lookup_index)
B
Behdad Esfahbod 已提交
445
  {
446
    if (unlikely (nesting_level_left == 0 || !recurse_func || buffer->max_ops-- <= 0))
B
Behdad Esfahbod 已提交
447 448 449
      return default_return_value ();

    nesting_level_left--;
B
Behdad Esfahbod 已提交
450
    bool ret = recurse_func (this, sub_lookup_index);
B
Behdad Esfahbod 已提交
451 452 453 454
    nesting_level_left++;
    return ret;
  }

455 456
  skipping_iterator_t iter_input, iter_context;

B
Behdad Esfahbod 已提交
457 458 459 460 461
  hb_font_t *font;
  hb_face_t *face;
  hb_buffer_t *buffer;
  recurse_func_t recurse_func;
  const GDEF &gdef;
462
  const VariationStore &var_store;
463 464 465 466

  hb_direction_t direction;
  hb_mask_t lookup_mask;
  unsigned int table_index; /* GSUB/GPOS */
467
  unsigned int lookup_index;
468 469
  unsigned int lookup_props;
  unsigned int nesting_level_left;
B
Behdad Esfahbod 已提交
470 471
  unsigned int debug_depth;

472 473 474 475
  bool auto_zwnj;
  bool auto_zwj;
  bool has_glyph_classes;

B
Behdad Esfahbod 已提交
476

477
  hb_ot_apply_context_t (unsigned int table_index_,
B
Behdad Esfahbod 已提交
478 479
		      hb_font_t *font_,
		      hb_buffer_t *buffer_) :
480
			iter_input (), iter_context (),
B
Behdad Esfahbod 已提交
481
			font (font_), face (font->face), buffer (buffer_),
B
Behdad Esfahbod 已提交
482
			recurse_func (nullptr),
B
Behdad Esfahbod 已提交
483
			gdef (*hb_ot_layout_from_face (face)->gdef),
484
			var_store (gdef.get_var_store ()),
485 486 487
			direction (buffer_->props.direction),
			lookup_mask (1),
			table_index (table_index_),
488
			lookup_index ((unsigned int) -1),
489 490 491 492 493 494
			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 已提交
495 496 497

  inline void set_lookup_mask (hb_mask_t mask) { lookup_mask = mask; }
  inline void set_auto_zwj (bool auto_zwj_) { auto_zwj = auto_zwj_; }
498
  inline void set_auto_zwnj (bool auto_zwnj_) { auto_zwnj = auto_zwnj_; }
B
Behdad Esfahbod 已提交
499
  inline void set_recurse_func (recurse_func_t func) { recurse_func = func; }
500
  inline void set_lookup_index (unsigned int lookup_index_) { lookup_index = lookup_index_; }
501 502 503 504 505 506
  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 已提交
507

508 509 510
  inline bool
  match_properties_mark (hb_codepoint_t  glyph,
			 unsigned int    glyph_props,
B
Behdad Esfahbod 已提交
511
			 unsigned int    match_props) const
512 513
  {
    /* If using mark filtering sets, the high short of
B
Behdad Esfahbod 已提交
514
     * match_props has the set index.
515
     */
B
Behdad Esfahbod 已提交
516 517
    if (match_props & LookupFlag::UseMarkFilteringSet)
      return gdef.mark_set_covers (match_props >> 16, glyph);
518

B
Behdad Esfahbod 已提交
519
    /* The second byte of match_props has the meaning
520 521 522
     * "ignore marks of attachment type different than
     * the attachment type specified."
     */
B
Behdad Esfahbod 已提交
523 524
    if (match_props & LookupFlag::MarkAttachmentType)
      return (match_props & LookupFlag::MarkAttachmentType) == (glyph_props & LookupFlag::MarkAttachmentType);
525 526 527 528 529

    return true;
  }

  inline bool
B
Behdad Esfahbod 已提交
530
  check_glyph_property (const hb_glyph_info_t *info,
B
Behdad Esfahbod 已提交
531
			unsigned int  match_props) const
532
  {
B
Behdad Esfahbod 已提交
533 534 535
    hb_codepoint_t glyph = info->codepoint;
    unsigned int glyph_props = _hb_glyph_info_get_glyph_props (info);

536
    /* Not covered, if, for example, glyph class is ligature and
B
Behdad Esfahbod 已提交
537
     * match_props includes LookupFlags::IgnoreLigatures
538
     */
B
Behdad Esfahbod 已提交
539
    if (glyph_props & match_props & LookupFlag::IgnoreFlags)
540 541
      return false;

542
    if (unlikely (glyph_props & HB_OT_LAYOUT_GLYPH_PROPS_MARK))
B
Behdad Esfahbod 已提交
543
      return match_properties_mark (glyph, glyph_props, match_props);
544 545 546 547

    return true;
  }

548
  inline void _set_glyph_props (hb_codepoint_t glyph_index,
549
			  unsigned int class_guess = 0,
550 551
			  bool ligature = false,
			  bool component = false) const
552
  {
553 554 555 556
    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)
557
    {
558
      add_in |= HB_OT_LAYOUT_GLYPH_PROPS_LIGATED;
559 560 561 562 563 564 565 566 567 568
      /* 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;
569
    if (likely (has_glyph_classes))
570
      _hb_glyph_info_set_glyph_props (&buffer->cur(), add_in | gdef.get_glyph_props (glyph_index));
571
    else if (class_guess)
572
      _hb_glyph_info_set_glyph_props (&buffer->cur(), add_in | class_guess);
573
  }
B
Behdad Esfahbod 已提交
574

575
  inline void replace_glyph (hb_codepoint_t glyph_index) const
576
  {
577 578
    _set_glyph_props (glyph_index);
    buffer->replace_glyph (glyph_index);
579
  }
580
  inline void replace_glyph_inplace (hb_codepoint_t glyph_index) const
581
  {
582 583 584 585 586 587
    _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
  {
588
    _set_glyph_props (glyph_index, class_guess, true);
589 590
    buffer->replace_glyph (glyph_index);
  }
591 592
  inline void output_glyph_for_component (hb_codepoint_t glyph_index,
					  unsigned int class_guess) const
B
Behdad Esfahbod 已提交
593
  {
594
    _set_glyph_props (glyph_index, class_guess, false, true);
595
    buffer->output_glyph (glyph_index);
B
Behdad Esfahbod 已提交
596
  }
597 598
};

599

B
Behdad Esfahbod 已提交
600

B
Behdad Esfahbod 已提交
601 602 603
typedef bool (*intersects_func_t) (hb_set_t *glyphs, const HBUINT16 &value, const void *data);
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);
604

605 606 607 608
struct ContextClosureFuncs
{
  intersects_func_t intersects;
};
609 610 611 612
struct ContextCollectGlyphsFuncs
{
  collect_glyphs_func_t collect;
};
613
struct ContextApplyFuncs
B
Behdad Esfahbod 已提交
614
{
615
  match_func_t match;
616 617
};

618

B
Behdad Esfahbod 已提交
619
static inline bool intersects_glyph (hb_set_t *glyphs, const HBUINT16 &value, const void *data HB_UNUSED)
620 621 622
{
  return glyphs->has (value);
}
B
Behdad Esfahbod 已提交
623
static inline bool intersects_class (hb_set_t *glyphs, const HBUINT16 &value, const void *data)
624 625 626 627
{
  const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
  return class_def.intersects_class (glyphs, value);
}
B
Behdad Esfahbod 已提交
628
static inline bool intersects_coverage (hb_set_t *glyphs, const HBUINT16 &value, const void *data)
629 630 631 632 633 634 635
{
  const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
  return (data+coverage).intersects (glyphs);
}

static inline bool intersects_array (hb_closure_context_t *c,
				     unsigned int count,
B
Behdad Esfahbod 已提交
636
				     const HBUINT16 values[],
637 638 639 640 641 642 643 644 645
				     intersects_func_t intersects_func,
				     const void *intersects_data)
{
  for (unsigned int i = 0; i < count; i++)
    if (likely (!intersects_func (c->glyphs, values[i], intersects_data)))
      return false;
  return true;
}

646

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


B
Behdad Esfahbod 已提交
673
static inline bool match_glyph (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data HB_UNUSED)
B
Behdad Esfahbod 已提交
674
{
675 676
  return glyph_id == value;
}
B
Behdad Esfahbod 已提交
677
static inline bool match_class (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data)
B
Behdad Esfahbod 已提交
678
{
B
Behdad Esfahbod 已提交
679
  const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
680 681
  return class_def.get_class (glyph_id) == value;
}
B
Behdad Esfahbod 已提交
682
static inline bool match_coverage (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data)
B
Behdad Esfahbod 已提交
683
{
684
  const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
685
  return (data+coverage).get_coverage (glyph_id) != NOT_COVERED;
686 687
}

688 689
static inline bool would_match_input (hb_would_apply_context_t *c,
				      unsigned int count, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
690
				      const HBUINT16 input[], /* Array of input values--start with second glyph */
691 692 693 694 695 696 697
				      match_func_t match_func,
				      const void *match_data)
{
  if (count != c->len)
    return false;

  for (unsigned int i = 1; i < count; i++)
698
    if (likely (!match_func (c->glyphs[i], input[i - 1], match_data)))
699 700 701 702
      return false;

  return true;
}
703
static inline bool match_input (hb_ot_apply_context_t *c,
B
Behdad Esfahbod 已提交
704
				unsigned int count, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
705
				const HBUINT16 input[], /* Array of input values--start with second glyph */
B
Behdad Esfahbod 已提交
706
				match_func_t match_func,
B
Behdad Esfahbod 已提交
707
				const void *match_data,
B
Behdad Esfahbod 已提交
708
				unsigned int *end_offset,
709
				unsigned int match_positions[HB_MAX_CONTEXT_LENGTH],
B
Behdad Esfahbod 已提交
710 711
				bool *p_is_mark_ligature = nullptr,
				unsigned int *p_total_component_count = nullptr)
B
Behdad Esfahbod 已提交
712
{
B
Behdad Esfahbod 已提交
713
  TRACE_APPLY (nullptr);
714

715
  if (unlikely (count > HB_MAX_CONTEXT_LENGTH)) return_trace (false);
716

B
Behdad Esfahbod 已提交
717 718
  hb_buffer_t *buffer = c->buffer;

719
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_input;
720
  skippy_iter.reset (buffer->idx, count - 1);
721
  skippy_iter.set_match_func (match_func, match_data, input);
722

723 724 725 726 727 728 729 730 731 732 733
  /*
   * 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.
734 735 736 737 738 739 740 741 742 743
   *   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.
744
   *     https://github.com/harfbuzz/harfbuzz/issues/545
745 746
   */

B
Behdad Esfahbod 已提交
747
  bool is_mark_ligature = _hb_glyph_info_is_mark (&buffer->cur());
748 749

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

B
Behdad Esfahbod 已提交
752 753
  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 已提交
754

755 756 757 758 759 760
  enum {
    LIGBASE_NOT_CHECKED,
    LIGBASE_MAY_NOT_SKIP,
    LIGBASE_MAY_SKIP
  } ligbase = LIGBASE_NOT_CHECKED;

B
Behdad Esfahbod 已提交
761
  match_positions[0] = buffer->idx;
B
Minor  
Behdad Esfahbod 已提交
762
  for (unsigned int i = 1; i < count; i++)
B
Behdad Esfahbod 已提交
763
  {
B
Behdad Esfahbod 已提交
764
    if (!skippy_iter.next ()) return_trace (false);
B
Behdad Esfahbod 已提交
765 766

    match_positions[i] = skippy_iter.idx;
767

B
Behdad Esfahbod 已提交
768 769
    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]);
770

771 772
    if (first_lig_id && first_lig_comp)
    {
773 774
      /* If first component was attached to a previous ligature component,
       * all subsequent components should be attached to the same ligature
775
       * component, otherwise we shouldn't ligate them... */
776
      if (first_lig_id != this_lig_id || first_lig_comp != this_lig_comp)
777 778 779
      {
        /* ...unless, we are attached to a base ligature and that base
	 * ligature is ignorable. */
780
        if (ligbase == LIGBASE_NOT_CHECKED)
781
	{
782 783 784 785
	  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)
786
	  {
787 788 789 790 791 792
	    if (_hb_glyph_info_get_lig_comp (&out[j - 1]) == 0)
	    {
	      j--;
	      found = true;
	      break;
	    }
793 794 795
	    j--;
	  }

B
Behdad Esfahbod 已提交
796
	  if (found && skippy_iter.may_skip (out[j]) == hb_ot_apply_context_t::matcher_t::SKIP_YES)
797 798 799 800
	    ligbase = LIGBASE_MAY_SKIP;
	  else
	    ligbase = LIGBASE_MAY_NOT_SKIP;
	}
801

802
        if (ligbase == LIGBASE_MAY_NOT_SKIP)
803 804 805 806
	  return_trace (false);
      }
    }
    else
807
    {
808 809 810 811
      /* 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 已提交
812
	return_trace (false);
813 814
    }

B
Behdad Esfahbod 已提交
815
    is_mark_ligature = is_mark_ligature && _hb_glyph_info_is_mark (&buffer->info[skippy_iter.idx]);
B
Behdad Esfahbod 已提交
816
    total_component_count += _hb_glyph_info_get_lig_num_comps (&buffer->info[skippy_iter.idx]);
B
Behdad Esfahbod 已提交
817 818
  }

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

821 822 823 824 825 826
  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 已提交
827
  return_trace (true);
B
Behdad Esfahbod 已提交
828
}
829
static inline bool ligate_input (hb_ot_apply_context_t *c,
830
				 unsigned int count, /* Including the first glyph */
831
				 unsigned int match_positions[HB_MAX_CONTEXT_LENGTH], /* Including the first glyph */
832
				 unsigned int match_length,
833 834 835 836
				 hb_codepoint_t lig_glyph,
				 bool is_mark_ligature,
				 unsigned int total_component_count)
{
B
Behdad Esfahbod 已提交
837
  TRACE_APPLY (nullptr);
838

B
Behdad Esfahbod 已提交
839 840 841
  hb_buffer_t *buffer = c->buffer;

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

843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
  /*
   * - 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
   */

871
  unsigned int klass = is_mark_ligature ? 0 : HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE;
B
Behdad Esfahbod 已提交
872 873 874
  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());
875 876 877
  unsigned int components_so_far = last_num_components;

  if (!is_mark_ligature)
878
  {
B
Behdad Esfahbod 已提交
879
    _hb_glyph_info_set_lig_props_for_ligature (&buffer->cur(), lig_id, total_component_count);
B
Behdad Esfahbod 已提交
880
    if (_hb_glyph_info_get_general_category (&buffer->cur()) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
881
    {
B
Minor  
Behdad Esfahbod 已提交
882
      _hb_glyph_info_set_general_category (&buffer->cur(), HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER);
883
    }
884
  }
885
  c->replace_glyph_with_ligature (lig_glyph, klass);
886 887 888

  for (unsigned int i = 1; i < count; i++)
  {
B
Behdad Esfahbod 已提交
889
    while (buffer->idx < match_positions[i] && buffer->successful)
890 891
    {
      if (!is_mark_ligature) {
892 893
        unsigned int this_comp = _hb_glyph_info_get_lig_comp (&buffer->cur());
	if (this_comp == 0)
894
	  this_comp = last_num_components;
895
	unsigned int new_lig_comp = components_so_far - last_num_components +
896 897
				    MIN (this_comp, last_num_components);
	  _hb_glyph_info_set_lig_props_for_mark (&buffer->cur(), lig_id, new_lig_comp);
898
      }
B
Behdad Esfahbod 已提交
899
      buffer->next_glyph ();
900 901
    }

B
Behdad Esfahbod 已提交
902 903
    last_lig_id = _hb_glyph_info_get_lig_id (&buffer->cur());
    last_num_components = _hb_glyph_info_get_lig_num_comps (&buffer->cur());
904 905 906
    components_so_far += last_num_components;

    /* Skip the base glyph */
B
Behdad Esfahbod 已提交
907
    buffer->idx++;
908 909 910 911
  }

  if (!is_mark_ligature && last_lig_id) {
    /* Re-adjust components for any marks following. */
B
Behdad Esfahbod 已提交
912
    for (unsigned int i = buffer->idx; i < buffer->len; i++) {
B
Behdad Esfahbod 已提交
913
      if (last_lig_id == _hb_glyph_info_get_lig_id (&buffer->info[i])) {
914 915 916
        unsigned int this_comp = _hb_glyph_info_get_lig_comp (&buffer->info[i]);
	if (!this_comp)
	  break;
917
	unsigned int new_lig_comp = components_so_far - last_num_components +
918
				    MIN (this_comp, last_num_components);
B
Behdad Esfahbod 已提交
919
	_hb_glyph_info_set_lig_props_for_mark (&buffer->info[i], lig_id, new_lig_comp);
920 921 922 923
      } else
	break;
    }
  }
B
Behdad Esfahbod 已提交
924
  return_trace (true);
925
}
B
Behdad Esfahbod 已提交
926

927
static inline bool match_backtrack (hb_ot_apply_context_t *c,
928
				    unsigned int count,
B
Behdad Esfahbod 已提交
929
				    const HBUINT16 backtrack[],
930
				    match_func_t match_func,
931 932
				    const void *match_data,
				    unsigned int *match_start)
933
{
B
Behdad Esfahbod 已提交
934
  TRACE_APPLY (nullptr);
935

936
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_context;
937
  skippy_iter.reset (c->buffer->backtrack_len (), count);
938
  skippy_iter.set_match_func (match_func, match_data, backtrack);
939

940
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
941
    if (!skippy_iter.prev ())
B
Behdad Esfahbod 已提交
942
      return_trace (false);
943

944 945
  *match_start = skippy_iter.idx;

B
Behdad Esfahbod 已提交
946
  return_trace (true);
947 948
}

949
static inline bool match_lookahead (hb_ot_apply_context_t *c,
B
Behdad Esfahbod 已提交
950
				    unsigned int count,
B
Behdad Esfahbod 已提交
951
				    const HBUINT16 lookahead[],
B
Behdad Esfahbod 已提交
952
				    match_func_t match_func,
B
Behdad Esfahbod 已提交
953
				    const void *match_data,
954 955
				    unsigned int offset,
				    unsigned int *end_index)
956
{
B
Behdad Esfahbod 已提交
957
  TRACE_APPLY (nullptr);
958

959
  hb_ot_apply_context_t::skipping_iterator_t &skippy_iter = c->iter_context;
960
  skippy_iter.reset (c->buffer->idx + offset - 1, count);
961
  skippy_iter.set_match_func (match_func, match_data, lookahead);
962

B
Minor  
Behdad Esfahbod 已提交
963
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
964
    if (!skippy_iter.next ())
B
Behdad Esfahbod 已提交
965
      return_trace (false);
966

967 968
  *end_index = skippy_iter.idx + 1;

B
Behdad Esfahbod 已提交
969
  return_trace (true);
970 971
}

B
Behdad Esfahbod 已提交
972

973

B
Behdad Esfahbod 已提交
974 975
struct LookupRecord
{
B
Behdad Esfahbod 已提交
976 977
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
978
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
979
    return_trace (c->check_struct (this));
B
Behdad Esfahbod 已提交
980 981
  }

B
Behdad Esfahbod 已提交
982
  HBUINT16	sequenceIndex;		/* Index into current glyph
983
					 * sequence--first glyph = 0 */
B
Behdad Esfahbod 已提交
984
  HBUINT16	lookupListIndex;	/* Lookup to apply to that
985
					 * position--zero--based */
B
Behdad Esfahbod 已提交
986 987
  public:
  DEFINE_SIZE_STATIC (4);
988 989
};

B
Behdad Esfahbod 已提交
990

991 992 993 994
template <typename context_t>
static inline void recurse_lookups (context_t *c,
				    unsigned int lookupCount,
				    const LookupRecord lookupRecord[] /* Array of LookupRecords--in design order */)
995 996
{
  for (unsigned int i = 0; i < lookupCount; i++)
B
Behdad Esfahbod 已提交
997
    c->recurse (lookupRecord[i].lookupListIndex);
998
}
B
Behdad Esfahbod 已提交
999

1000
static inline bool apply_lookup (hb_ot_apply_context_t *c,
1001
				 unsigned int count, /* Including the first glyph */
1002
				 unsigned int match_positions[HB_MAX_CONTEXT_LENGTH], /* Including the first glyph */
1003
				 unsigned int lookupCount,
1004 1005
				 const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */
				 unsigned int match_length)
1006
{
B
Behdad Esfahbod 已提交
1007
  TRACE_APPLY (nullptr);
1008

1009
  hb_buffer_t *buffer = c->buffer;
1010
  int end;
B
Behdad Esfahbod 已提交
1011

1012 1013 1014 1015 1016
  /* All positions are distance from beginning of *output* buffer.
   * Adjust. */
  {
    unsigned int bl = buffer->backtrack_len ();
    end = bl + match_length;
1017

1018 1019 1020 1021 1022
    int delta = bl - buffer->idx;
    /* Convert positions to new indexing. */
    for (unsigned int j = 0; j < count; j++)
      match_positions[j] += delta;
  }
1023

B
Behdad Esfahbod 已提交
1024
  for (unsigned int i = 0; i < lookupCount && buffer->successful; i++)
B
Behdad Esfahbod 已提交
1025
  {
1026 1027 1028
    unsigned int idx = lookupRecord[i].sequenceIndex;
    if (idx >= count)
      continue;
1029

1030 1031 1032 1033 1034
    /* 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;

1035 1036
    if (unlikely (!buffer->move_to (match_positions[idx])))
      break;
1037

1038 1039 1040
    if (unlikely (buffer->max_ops <= 0))
      break;

1041 1042 1043
    unsigned int orig_len = buffer->backtrack_len () + buffer->lookahead_len ();
    if (!c->recurse (lookupRecord[i].lookupListIndex))
      continue;
1044

1045 1046
    unsigned int new_len = buffer->backtrack_len () + buffer->lookahead_len ();
    int delta = new_len - orig_len;
1047

1048 1049
    if (!delta)
        continue;
1050

B
Behdad Esfahbod 已提交
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
    /* 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.
     */
1074

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

1087 1088 1089 1090
    unsigned int next = idx + 1; /* next now is the position after the recursed lookup. */

    if (delta > 0)
    {
1091
      if (unlikely (delta + count > HB_MAX_CONTEXT_LENGTH))
1092
	break;
1093 1094 1095
    }
    else
    {
1096
      /* NOTE: delta is negative. */
1097 1098
      delta = MAX (delta, (int) next - (int) count);
      next -= delta;
1099
    }
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113

    /* 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;
1114 1115
  }

1116 1117
  buffer->move_to (end);

B
Behdad Esfahbod 已提交
1118
  return_trace (true);
1119
}
1120

B
Behdad Esfahbod 已提交
1121

1122 1123 1124

/* Contextual lookups */

1125 1126 1127 1128 1129 1130
struct ContextClosureLookupContext
{
  ContextClosureFuncs funcs;
  const void *intersects_data;
};

1131 1132 1133 1134 1135 1136
struct ContextCollectGlyphsLookupContext
{
  ContextCollectGlyphsFuncs funcs;
  const void *collect_data;
};

1137
struct ContextApplyLookupContext
B
Behdad Esfahbod 已提交
1138
{
1139
  ContextApplyFuncs funcs;
B
Behdad Esfahbod 已提交
1140
  const void *match_data;
1141 1142
};

B
Behdad Esfahbod 已提交
1143
static inline void context_closure_lookup (hb_closure_context_t *c,
1144
					   unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1145
					   const HBUINT16 input[], /* Array of input values--start with second glyph */
1146 1147 1148 1149
					   unsigned int lookupCount,
					   const LookupRecord lookupRecord[],
					   ContextClosureLookupContext &lookup_context)
{
B
Behdad Esfahbod 已提交
1150 1151 1152
  if (intersects_array (c,
			inputCount ? inputCount - 1 : 0, input,
			lookup_context.funcs.intersects, lookup_context.intersects_data))
1153 1154
    recurse_lookups (c,
		     lookupCount, lookupRecord);
1155 1156
}

1157 1158
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 已提交
1159
						  const HBUINT16 input[], /* Array of input values--start with second glyph */
1160 1161 1162 1163
						  unsigned int lookupCount,
						  const LookupRecord lookupRecord[],
						  ContextCollectGlyphsLookupContext &lookup_context)
{
B
Minor  
Behdad Esfahbod 已提交
1164
  collect_array (c, c->input,
1165 1166 1167 1168 1169
		 inputCount ? inputCount - 1 : 0, input,
		 lookup_context.funcs.collect, lookup_context.collect_data);
  recurse_lookups (c,
		   lookupCount, lookupRecord);
}
1170

1171 1172
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 已提交
1173
					       const HBUINT16 input[], /* Array of input values--start with second glyph */
B
Behdad Esfahbod 已提交
1174 1175
					       unsigned int lookupCount HB_UNUSED,
					       const LookupRecord lookupRecord[] HB_UNUSED,
1176 1177 1178 1179 1180 1181
					       ContextApplyLookupContext &lookup_context)
{
  return would_match_input (c,
			    inputCount, input,
			    lookup_context.funcs.match, lookup_context.match_data);
}
1182
static inline bool context_apply_lookup (hb_ot_apply_context_t *c,
1183
					 unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1184
					 const HBUINT16 input[], /* Array of input values--start with second glyph */
1185 1186 1187
					 unsigned int lookupCount,
					 const LookupRecord lookupRecord[],
					 ContextApplyLookupContext &lookup_context)
1188
{
1189
  unsigned int match_length = 0;
1190
  unsigned int match_positions[HB_MAX_CONTEXT_LENGTH];
B
Behdad Esfahbod 已提交
1191
  return match_input (c,
B
Behdad Esfahbod 已提交
1192
		      inputCount, input,
1193 1194
		      lookup_context.funcs.match, lookup_context.match_data,
		      &match_length, match_positions)
1195 1196
      && (c->buffer->unsafe_to_break (c->buffer->idx, c->buffer->idx + match_length),
	  apply_lookup (c,
1197 1198
		       inputCount, match_positions,
		       lookupCount, lookupRecord,
1199
		       match_length));
1200 1201
}

B
Behdad Esfahbod 已提交
1202 1203
struct Rule
{
B
Behdad Esfahbod 已提交
1204
  inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
1205
  {
B
Behdad Esfahbod 已提交
1206
    TRACE_CLOSURE (this);
1207
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1208
    context_closure_lookup (c,
1209
			    inputCount, inputZ,
B
Behdad Esfahbod 已提交
1210 1211
			    lookupCount, lookupRecord,
			    lookup_context);
1212 1213
  }

1214 1215 1216
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
1217
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
1218
    context_collect_glyphs_lookup (c,
1219
				   inputCount, inputZ,
1220 1221 1222 1223
				   lookupCount, lookupRecord,
				   lookup_context);
  }

1224 1225
  inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1226
    TRACE_WOULD_APPLY (this);
1227
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1228
    return_trace (context_would_apply_lookup (c, inputCount, inputZ, lookupCount, lookupRecord, lookup_context));
1229 1230
  }

1231
  inline bool apply (hb_ot_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1232
  {
B
Behdad Esfahbod 已提交
1233
    TRACE_APPLY (this);
1234
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (inputZ, inputZ[0].static_size * (inputCount ? inputCount - 1 : 0));
B
Behdad Esfahbod 已提交
1235
    return_trace (context_apply_lookup (c, inputCount, inputZ, lookupCount, lookupRecord, lookup_context));
1236 1237
  }

B
Behdad Esfahbod 已提交
1238
  public:
B
Behdad Esfahbod 已提交
1239 1240
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1241
    TRACE_SANITIZE (this);
1242 1243 1244 1245
    return_trace (inputCount.sanitize (c) &&
		  lookupCount.sanitize (c) &&
		  c->check_range (inputZ,
				  inputZ[0].static_size * inputCount +
1246
				  LookupRecord::static_size * lookupCount));
B
Behdad Esfahbod 已提交
1247 1248
  }

1249
  protected:
B
Behdad Esfahbod 已提交
1250
  HBUINT16	inputCount;		/* Total number of glyphs in input
1251
					 * glyph sequence--includes the first
1252
					 * glyph */
B
Behdad Esfahbod 已提交
1253 1254
  HBUINT16	lookupCount;		/* Number of LookupRecords */
  HBUINT16	inputZ[VAR];		/* Array of match inputs--start with
1255
					 * second glyph */
1256
/*LookupRecord	lookupRecordX[VAR];*/	/* Array of LookupRecords--in
1257
					 * design order */
B
Behdad Esfahbod 已提交
1258
  public:
1259
  DEFINE_SIZE_ARRAY (4, inputZ);
1260 1261
};

B
Behdad Esfahbod 已提交
1262 1263
struct RuleSet
{
B
Behdad Esfahbod 已提交
1264
  inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const
1265
  {
B
Behdad Esfahbod 已提交
1266
    TRACE_CLOSURE (this);
1267 1268
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1269
      (this+rule[i]).closure (c, lookup_context);
1270 1271
  }

1272 1273 1274 1275 1276 1277 1278 1279
  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);
  }

1280 1281
  inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1282
    TRACE_WOULD_APPLY (this);
1283 1284 1285 1286
    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 已提交
1287
        return_trace (true);
1288
    }
B
Behdad Esfahbod 已提交
1289
    return_trace (false);
1290 1291
  }

1292
  inline bool apply (hb_ot_apply_context_t *c, ContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1293
  {
B
Behdad Esfahbod 已提交
1294
    TRACE_APPLY (this);
1295
    unsigned int num_rules = rule.len;
B
Behdad Esfahbod 已提交
1296 1297
    for (unsigned int i = 0; i < num_rules; i++)
    {
B
Behdad Esfahbod 已提交
1298
      if ((this+rule[i]).apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1299
        return_trace (true);
1300
    }
B
Behdad Esfahbod 已提交
1301
    return_trace (false);
1302 1303
  }

B
Behdad Esfahbod 已提交
1304 1305
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1306
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1307
    return_trace (rule.sanitize (c, this));
B
Behdad Esfahbod 已提交
1308 1309
  }

1310
  protected:
1311
  OffsetArrayOf<Rule>
1312
		rule;			/* Array of Rule tables
1313
					 * ordered by preference */
B
Behdad Esfahbod 已提交
1314
  public:
1315
  DEFINE_SIZE_ARRAY (2, rule);
1316 1317 1318
};


B
Behdad Esfahbod 已提交
1319 1320
struct ContextFormat1
{
1321
  inline void closure (hb_closure_context_t *c) const
1322
  {
B
Behdad Esfahbod 已提交
1323
    TRACE_CLOSURE (this);
1324 1325 1326 1327

    const Coverage &cov = (this+coverage);

    struct ContextClosureLookupContext lookup_context = {
1328
      {intersects_glyph},
B
Behdad Esfahbod 已提交
1329
      nullptr
1330 1331 1332 1333 1334 1335
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (cov.intersects_coverage (c->glyphs, i)) {
	const RuleSet &rule_set = this+ruleSet[i];
B
Behdad Esfahbod 已提交
1336
	rule_set.closure (c, lookup_context);
1337
      }
1338 1339
  }

B
Behdad Esfahbod 已提交
1340 1341
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1342
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1343
    (this+coverage).add_coverage (c->input);
1344 1345 1346

    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_glyph},
B
Behdad Esfahbod 已提交
1347
      nullptr
1348 1349 1350 1351
    };

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

1355 1356
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1357
    TRACE_WOULD_APPLY (this);
1358

1359
    const RuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
1360
    struct ContextApplyLookupContext lookup_context = {
1361
      {match_glyph},
B
Behdad Esfahbod 已提交
1362
      nullptr
1363
    };
B
Behdad Esfahbod 已提交
1364
    return_trace (rule_set.would_apply (c, lookup_context));
1365 1366
  }

1367 1368 1369 1370 1371
  inline const Coverage &get_coverage (void) const
  {
    return this+coverage;
  }

1372
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1373
  {
B
Behdad Esfahbod 已提交
1374
    TRACE_APPLY (this);
1375
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
1376
    if (likely (index == NOT_COVERED))
B
Behdad Esfahbod 已提交
1377
      return_trace (false);
1378

1379
    const RuleSet &rule_set = this+ruleSet[index];
1380
    struct ContextApplyLookupContext lookup_context = {
1381
      {match_glyph},
B
Behdad Esfahbod 已提交
1382
      nullptr
1383
    };
B
Behdad Esfahbod 已提交
1384
    return_trace (rule_set.apply (c, lookup_context));
1385 1386
  }

B
Behdad Esfahbod 已提交
1387 1388
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1389
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1390
    return_trace (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
1391 1392
  }

1393
  protected:
B
Behdad Esfahbod 已提交
1394
  HBUINT16	format;			/* Format identifier--format = 1 */
1395 1396 1397 1398 1399 1400
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
					 * beginning of table */
  OffsetArrayOf<RuleSet>
		ruleSet;		/* Array of RuleSet tables
					 * ordered by Coverage Index */
1401
  public:
1402
  DEFINE_SIZE_ARRAY (6, ruleSet);
1403 1404 1405
};


B
Behdad Esfahbod 已提交
1406 1407
struct ContextFormat2
{
1408
  inline void closure (hb_closure_context_t *c) const
1409
  {
B
Behdad Esfahbod 已提交
1410
    TRACE_CLOSURE (this);
1411
    if (!(this+coverage).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
1412
      return;
1413 1414 1415 1416

    const ClassDef &class_def = this+classDef;

    struct ContextClosureLookupContext lookup_context = {
1417
      {intersects_class},
1418
      &class_def
1419 1420 1421 1422 1423 1424
    };

    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 已提交
1425
	rule_set.closure (c, lookup_context);
1426
      }
1427 1428
  }

B
Behdad Esfahbod 已提交
1429 1430
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1431
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1432
    (this+coverage).add_coverage (c->input);
1433

1434
    const ClassDef &class_def = this+classDef;
1435 1436
    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_class},
1437
      &class_def
1438 1439 1440 1441
    };

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

1445 1446
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1447
    TRACE_WOULD_APPLY (this);
1448 1449

    const ClassDef &class_def = this+classDef;
1450
    unsigned int index = class_def.get_class (c->glyphs[0]);
1451 1452
    const RuleSet &rule_set = this+ruleSet[index];
    struct ContextApplyLookupContext lookup_context = {
1453
      {match_class},
1454 1455
      &class_def
    };
B
Behdad Esfahbod 已提交
1456
    return_trace (rule_set.would_apply (c, lookup_context));
1457 1458
  }

1459 1460 1461 1462 1463
  inline const Coverage &get_coverage (void) const
  {
    return this+coverage;
  }

1464
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1465
  {
B
Behdad Esfahbod 已提交
1466
    TRACE_APPLY (this);
1467
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
1468
    if (likely (index == NOT_COVERED)) return_trace (false);
1469 1470

    const ClassDef &class_def = this+classDef;
1471
    index = class_def.get_class (c->buffer->cur().codepoint);
1472
    const RuleSet &rule_set = this+ruleSet[index];
1473
    struct ContextApplyLookupContext lookup_context = {
1474
      {match_class},
B
Behdad Esfahbod 已提交
1475
      &class_def
1476
    };
B
Behdad Esfahbod 已提交
1477
    return_trace (rule_set.apply (c, lookup_context));
1478 1479
  }

B
Behdad Esfahbod 已提交
1480 1481
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1482
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1483
    return_trace (coverage.sanitize (c, this) && classDef.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
1484 1485
  }

1486
  protected:
B
Behdad Esfahbod 已提交
1487
  HBUINT16	format;			/* Format identifier--format = 2 */
1488 1489 1490 1491 1492 1493 1494 1495 1496
  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 */
1497
  public:
1498
  DEFINE_SIZE_ARRAY (8, ruleSet);
1499 1500 1501
};


B
Behdad Esfahbod 已提交
1502 1503
struct ContextFormat3
{
1504
  inline void closure (hb_closure_context_t *c) const
1505
  {
B
Behdad Esfahbod 已提交
1506
    TRACE_CLOSURE (this);
1507
    if (!(this+coverageZ[0]).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
1508
      return;
1509

1510
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1511
    struct ContextClosureLookupContext lookup_context = {
1512
      {intersects_coverage},
1513 1514
      this
    };
B
Behdad Esfahbod 已提交
1515
    context_closure_lookup (c,
B
Behdad Esfahbod 已提交
1516
			    glyphCount, (const HBUINT16 *) (coverageZ + 1),
B
Behdad Esfahbod 已提交
1517 1518
			    lookupCount, lookupRecord,
			    lookup_context);
1519 1520
  }

B
Behdad Esfahbod 已提交
1521 1522
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1523
    TRACE_COLLECT_GLYPHS (this);
1524
    (this+coverageZ[0]).add_coverage (c->input);
1525

1526
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1527 1528
    struct ContextCollectGlyphsLookupContext lookup_context = {
      {collect_coverage},
1529
      this
1530 1531 1532
    };

    context_collect_glyphs_lookup (c,
B
Behdad Esfahbod 已提交
1533
				   glyphCount, (const HBUINT16 *) (coverageZ + 1),
1534 1535
				   lookupCount, lookupRecord,
				   lookup_context);
B
Behdad Esfahbod 已提交
1536 1537
  }

1538 1539
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1540
    TRACE_WOULD_APPLY (this);
1541

1542
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1543
    struct ContextApplyLookupContext lookup_context = {
1544
      {match_coverage},
1545 1546
      this
    };
B
Behdad Esfahbod 已提交
1547
    return_trace (context_would_apply_lookup (c, glyphCount, (const HBUINT16 *) (coverageZ + 1), lookupCount, lookupRecord, lookup_context));
1548 1549
  }

1550 1551
  inline const Coverage &get_coverage (void) const
  {
1552
    return this+coverageZ[0];
1553 1554
  }

1555
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1556
  {
B
Behdad Esfahbod 已提交
1557
    TRACE_APPLY (this);
1558
    unsigned int index = (this+coverageZ[0]).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
1559
    if (likely (index == NOT_COVERED)) return_trace (false);
1560

1561
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * glyphCount);
1562
    struct ContextApplyLookupContext lookup_context = {
1563
      {match_coverage},
B
Behdad Esfahbod 已提交
1564
      this
1565
    };
B
Behdad Esfahbod 已提交
1566
    return_trace (context_apply_lookup (c, glyphCount, (const HBUINT16 *) (coverageZ + 1), lookupCount, lookupRecord, lookup_context));
1567 1568
  }

B
Behdad Esfahbod 已提交
1569 1570
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1571
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1572
    if (!c->check_struct (this)) return_trace (false);
B
Behdad Esfahbod 已提交
1573
    unsigned int count = glyphCount;
B
Behdad Esfahbod 已提交
1574 1575
    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 已提交
1576
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
1577
      if (!coverageZ[i].sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
1578
    const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverageZ, coverageZ[0].static_size * count);
B
Behdad Esfahbod 已提交
1579
    return_trace (c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount));
B
Behdad Esfahbod 已提交
1580 1581
  }

1582
  protected:
B
Behdad Esfahbod 已提交
1583 1584
  HBUINT16	format;			/* Format identifier--format = 3 */
  HBUINT16	glyphCount;		/* Number of glyphs in the input glyph
1585
					 * sequence */
B
Behdad Esfahbod 已提交
1586
  HBUINT16	lookupCount;		/* Number of LookupRecords */
1587
  OffsetTo<Coverage>
1588
		coverageZ[VAR];		/* Array of offsets to Coverage
1589
					 * table in glyph sequence order */
1590
/*LookupRecord	lookupRecordX[VAR];*/	/* Array of LookupRecords--in
1591
					 * design order */
B
Behdad Esfahbod 已提交
1592
  public:
1593
  DEFINE_SIZE_ARRAY (6, coverageZ);
1594 1595
};

B
Behdad Esfahbod 已提交
1596 1597
struct Context
{
1598
  template <typename context_t>
1599
  inline typename context_t::return_t dispatch (context_t *c) const
1600
  {
1601
    TRACE_DISPATCH (this, u.format);
1602
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
1603
    switch (u.format) {
B
Behdad Esfahbod 已提交
1604 1605 1606 1607
    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 ());
1608 1609 1610
    }
  }

1611
  protected:
1612
  union {
B
Behdad Esfahbod 已提交
1613
  HBUINT16		format;		/* Format identifier */
B
Behdad Esfahbod 已提交
1614 1615 1616
  ContextFormat1	format1;
  ContextFormat2	format2;
  ContextFormat3	format3;
1617 1618 1619
  } u;
};

1620 1621 1622

/* Chaining Contextual lookups */

1623
struct ChainContextClosureLookupContext
B
Behdad Esfahbod 已提交
1624
{
1625 1626 1627 1628
  ContextClosureFuncs funcs;
  const void *intersects_data[3];
};

1629 1630 1631 1632 1633 1634
struct ChainContextCollectGlyphsLookupContext
{
  ContextCollectGlyphsFuncs funcs;
  const void *collect_data[3];
};

1635 1636 1637
struct ChainContextApplyLookupContext
{
  ContextApplyFuncs funcs;
B
Behdad Esfahbod 已提交
1638
  const void *match_data[3];
1639 1640
};

B
Behdad Esfahbod 已提交
1641
static inline void chain_context_closure_lookup (hb_closure_context_t *c,
1642
						 unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1643
						 const HBUINT16 backtrack[],
1644
						 unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1645
						 const HBUINT16 input[], /* Array of input values--start with second glyph */
1646
						 unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1647
						 const HBUINT16 lookahead[],
1648 1649 1650 1651
						 unsigned int lookupCount,
						 const LookupRecord lookupRecord[],
						 ChainContextClosureLookupContext &lookup_context)
{
B
Behdad Esfahbod 已提交
1652 1653 1654 1655 1656 1657
  if (intersects_array (c,
			backtrackCount, backtrack,
			lookup_context.funcs.intersects, lookup_context.intersects_data[0])
   && intersects_array (c,
			inputCount ? inputCount - 1 : 0, input,
			lookup_context.funcs.intersects, lookup_context.intersects_data[1])
B
Minor  
Behdad Esfahbod 已提交
1658
   && intersects_array (c,
B
Behdad Esfahbod 已提交
1659 1660
		       lookaheadCount, lookahead,
		       lookup_context.funcs.intersects, lookup_context.intersects_data[2]))
1661 1662
    recurse_lookups (c,
		     lookupCount, lookupRecord);
1663 1664
}

1665 1666
static inline void chain_context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c,
						        unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1667
						        const HBUINT16 backtrack[],
1668
						        unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1669
						        const HBUINT16 input[], /* Array of input values--start with second glyph */
1670
						        unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1671
						        const HBUINT16 lookahead[],
1672 1673 1674 1675
						        unsigned int lookupCount,
						        const LookupRecord lookupRecord[],
						        ChainContextCollectGlyphsLookupContext &lookup_context)
{
B
Minor  
Behdad Esfahbod 已提交
1676
  collect_array (c, c->before,
1677 1678
		 backtrackCount, backtrack,
		 lookup_context.funcs.collect, lookup_context.collect_data[0]);
B
Minor  
Behdad Esfahbod 已提交
1679
  collect_array (c, c->input,
1680 1681
		 inputCount ? inputCount - 1 : 0, input,
		 lookup_context.funcs.collect, lookup_context.collect_data[1]);
B
Minor  
Behdad Esfahbod 已提交
1682
  collect_array (c, c->after,
1683 1684 1685 1686 1687 1688
		 lookaheadCount, lookahead,
		 lookup_context.funcs.collect, lookup_context.collect_data[2]);
  recurse_lookups (c,
		   lookupCount, lookupRecord);
}

1689 1690
static inline bool chain_context_would_apply_lookup (hb_would_apply_context_t *c,
						     unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1691
						     const HBUINT16 backtrack[] HB_UNUSED,
1692
						     unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1693
						     const HBUINT16 input[], /* Array of input values--start with second glyph */
1694
						     unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1695
						     const HBUINT16 lookahead[] HB_UNUSED,
B
Behdad Esfahbod 已提交
1696 1697
						     unsigned int lookupCount HB_UNUSED,
						     const LookupRecord lookupRecord[] HB_UNUSED,
1698 1699
						     ChainContextApplyLookupContext &lookup_context)
{
1700
  return (c->zero_context ? !backtrackCount && !lookaheadCount : true)
1701
      && would_match_input (c,
1702 1703 1704 1705
			    inputCount, input,
			    lookup_context.funcs.match, lookup_context.match_data[1]);
}

1706
static inline bool chain_context_apply_lookup (hb_ot_apply_context_t *c,
1707
					       unsigned int backtrackCount,
B
Behdad Esfahbod 已提交
1708
					       const HBUINT16 backtrack[],
1709
					       unsigned int inputCount, /* Including the first glyph (not matched) */
B
Behdad Esfahbod 已提交
1710
					       const HBUINT16 input[], /* Array of input values--start with second glyph */
1711
					       unsigned int lookaheadCount,
B
Behdad Esfahbod 已提交
1712
					       const HBUINT16 lookahead[],
1713 1714 1715
					       unsigned int lookupCount,
					       const LookupRecord lookupRecord[],
					       ChainContextApplyLookupContext &lookup_context)
1716
{
1717
  unsigned int start_index = 0, match_length = 0, end_index = 0;
1718
  unsigned int match_positions[HB_MAX_CONTEXT_LENGTH];
B
Behdad Esfahbod 已提交
1719
  return match_input (c,
B
Behdad Esfahbod 已提交
1720 1721
		      inputCount, input,
		      lookup_context.funcs.match, lookup_context.match_data[1],
1722
		      &match_length, match_positions)
B
Behdad Esfahbod 已提交
1723 1724
      && match_backtrack (c,
			  backtrackCount, backtrack,
1725 1726
			  lookup_context.funcs.match, lookup_context.match_data[0],
			  &start_index)
B
Behdad Esfahbod 已提交
1727
      && match_lookahead (c,
B
Behdad Esfahbod 已提交
1728 1729
			  lookaheadCount, lookahead,
			  lookup_context.funcs.match, lookup_context.match_data[2],
1730 1731 1732
			  match_length, &end_index)
      && (c->buffer->unsafe_to_break_from_outbuffer (start_index, end_index),
          apply_lookup (c,
1733 1734
		       inputCount, match_positions,
		       lookupCount, lookupRecord,
1735
		       match_length));
1736
}
1737

B
Behdad Esfahbod 已提交
1738 1739
struct ChainRule
{
B
Behdad Esfahbod 已提交
1740
  inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
1741
  {
B
Behdad Esfahbod 已提交
1742
    TRACE_CLOSURE (this);
B
Behdad Esfahbod 已提交
1743 1744
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1745
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1746
    chain_context_closure_lookup (c,
1747 1748 1749 1750
				  backtrack.len, backtrack.arrayZ,
				  input.len, input.arrayZ,
				  lookahead.len, lookahead.arrayZ,
				  lookup.len, lookup.arrayZ,
B
Behdad Esfahbod 已提交
1751
				  lookup_context);
1752 1753
  }

1754 1755 1756
  inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const
  {
    TRACE_COLLECT_GLYPHS (this);
B
Behdad Esfahbod 已提交
1757 1758
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1759 1760
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    chain_context_collect_glyphs_lookup (c,
1761 1762 1763 1764
					 backtrack.len, backtrack.arrayZ,
					 input.len, input.arrayZ,
					 lookahead.len, lookahead.arrayZ,
					 lookup.len, lookup.arrayZ,
1765 1766 1767
					 lookup_context);
  }

1768 1769
  inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1770
    TRACE_WOULD_APPLY (this);
B
Behdad Esfahbod 已提交
1771 1772
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1773
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1774
    return_trace (chain_context_would_apply_lookup (c,
1775 1776 1777 1778
						    backtrack.len, backtrack.arrayZ,
						    input.len, input.arrayZ,
						    lookahead.len, lookahead.arrayZ, lookup.len,
						    lookup.arrayZ, lookup_context));
1779 1780
  }

1781
  inline bool apply (hb_ot_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1782
  {
B
Behdad Esfahbod 已提交
1783
    TRACE_APPLY (this);
B
Behdad Esfahbod 已提交
1784 1785
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
1786
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1787
    return_trace (chain_context_apply_lookup (c,
1788 1789 1790 1791
					      backtrack.len, backtrack.arrayZ,
					      input.len, input.arrayZ,
					      lookahead.len, lookahead.arrayZ, lookup.len,
					      lookup.arrayZ, lookup_context));
1792 1793
  }

B
Behdad Esfahbod 已提交
1794 1795
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1796
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1797
    if (!backtrack.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1798
    const HeadlessArrayOf<HBUINT16> &input = StructAfter<HeadlessArrayOf<HBUINT16> > (backtrack);
B
Behdad Esfahbod 已提交
1799
    if (!input.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1800
    const ArrayOf<HBUINT16> &lookahead = StructAfter<ArrayOf<HBUINT16> > (input);
B
Behdad Esfahbod 已提交
1801
    if (!lookahead.sanitize (c)) return_trace (false);
B
Behdad Esfahbod 已提交
1802
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
1803
    return_trace (lookup.sanitize (c));
B
Behdad Esfahbod 已提交
1804
  }
1805

1806
  protected:
B
Behdad Esfahbod 已提交
1807
  ArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1808
		backtrack;		/* Array of backtracking values
1809 1810
					 * (to be matched before the input
					 * sequence) */
B
Behdad Esfahbod 已提交
1811
  HeadlessArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1812
		inputX;			/* Array of input values (start with
1813
					 * second glyph) */
B
Behdad Esfahbod 已提交
1814
  ArrayOf<HBUINT16>
B
Behdad Esfahbod 已提交
1815
		lookaheadX;		/* Array of lookahead values's (to be
1816
					 * matched after the input sequence) */
B
Behdad Esfahbod 已提交
1817
  ArrayOf<LookupRecord>
1818
		lookupX;		/* Array of LookupRecords--in
1819
					 * design order) */
1820
  public:
B
Behdad Esfahbod 已提交
1821
  DEFINE_SIZE_MIN (8);
1822 1823
};

B
Behdad Esfahbod 已提交
1824 1825
struct ChainRuleSet
{
B
Behdad Esfahbod 已提交
1826
  inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const
1827
  {
B
Behdad Esfahbod 已提交
1828
    TRACE_CLOSURE (this);
1829 1830
    unsigned int num_rules = rule.len;
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1831
      (this+rule[i]).closure (c, lookup_context);
1832 1833
  }

1834 1835 1836 1837 1838 1839 1840 1841
  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);
  }

1842 1843
  inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
  {
B
Behdad Esfahbod 已提交
1844
    TRACE_WOULD_APPLY (this);
1845 1846 1847
    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 已提交
1848
        return_trace (true);
1849

B
Behdad Esfahbod 已提交
1850
    return_trace (false);
1851 1852
  }

1853
  inline bool apply (hb_ot_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const
B
Behdad Esfahbod 已提交
1854
  {
B
Behdad Esfahbod 已提交
1855
    TRACE_APPLY (this);
1856
    unsigned int num_rules = rule.len;
B
Behdad Esfahbod 已提交
1857
    for (unsigned int i = 0; i < num_rules; i++)
B
Behdad Esfahbod 已提交
1858
      if ((this+rule[i]).apply (c, lookup_context))
B
Behdad Esfahbod 已提交
1859
        return_trace (true);
1860

B
Behdad Esfahbod 已提交
1861
    return_trace (false);
1862
  }
1863

B
Behdad Esfahbod 已提交
1864 1865
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1866
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1867
    return_trace (rule.sanitize (c, this));
B
Behdad Esfahbod 已提交
1868 1869
  }

1870
  protected:
1871 1872 1873
  OffsetArrayOf<ChainRule>
		rule;			/* Array of ChainRule tables
					 * ordered by preference */
1874
  public:
1875
  DEFINE_SIZE_ARRAY (2, rule);
1876 1877
};

B
Behdad Esfahbod 已提交
1878 1879
struct ChainContextFormat1
{
1880
  inline void closure (hb_closure_context_t *c) const
1881
  {
B
Behdad Esfahbod 已提交
1882
    TRACE_CLOSURE (this);
1883 1884 1885
    const Coverage &cov = (this+coverage);

    struct ChainContextClosureLookupContext lookup_context = {
1886
      {intersects_glyph},
B
Behdad Esfahbod 已提交
1887
      {nullptr, nullptr, nullptr}
1888 1889 1890 1891 1892 1893
    };

    unsigned int count = ruleSet.len;
    for (unsigned int i = 0; i < count; i++)
      if (cov.intersects_coverage (c->glyphs, i)) {
	const ChainRuleSet &rule_set = this+ruleSet[i];
B
Behdad Esfahbod 已提交
1894
	rule_set.closure (c, lookup_context);
1895
      }
1896 1897
  }

B
Behdad Esfahbod 已提交
1898 1899
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1900
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1901
    (this+coverage).add_coverage (c->input);
1902 1903 1904

    struct ChainContextCollectGlyphsLookupContext lookup_context = {
      {collect_glyph},
B
Behdad Esfahbod 已提交
1905
      {nullptr, nullptr, nullptr}
1906 1907 1908 1909 1910
    };

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

1913 1914
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1915
    TRACE_WOULD_APPLY (this);
1916

1917
    const ChainRuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])];
1918
    struct ChainContextApplyLookupContext lookup_context = {
1919
      {match_glyph},
B
Behdad Esfahbod 已提交
1920
      {nullptr, nullptr, nullptr}
1921
    };
B
Behdad Esfahbod 已提交
1922
    return_trace (rule_set.would_apply (c, lookup_context));
1923 1924
  }

1925 1926 1927 1928 1929
  inline const Coverage &get_coverage (void) const
  {
    return this+coverage;
  }

1930
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
1931
  {
B
Behdad Esfahbod 已提交
1932
    TRACE_APPLY (this);
1933
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
1934
    if (likely (index == NOT_COVERED)) return_trace (false);
1935

1936
    const ChainRuleSet &rule_set = this+ruleSet[index];
1937
    struct ChainContextApplyLookupContext lookup_context = {
1938
      {match_glyph},
B
Behdad Esfahbod 已提交
1939
      {nullptr, nullptr, nullptr}
1940
    };
B
Behdad Esfahbod 已提交
1941
    return_trace (rule_set.apply (c, lookup_context));
1942
  }
B
Behdad Esfahbod 已提交
1943

B
Behdad Esfahbod 已提交
1944 1945
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
1946
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
1947
    return_trace (coverage.sanitize (c, this) && ruleSet.sanitize (c, this));
B
Behdad Esfahbod 已提交
1948 1949
  }

1950
  protected:
B
Behdad Esfahbod 已提交
1951
  HBUINT16	format;			/* Format identifier--format = 1 */
1952 1953
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
1954
					 * beginning of table */
1955 1956 1957
  OffsetArrayOf<ChainRuleSet>
		ruleSet;		/* Array of ChainRuleSet tables
					 * ordered by Coverage Index */
1958
  public:
1959
  DEFINE_SIZE_ARRAY (6, ruleSet);
1960 1961
};

B
Behdad Esfahbod 已提交
1962 1963
struct ChainContextFormat2
{
1964
  inline void closure (hb_closure_context_t *c) const
1965
  {
B
Behdad Esfahbod 已提交
1966
    TRACE_CLOSURE (this);
1967
    if (!(this+coverage).intersects (c->glyphs))
B
Behdad Esfahbod 已提交
1968
      return;
1969 1970 1971 1972 1973 1974

    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 = {
1975
      {intersects_class},
1976 1977 1978 1979 1980 1981 1982 1983 1984
      {&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 已提交
1985
	rule_set.closure (c, lookup_context);
1986
      }
1987 1988
  }

B
Behdad Esfahbod 已提交
1989 1990
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
1991
    TRACE_COLLECT_GLYPHS (this);
B
Minor  
Behdad Esfahbod 已提交
1992
    (this+coverage).add_coverage (c->input);
1993

1994 1995 1996 1997
    const ClassDef &backtrack_class_def = this+backtrackClassDef;
    const ClassDef &input_class_def = this+inputClassDef;
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;

1998 1999
    struct ChainContextCollectGlyphsLookupContext lookup_context = {
      {collect_class},
2000 2001 2002
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2003 2004 2005 2006 2007
    };

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

2010 2011
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2012
    TRACE_WOULD_APPLY (this);
2013

2014
    const ClassDef &backtrack_class_def = this+backtrackClassDef;
2015
    const ClassDef &input_class_def = this+inputClassDef;
2016
    const ClassDef &lookahead_class_def = this+lookaheadClassDef;
2017

2018
    unsigned int index = input_class_def.get_class (c->glyphs[0]);
2019 2020
    const ChainRuleSet &rule_set = this+ruleSet[index];
    struct ChainContextApplyLookupContext lookup_context = {
2021
      {match_class},
2022 2023 2024
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2025
    };
B
Behdad Esfahbod 已提交
2026
    return_trace (rule_set.would_apply (c, lookup_context));
2027 2028
  }

2029 2030 2031 2032 2033
  inline const Coverage &get_coverage (void) const
  {
    return this+coverage;
  }

2034
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
2035
  {
B
Behdad Esfahbod 已提交
2036
    TRACE_APPLY (this);
2037
    unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
B
Behdad Esfahbod 已提交
2038
    if (likely (index == NOT_COVERED)) return_trace (false);
2039 2040 2041 2042 2043

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

2044
    index = input_class_def.get_class (c->buffer->cur().codepoint);
2045
    const ChainRuleSet &rule_set = this+ruleSet[index];
2046
    struct ChainContextApplyLookupContext lookup_context = {
2047
      {match_class},
B
Behdad Esfahbod 已提交
2048 2049 2050
      {&backtrack_class_def,
       &input_class_def,
       &lookahead_class_def}
2051
    };
B
Behdad Esfahbod 已提交
2052
    return_trace (rule_set.apply (c, lookup_context));
2053 2054
  }

B
Behdad Esfahbod 已提交
2055 2056
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2057
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2058 2059 2060 2061 2062
    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 已提交
2063 2064
  }

2065
  protected:
B
Behdad Esfahbod 已提交
2066
  HBUINT16	format;			/* Format identifier--format = 2 */
2067 2068
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
2069
					 * beginning of table */
2070 2071
  OffsetTo<ClassDef>
		backtrackClassDef;	/* Offset to glyph ClassDef table
2072 2073
					 * containing backtrack sequence
					 * data--from beginning of table */
2074 2075
  OffsetTo<ClassDef>
		inputClassDef;		/* Offset to glyph ClassDef
2076 2077
					 * table containing input sequence
					 * data--from beginning of table */
2078 2079
  OffsetTo<ClassDef>
		lookaheadClassDef;	/* Offset to glyph ClassDef table
2080 2081
					 * containing lookahead sequence
					 * data--from beginning of table */
2082 2083 2084
  OffsetArrayOf<ChainRuleSet>
		ruleSet;		/* Array of ChainRuleSet tables
					 * ordered by class */
2085
  public:
2086
  DEFINE_SIZE_ARRAY (12, ruleSet);
2087 2088
};

B
Behdad Esfahbod 已提交
2089 2090
struct ChainContextFormat3
{
2091
  inline void closure (hb_closure_context_t *c) const
2092
  {
B
Behdad Esfahbod 已提交
2093
    TRACE_CLOSURE (this);
B
Behdad Esfahbod 已提交
2094 2095 2096 2097 2098 2099 2100 2101
    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 = {
2102
      {intersects_coverage},
B
Behdad Esfahbod 已提交
2103 2104 2105
      {this, this, this}
    };
    chain_context_closure_lookup (c,
2106 2107 2108 2109
				  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 已提交
2110
				  lookup_context);
2111 2112
  }

B
Behdad Esfahbod 已提交
2113 2114
  inline void collect_glyphs (hb_collect_glyphs_context_t *c) const
  {
2115 2116 2117
    TRACE_COLLECT_GLYPHS (this);
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);

B
Minor  
Behdad Esfahbod 已提交
2118
    (this+input[0]).add_coverage (c->input);
2119 2120 2121 2122 2123 2124 2125 2126

    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,
2127 2128 2129 2130
					 backtrack.len, (const HBUINT16 *) backtrack.arrayZ,
					 input.len, (const HBUINT16 *) input.arrayZ + 1,
					 lookahead.len, (const HBUINT16 *) lookahead.arrayZ,
					 lookup.len, lookup.arrayZ,
2131
					 lookup_context);
B
Behdad Esfahbod 已提交
2132 2133
  }

2134 2135
  inline bool would_apply (hb_would_apply_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2136
    TRACE_WOULD_APPLY (this);
2137

B
Behdad Esfahbod 已提交
2138
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
2139 2140 2141
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
    struct ChainContextApplyLookupContext lookup_context = {
2142
      {match_coverage},
2143 2144
      {this, this, this}
    };
B
Behdad Esfahbod 已提交
2145
    return_trace (chain_context_would_apply_lookup (c,
2146 2147 2148 2149
						    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));
2150 2151
  }

2152 2153 2154 2155 2156 2157
  inline const Coverage &get_coverage (void) const
  {
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
    return this+input[0];
  }

2158
  inline bool apply (hb_ot_apply_context_t *c) const
B
Behdad Esfahbod 已提交
2159
  {
B
Behdad Esfahbod 已提交
2160
    TRACE_APPLY (this);
2161
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
2162

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

2166 2167
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
2168
    struct ChainContextApplyLookupContext lookup_context = {
2169
      {match_coverage},
B
Behdad Esfahbod 已提交
2170
      {this, this, this}
2171
    };
B
Behdad Esfahbod 已提交
2172
    return_trace (chain_context_apply_lookup (c,
2173 2174 2175 2176
					      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));
2177 2178
  }

B
Behdad Esfahbod 已提交
2179 2180
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2181
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2182
    if (!backtrack.sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
2183
    const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
B
Behdad Esfahbod 已提交
2184 2185
    if (!input.sanitize (c, this)) return_trace (false);
    if (!input.len) return_trace (false); /* To be consistent with Context. */
B
Behdad Esfahbod 已提交
2186
    const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
B
Behdad Esfahbod 已提交
2187
    if (!lookahead.sanitize (c, this)) return_trace (false);
B
Behdad Esfahbod 已提交
2188
    const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead);
B
Behdad Esfahbod 已提交
2189
    return_trace (lookup.sanitize (c));
B
Behdad Esfahbod 已提交
2190 2191
  }

2192
  protected:
B
Behdad Esfahbod 已提交
2193
  HBUINT16	format;			/* Format identifier--format = 3 */
B
Behdad Esfahbod 已提交
2194
  OffsetArrayOf<Coverage>
2195
		backtrack;		/* Array of coverage tables
2196 2197
					 * in backtracking sequence, in  glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2198
  OffsetArrayOf<Coverage>
2199
		inputX		;	/* Array of coverage
2200 2201
					 * tables in input sequence, in glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2202
  OffsetArrayOf<Coverage>
2203
		lookaheadX;		/* Array of coverage tables
2204 2205
					 * in lookahead sequence, in glyph
					 * sequence order */
B
Behdad Esfahbod 已提交
2206
  ArrayOf<LookupRecord>
2207
		lookupX;		/* Array of LookupRecords--in
B
Behdad Esfahbod 已提交
2208
					 * design order) */
2209
  public:
B
Behdad Esfahbod 已提交
2210
  DEFINE_SIZE_MIN (10);
2211 2212
};

B
Behdad Esfahbod 已提交
2213 2214
struct ChainContext
{
2215
  template <typename context_t>
2216
  inline typename context_t::return_t dispatch (context_t *c) const
2217
  {
2218
    TRACE_DISPATCH (this, u.format);
2219
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
2220
    switch (u.format) {
B
Behdad Esfahbod 已提交
2221 2222 2223 2224
    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 ());
2225 2226 2227
    }
  }

2228
  protected:
2229
  union {
B
Behdad Esfahbod 已提交
2230
  HBUINT16		format;	/* Format identifier */
B
Behdad Esfahbod 已提交
2231 2232 2233
  ChainContextFormat1	format1;
  ChainContextFormat2	format2;
  ChainContextFormat3	format3;
2234 2235 2236 2237
  } u;
};


2238
template <typename T>
2239 2240 2241 2242
struct ExtensionFormat1
{
  inline unsigned int get_type (void) const { return extensionLookupType; }

2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
  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);
2255
    if (unlikely (!c->may_dispatch (this, this))) return_trace (c->no_dispatch_return_value ());
B
Behdad Esfahbod 已提交
2256
    return_trace (get_subtable<typename T::LookupSubTable> ().dispatch (c, get_type ()));
2257 2258 2259
  }

  /* This is called from may_dispatch() above with hb_sanitize_context_t. */
B
Behdad Esfahbod 已提交
2260 2261
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2262
    TRACE_SANITIZE (this);
2263 2264 2265
    return_trace (c->check_struct (this) &&
		  extensionOffset != 0 &&
		  extensionLookupType != T::LookupSubTable::Extension);
B
Behdad Esfahbod 已提交
2266 2267
  }

2268
  protected:
B
Behdad Esfahbod 已提交
2269 2270
  HBUINT16	format;			/* Format identifier. Set to 1. */
  HBUINT16	extensionLookupType;	/* Lookup type of subtable referenced
2271 2272
					 * by ExtensionOffset (i.e. the
					 * extension subtable). */
B
Behdad Esfahbod 已提交
2273
  HBUINT32	extensionOffset;	/* Offset to the extension subtable,
2274
					 * of lookup type subtable. */
2275 2276
  public:
  DEFINE_SIZE_STATIC (8);
2277 2278
};

B
Behdad Esfahbod 已提交
2279
template <typename T>
2280 2281 2282 2283 2284
struct Extension
{
  inline unsigned int get_type (void) const
  {
    switch (u.format) {
B
Behdad Esfahbod 已提交
2285
    case 1: return u.format1.get_type ();
2286 2287 2288
    default:return 0;
    }
  }
2289 2290 2291
  template <typename X>
  inline const X& get_subtable (void) const
  {
2292 2293 2294 2295
    switch (u.format) {
    case 1: return u.format1.template get_subtable<typename T::LookupSubTable> ();
    default:return Null(typename T::LookupSubTable);
    }
2296 2297
  }

B
Behdad Esfahbod 已提交
2298
  template <typename context_t>
2299
  inline typename context_t::return_t dispatch (context_t *c) const
B
Behdad Esfahbod 已提交
2300
  {
2301
    TRACE_DISPATCH (this, u.format);
2302
    if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
B
Behdad Esfahbod 已提交
2303
    switch (u.format) {
B
Behdad Esfahbod 已提交
2304 2305
    case 1: return_trace (u.format1.dispatch (c));
    default:return_trace (c->default_return_value ());
B
Behdad Esfahbod 已提交
2306 2307 2308
    }
  }

2309
  protected:
2310
  union {
B
Behdad Esfahbod 已提交
2311
  HBUINT16		format;		/* Format identifier */
2312
  ExtensionFormat1<T>	format1;
2313 2314 2315 2316
  } u;
};


B
Behdad Esfahbod 已提交
2317 2318 2319 2320
/*
 * GSUB/GPOS Common
 */

B
Behdad Esfahbod 已提交
2321 2322
struct GSUBGPOS
{
2323 2324 2325 2326
  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 已提交
2327 2328 2329 2330
  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); }
2331 2332 2333 2334 2335 2336 2337
  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; }
2338 2339
  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 已提交
2340 2341 2342 2343
  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); }
2344 2345 2346 2347 2348 2349 2350 2351 2352
  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 已提交
2353

2354 2355
  inline bool find_variations_index (const int *coords, unsigned int num_coords,
				     unsigned int *index) const
2356
  { return (version.to_int () >= 0x00010001u ? this+featureVars : Null(FeatureVariations))
2357
	   .find_index (coords, num_coords, index); }
2358 2359 2360 2361 2362 2363
  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)
    {
2364 2365
      const Feature *feature = (this+featureVars).find_substitute (variations_index,
								   feature_index);
2366 2367 2368 2369 2370
      if (feature)
        return *feature;
    }
    return get_feature (feature_index);
  }
2371

B
Behdad Esfahbod 已提交
2372 2373
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
B
Behdad Esfahbod 已提交
2374
    TRACE_SANITIZE (this);
B
Behdad Esfahbod 已提交
2375 2376 2377 2378
    return_trace (version.sanitize (c) &&
		  likely (version.major == 1) &&
		  scriptList.sanitize (c, this) &&
		  featureList.sanitize (c, this) &&
2379 2380
		  lookupList.sanitize (c, this) &&
		  (version.to_int () < 0x00010001u || featureVars.sanitize (c, this)));
B
Behdad Esfahbod 已提交
2381 2382
  }

2383
  protected:
B
Behdad Esfahbod 已提交
2384
  FixedVersion<>version;	/* Version of the GSUB/GPOS table--initially set
2385
				 * to 0x00010000u */
B
Behdad Esfahbod 已提交
2386 2387 2388 2389 2390 2391
  OffsetTo<ScriptList>
		scriptList;  	/* ScriptList table */
  OffsetTo<FeatureList>
		featureList; 	/* FeatureList table */
  OffsetTo<LookupList>
		lookupList; 	/* LookupList table */
B
Behdad Esfahbod 已提交
2392
  LOffsetTo<FeatureVariations>
2393 2394 2395 2396
		featureVars;	/* Offset to Feature Variations
				   table--from beginning of table
				 * (may be NULL).  Introduced
				 * in version 0x00010001. */
2397
  public:
2398
  DEFINE_SIZE_MIN (10);
B
Behdad Esfahbod 已提交
2399
};
2400

2401

B
Behdad Esfahbod 已提交
2402
} /* namespace OT */
2403

B
Behdad Esfahbod 已提交
2404

2405
#endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH */