hb-ot-layout-common-private.hh 15.9 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-type-private.hh"
33 34


B
Behdad Esfahbod 已提交
35 36 37 38 39
#define NO_CONTEXT		((unsigned int) 0x110000)
#define NOT_COVERED		((unsigned int) 0x110000)
#define MAX_NESTING_LEVEL	8


40 41 42 43 44 45
/*
 *
 * OpenType Layout Common Table Formats
 *
 */

46

47 48 49 50 51
/*
 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
 */

template <typename Type>
B
Behdad Esfahbod 已提交
52 53
struct Record
{
B
Behdad Esfahbod 已提交
54
  inline bool sanitize (SANITIZE_ARG_DEF, const void *base) {
55
    TRACE_SANITIZE ();
56
    return SANITIZE (tag) && SANITIZE_BASE (offset, base);
B
Behdad Esfahbod 已提交
57 58
  }

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

template <typename Type>
66
struct RecordArrayOf : ArrayOf<Record<Type> > {
B
Behdad Esfahbod 已提交
67 68
  inline const Tag& get_tag (unsigned int i) const
  {
69
    if (HB_UNLIKELY (i >= this->len)) return Null(Tag);
B
Behdad Esfahbod 已提交
70
    return (*this)[i].tag;
71
  }
72 73 74
  inline bool get_tags (unsigned int *record_count /* IN/OUT */,
			hb_tag_t     *record_tags /* OUT */) const
  {
B
Behdad Esfahbod 已提交
75
    const Record<Type> *a = this->const_array();
76 77
    unsigned int count = MIN (this->len, *record_count);
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
78
      record_tags[i] = a[i].tag;
79 80 81 82 83 84 85 86

    *record_count = this->len;
    return !!this->len;
  }
  inline bool find_index (hb_tag_t tag, unsigned int *index) const
  {
    const Tag t = tag;
    // TODO bsearch
B
Behdad Esfahbod 已提交
87
    const Record<Type> *a = this->const_array();
88 89 90
    unsigned int count = this->len;
    for (unsigned int i = 0; i < count; i++)
    {
B
Behdad Esfahbod 已提交
91
      if (t == a[i].tag)
92 93 94 95 96 97 98 99 100 101 102 103 104 105
      {
        if (index) *index = i;
        return true;
      }
    }
    if (index) *index = NO_INDEX;
    return false;
  }
};

template <typename Type>
struct RecordListOf : RecordArrayOf<Type>
{
  inline const Type& operator [] (unsigned int i) const
B
Behdad Esfahbod 已提交
106
  { return this+RecordArrayOf<Type>::operator [](i).offset; }
B
Behdad Esfahbod 已提交
107 108

