hb-ot-layout-gsub-private.h 38.2 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
2
 * Copyright (C) 2007,2008,2009  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 *  This is part of HarfBuzz, an OpenType Layout engine library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
 */

#ifndef HB_OT_LAYOUT_GSUB_PRIVATE_H
#define HB_OT_LAYOUT_GSUB_PRIVATE_H

B
Behdad Esfahbod 已提交
30
#include "hb-ot-layout-private.h"
B
Behdad Esfahbod 已提交
31 32 33 34

#include "hb-ot-layout-open-private.h"
#include "hb-ot-layout-gdef-private.h"

B
Behdad Esfahbod 已提交
35 36
#include "harfbuzz-buffer-private.h" /* XXX */

37 38 39 40
#define SUBTABLE_SUBSTITUTE_ARGS_DEF \
	hb_ot_layout_t *layout, \
	hb_buffer_t    *buffer, \
	unsigned int    context_length, \
41
	unsigned int    nesting_level_left HB_GNUC_UNUSED, \
42 43 44 45 46 47 48
	unsigned int    lookup_flag
#define SUBTABLE_SUBSTITUTE_ARGS \
	layout, \
	buffer, \
	context_length, \
	nesting_level_left, \
	lookup_flag
B
Behdad Esfahbod 已提交
49 50

struct SingleSubstFormat1 {
B
Behdad Esfahbod 已提交
51 52 53 54

  friend struct SingleSubst;

  private:
B
Behdad Esfahbod 已提交
55

56
  inline bool single_substitute (hb_codepoint_t &glyph_id) const {
B
Behdad Esfahbod 已提交
57

B
Behdad Esfahbod 已提交
58
    unsigned int index = (this+coverage) (glyph_id);
59
    if (NOT_COVERED == index)
B
Behdad Esfahbod 已提交
60 61 62 63 64
      return false;

    glyph_id += deltaGlyphID;

    return true;
65
  }
B
Behdad Esfahbod 已提交
66

B
Behdad Esfahbod 已提交
67 68
  private:
  USHORT	substFormat;		/* Format identifier--format = 1 */
B
Behdad Esfahbod 已提交
69 70
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
B
Behdad Esfahbod 已提交
71 72 73 74 75 76 77
					 * beginning of Substitution table */
  SHORT		deltaGlyphID;		/* Add to original GlyphID to get
					 * substitute GlyphID */
};
ASSERT_SIZE (SingleSubstFormat1, 6);

struct SingleSubstFormat2 {
78 79 80 81 82 83 84

  friend struct SingleSubst;

  private:

  inline bool single_substitute (hb_codepoint_t &glyph_id) const {

B
Behdad Esfahbod 已提交
85
    unsigned int index = (this+coverage) (glyph_id);
86 87 88 89 90 91 92

    if (index >= glyphCount)
      return false;

    glyph_id = substitute[index];
    return true;
  }
B
Behdad Esfahbod 已提交
93 94 95

  private:
  USHORT	substFormat;		/* Format identifier--format = 2 */
B
Behdad Esfahbod 已提交
96 97
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
B
Behdad Esfahbod 已提交
98 99 100 101 102 103 104 105
					 * beginning of Substitution table */
  USHORT	glyphCount;		/* Number of GlyphIDs in the Substitute
					 * array */
  GlyphID	substitute[];		/* Array of substitute
					 * GlyphIDs--ordered by Coverage  Index */
};
ASSERT_SIZE (SingleSubstFormat2, 6);

106 107 108 109
struct SingleSubst {

  friend struct SubstLookupSubTable;

110 111
  private:

B
Behdad Esfahbod 已提交
112 113 114 115 116 117 118 119
  inline bool single_substitute (hb_codepoint_t &glyph_id) const {
    switch (u.substFormat) {
    case 1: return u.format1.single_substitute (glyph_id);
    case 2: return u.format2.single_substitute (glyph_id);
    default:return false;
    }
  }

120
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
121

122
    unsigned int property;
123 124 125
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

126
    hb_codepoint_t glyph_id = IN_CURGLYPH ();
127

B
Behdad Esfahbod 已提交
128 129
    if (!single_substitute (glyph_id))
      return false;
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

    _hb_buffer_replace_output_glyph (buffer, glyph_id, context_length == NO_CONTEXT);

    if ( _hb_ot_layout_has_new_glyph_classes (layout) )
    {
      /* we inherit the old glyph class to the substituted glyph */
      _hb_ot_layout_set_glyph_property (layout, glyph_id, property);
    }

    return true;
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  SingleSubstFormat1	format1;
  SingleSubstFormat2	format2;
  } u;
B
Behdad Esfahbod 已提交
148
};
149 150
DEFINE_NULL (SingleSubst, 2);

B
Behdad Esfahbod 已提交
151 152

struct Sequence {
153 154 155 156 157 158 159 160 161

  friend struct MultipleSubstFormat1;

  private:
  /* GlyphID tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (GlyphID, substitute, glyphCount);

  inline void set_glyph_class (hb_ot_layout_t *layout, unsigned int property) const {

162 163
    unsigned int count = glyphCount;
    for (unsigned int n = 0; n < count; n++)
164 165
      _hb_ot_layout_set_glyph_property (layout, substitute[n], property);
  }
B
Behdad Esfahbod 已提交
166

B
Behdad Esfahbod 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
  inline bool substitute_sequence (SUBTABLE_SUBSTITUTE_ARGS_DEF, unsigned int property) const {

    if (HB_UNLIKELY (!get_len ()))
      return false;

    _hb_buffer_add_output_glyph_ids (buffer, 1,
				     glyphCount, substitute,
				     0xFFFF, 0xFFFF);

    if ( _hb_ot_layout_has_new_glyph_classes (layout) )
    {
      /* this is a guess only ... */

      if ( property == HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE )
        property = HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH;

      set_glyph_class (layout, property);
    }

    return true;
  }

