hb-ot-layout-common-private.hh 14.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright (C) 2007,2008,2009  Red Hat, Inc.
 *
 *  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
 */

27 28
#ifndef HB_OT_LAYOUT_COMMON_PRIVATE_HH
#define HB_OT_LAYOUT_COMMON_PRIVATE_HH
29

30 31
#include "hb-ot-layout-private.h"

32
#include "hb-open-types-private.hh"
33 34 35 36 37 38 39 40


/*
 *
 * OpenType Layout Common Table Formats
 *
 */

41

42 43 44 45 46
/*
 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
 */

template <typename Type>
B
Behdad Esfahbod 已提交
47 48
struct Record
{
B
Behdad Esfahbod 已提交
49
  inline bool sanitize (SANITIZE_ARG_DEF, const char *base) {
B
Behdad Esfahbod 已提交
50 51 52 53
    /* Note: Only accept ASCII-visible tags (mind DEL)
     * This is one of the few times (only time?) we check
     * for data integrity, as opposed o just boundary checks
     */
B
Behdad Esfahbod 已提交
54 55 56
    return (tag & 0x80808080) == 0 && offset.sanitize (SANITIZE_ARG, base);
  }

57 58 59 60 61 62 63
  Tag		tag;		/* 4-byte Tag identifier */
  OffsetTo<Type>
		offset;		/* Offset from beginning of object holding
				 * the Record */
};

template <typename Type>
B
Behdad Esfahbod 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76
struct RecordArrayOf : ArrayOf<Record<Type> >
{
  inline bool sanitize (SANITIZE_ARG_DEF, const char *base) {
    if (!(SANITIZE (this->len) && SANITIZE_GET_SIZE())) return false;
    unsigned int count = this->len;
    for (unsigned int i = 0; i < count; i++)
      if (!SANITIZE_THIS (this->array[i]))
        return false;
  }
};

template <typename Type>
struct RecordListOf : RecordArrayOf<Type>
B
Behdad Esfahbod 已提交
77 78 79
{
  inline const Type& operator [] (unsigned int i) const
  {
80 81 82
    if (HB_UNLIKELY (i >= this->len)) return Null(Type);
    return this+this->array[i].offset;
  }
B
Behdad Esfahbod 已提交
83 84
  inline const Tag& get_tag (unsigned int i) const
  {
85 86 87
    if (HB_UNLIKELY (i >= this->len)) return Null(Tag);
    return this->array[i].tag;
  }
B
Behdad Esfahbod 已提交
88 89 90 91

  inline bool sanitize (SANITIZE_ARG_DEF) {
    return RecordArrayOf<Type>::sanitize (SANITIZE_ARG, (const char *) this);
  }
92 93 94 95 96 97 98 99
};


struct Script;
struct LangSys;
struct Feature;


B
Behdad Esfahbod 已提交
100 101 102 103
struct LangSys
{
  inline const unsigned int get_feature_index (unsigned int i) const { return featureIndex[i]; }
  inline unsigned int get_feature_count (void) const { return featureIndex.len; }
104

B
Behdad Esfahbod 已提交
105
  inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; }
B
Behdad Esfahbod 已提交
106 107
  inline int get_required_feature_index (void) const
  {
108 109 110 111 112
    if (reqFeatureIndex == 0xffff)
      return NO_INDEX;
   return reqFeatureIndex;;
  }

B
Behdad Esfahbod 已提交
113 114 115 116
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF () && SANITIZE (featureIndex);
  }

117 118 119 120 121 122 123 124 125 126 127
  Offset	lookupOrder;	/* = Null (reserved for an offset to a
				 * reordering table) */
  USHORT	reqFeatureIndex;/* Index of a feature required for this
				 * language system--if no required features
				 * = 0xFFFF */
  ArrayOf<USHORT>
		featureIndex;	/* Array of indices into the FeatureList */
};
ASSERT_SIZE_DATA (LangSys, 6, "\0\0\xFF\xFF");