  inline bool sanitize (SANITIZE_ARG_DEF) {
109
    TRACE_SANITIZE ();
110
    return RecordArrayOf<Type>::sanitize (SANITIZE_ARG, CONST_CHARP(this));
B
Behdad Esfahbod 已提交
111
  }
112 113 114
};


115 116 117 118 119 120
struct IndexArray : ArrayOf<USHORT>
{
  inline unsigned int operator [] (unsigned int i) const
  {
    if (HB_UNLIKELY (i >= this->len))
      return NO_INDEX;
B
Behdad Esfahbod 已提交
121
    return this->const_array()[i];
122 123 124 125 126
  }
  inline bool get_indexes (unsigned int *_count /* IN/OUT */,
			   unsigned int *_indexes /* OUT */) const
  {
    unsigned int count = MIN (this->len, *_count);
B
Behdad Esfahbod 已提交
127
    const USHORT *a = this->const_array();
128
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
129
      _indexes[i] = a[i];
130 131 132 133 134 135 136

    *_count = this->len;
    return !!this->len;
  }
};


137 138 139 140 141
struct Script;
struct LangSys;
struct Feature;


B
Behdad Esfahbod 已提交
142 143
struct LangSys
{
144 145 146 147 148
  inline unsigned int get_feature_count (void) const
  { return featureIndex.len; }
  inline hb_tag_t get_feature_index (unsigned int i) const
  { return featureIndex[i]; }
  inline bool get_feature_indexes (unsigned int *feature_count /* IN/OUT */,
B
Behdad Esfahbod 已提交
149 150
				   unsigned int *feature_indexes /* OUT */) const
  { return featureIndex.get_indexes (feature_count, feature_indexes); }
151

B
Behdad Esfahbod 已提交
152
  inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; }
B
Behdad Esfahbod 已提交
153 154
  inline int get_required_feature_index (void) const
  {
155 156 157 158 159
    if (reqFeatureIndex == 0xffff)
      return NO_INDEX;
   return reqFeatureIndex;;
  }

B
Behdad Esfahbod 已提交
160
  inline bool sanitize (SANITIZE_ARG_DEF) {
161
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
162 163 164
    return SANITIZE_SELF () && SANITIZE (featureIndex);
  }

165 166 167 168 169
  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 */
170
  IndexArray	featureIndex;	/* Array of indices into the FeatureList */
171 172 173 174
};
ASSERT_SIZE_DATA (LangSys, 6, "\0\0\xFF\xFF");


B
Behdad Esfahbod 已提交
175 176
struct Script
{
177 178 179 180 181 182 183
  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.get_tag (i); }
  inline bool get_lang_sys_tags (unsigned int *lang_sys_count /* IN/OUT */,
				 hb_tag_t     *lang_sys_tags /* OUT */) const
  { return langSys.get_tags (lang_sys_count, lang_sys_tags); }
B
Behdad Esfahbod 已提交
184 185
  inline const LangSys& get_lang_sys (unsigned int i) const
  {
186 187 188
    if (i == NO_INDEX) return get_default_lang_sys ();
    return this+langSys[i].offset;
  }
189 190
  inline bool find_lang_sys_index (hb_tag_t tag, unsigned int *index) const
  { return langSys.find_index (tag, index); }
191

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

B
Behdad Esfahbod 已提交
195
  inline bool sanitize (SANITIZE_ARG_DEF) {
196
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
197 198 199
    return SANITIZE_THIS (defaultLangSys) && SANITIZE_THIS (langSys);
  }

200 201 202 203
  private:
  OffsetTo<LangSys>
		defaultLangSys;	/* Offset to DefaultLangSys table--from
				 * beginning of Script table--may be Null */
B
Behdad Esfahbod 已提交
204
  RecordArrayOf<LangSys>
205 206 207 208 209 210 211 212 213
		langSys;	/* Array of LangSysRecords--listed
				 * alphabetically by LangSysTag */
};
ASSERT_SIZE (Script, 4);

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


B
Behdad Esfahbod 已提交
214 215
struct Feature
{
216 217 218 219 220
  inline unsigned int get_lookup_count (void) const
  { return lookupIndex.len; }
  inline hb_tag_t get_lookup_index (unsigned int i) const
  { return lookupIndex[i]; }
  inline bool get_lookup_indexes (unsigned int *lookup_count /* IN/OUT */,
221
				  unsigned int *lookup_tags /* OUT */) const
222
  { return lookupIndex.get_indexes (lookup_count, lookup_tags); }
223

B
Behdad Esfahbod 已提交
224
  inline bool sanitize (SANITIZE_ARG_DEF) {
225
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
226 227 228
    return SANITIZE_SELF () && SANITIZE (lookupIndex);
  }

229 230 231 232 233 234
  /* 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 */
235
  IndexArray	 lookupIndex;	/* Array of LookupList indices */
236 237 238 239 240 241 242
};
ASSERT_SIZE (Feature, 4);

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