B
Behdad Esfahbod 已提交
189 190 191 192 193 194
  private:
  USHORT	glyphCount;		/* Number of GlyphIDs in the Substitute
					 * array. This should always  be
					 * greater than 0. */
  GlyphID	substitute[];		/* String of GlyphIDs to substitute */
};
195
ASSERT_SIZE (Sequence, 2);
B
Behdad Esfahbod 已提交
196

197 198 199 200 201 202 203 204
struct MultipleSubstFormat1 {

  friend struct MultipleSubst;

  private:
  /* Sequence tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (Sequence, sequence, sequenceCount);

205
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
206

207
    unsigned int property;
208 209 210
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

211
    hb_codepoint_t glyph_id = IN_CURGLYPH ();
212

B
Behdad Esfahbod 已提交
213
    unsigned int index = (this+coverage) (glyph_id);
214 215

    const Sequence &seq = (*this)[index];
B
Behdad Esfahbod 已提交
216
    return seq.substitute_sequence (SUBTABLE_SUBSTITUTE_ARGS, property);
217
  }
B
Behdad Esfahbod 已提交
218 219 220

  private:
  USHORT	substFormat;		/* Format identifier--format = 1 */
B
Behdad Esfahbod 已提交
221 222
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
B
Behdad Esfahbod 已提交
223
					 * beginning of Substitution table */
224 225 226
  USHORT	sequenceCount;		/* Number of Sequence table offsets in
					 * the Sequence array */
  Offset	sequence[];		/* Array of offsets to Sequence
B
Behdad Esfahbod 已提交
227 228 229 230
					 * tables--from beginning of
					 * Substitution table--ordered by
					 * Coverage Index */
};
231 232 233 234
ASSERT_SIZE (MultipleSubstFormat1, 6);

struct MultipleSubst {

235 236 237 238 239
  friend struct SubstLookupSubTable;

  private:

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
240
    switch (u.substFormat) {
241
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
242 243 244 245 246 247 248 249 250 251 252 253
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  MultipleSubstFormat1	format1;
  } u;
};
DEFINE_NULL (MultipleSubst, 2);

B
Behdad Esfahbod 已提交
254 255

struct AlternateSet {
256 257 258

  /* GlyphIDs, in no particular order */
  DEFINE_ARRAY_TYPE (GlyphID, alternate, glyphCount);
B
Behdad Esfahbod 已提交
259 260 261 262 263 264 265

  private:
  USHORT	glyphCount;		/* Number of GlyphIDs in the Alternate
					 * array */
  GlyphID	alternate[];		/* Array of alternate GlyphIDs--in
					 * arbitrary order */
};
266
ASSERT_SIZE (AlternateSet, 2);
B
Behdad Esfahbod 已提交
267

268
struct AlternateSubstFormat1 {
269 270 271 272 273 274 275 276 277

  friend struct AlternateSubst;

  private:
  /* AlternateSet tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (AlternateSet, alternateSet, alternateSetCount);

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {

278
    unsigned int property;
279 280 281
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

282
    hb_codepoint_t glyph_id = IN_CURGLYPH ();
283

B
Behdad Esfahbod 已提交
284
    unsigned int index = (this+coverage) (glyph_id);
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314

    const AlternateSet &alt_set = (*this)[index];

    if (HB_UNLIKELY (!alt_set.get_len ()))
      return false;

    unsigned int alt_index = 0;

    /* XXX callback to user to choose alternate
    if ( gsub->altfunc )
      alt_index = (gsub->altfunc)( buffer->out_pos, glyph_id,
				   aset.GlyphCount, aset.Alternate,
				   gsub->data );
				   */

    if (HB_UNLIKELY (alt_index >= alt_set.get_len ()))
      return false;

    glyph_id = alt_set[alt_index];

    _hb_buffer_replace_output_glyph (buffer, glyph_id, context_length == NO_CONTEXT);

    if ( _hb_ot_layout_has_new_glyph_classes (layout) )
    {
      /* we inherit the old glyph class to the substituted glyph */
      _hb_ot_layout_set_glyph_property (layout, glyph_id, property);
    }

    return true;
  }
B
Behdad Esfahbod 已提交
315 316 317

  private:
  USHORT	substFormat;		/* Format identifier--format = 1 */
B
Behdad Esfahbod 已提交
318 319
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
B
Behdad Esfahbod 已提交
320
					 * beginning of Substitution table */
321 322
  USHORT	alternateSetCount;	/* Number of AlternateSet tables */
  Offset	alternateSet[];		/* Array of offsets to AlternateSet
B
Behdad Esfahbod 已提交
323 324 325 326
					 * tables--from beginning of
					 * Substitution table--ordered by
					 * Coverage Index */
};
327 328
ASSERT_SIZE (AlternateSubstFormat1, 6);

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
struct AlternateSubst {

  friend struct SubstLookupSubTable;

  private:

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    switch (u.substFormat) {
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  AlternateSubstFormat1	format1;
  } u;
};
DEFINE_NULL (AlternateSubst, 2);

350 351

struct Ligature {
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422

  friend struct LigatureSet;

  private:
  DEFINE_ARRAY_TYPE (GlyphID, component, (compCount ? compCount - 1 : 0));

  inline bool substitute_ligature (SUBTABLE_SUBSTITUTE_ARGS_DEF, bool is_mark) const {

    unsigned int i, j;
    unsigned int property;
    unsigned int count = compCount;

    if (HB_UNLIKELY (buffer->in_pos + count > buffer->in_length ||
		     context_length < count))
      return false; /* Not enough glyphs in input or context */

    for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) {
      while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) {
	if (HB_UNLIKELY (j + count - i == buffer->in_length))
	  return false;
	j++;
      }

      if (!(property == HB_OT_LAYOUT_GLYPH_CLASS_MARK ||
	    property &  LookupFlag::MarkAttachmentType))
	is_mark = FALSE;