B
Behdad Esfahbod 已提交
128 129 130 131
struct Script
{
  inline const LangSys& get_lang_sys (unsigned int i) const
  {
132 133 134
    if (i == NO_INDEX) return get_default_lang_sys ();
    return this+langSys[i].offset;
  }
B
Behdad Esfahbod 已提交
135 136
  inline unsigned int get_lang_sys_count (void) const { return langSys.len; }
  inline const Tag& get_lang_sys_tag (unsigned int i) const { return langSys[i].tag; }
137 138 139 140

  // LONGTERMTODO bsearch
  DEFINE_TAG_FIND_INTERFACE (LangSys, lang_sys);	/* find_lang_sys_index (), get_lang_sys_by_tag (tag) */

B
Behdad Esfahbod 已提交
141
  inline bool has_default_lang_sys (void) const { return defaultLangSys != 0; }
B
Behdad Esfahbod 已提交
142
  inline const LangSys& get_default_lang_sys (void) const { return this+defaultLangSys; }
143

B
Behdad Esfahbod 已提交
144 145 146 147
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_THIS (defaultLangSys) && SANITIZE_THIS (langSys);
  }

148 149 150 151
  private:
  OffsetTo<LangSys>
		defaultLangSys;	/* Offset to DefaultLangSys table--from
				 * beginning of Script table--may be Null */
B
Behdad Esfahbod 已提交
152
  RecordArrayOf<LangSys>
153 154 155 156 157 158 159 160 161
		langSys;	/* Array of LangSysRecords--listed
				 * alphabetically by LangSysTag */
};
ASSERT_SIZE (Script, 4);

typedef RecordListOf<Script> ScriptList;
ASSERT_SIZE (ScriptList, 2);


B
Behdad Esfahbod 已提交
162 163 164 165
struct Feature
{
  inline const unsigned int get_lookup_index (unsigned int i) const { return lookupIndex[i]; }
  inline unsigned int get_lookup_count (void) const { return lookupIndex.len; }
166

B
Behdad Esfahbod 已提交
167 168 169 170
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF () && SANITIZE (lookupIndex);
  }

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
  /* TODO: implement get_feature_parameters() */
  /* TODO: implement FeatureSize and other special features? */
  Offset	featureParams;	/* Offset to Feature Parameters table (if one
				 * has been defined for the feature), relative
				 * to the beginning of the Feature Table; = Null
				 * if not required */
  ArrayOf<USHORT>
		lookupIndex;	/* Array of LookupList indices */
};
ASSERT_SIZE (Feature, 4);

typedef RecordListOf<Feature> FeatureList;
ASSERT_SIZE (FeatureList, 2);


B
Behdad Esfahbod 已提交
186 187
struct LookupFlag : USHORT
{
B
Behdad Esfahbod 已提交
188 189 190 191 192
  enum {
    RightToLeft		= 0x0001u,
    IgnoreBaseGlyphs	= 0x0002u,
    IgnoreLigatures	= 0x0004u,
    IgnoreMarks		= 0x0008u,
193 194
    UseMarkFilteringSet	= 0x0010u,
    Reserved		= 0x00E0u,
B
Behdad Esfahbod 已提交
195 196
    MarkAttachmentType	= 0xFF00u,
  };
197 198 199
};
ASSERT_SIZE (LookupFlag, 2);

B
Behdad Esfahbod 已提交
200 201
struct LookupSubTable
{
B
Behdad Esfahbod 已提交
202 203 204 205
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF ();
  }

206 207 208 209 210
  private:
  USHORT	format;		/* Subtable format.  Different for GSUB and GPOS */
};
ASSERT_SIZE (LookupSubTable, 2);

B
Behdad Esfahbod 已提交
211 212 213 214
struct Lookup
{
  inline const LookupSubTable& get_subtable (unsigned int i) const { return this+subTable[i]; }
  inline unsigned int get_subtable_count (void) const { return subTable.len; }
215 216