B
Behdad Esfahbod 已提交
243 244
struct LookupFlag : USHORT
{
B
Behdad Esfahbod 已提交
245 246 247 248 249
  enum {
    RightToLeft		= 0x0001u,
    IgnoreBaseGlyphs	= 0x0002u,
    IgnoreLigatures	= 0x0004u,
    IgnoreMarks		= 0x0008u,
B
Behdad Esfahbod 已提交
250
    IgnoreFlags		= 0x000Eu,
251 252
    UseMarkFilteringSet	= 0x0010u,
    Reserved		= 0x00E0u,
253
    MarkAttachmentType	= 0xFF00u
B
Behdad Esfahbod 已提交
254
  };
255 256 257
};
ASSERT_SIZE (LookupFlag, 2);

B
Behdad Esfahbod 已提交
258 259
struct LookupSubTable
{
B
Behdad Esfahbod 已提交
260
  inline bool sanitize (SANITIZE_ARG_DEF) {
261
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
262 263 264
    return SANITIZE_SELF ();
  }

265 266 267 268 269
  private:
  USHORT	format;		/* Subtable format.  Different for GSUB and GPOS */
};
ASSERT_SIZE (LookupSubTable, 2);

B
Behdad Esfahbod 已提交
270 271 272 273
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; }
274 275

  inline unsigned int get_type (void) const { return lookupType; }
276 277 278 279 280
  inline unsigned int get_flag (void) const
  {
    unsigned int flag = lookupFlag;
    if (HB_UNLIKELY (flag & LookupFlag::UseMarkFilteringSet))
    {
B
Behdad Esfahbod 已提交
281
      const USHORT &markFilteringSet = CONST_NEXT (USHORT, subTable);
B
Behdad Esfahbod 已提交
282
      flag += (markFilteringSet << 16);
283 284 285
    }
    return flag;
  }
286

B
Behdad Esfahbod 已提交
287
  inline bool sanitize (SANITIZE_ARG_DEF) {
288
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
289
    if (!(SANITIZE_SELF/*XXXXXXXXXXXXXX*/ () && SANITIZE_THIS (subTable))) return false;
B
Behdad Esfahbod 已提交
290 291
    if (HB_UNLIKELY (lookupFlag & LookupFlag::UseMarkFilteringSet))
    {
B
Behdad Esfahbod 已提交
292
      USHORT &markFilteringSet = NEXT (USHORT, subTable);
B
Behdad Esfahbod 已提交
293 294 295 296 297
      if (!SANITIZE (markFilteringSet)) return false;
    }
    return true;
  }

298 299
  USHORT	lookupType;		/* Different enumerations for GSUB and GPOS */
  USHORT	lookupFlag;		/* Lookup qualifiers */
300
  OffsetArrayOf<LookupSubTable>
301
		subTable;		/* Array of SubTables */
B
Behdad Esfahbod 已提交
302
  USHORT	markFilteringSetX[VAR];	/* Index (base 0) into GDEF mark glyph sets
303 304
					 * structure. This field is only present if bit
					 * UseMarkFilteringSet of lookup flags is set. */
305
};
B
Behdad Esfahbod 已提交
306
ASSERT_SIZE_VAR (Lookup, 6, USHORT);
307 308 309 310 311 312 313 314 315

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


/*
 * Coverage Table
 */

B
Behdad Esfahbod 已提交
316 317
struct CoverageFormat1
{
318 319 320
  friend struct Coverage;

  private:
B
Behdad Esfahbod 已提交
321 322
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
323
    if (HB_UNLIKELY (glyph_id > 0xFFFF))
324
      return NOT_COVERED;
325
    GlyphID gid;
326 327 328 329 330 331 332 333 334
    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 已提交
335
  inline bool sanitize (SANITIZE_ARG_DEF) {
336
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
337 338 339 340
    return SANITIZE (glyphArray);
  }

  private:
341 342 343 344 345 346
  USHORT	coverageFormat;	/* Format identifier--format = 1 */
  ArrayOf<GlyphID>
		glyphArray;	/* Array of GlyphIDs--in numerical order */
};
ASSERT_SIZE (CoverageFormat1, 4);