      if (HB_LIKELY (IN_GLYPH(j) != (*this)[i - 1]))
        return false;
    }
    if ( _hb_ot_layout_has_new_glyph_classes (layout) )
      /* this is just a guess ... */
      hb_ot_layout_set_glyph_class (layout, ligGlyph,
				    is_mark ? HB_OT_LAYOUT_GLYPH_CLASS_MARK
					    : HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE);

    if (j == buffer->in_pos + i) /* No input glyphs skipped */
      /* We don't use a new ligature ID if there are no skipped
	 glyphs and the ligature already has an ID. */
      _hb_buffer_add_output_glyph_ids (buffer, i,
				       1, &ligGlyph,
				       0xFFFF,
				       IN_LIGID (buffer->in_pos) ?
				       0xFFFF : _hb_buffer_allocate_ligid (buffer));
    else
    {
      unsigned int lig_id = _hb_buffer_allocate_ligid (buffer);
      _hb_buffer_add_output_glyph (buffer, ligGlyph, 0xFFFF, lig_id);

      /* Now we must do a second loop to copy the skipped glyphs to
	 `out' and assign component values to it.  We start with the
	 glyph after the first component.  Glyphs between component
	 i and i+1 belong to component i.  Together with the lig_id
	 value it is later possible to check whether a specific
	 component value really belongs to a given ligature. */

      for ( i = 0; i < count - 1; i++ )
      {
	while (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM(), lookup_flag, &property))
	  _hb_buffer_add_output_glyph (buffer, IN_CURGLYPH(), i, lig_id);

	(buffer->in_pos)++;
      }

      /* XXX We  should possibly reassign lig_id and component for any
       * components of a previous ligature that s now being removed as part of
       * this ligature. */
    }

    return true;
  }
423 424 425 426 427 428 429 430

  private:
  GlyphID	ligGlyph;		/* GlyphID of ligature to substitute */
  USHORT	compCount;		/* Number of components in the ligature */
  GlyphID	component[];		/* Array of component GlyphIDs--start
					 * with the second  component--ordered
					 * in writing direction */
};
431
ASSERT_SIZE (Ligature, 4);
B
Behdad Esfahbod 已提交
432 433

struct LigatureSet {
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

  friend struct LigatureSubstFormat1;

  private:
  DEFINE_OFFSET_ARRAY_TYPE (Ligature, ligature, ligatureCount);

  inline bool substitute_ligature (SUBTABLE_SUBSTITUTE_ARGS_DEF, bool is_mark) const {

    unsigned int num_ligs = get_len ();
    for (unsigned int i = 0; i < num_ligs; i++) {
      const Ligature &lig = (*this)[i];
      if (lig.substitute_ligature (SUBTABLE_SUBSTITUTE_ARGS, is_mark))
        return true;
    }

    return false;
  }
B
Behdad Esfahbod 已提交
451 452 453 454 455 456 457 458

  private:
  USHORT	ligatureCount;		/* Number of Ligature tables */
  Offset	ligature[];		/* Array of offsets to Ligature
					 * tables--from beginning of
					 * LigatureSet table--ordered by
					 * preference */
};
459
ASSERT_SIZE (LigatureSet, 2);
B
Behdad Esfahbod 已提交
460

461
struct LigatureSubstFormat1 {
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476

  friend struct LigatureSubst;

  private:
  /* LigatureSet tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (LigatureSet, ligatureSet, ligSetCount);

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {

    unsigned int property;
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

    hb_codepoint_t glyph_id = IN_CURGLYPH ();

B
Behdad Esfahbod 已提交
477
    unsigned int index = (this+coverage) (glyph_id);
478 479 480 481

    bool first_is_mark = (property == HB_OT_LAYOUT_GLYPH_CLASS_MARK ||
			  property &  LookupFlag::MarkAttachmentType);

482 483
    const LigatureSet &lig_set = (*this)[index];
    return lig_set.substitute_ligature (SUBTABLE_SUBSTITUTE_ARGS, first_is_mark);
484
  }
B
Behdad Esfahbod 已提交
485 486

  private:
487
  USHORT	substFormat;		/* Format identifier--format = 1 */
B
Behdad Esfahbod 已提交
488 489
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
490 491 492 493 494 495
					 * beginning of Substitution table */
  USHORT	ligSetCount;		/* Number of LigatureSet tables */
  Offset	ligatureSet[];		/* Array of offsets to LigatureSet
					 * tables--from beginning of
					 * Substitution table--ordered by
					 * Coverage Index */
B
Behdad Esfahbod 已提交
496
};
497 498
ASSERT_SIZE (LigatureSubstFormat1, 6);

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
struct LigatureSubst {

  friend struct SubstLookupSubTable;

  private:

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    switch (u.substFormat) {
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  LigatureSubstFormat1	format1;
  } u;
};
DEFINE_NULL (LigatureSubst, 2);

B
Behdad Esfahbod 已提交
520 521

struct SubstLookupRecord {
522 523 524

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const;

B
Behdad Esfahbod 已提交
525 526 527 528 529
  USHORT	sequenceIndex;		/* Index into current glyph
					 * sequence--first glyph = 0 */
  USHORT	lookupListIndex;	/* Lookup to apply to that
					 * position--zero--based */
};
530
ASSERT_SIZE (SubstLookupRecord, 4);
B
Behdad Esfahbod 已提交
531

532 533 534
struct SubRule {

  friend struct SubRuleSet;
B
Behdad Esfahbod 已提交
535 536

  private:
537
  DEFINE_ARRAY_TYPE (GlyphID, input, (glyphCount ? glyphCount - 1 : 0));
B
Behdad Esfahbod 已提交
538 539 540 541 542 543 544 545 546 547 548

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {

    unsigned int i, j;
    unsigned int property;
    unsigned int count = glyphCount;

    if (HB_UNLIKELY (buffer->in_pos + count > buffer->in_length ||
		     context_length < count))
      return false; /* Not enough glyphs in input or context */

549 550 551
    /* XXX context_length should also be checked when skipping glyphs, right?
     * What does context_length really mean, anyway? */

B
Behdad Esfahbod 已提交
552 553 554 555 556 557 558 559 560 561 562
    for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) {
      while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) {
	if (HB_UNLIKELY (j + count - i == buffer->in_length))
	  return false;
	j++;
      }