  inline unsigned int get_type (void) const { return lookupType; }
217 218 219 220 221 222 223
  inline unsigned int get_flag (void) const
  {
    unsigned int flag = lookupFlag;
    if (HB_UNLIKELY (flag & LookupFlag::UseMarkFilteringSet))
    {
      const USHORT &markFilteringSet = *(const USHORT*)
					((const char *) &subTable + subTable.get_size ());
B
Behdad Esfahbod 已提交
224
      flag += (markFilteringSet << 16);
225 226 227
    }
    return flag;
  }
228

B
Behdad Esfahbod 已提交
229 230 231 232 233 234 235 236 237 238
  inline bool sanitize (SANITIZE_ARG_DEF) {
    if (!(SANITIZE_SELF () && SANITIZE_THIS (subTable))) return false;
    if (HB_UNLIKELY (lookupFlag & LookupFlag::UseMarkFilteringSet))
    {
      USHORT &markFilteringSet = *(USHORT*) ((char *) &subTable + subTable.get_size ());
      if (!SANITIZE (markFilteringSet)) return false;
    }
    return true;
  }

239 240
  USHORT	lookupType;		/* Different enumerations for GSUB and GPOS */
  USHORT	lookupFlag;		/* Lookup qualifiers */
241
  OffsetArrayOf<LookupSubTable>
242 243 244 245
		subTable;		/* Array of SubTables */
  USHORT	markFilteringSetX[0];	/* Index (base 0) into GDEF mark glyph sets
					 * structure. This field is only present if bit
					 * UseMarkFilteringSet of lookup flags is set. */
246 247 248 249
};
ASSERT_SIZE (Lookup, 6);

template <typename Type>
B
Behdad Esfahbod 已提交
250 251 252 253
struct OffsetListOf : OffsetArrayOf<Type>
{
  inline const Type& operator [] (unsigned int i) const
  {
254 255 256
    if (HB_UNLIKELY (i >= this->len)) return Null(Type);
    return this+this->array[i];
  }
B
Behdad Esfahbod 已提交
257 258 259 260

  inline bool sanitize (SANITIZE_ARG_DEF) {
    return OffsetArrayOf<Type>::sanitize (SANITIZE_ARG, (const char *) this);
  }
261 262 263 264 265 266 267 268 269 270
};

typedef OffsetListOf<Lookup> LookupList;
ASSERT_SIZE (LookupList, 2);


/*
 * Coverage Table
 */

B
Behdad Esfahbod 已提交
271 272
struct CoverageFormat1
{
273 274 275
  friend struct Coverage;

  private:
B
Behdad Esfahbod 已提交
276 277
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
278
    if (HB_UNLIKELY (glyph_id > 0xFFFF))
279
      return NOT_COVERED;
280
    GlyphID gid;
281 282 283 284 285 286 287 288 289
    gid = glyph_id;
    // TODO: bsearch
    unsigned int num_glyphs = glyphArray.len;
    for (unsigned int i = 0; i < num_glyphs; i++)
      if (gid == glyphArray[i])
        return i;
    return NOT_COVERED;
  }

B
Behdad Esfahbod 已提交
290 291 292 293 294
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE (glyphArray);
  }

  private:
295 296 297 298 299 300
  USHORT	coverageFormat;	/* Format identifier--format = 1 */
  ArrayOf<GlyphID>
		glyphArray;	/* Array of GlyphIDs--in numerical order */
};
ASSERT_SIZE (CoverageFormat1, 4);

B
Behdad Esfahbod 已提交
301 302
struct CoverageRangeRecord
{
303 304 305
  friend struct CoverageFormat2;

  private:
B
Behdad Esfahbod 已提交
306 307
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
308
    if (glyph_id >= start && glyph_id <= end)
309
      return (unsigned int) startCoverageIndex + (glyph_id - start);
310 311 312
    return NOT_COVERED;
  }

B
Behdad Esfahbod 已提交
313
  public:
B
Behdad Esfahbod 已提交
314 315 316 317
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF ();
  }