B
Behdad Esfahbod 已提交
347 348
struct CoverageRangeRecord
{
349 350 351
  friend struct CoverageFormat2;

  private:
B
Behdad Esfahbod 已提交
352 353
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
354
    if (glyph_id >= start && glyph_id <= end)
355
      return (unsigned int) startCoverageIndex + (glyph_id - start);
356 357 358
    return NOT_COVERED;
  }

B
Behdad Esfahbod 已提交
359
  public:
B
Behdad Esfahbod 已提交
360
  inline bool sanitize (SANITIZE_ARG_DEF) {
361
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
362 363 364
    return SANITIZE_SELF ();
  }

365 366 367 368 369 370 371 372
  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 已提交
373 374
struct CoverageFormat2
{
375 376 377
  friend struct Coverage;

  private:
B
Behdad Esfahbod 已提交
378 379
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
  {
380 381
    // TODO: bsearch
    unsigned int count = rangeRecord.len;
B
Behdad Esfahbod 已提交
382 383
    for (unsigned int i = 0; i < count; i++)
    {
384 385
      unsigned int coverage = rangeRecord[i].get_coverage (glyph_id);
      if (coverage != NOT_COVERED)
386 387 388 389 390
        return coverage;
    }
    return NOT_COVERED;
  }

B
Behdad Esfahbod 已提交
391
  inline bool sanitize (SANITIZE_ARG_DEF) {
392
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
393 394 395 396
    return SANITIZE (rangeRecord);
  }

  private:
397 398 399 400 401 402 403 404
  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 已提交
405 406
struct Coverage
{
B
Behdad Esfahbod 已提交
407 408
  inline unsigned int operator() (hb_codepoint_t glyph_id) const { return get_coverage (glyph_id); }

B
Behdad Esfahbod 已提交
409
  inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
B
Behdad Esfahbod 已提交
410
  {
411 412 413 414 415 416 417
    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 已提交
418
  inline bool sanitize (SANITIZE_ARG_DEF) {
419
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
420 421 422 423 424 425 426
    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;
    }
  }
427 428 429 430

  private:
  union {
  USHORT		format;		/* Format identifier */
B
Behdad Esfahbod 已提交
431 432
  CoverageFormat1	format1[VAR];
  CoverageFormat2	format2[VAR];
433 434 435 436 437 438 439 440
  } u;
};


/*
 * Class Definition Table
 */

B
Behdad Esfahbod 已提交
441 442
struct ClassDefFormat1
{
443 444 445
  friend struct ClassDef;

  private:
B
Behdad Esfahbod 已提交
446 447
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
448 449 450 451 452
    if ((unsigned int) (glyph_id - startGlyph) < classValue.len)
      return classValue[glyph_id - startGlyph];
    return 0;
  }

B
Behdad Esfahbod 已提交
453
  inline bool sanitize (SANITIZE_ARG_DEF) {
454
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
455 456 457
    return SANITIZE_SELF () && SANITIZE (classValue);
  }

458 459 460 461 462 463 464
  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 已提交
465 466
struct ClassRangeRecord
{
467 468 469
  friend struct ClassDefFormat2;

  private:
B
Behdad Esfahbod 已提交
470 471
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
472 473 474 475 476
    if (glyph_id >= start && glyph_id <= end)
      return classValue;
    return 0;
  }

B
Behdad Esfahbod 已提交
477
  public:
B
Behdad Esfahbod 已提交
478
  inline bool sanitize (SANITIZE_ARG_DEF) {
479
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
480 481 482
    return SANITIZE_SELF ();
  }

483 484 485 486 487 488 489
  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 已提交
490 491
struct ClassDefFormat2
{
492 493 494
  friend struct ClassDef;