      if (HB_LIKELY (IN_GLYPH(j) != (*this)[i - 1]))
        return false;
    }

563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
    /* XXX right? or j - buffer_inpos? */
    context_length = count;

    unsigned int subst_count = substCount;
    const SubstLookupRecord *subst = (const SubstLookupRecord *) ((const char *) input + sizeof (input[0]) * glyphCount);
    for (i = 0; i < count;)
    {
      if ( subst_count && i == subst->sequenceIndex )
      {
	unsigned int old_pos = buffer->in_pos;

	/* Do a substitution */
	bool done = subst->substitute (SUBTABLE_SUBSTITUTE_ARGS);

	subst++;
	subst_count--;
	i += buffer->in_pos - old_pos;

	if (!done)
	  goto no_subst;
      }
      else
      {
      no_subst:
	/* No substitution for this index */
	_hb_buffer_copy_output_glyph (buffer);
	i++;
      }
    }
B
Behdad Esfahbod 已提交
592 593
  }

594 595 596 597 598 599 600 601 602
  private:
  USHORT	glyphCount;		/* Total number of glyphs in input
					 * glyph sequence--includes the  first
					 * glyph */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  GlyphID	input[];		/* Array of input GlyphIDs--start with
					 * second glyph */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order */
B
Behdad Esfahbod 已提交
603
};
604
ASSERT_SIZE (SubRule, 4);
B
Behdad Esfahbod 已提交
605 606

struct SubRuleSet {
607

B
Behdad Esfahbod 已提交
608
  friend struct ContextSubstFormat1;
609 610 611

  private:
  DEFINE_OFFSET_ARRAY_TYPE (SubRule, subRule, subRuleCount);
B
Behdad Esfahbod 已提交
612

B
Behdad Esfahbod 已提交
613 614 615 616 617 618 619 620 621 622 623 624
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {

    unsigned int num_rules = get_len ();
    for (unsigned int i = 0; i < num_rules; i++) {
      const SubRule &rule = (*this)[i];
      if (rule.substitute (SUBTABLE_SUBSTITUTE_ARGS))
        return true;
    }

    return false;
  }

B
Behdad Esfahbod 已提交
625 626 627 628 629 630
  private:
  USHORT	subRuleCount;		/* Number of SubRule tables */
  Offset	subRule[];		/* Array of offsets to SubRule
					 * tables--from beginning of SubRuleSet
					 * table--ordered by preference */
};
631
ASSERT_SIZE (SubRuleSet, 2);
B
Behdad Esfahbod 已提交
632

633 634 635
struct ContextSubstFormat1 {

  friend struct ContextSubst;
B
Behdad Esfahbod 已提交
636 637

  private:
638 639 640 641 642 643 644 645 646 647 648
  /* SubRuleSet tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (SubRuleSet, subRuleSet, subRuleSetCount);

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {

    unsigned int property;
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

    hb_codepoint_t glyph_id = IN_CURGLYPH ();

B
Behdad Esfahbod 已提交
649
    unsigned int index = (this+coverage) (glyph_id);
650

B
Behdad Esfahbod 已提交
651 652
    const SubRuleSet &rule_set = (*this)[index];
    return rule_set.substitute (SUBTABLE_SUBSTITUTE_ARGS);
653 654 655 656
  }

  private:
  USHORT	substFormat;		/* Format identifier--format = 1 */
B
Behdad Esfahbod 已提交
657 658
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
659 660 661 662 663 664 665
					 * beginning of Substitution table */
  USHORT	subRuleSetCount;	/* Number of SubRuleSet tables--must
					 * equal GlyphCount in Coverage  table */
  Offset	subRuleSet[];		/* Array of offsets to SubRuleSet
					 * tables--from beginning of
					 * Substitution table--ordered by
					 * Coverage Index */
B
Behdad Esfahbod 已提交
666
};
667
ASSERT_SIZE (ContextSubstFormat1, 6);
B
Behdad Esfahbod 已提交
668

669

B
Behdad Esfahbod 已提交
670
struct SubClassRule {
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730

  friend struct SubClassSet;

  private:
  DEFINE_ARRAY_TYPE (USHORT, klass, (glyphCount ? glyphCount - 1 : 0));

  inline bool substitute_class (SUBTABLE_SUBSTITUTE_ARGS_DEF, const ClassDef &class_def) const {

    unsigned int i, j;
    unsigned int property;
    unsigned int count = glyphCount;

    if (HB_UNLIKELY (buffer->in_pos + count > buffer->in_length ||
		     context_length < count))
      return false; /* Not enough glyphs in input or context */

    /* XXX context_length should also be checked when skipping glyphs, right?
     * What does context_length really mean, anyway? */

    for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) {
      while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) {
	if (HB_UNLIKELY (j + count - i == buffer->in_length))
	  return false;
	j++;
      }

      if (HB_LIKELY (class_def.get_class (IN_GLYPH(j)) != (*this)[i - 1]))
        return false;
    }

    /* XXX right? or j - buffer_inpos? */
    context_length = count;

    unsigned int subst_count = substCount;
    const SubstLookupRecord *subst = (const SubstLookupRecord *) ((const char *) klass + sizeof (klass[0]) * glyphCount);
    for (i = 0; i < count;)
    {
      if ( subst_count && i == subst->sequenceIndex )
      {
	unsigned int old_pos = buffer->in_pos;

	/* Do a substitution */
	bool done = subst->substitute (SUBTABLE_SUBSTITUTE_ARGS);

	subst++;
	subst_count--;
	i += buffer->in_pos - old_pos;

	if (!done)
	  goto no_subst;
      }
      else
      {
      no_subst:
	/* No substitution for this index */
	_hb_buffer_copy_output_glyph (buffer);
	i++;
      }
    }
  }
B
Behdad Esfahbod 已提交
731 732 733 734 735 736 737 738 739 740 741 742

  private:
  USHORT	glyphCount;		/* Total number of classes
					 * specified for the context in the
					 * rule--includes the first class */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  USHORT	klass[];		/* Array of classes--beginning with the
					 * second class--to be matched  to the
					 * input glyph class sequence */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order */
};
743
ASSERT_SIZE (SubClassRule, 4);
B
Behdad Esfahbod 已提交
744 745