318 319 320 321 322 323 324 325
  private:
  GlyphID	start;			/* First GlyphID in the range */
  GlyphID	end;			/* Last GlyphID in the range */
  USHORT	startCoverageIndex;	/* Coverage Index of first GlyphID in
					 * range */
};
ASSERT_SIZE_DATA (CoverageRangeRecord, 6, "\000\001");

B
Behdad Esfahbod 已提交
326 327
struct CoverageFormat2
{
328 329 330
  friend struct Coverage;

  private:
B
Behdad Esfahbod 已提交
331 332
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
333 334
    // TODO: bsearch
    unsigned int count = rangeRecord.len;
B
Behdad Esfahbod 已提交
335 336
    for (unsigned int i = 0; i < count; i++)
    {
337 338
      unsigned int coverage = rangeRecord[i].get_coverage (glyph_id);
      if (coverage != NOT_COVERED)
339 340 341 342 343
        return coverage;
    }
    return NOT_COVERED;
  }

B
Behdad Esfahbod 已提交
344 345 346 347 348
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE (rangeRecord);
  }

  private:
349 350 351 352 353 354 355 356
  USHORT	coverageFormat;	/* Format identifier--format = 2 */
  ArrayOf<CoverageRangeRecord>
		rangeRecord;	/* Array of glyph ranges--ordered by
				 * Start GlyphID. rangeCount entries
				 * long */
};
ASSERT_SIZE (CoverageFormat2, 4);

B
Behdad Esfahbod 已提交
357 358
struct Coverage
{
B
Behdad Esfahbod 已提交
359 360
  inline unsigned int operator() (hb_codepoint_t glyph_id) const { return get_coverage (glyph_id); }

B
Behdad Esfahbod 已提交
361 362
  unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
363 364 365 366 367 368 369
    switch (u.format) {
    case 1: return u.format1->get_coverage(glyph_id);
    case 2: return u.format2->get_coverage(glyph_id);
    default:return NOT_COVERED;
    }
  }

B
Behdad Esfahbod 已提交
370 371 372 373 374 375 376 377
  inline bool sanitize (SANITIZE_ARG_DEF) {
    if (!SANITIZE (u.format)) return false;
    switch (u.format) {
    case 1: return u.format1->sanitize (SANITIZE_ARG);
    case 2: return u.format2->sanitize (SANITIZE_ARG);
    default:return true;
    }
  }
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392

  private:
  union {
  USHORT		format;		/* Format identifier */
  CoverageFormat1	format1[];
  CoverageFormat2	format2[];
  } u;
};
ASSERT_SIZE (Coverage, 2);


/*
 * Class Definition Table
 */

B
Behdad Esfahbod 已提交
393 394
struct ClassDefFormat1
{
395 396 397
  friend struct ClassDef;

  private:
B
Behdad Esfahbod 已提交
398 399
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
400 401 402 403 404
    if ((unsigned int) (glyph_id - startGlyph) < classValue.len)
      return classValue[glyph_id - startGlyph];
    return 0;
  }

B
Behdad Esfahbod 已提交
405 406 407 408
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF () && SANITIZE (classValue);
  }

409 410 411 412 413 414 415
  USHORT	classFormat;		/* Format identifier--format = 1 */
  GlyphID	startGlyph;		/* First GlyphID of the classValueArray */
  ArrayOf<USHORT>
		classValue;		/* Array of Class Values--one per GlyphID */
};
ASSERT_SIZE (ClassDefFormat1, 6);

B
Behdad Esfahbod 已提交
416 417
struct ClassRangeRecord
{
418 419 420
  friend struct ClassDefFormat2;

  private:
B
Behdad Esfahbod 已提交
421 422
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
423 424 425 426 427
    if (glyph_id >= start && glyph_id <= end)
      return classValue;
    return 0;
  }

B
Behdad Esfahbod 已提交
428
  public:
B
Behdad Esfahbod 已提交
429 430 431 432
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE_SELF ();
  }