  private:
B
Behdad Esfahbod 已提交
495 496
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
  {
497 498
    // TODO: bsearch
    unsigned int count = rangeRecord.len;
B
Behdad Esfahbod 已提交
499 500
    for (unsigned int i = 0; i < count; i++)
    {
501 502 503 504 505 506 507
      int classValue = rangeRecord[i].get_class (glyph_id);
      if (classValue > 0)
        return classValue;
    }
    return 0;
  }

B
Behdad Esfahbod 已提交
508
  inline bool sanitize (SANITIZE_ARG_DEF) {
509
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
510 511 512
    return SANITIZE (rangeRecord);
  }

513 514 515 516 517 518 519
  USHORT	classFormat;	/* Format identifier--format = 2 */
  ArrayOf<ClassRangeRecord>
		rangeRecord;	/* Array of glyph ranges--ordered by
				 * Start GlyphID */
};
ASSERT_SIZE (ClassDefFormat2, 4);

B
Behdad Esfahbod 已提交
520 521
struct ClassDef
{
B
Behdad Esfahbod 已提交
522 523
  inline unsigned int operator() (hb_codepoint_t glyph_id) const { return get_class (glyph_id); }

B
Behdad Esfahbod 已提交
524
  inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
B
Behdad Esfahbod 已提交
525
  {
526 527 528 529 530 531 532
    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 已提交
533
  inline bool sanitize (SANITIZE_ARG_DEF) {
534
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
535 536 537 538 539 540 541
    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;
    }
  }
542

543 544 545
  private:
  union {
  USHORT		format;		/* Format identifier */
B
Behdad Esfahbod 已提交
546 547
  ClassDefFormat1	format1[VAR];
  ClassDefFormat2	format2[VAR];
548 549 550 551 552 553 554 555
  } u;
};


/*
 * Device Tables
 */

B
Behdad Esfahbod 已提交
556 557
struct Device
{
B
Behdad Esfahbod 已提交
558 559
  inline int operator() (unsigned int ppem_size) const { return get_delta (ppem_size); }

B
Behdad Esfahbod 已提交
560
  inline int get_delta (unsigned int ppem_size) const
B
Behdad Esfahbod 已提交
561
  {
562 563 564
    unsigned int f = deltaFormat;
    if (HB_UNLIKELY (f < 1 || f > 3))
      return 0;
565

566 567
    if (ppem_size < startSize || ppem_size > endSize)
      return 0;
568

569
    unsigned int s = ppem_size - startSize;
570

571
    unsigned int byte = deltaValue[s >> (4 - f)];
B
Behdad Esfahbod 已提交
572 573
    unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
    unsigned int mask = (0xFFFF >> (16 - (1 << f)));
574 575 576

    int delta = bits & mask;

B
Behdad Esfahbod 已提交
577
    if ((unsigned int) delta >= ((mask + 1) >> 1))
578 579 580 581 582
      delta -= mask + 1;

    return delta;
  }

B
Behdad Esfahbod 已提交
583 584 585 586 587 588 589
  inline unsigned int get_size () const
  {
    unsigned int f = deltaFormat;
    if (HB_UNLIKELY (f < 1 || f > 3 || startSize > endSize)) return sizeof (*this);
    return sizeof (*this) + ((endSize - startSize + (1 << (4 - f)) - 1) >> (4 - f));
  }

B
Behdad Esfahbod 已提交
590
  inline bool sanitize (SANITIZE_ARG_DEF) {
591
    TRACE_SANITIZE ();
B
Behdad Esfahbod 已提交
592 593
    return SANITIZE_GET_SIZE ();
  }
594 595 596 597 598

  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 */
B
Behdad Esfahbod 已提交
599
  USHORT	deltaValue[VAR];	/* Array of compressed data */
600
};
B
Behdad Esfahbod 已提交
601
ASSERT_SIZE_VAR (Device, 6, USHORT);
602 603


604
#endif /* HB_OT_LAYOUT_COMMON_PRIVATE_HH */