struct SubClassSet {
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766

  friend struct ContextSubstFormat2;

  private:
  DEFINE_OFFSET_ARRAY_TYPE (SubClassRule, subClassRule, subClassRuleCnt);

  inline bool substitute_class (SUBTABLE_SUBSTITUTE_ARGS_DEF, const ClassDef &class_def) const {

    /* LONGTERMTODO: Old code fetches glyph classes at most once and caches
     * them across subrule lookups.  Not sure it's worth it.
     */

    unsigned int num_rules = get_len ();
    for (unsigned int i = 0; i < num_rules; i++) {
      const SubClassRule &rule = (*this)[i];
      if (rule.substitute_class (SUBTABLE_SUBSTITUTE_ARGS, class_def))
        return true;
    }

    return false;
  }
B
Behdad Esfahbod 已提交
767 768 769 770 771 772 773

  private:
  USHORT	subClassRuleCnt;	/* Number of SubClassRule tables */
  Offset	subClassRule[];		/* Array of offsets to SubClassRule
					 * tables--from beginning of
					 * SubClassSet--ordered by preference */
};
774
ASSERT_SIZE (SubClassSet, 2);
B
Behdad Esfahbod 已提交
775

B
Behdad Esfahbod 已提交
776
struct ContextSubstFormat2 {
777 778 779 780

  friend struct ContextSubst;

  private:
781 782
  /* SubClassSet tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (SubClassSet, subClassSet, subClassSetCnt);
783 784

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
785 786 787 788 789 790 791

    unsigned int property;
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

    hb_codepoint_t glyph_id = IN_CURGLYPH ();

B
Behdad Esfahbod 已提交
792
    unsigned int index = (this+coverage) (glyph_id);
793 794

    const SubClassSet &class_set = (*this)[index];
B
Behdad Esfahbod 已提交
795
    return class_set.substitute_class (SUBTABLE_SUBSTITUTE_ARGS, this+classDef);
796
  }
B
Behdad Esfahbod 已提交
797 798 799

  private:
  USHORT	substFormat;		/* Format identifier--format = 2 */
B
Behdad Esfahbod 已提交
800 801
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
B
Behdad Esfahbod 已提交
802
					 * beginning of Substitution table */
B
Behdad Esfahbod 已提交
803 804
  OffsetTo<ClassDef>
		classDef;		/* Offset to glyph ClassDef table--from
B
Behdad Esfahbod 已提交
805 806 807 808 809 810 811 812 813 814
					 * beginning of Substitution  table */
  USHORT	subClassSetCnt;		/* Number of SubClassSet tables */
  Offset	subClassSet[];		/* Array of offsets to SubClassSet
					 * tables--from beginning of
					 * Substitution table--ordered by
					 * class--may be NULL */
};
ASSERT_SIZE (ContextSubstFormat2, 8);

struct ContextSubstFormat3 {
815 816 817 818 819

  friend struct ContextSubst;

  private:

820 821 822
  /* Coverage tables, in glyph sequence order */
  DEFINE_OFFSET_ARRAY_TYPE (Coverage, coverage, glyphCount);

823
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 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 871 872 873 874 875 876 877 878 879 880 881

    unsigned int property;
    if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property))
      return false;

    if ((*this)[0].get_coverage (IN_CURGLYPH () == NOT_COVERED))
      return false;

    unsigned int i, j;
    unsigned int count = glyphCount;

    if (HB_UNLIKELY (buffer->in_pos + count > buffer->in_length ||
		     context_length < count))
      return false; /* Not enough glyphs in input or context */

    /* XXX context_length should also be checked when skipping glyphs, right?
     * What does context_length really mean, anyway? */

    for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++) {
      while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) {
	if (HB_UNLIKELY (j + count - i == buffer->in_length))
	  return false;
	j++;
      }

      if (HB_LIKELY ((*this)[i].get_coverage (IN_GLYPH(j) == NOT_COVERED)))
        return false;
    }

    /* XXX right? or j - buffer_inpos? */
    context_length = count;

    unsigned int subst_count = substCount;
    const SubstLookupRecord *subst = (const SubstLookupRecord *) ((const char *) coverage + sizeof (coverage[0]) * glyphCount);
    for (i = 0; i < count;)
    {
      if ( subst_count && i == subst->sequenceIndex )
      {
	unsigned int old_pos = buffer->in_pos;

	/* Do a substitution */
	bool done = subst->substitute (SUBTABLE_SUBSTITUTE_ARGS);

	subst++;
	subst_count--;
	i += buffer->in_pos - old_pos;

	if (!done)
	  goto no_subst;
      }
      else
      {
      no_subst:
	/* No substitution for this index */
	_hb_buffer_copy_output_glyph (buffer);
	i++;
      }
    }
882
  }
B
Behdad Esfahbod 已提交
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897

  private:
  USHORT	substFormat;		/* Format identifier--format = 3 */
  USHORT	glyphCount;		/* Number of glyphs in the input glyph
					 * sequence */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  Offset	coverage[];		/* Array of offsets to Coverage
					 * table--from beginning of
					 * Substitution table--in glyph
					 * sequence order */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order */
};
ASSERT_SIZE (ContextSubstFormat3, 6);

898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
struct ContextSubst {

  friend struct SubstLookupSubTable;

  private:

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    switch (u.substFormat) {
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case 2: return u.format2.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case 3: return u.format3.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  ContextSubstFormat1	format1;
  ContextSubstFormat2	format2;
  ContextSubstFormat3	format3;
  } u;
};
DEFINE_NULL (ContextSubst, 2);


B
Behdad Esfahbod 已提交
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
struct ChainSubRule {
  /* TODO */