433 434 435 436 437 438 439
  private:
  GlyphID	start;		/* First GlyphID in the range */
  GlyphID	end;		/* Last GlyphID in the range */
  USHORT	classValue;	/* Applied to all glyphs in the range */
};
ASSERT_SIZE_DATA (ClassRangeRecord, 6, "\000\001");

B
Behdad Esfahbod 已提交
440 441
struct ClassDefFormat2
{
442 443 444
  friend struct ClassDef;

  private:
B
Behdad Esfahbod 已提交
445 446
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
447 448
    // TODO: bsearch
    unsigned int count = rangeRecord.len;
B
Behdad Esfahbod 已提交
449 450
    for (unsigned int i = 0; i < count; i++)
    {
451 452 453 454 455 456 457
      int classValue = rangeRecord[i].get_class (glyph_id);
      if (classValue > 0)
        return classValue;
    }
    return 0;
  }

B
Behdad Esfahbod 已提交
458 459 460 461
  inline bool sanitize (SANITIZE_ARG_DEF) {
    return SANITIZE (rangeRecord);
  }

462 463 464 465 466 467 468
  USHORT	classFormat;	/* Format identifier--format = 2 */
  ArrayOf<ClassRangeRecord>
		rangeRecord;	/* Array of glyph ranges--ordered by
				 * Start GlyphID */
};
ASSERT_SIZE (ClassDefFormat2, 4);

B
Behdad Esfahbod 已提交
469 470
struct ClassDef
{
B
Behdad Esfahbod 已提交
471 472
  inline unsigned int operator() (hb_codepoint_t glyph_id) const { return get_class (glyph_id); }

B
Behdad Esfahbod 已提交
473 474
  hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
475 476 477 478 479 480 481
    switch (u.format) {
    case 1: return u.format1->get_class(glyph_id);
    case 2: return u.format2->get_class(glyph_id);
    default:return 0;
    }
  }

B
Behdad Esfahbod 已提交
482 483 484 485 486 487 488 489
  inline bool sanitize (SANITIZE_ARG_DEF) {
    if (!SANITIZE (u.format)) return false;
    switch (u.format) {
    case 1: return u.format1->sanitize (SANITIZE_ARG);
    case 2: return u.format2->sanitize (SANITIZE_ARG);
    default:return true;
    }
  }
490

491 492 493 494 495 496 497 498 499 500 501 502 503 504
  private:
  union {
  USHORT		format;		/* Format identifier */
  ClassDefFormat1	format1[];
  ClassDefFormat2	format2[];
  } u;
};
ASSERT_SIZE (ClassDef, 2);


/*
 * Device Tables
 */

B
Behdad Esfahbod 已提交
505 506 507 508
struct Device
{
  int get_delta (unsigned int ppem_size) const
  {
509 510 511
    unsigned int f = deltaFormat;
    if (HB_UNLIKELY (f < 1 || f > 3))
      return 0;
512

513 514
    if (ppem_size < startSize || ppem_size > endSize)
      return 0;
515

516
    unsigned int s = ppem_size - startSize;
517

518
    unsigned int byte = deltaValue[s >> (4 - f)];
B
Behdad Esfahbod 已提交
519 520
    unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
    unsigned int mask = (0xFFFF >> (16 - (1 << f)));
521 522 523 524 525 526 527 528 529

    int delta = bits & mask;

    if (delta >= ((mask + 1) >> 1))
      delta -= mask + 1;

    return delta;
  }

B
Behdad Esfahbod 已提交
530
  inline int operator() (unsigned int ppem_size) const { return get_delta (ppem_size); }
531 532 533 534 535 536 537 538 539 540

  private:
  USHORT	startSize;	/* Smallest size to correct--in ppem */
  USHORT	endSize;	/* Largest size to correct--in ppem */
  USHORT	deltaFormat;	/* Format of DeltaValue array data: 1, 2, or 3 */
  USHORT	deltaValue[];	/* Array of compressed data */
};
ASSERT_SIZE (Device, 6);


541
#endif /* HB_OT_LAYOUT_COMMON_PRIVATE_HH */