  private:
  USHORT	backtrackGlyphCount;	/* Total number of glyphs in the
					 * backtrack sequence (number of
					 * glyphs to be matched before the
					 * first glyph) */
  GlyphID	backtrack[];		/* Array of backtracking GlyphID's
					 * (to be matched before the input
					 * sequence) */
  USHORT	inputGlyphCount;	/* Total number of glyphs in the input
					 * sequence (includes the first  glyph) */
  GlyphID	input[];		/* Array of input GlyphIDs (start with
					 * second glyph) */
  USHORT	lookaheadGlyphCount;	/* Total number of glyphs in the look
					 * ahead sequence (number of  glyphs to
					 * be matched after the input sequence) */
  GlyphID	lookAhead[];		/* Array of lookahead GlyphID's (to be
					 * matched after  the input sequence) */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order) */
};
948
ASSERT_SIZE (ChainSubRule, 8);
B
Behdad Esfahbod 已提交
949

B
Behdad Esfahbod 已提交
950
struct ChainSubRuleSet {
B
Behdad Esfahbod 已提交
951 952 953
  /* TODO */

  private:
B
Behdad Esfahbod 已提交
954 955
  USHORT	chainSubRuleCount;	/* Number of ChainSubRule tables */
  Offset	chainSubRule[];		/* Array of offsets to ChainSubRule
B
Behdad Esfahbod 已提交
956
					 * tables--from beginning of
B
Behdad Esfahbod 已提交
957 958
					 * ChainSubRuleSet table--ordered
					 * by preference */
B
Behdad Esfahbod 已提交
959
};
960
ASSERT_SIZE (ChainSubRuleSet, 2);
B
Behdad Esfahbod 已提交
961

B
Behdad Esfahbod 已提交
962
struct ChainContextSubstFormat1 {
B
Behdad Esfahbod 已提交
963
  /* TODO */
B
Behdad Esfahbod 已提交
964 965 966
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    return false;
  }
B
Behdad Esfahbod 已提交
967 968

  private:
B
Behdad Esfahbod 已提交
969 970 971 972 973 974 975
  USHORT	substFormat;		/* Format identifier--format = 1 */
  Offset	coverage;		/* Offset to Coverage table--from
					 * beginning of Substitution table */
  USHORT	chainSubRuleSetCount;	/* Number of ChainSubRuleSet
					 * tables--must equal GlyphCount in
					 * Coverage table */
  Offset	chainSubRuleSet[];	/* Array of offsets to ChainSubRuleSet
B
Behdad Esfahbod 已提交
976
					 * tables--from beginning of
B
Behdad Esfahbod 已提交
977 978
					 * Substitution table--ordered by
					 * Coverage Index */
B
Behdad Esfahbod 已提交
979
};
B
Behdad Esfahbod 已提交
980
ASSERT_SIZE (ChainContextSubstFormat1, 6);
B
Behdad Esfahbod 已提交
981 982 983 984 985 986 987 988 989

struct ChainSubClassRule {
  /* TODO */

  private:
  USHORT	backtrackGlyphCount;	/* Total number of glyphs in the
					 * backtrack sequence (number of
					 * glyphs to be matched before the
					 * first glyph) */
B
Behdad Esfahbod 已提交
990
  USHORT	backtrack[];		/* Array of backtracking classes (to be
B
Behdad Esfahbod 已提交
991 992 993 994 995 996 997 998 999 1000
					 * matched before the input  sequence) */
  USHORT	inputGlyphCount;	/* Total number of classes in the input
					 * sequence (includes the  first class) */
  USHORT	input[];		/* Array of input classes(start with
					 * second class; to  be matched with
					 * the input glyph sequence) */
  USHORT	lookaheadGlyphCount;	/* Total number of classes in the
					 * look ahead sequence (number of
					 * classes to be matched after the
					 * input sequence) */
B
Behdad Esfahbod 已提交
1001
  USHORT	lookAhead[];		/* Array of lookahead classes (to be
B
Behdad Esfahbod 已提交
1002 1003 1004 1005 1006
					 * matched after the  input sequence) */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order) */
};
1007
ASSERT_SIZE (ChainSubClassRule, 8);
B
Behdad Esfahbod 已提交
1008

B
Behdad Esfahbod 已提交
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
struct ChainSubClassSet {
  /* TODO */

  private:
  USHORT	chainSubClassRuleCnt;	/* Number of ChainSubClassRule tables */
  Offset	chainSubClassRule[];	/* Array of offsets
					 * to ChainSubClassRule
					 * tables--from beginning of
					 * ChainSubClassSet--ordered by
					 * preference */
};
1020
ASSERT_SIZE (ChainSubClassSet, 2);
B
Behdad Esfahbod 已提交
1021 1022 1023

struct ChainContextSubstFormat2 {
  /* TODO */
B
Behdad Esfahbod 已提交
1024 1025 1026
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    return false;
  }
B
Behdad Esfahbod 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051

  private:
  USHORT	substFormat;		/* Format identifier--format = 2 */
  Offset	coverage;		/* Offset to Coverage table--from
					 * beginning of Substitution table */
  Offset	backtrackClassDef;	/* Offset to glyph ClassDef table
					 * containing backtrack sequence
					 * data--from beginning of Substitution
					 * table */
  Offset	inputClassDef;		/* Offset to glyph ClassDef
					 * table containing input sequence
					 * data--from beginning of Substitution
					 * table */
  Offset	lookaheadClassDef;	/* Offset to glyph ClassDef table
					 * containing lookahead sequence
					 * data--from beginning of Substitution
					 * table */
  USHORT	chainSubClassSetCnt;	/* Number of ChainSubClassSet tables */
  Offset	chainSubClassSet[];	/* Array of offsets to ChainSubClassSet
					 * tables--from beginning of
					 * Substitution table--ordered by input
					 * class--may be NULL */
};
ASSERT_SIZE (ChainContextSubstFormat2, 12);

B
Behdad Esfahbod 已提交
1052 1053
struct ChainContextSubstFormat3 {
  /* TODO */
B
Behdad Esfahbod 已提交
1054 1055 1056
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    return false;
  }
B
Behdad Esfahbod 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

  private:
  USHORT	substFormat;		/* Format identifier--format = 3 */
  USHORT	backtrackGlyphCount;	/* Number of glyphs in the backtracking
					 * sequence */
  Offset	backtrackCoverage[];	/* Array of offsets to coverage tables
					 * in backtracking sequence, in  glyph
					 * sequence order */
  USHORT	inputGlyphCount;	/* Number of glyphs in input sequence */
  Offset	inputCoverage[];	/* Array of offsets to coverage
					 * tables in input sequence, in glyph
					 * sequence order */
  USHORT	lookaheadGlyphCount;	/* Number of glyphs in lookahead
					 * sequence */
  Offset	lookaheadCoverage[];	/* Array of offsets to coverage tables
					 * in lookahead sequence, in  glyph
					 * sequence order */
  USHORT	substCount;		/* Number of SubstLookupRecords */
  SubstLookupRecord substLookupRecord[];/* Array of SubstLookupRecords--in
					 * design order */
};
ASSERT_SIZE (ChainContextSubstFormat3, 10);

B
Behdad Esfahbod 已提交
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
struct ChainContextSubst {

  friend struct SubstLookupSubTable;

  private:

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    switch (u.substFormat) {
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case 2: return u.format2.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case 3: return u.format3.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  ChainContextSubstFormat1	format1;
  ChainContextSubstFormat2	format2;
  ChainContextSubstFormat3	format3;
  } u;
};
DEFINE_NULL (ChainContextSubst, 2);

1105

B
Behdad Esfahbod 已提交
1106
struct ExtensionSubstFormat1 {
1107 1108 1109 1110 1111 1112

  friend struct ExtensionSubst;

  private:
  inline unsigned int get_type (void) const { return extensionLookupType; }
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const;
B
Behdad Esfahbod 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123

  private:
  USHORT	substFormat;		/* Format identifier. Set to 1. */
  USHORT	extensionLookupType;	/* Lookup type of subtable referenced
					 * by ExtensionOffset (i.e. the
					 * extension subtable). */
  ULONG		extensionOffset;	/* Offset to the extension subtable,
					 * of lookup type  subtable. */
};
ASSERT_SIZE (ExtensionSubstFormat1, 8);

1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
struct ExtensionSubst {

  friend struct SubstLookup;
  friend struct SubstLookupSubTable;

  private:

  inline unsigned int get_type (void) const {
    switch (u.substFormat) {
    case 1: return u.format1.get_type ();
    default:return 0;
    }
  }

  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
    switch (u.substFormat) {
    case 1: return u.format1.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    default:return false;
    }
  }

  private:
  union {
  USHORT	substFormat;	/* Format identifier */
  ExtensionSubstFormat1	format1;
  } u;
};
DEFINE_NULL (ExtensionSubst, 2);



B
Behdad Esfahbod 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
struct ReverseChainSingleSubstFormat1 {
  /* TODO */

  private:
  USHORT	substFormat;		/* Format identifier--format = 1 */
  Offset	coverage;		/* Offset to Coverage table -- from
					 * beginning of Substitution table */
  USHORT	backtrackGlyphCount;	/* Number of glyphs in the backtracking
					 * sequence */
  Offset	backtrackCoverage[];	/* Array of offsets to coverage tables
					 * in backtracking sequence, in  glyph
					 * sequence order */
  USHORT	lookaheadGlyphCount;	/* Number of glyphs in lookahead
					 * sequence */
  Offset	lookaheadCoverage[];	/* Array of offsets to coverage tables
					 * in lookahead sequence, in  glyph
					 * sequence order */
  USHORT	glyphCount;		/* Number of GlyphIDs in the Substitute
					 * array */
  GlyphID	substitute[];		/* Array of substitute
					 * GlyphIDs--ordered by Coverage  Index */
};
ASSERT_SIZE (ReverseChainSingleSubstFormat1, 10);

B
Behdad Esfahbod 已提交
1179 1180 1181 1182
/*
 * SubstLookup
 */

1183 1184 1185
enum {
  GSUB_Single				= 1,
  GSUB_Multiple				= 2,
1186
  GSUB_Alternate			= 3,
1187 1188 1189
  GSUB_Ligature				= 4,
  GSUB_Context				= 5,
  GSUB_ChainingContext			= 6,
1190 1191
  GSUB_Extension			= 7,
  GSUB_ReverseChainingContextSingle	= 8,
1192 1193
};

B
Behdad Esfahbod 已提交
1194 1195 1196 1197
struct SubstLookupSubTable {

  friend struct SubstLookup;

1198 1199
  inline bool substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF,
			  unsigned int    lookup_type) const {
1200
    switch (lookup_type) {
1201 1202
    case GSUB_Single:				return u.single.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case GSUB_Multiple:				return u.multiple.substitute (SUBTABLE_SUBSTITUTE_ARGS);
1203
    case GSUB_Alternate:			return u.alternate.substitute (SUBTABLE_SUBSTITUTE_ARGS);
1204 1205
    case GSUB_Ligature:				return u.ligature.substitute (SUBTABLE_SUBSTITUTE_ARGS);
    case GSUB_Context:				return u.context.substitute (SUBTABLE_SUBSTITUTE_ARGS);
1206
    /*
1207
    case GSUB_ChainingContext:			return u.chainingContext.substitute (SUBTABLE_SUBSTITUTE_ARGS);
1208 1209 1210
    */
    case GSUB_Extension:			return u.extension.substitute (SUBTABLE_SUBSTITUTE_ARGS);
			/*
1211
    case GSUB_ReverseChainingContextSingle:	return u.reverseChainingContextSingle.substitute (SUBTABLE_SUBSTITUTE_ARGS);
1212 1213 1214
    */
    default:return false;
    }
B
Behdad Esfahbod 已提交
1215 1216 1217 1218
  }

  private:
  union {
1219 1220 1221 1222 1223 1224
  USHORT				substFormat;
  SingleSubst				single;
  MultipleSubst				multiple;
  AlternateSubst			alternate;
  LigatureSubst				ligature;
  ContextSubst				context;
1225
  /*
1226 1227 1228 1229 1230 1231
  ChainingContextSubst			chainingContext;
  */
  ExtensionSubst			extension;
  /*
  ReverseChainingContextSingleSubst	reverseChainingContextSingle;
  */
B
Behdad Esfahbod 已提交
1232 1233 1234
  } u;
};

1235

B
Behdad Esfahbod 已提交
1236 1237 1238 1239 1240 1241 1242
struct SubstLookup : Lookup {

  inline const SubstLookupSubTable& get_subtable (unsigned int i) const {
    return *(SubstLookupSubTable*)&(((Lookup *)this)->get_subtable (i));
  }

  /* Like get_type(), but looks through extension lookups.
1243
   * Never returns Extension */
B
Behdad Esfahbod 已提交
1244 1245 1246
  inline unsigned int get_effective_type (void) const {
    unsigned int type = get_type ();

1247
    if (HB_UNLIKELY (type == GSUB_Extension)) {
B
Behdad Esfahbod 已提交
1248 1249 1250
      /* Return lookup type of first extension subtable.
       * The spec says all of them should have the same type.
       * XXX check for that somehow */
1251
      type = get_subtable(0).u.extension.get_type ();
B
Behdad Esfahbod 已提交
1252 1253 1254 1255 1256 1257 1258
    }

    return type;
  }

  inline bool is_reverse (void) const {
    switch (get_effective_type ()) {
1259 1260
    case GSUB_ReverseChainingContextSingle:	return true;
    default:					return false;
B
Behdad Esfahbod 已提交
1261 1262 1263
    }
  }

1264 1265 1266 1267
  bool substitute_once (hb_ot_layout_t *layout,
			hb_buffer_t    *buffer,
			unsigned int    context_length,
			unsigned int    nesting_level_left) const {
1268

B
Behdad Esfahbod 已提交
1269
    unsigned int lookup_type = get_type ();
B
Behdad Esfahbod 已提交
1270
    unsigned int lookup_flag = get_flag ();
B
Behdad Esfahbod 已提交
1271 1272 1273 1274

    if (HB_UNLIKELY (nesting_level_left == 0))
      return false;
    nesting_level_left--;
B
Behdad Esfahbod 已提交
1275

B
Behdad Esfahbod 已提交
1276 1277 1278
    if (HB_UNLIKELY (context_length < 1))
      return false;

B
Behdad Esfahbod 已提交
1279
    for (unsigned int i = 0; i < get_subtable_count (); i++)
1280 1281
      if (get_subtable (i).substitute (SUBTABLE_SUBSTITUTE_ARGS,
				       lookup_type))
B
Behdad Esfahbod 已提交
1282
	return true;
B
Behdad Esfahbod 已提交
1283

B
Behdad Esfahbod 已提交
1284 1285
    return false;
  }
1286

1287 1288 1289
  bool substitute_string (hb_ot_layout_t *layout,
			  hb_buffer_t    *buffer,
			  hb_ot_layout_feature_mask_t mask) const {
1290 1291 1292

    bool ret = false;

1293
    if (HB_LIKELY (!is_reverse ())) {
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321

	/* in/out forward substitution */
	_hb_buffer_clear_output (buffer);
	buffer->in_pos = 0;
	while (buffer->in_pos < buffer->in_length) {

	  if ((~IN_PROPERTIES (buffer->in_pos) & mask) &&
	      substitute_once (layout, buffer, NO_CONTEXT, MAX_NESTING_LEVEL))
	    ret = true;
	  else
	    _hb_buffer_copy_output_glyph (buffer);

	}
	if (ret)
	  _hb_buffer_swap (buffer);

    } else {

	/* in-place backward substitution */
	buffer->in_pos = buffer->in_length - 1;
	do {

	  if ((~IN_PROPERTIES (buffer->in_pos) & mask) &&
	      substitute_once (layout, buffer, NO_CONTEXT, MAX_NESTING_LEVEL))
	    ret = true;
	  else
	    buffer->in_pos--;

1322
	} while ((int) buffer->in_pos >= 0);
1323 1324 1325 1326
    }

    return ret;
  }
B
Behdad Esfahbod 已提交
1327 1328
};

1329

B
Minor  
Behdad Esfahbod 已提交
1330 1331 1332 1333 1334 1335 1336 1337 1338
/*
 * GSUB
 */

struct GSUB : GSUBGPOS {
  static const hb_tag_t Tag		= HB_TAG ('G','S','U','B');

  STATIC_DEFINE_GET_FOR_DATA (GSUB);
  /* XXX check version here? */
B
Behdad Esfahbod 已提交
1339 1340 1341 1342 1343

  inline const SubstLookup& get_lookup (unsigned int i) const {
    return *(SubstLookup*)&(((GSUBGPOS *)this)->get_lookup (i));
  }

1344 1345 1346 1347 1348 1349
  inline bool substitute_lookup (hb_ot_layout_t *layout,
				 hb_buffer_t    *buffer,
			         unsigned int    lookup_index,
				 hb_ot_layout_feature_mask_t  mask) const {
    return get_lookup (lookup_index).substitute_string (layout, buffer, mask);
  }
B
Behdad Esfahbod 已提交
1350

B
Minor  
Behdad Esfahbod 已提交
1351 1352 1353
};


1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373


/* Out-of-class implementation for methods chaining */

inline bool ExtensionSubstFormat1::substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
  /* XXX either check in sanitize or here that the lookuptype is not 7 again,
   * or we can loop indefinitely. */
  return (*(SubstLookupSubTable *)(((char *) this) + extensionOffset)).substitute (SUBTABLE_SUBSTITUTE_ARGS,
										   get_type ());
}

inline bool SubstLookupRecord::substitute (SUBTABLE_SUBSTITUTE_ARGS_DEF) const {
  const GSUB &gsub = *(layout->gsub);
  const SubstLookup &l = gsub.get_lookup (lookupListIndex);

  return l.substitute_once (layout, buffer, context_length, nesting_level_left);
}



B
Behdad Esfahbod 已提交
1374
#endif /* HB_OT_LAYOUT_GSUB_PRIVATE_H */