Add comment
[framework/uifw/harfbuzz.git] / src / hb-ot-layout-common-private.hh
1 /*
2  * Copyright (C) 2007,2008,2009  Red Hat, Inc.
3  *
4  *  This is part of HarfBuzz, a text shaping library.
5  *
6  * Permission is hereby granted, without written agreement and without
7  * license or royalty fees, to use, copy, modify, and distribute this
8  * software and its documentation for any purpose, provided that the
9  * above copyright notice and the following two paragraphs appear in
10  * all copies of this software.
11  *
12  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16  * DAMAGE.
17  *
18  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23  *
24  * Red Hat Author(s): Behdad Esfahbod
25  */
26
27 #ifndef HB_OT_LAYOUT_COMMON_PRIVATE_HH
28 #define HB_OT_LAYOUT_COMMON_PRIVATE_HH
29
30 #include "hb-ot-layout-private.h"
31
32 #include "hb-open-type-private.hh"
33
34
35 #define NO_CONTEXT              ((unsigned int) 0x110000)
36 #define NOT_COVERED             ((unsigned int) 0x110000)
37 #define MAX_NESTING_LEVEL       8
38
39
40 /*
41  *
42  * OpenType Layout Common Table Formats
43  *
44  */
45
46
47 /*
48  * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
49  */
50
51 template <typename Type>
52 struct Record
53 {
54   static inline unsigned int get_size () { return sizeof (Record<Type>); }
55
56   inline bool sanitize (SANITIZE_ARG_DEF, void *base) {
57     TRACE_SANITIZE ();
58     return SANITIZE_SELF () && SANITIZE_BASE (offset, base);
59   }
60
61   Tag           tag;            /* 4-byte Tag identifier */
62   OffsetTo<Type>
63                 offset;         /* Offset from beginning of object holding
64                                  * the Record */
65 };
66
67 template <typename Type>
68 struct RecordArrayOf : ArrayOf<Record<Type> > {
69   inline const Tag& get_tag (unsigned int i) const
70   {
71     if (HB_UNLIKELY (i >= this->len)) return Null(Tag);
72     return (*this)[i].tag;
73   }
74   inline unsigned int get_tags (unsigned int start_offset,
75                                 unsigned int *record_count /* IN/OUT */,
76                                 hb_tag_t     *record_tags /* OUT */) const
77   {
78     if (record_count) {
79       const Record<Type> *array = this->sub_array (start_offset, record_count);
80       unsigned int count = *record_count;
81       for (unsigned int i = 0; i < count; i++)
82         record_tags[i] = array[i].tag;
83     }
84     return this->len;
85   }
86   inline bool find_index (hb_tag_t tag, unsigned int *index) const
87   {
88     Tag t;
89     t.set (tag);
90     // TODO bsearch
91     const Record<Type> *a = this->array();
92     unsigned int count = this->len;
93     for (unsigned int i = 0; i < count; i++)
94     {
95       if (t == a[i].tag)
96       {
97         if (index) *index = i;
98         return true;
99       }
100     }
101     if (index) *index = NO_INDEX;
102     return false;
103   }
104 };
105
106 template <typename Type>
107 struct RecordListOf : RecordArrayOf<Type>
108 {
109   inline const Type& operator [] (unsigned int i) const
110   { return this+RecordArrayOf<Type>::operator [](i).offset; }
111
112   inline bool sanitize (SANITIZE_ARG_DEF) {
113     TRACE_SANITIZE ();
114     return RecordArrayOf<Type>::sanitize (SANITIZE_ARG, CharP(this));
115   }
116 };
117
118
119 struct IndexArray : ArrayOf<USHORT>
120 {
121   inline unsigned int operator [] (unsigned int i) const
122   {
123     if (HB_UNLIKELY (i >= this->len))
124       return NO_INDEX;
125     return this->array()[i];
126   }
127   inline unsigned int get_indexes (unsigned int start_offset,
128                                    unsigned int *_count /* IN/OUT */,
129                                    unsigned int *_indexes /* OUT */) const
130   {
131     if (_count) {
132       const USHORT *array = this->sub_array (start_offset, _count);
133       unsigned int count = *_count;
134       for (unsigned int i = 0; i < count; i++)
135         _indexes[i] = array[i];
136     }
137     return this->len;
138   }
139 };
140
141
142 struct Script;
143 struct LangSys;
144 struct Feature;
145
146
147 struct LangSys
148 {
149   inline unsigned int get_feature_count (void) const
150   { return featureIndex.len; }
151   inline hb_tag_t get_feature_index (unsigned int i) const
152   { return featureIndex[i]; }
153   inline unsigned int get_feature_indexes (unsigned int start_offset,
154                                            unsigned int *feature_count /* IN/OUT */,
155                                            unsigned int *feature_indexes /* OUT */) const
156   { return featureIndex.get_indexes (start_offset, feature_count, feature_indexes); }
157
158   inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; }
159   inline int get_required_feature_index (void) const
160   {
161     if (reqFeatureIndex == 0xffff)
162       return NO_INDEX;
163    return reqFeatureIndex;;
164   }
165
166   inline bool sanitize (SANITIZE_ARG_DEF) {
167     TRACE_SANITIZE ();
168     return SANITIZE_SELF () && SANITIZE (featureIndex);
169   }
170
171   Offset        lookupOrder;    /* = Null (reserved for an offset to a
172                                  * reordering table) */
173   USHORT        reqFeatureIndex;/* Index of a feature required for this
174                                  * language system--if no required features
175                                  * = 0xFFFF */
176   IndexArray    featureIndex;   /* Array of indices into the FeatureList */
177 };
178 ASSERT_SIZE (LangSys, 6);
179 DEFINE_NULL_DATA (LangSys, 6, "\0\0\xFF\xFF");
180
181
182 struct Script
183 {
184   inline unsigned int get_lang_sys_count (void) const
185   { return langSys.len; }
186   inline const Tag& get_lang_sys_tag (unsigned int i) const
187   { return langSys.get_tag (i); }
188   inline unsigned int get_lang_sys_tags (unsigned int start_offset,
189                                          unsigned int *lang_sys_count /* IN/OUT */,
190                                          hb_tag_t     *lang_sys_tags /* OUT */) const
191   { return langSys.get_tags (start_offset, lang_sys_count, lang_sys_tags); }
192   inline const LangSys& get_lang_sys (unsigned int i) const
193   {
194     if (i == NO_INDEX) return get_default_lang_sys ();
195     return this+langSys[i].offset;
196   }
197   inline bool find_lang_sys_index (hb_tag_t tag, unsigned int *index) const
198   { return langSys.find_index (tag, index); }
199
200   inline bool has_default_lang_sys (void) const { return defaultLangSys != 0; }
201   inline const LangSys& get_default_lang_sys (void) const { return this+defaultLangSys; }
202
203   inline bool sanitize (SANITIZE_ARG_DEF) {
204     TRACE_SANITIZE ();
205     return SANITIZE_THIS2 (defaultLangSys, langSys);
206   }
207
208   private:
209   OffsetTo<LangSys>
210                 defaultLangSys; /* Offset to DefaultLangSys table--from
211                                  * beginning of Script table--may be Null */
212   RecordArrayOf<LangSys>
213                 langSys;        /* Array of LangSysRecords--listed
214                                  * alphabetically by LangSysTag */
215 };
216 ASSERT_SIZE (Script, 4);
217
218 typedef RecordListOf<Script> ScriptList;
219 ASSERT_SIZE (ScriptList, 2);
220
221
222 struct Feature
223 {
224   inline unsigned int get_lookup_count (void) const
225   { return lookupIndex.len; }
226   inline hb_tag_t get_lookup_index (unsigned int i) const
227   { return lookupIndex[i]; }
228   inline unsigned int get_lookup_indexes (unsigned int start_index,
229                                           unsigned int *lookup_count /* IN/OUT */,
230                                           unsigned int *lookup_tags /* OUT */) const
231   { return lookupIndex.get_indexes (start_index, lookup_count, lookup_tags); }
232
233   inline bool sanitize (SANITIZE_ARG_DEF) {
234     TRACE_SANITIZE ();
235     return SANITIZE_SELF () && SANITIZE (lookupIndex);
236   }
237
238   /* TODO: implement get_feature_parameters() */
239   /* TODO: implement FeatureSize and other special features? */
240   Offset        featureParams;  /* Offset to Feature Parameters table (if one
241                                  * has been defined for the feature), relative
242                                  * to the beginning of the Feature Table; = Null
243                                  * if not required */
244   IndexArray     lookupIndex;   /* Array of LookupList indices */
245 };
246 ASSERT_SIZE (Feature, 4);
247
248 typedef RecordListOf<Feature> FeatureList;
249 ASSERT_SIZE (FeatureList, 2);
250
251
252 struct LookupFlag : USHORT
253 {
254   enum {
255     RightToLeft         = 0x0001u,
256     IgnoreBaseGlyphs    = 0x0002u,
257     IgnoreLigatures     = 0x0004u,
258     IgnoreMarks         = 0x0008u,
259     IgnoreFlags         = 0x000Eu,
260     UseMarkFilteringSet = 0x0010u,
261     Reserved            = 0x00E0u,
262     MarkAttachmentType  = 0xFF00u
263   };
264 };
265 ASSERT_SIZE (LookupFlag, 2);
266
267 struct LookupSubTable
268 {
269   inline bool sanitize (SANITIZE_ARG_DEF) {
270     TRACE_SANITIZE ();
271     return SANITIZE_SELF ();
272   }
273
274   private:
275   USHORT        format;         /* Subtable format.  Different for GSUB and GPOS */
276 };
277 ASSERT_SIZE (LookupSubTable, 2);
278
279 struct Lookup
280 {
281   inline const LookupSubTable& get_subtable (unsigned int i) const { return this+subTable[i]; }
282   inline unsigned int get_subtable_count (void) const { return subTable.len; }
283
284   inline unsigned int get_type (void) const { return lookupType; }
285   inline unsigned int get_flag (void) const
286   {
287     unsigned int flag = lookupFlag;
288     if (HB_UNLIKELY (flag & LookupFlag::UseMarkFilteringSet))
289     {
290       const USHORT &markFilteringSet = StructAfter<USHORT> (subTable);
291       flag += (markFilteringSet << 16);
292     }
293     return flag;
294   }
295
296   inline bool sanitize (SANITIZE_ARG_DEF) {
297     TRACE_SANITIZE ();
298     /* We sanitize subtables shallow here since we don't have their actual
299      * type.  Real sanitize of the referenced data is done by GSUB/GPOS/... */
300     if (!(SANITIZE_SELF () && HB_LIKELY (subTable.sanitize_shallow (SANITIZE_ARG)))) return false;
301     if (HB_UNLIKELY (lookupFlag & LookupFlag::UseMarkFilteringSet))
302     {
303       USHORT &markFilteringSet = StructAfter<USHORT> (subTable);
304       if (!SANITIZE (markFilteringSet)) return false;
305     }
306     return true;
307   }
308
309   USHORT        lookupType;             /* Different enumerations for GSUB and GPOS */
310   USHORT        lookupFlag;             /* Lookup qualifiers */
311   OffsetArrayOf<LookupSubTable>
312                 subTable;               /* Array of SubTables */
313   USHORT        markFilteringSetX[VAR]; /* Index (base 0) into GDEF mark glyph sets
314                                          * structure. This field is only present if bit
315                                          * UseMarkFilteringSet of lookup flags is set. */
316 };
317 ASSERT_SIZE_VAR (Lookup, 6, USHORT);
318
319 typedef OffsetListOf<Lookup> LookupList;
320 ASSERT_SIZE (LookupList, 2);
321
322
323 /*
324  * Coverage Table
325  */
326
327 struct CoverageFormat1
328 {
329   friend struct Coverage;
330
331   private:
332   inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
333   {
334     if (HB_UNLIKELY (glyph_id > 0xFFFF))
335       return NOT_COVERED;
336     GlyphID gid;
337     gid.set (glyph_id);
338     // TODO: bsearch
339     unsigned int num_glyphs = glyphArray.len;
340     for (unsigned int i = 0; i < num_glyphs; i++)
341       if (gid == glyphArray[i])
342         return i;
343     return NOT_COVERED;
344   }
345
346   inline bool sanitize (SANITIZE_ARG_DEF) {
347     TRACE_SANITIZE ();
348     return SANITIZE (glyphArray);
349   }
350
351   private:
352   USHORT        coverageFormat; /* Format identifier--format = 1 */
353   ArrayOf<GlyphID>
354                 glyphArray;     /* Array of GlyphIDs--in numerical order */
355 };
356 ASSERT_SIZE (CoverageFormat1, 4);
357
358 struct CoverageRangeRecord
359 {
360   friend struct CoverageFormat2;
361
362   static inline unsigned int get_size () { return sizeof (CoverageRangeRecord); }
363
364   private:
365   inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
366   {
367     if (glyph_id >= start && glyph_id <= end)
368       return (unsigned int) startCoverageIndex + (glyph_id - start);
369     return NOT_COVERED;
370   }
371
372   public:
373   inline bool sanitize (SANITIZE_ARG_DEF) {
374     TRACE_SANITIZE ();
375     return SANITIZE_SELF ();
376   }
377
378   private:
379   GlyphID       start;                  /* First GlyphID in the range */
380   GlyphID       end;                    /* Last GlyphID in the range */
381   USHORT        startCoverageIndex;     /* Coverage Index of first GlyphID in
382                                          * range */
383 };
384 ASSERT_SIZE (CoverageRangeRecord, 6);
385 DEFINE_NULL_DATA (CoverageRangeRecord, 6, "\000\001");
386
387 struct CoverageFormat2
388 {
389   friend struct Coverage;
390
391   private:
392   inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
393   {
394     // TODO: bsearch
395     unsigned int count = rangeRecord.len;
396     for (unsigned int i = 0; i < count; i++)
397     {
398       unsigned int coverage = rangeRecord[i].get_coverage (glyph_id);
399       if (coverage != NOT_COVERED)
400         return coverage;
401     }
402     return NOT_COVERED;
403   }
404
405   inline bool sanitize (SANITIZE_ARG_DEF) {
406     TRACE_SANITIZE ();
407     return SANITIZE (rangeRecord);
408   }
409
410   private:
411   USHORT        coverageFormat; /* Format identifier--format = 2 */
412   ArrayOf<CoverageRangeRecord>
413                 rangeRecord;    /* Array of glyph ranges--ordered by
414                                  * Start GlyphID. rangeCount entries
415                                  * long */
416 };
417 ASSERT_SIZE (CoverageFormat2, 4);
418
419 struct Coverage
420 {
421   inline unsigned int operator () (hb_codepoint_t glyph_id) const { return get_coverage (glyph_id); }
422
423   inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
424   {
425     switch (u.format) {
426     case 1: return u.format1->get_coverage(glyph_id);
427     case 2: return u.format2->get_coverage(glyph_id);
428     default:return NOT_COVERED;
429     }
430   }
431
432   inline bool sanitize (SANITIZE_ARG_DEF) {
433     TRACE_SANITIZE ();
434     if (!SANITIZE (u.format)) return false;
435     switch (u.format) {
436     case 1: return u.format1->sanitize (SANITIZE_ARG);
437     case 2: return u.format2->sanitize (SANITIZE_ARG);
438     default:return true;
439     }
440   }
441
442   private:
443   union {
444   USHORT                format;         /* Format identifier */
445   CoverageFormat1       format1[VAR];
446   CoverageFormat2       format2[VAR];
447   } u;
448 };
449
450
451 /*
452  * Class Definition Table
453  */
454
455 struct ClassDefFormat1
456 {
457   friend struct ClassDef;
458
459   private:
460   inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
461   {
462     if ((unsigned int) (glyph_id - startGlyph) < classValue.len)
463       return classValue[glyph_id - startGlyph];
464     return 0;
465   }
466
467   inline bool sanitize (SANITIZE_ARG_DEF) {
468     TRACE_SANITIZE ();
469     return SANITIZE_SELF () && SANITIZE (classValue);
470   }
471
472   USHORT        classFormat;            /* Format identifier--format = 1 */
473   GlyphID       startGlyph;             /* First GlyphID of the classValueArray */
474   ArrayOf<USHORT>
475                 classValue;             /* Array of Class Values--one per GlyphID */
476 };
477 ASSERT_SIZE (ClassDefFormat1, 6);
478
479 struct ClassRangeRecord
480 {
481   friend struct ClassDefFormat2;
482
483   static inline unsigned int get_size () { return sizeof (ClassRangeRecord); }
484
485   private:
486   inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
487   {
488     if (glyph_id >= start && glyph_id <= end)
489       return classValue;
490     return 0;
491   }
492
493   public:
494   inline bool sanitize (SANITIZE_ARG_DEF) {
495     TRACE_SANITIZE ();
496     return SANITIZE_SELF ();
497   }
498
499   private:
500   GlyphID       start;          /* First GlyphID in the range */
501   GlyphID       end;            /* Last GlyphID in the range */
502   USHORT        classValue;     /* Applied to all glyphs in the range */
503 };
504 ASSERT_SIZE (ClassRangeRecord, 6);
505 DEFINE_NULL_DATA (ClassRangeRecord, 6, "\000\001");
506
507 struct ClassDefFormat2
508 {
509   friend struct ClassDef;
510
511   private:
512   inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
513   {
514     // TODO: bsearch
515     unsigned int count = rangeRecord.len;
516     for (unsigned int i = 0; i < count; i++)
517     {
518       int classValue = rangeRecord[i].get_class (glyph_id);
519       if (classValue > 0)
520         return classValue;
521     }
522     return 0;
523   }
524
525   inline bool sanitize (SANITIZE_ARG_DEF) {
526     TRACE_SANITIZE ();
527     return SANITIZE (rangeRecord);
528   }
529
530   USHORT        classFormat;    /* Format identifier--format = 2 */
531   ArrayOf<ClassRangeRecord>
532                 rangeRecord;    /* Array of glyph ranges--ordered by
533                                  * Start GlyphID */
534 };
535 ASSERT_SIZE (ClassDefFormat2, 4);
536
537 struct ClassDef
538 {
539   inline hb_ot_layout_class_t operator () (hb_codepoint_t glyph_id) const { return get_class (glyph_id); }
540
541   inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const
542   {
543     switch (u.format) {
544     case 1: return u.format1->get_class(glyph_id);
545     case 2: return u.format2->get_class(glyph_id);
546     default:return 0;
547     }
548   }
549
550   inline bool sanitize (SANITIZE_ARG_DEF) {
551     TRACE_SANITIZE ();
552     if (!SANITIZE (u.format)) return false;
553     switch (u.format) {
554     case 1: return u.format1->sanitize (SANITIZE_ARG);
555     case 2: return u.format2->sanitize (SANITIZE_ARG);
556     default:return true;
557     }
558   }
559
560   private:
561   union {
562   USHORT                format;         /* Format identifier */
563   ClassDefFormat1       format1[VAR];
564   ClassDefFormat2       format2[VAR];
565   } u;
566 };
567
568
569 /*
570  * Device Tables
571  */
572
573 struct Device
574 {
575   inline int operator () (unsigned int ppem_size) const { return get_delta (ppem_size); }
576
577   inline int get_delta (unsigned int ppem_size) const
578   {
579     unsigned int f = deltaFormat;
580     if (HB_UNLIKELY (f < 1 || f > 3))
581       return 0;
582
583     if (ppem_size < startSize || ppem_size > endSize)
584       return 0;
585
586     unsigned int s = ppem_size - startSize;
587
588     unsigned int byte = deltaValue[s >> (4 - f)];
589     unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
590     unsigned int mask = (0xFFFF >> (16 - (1 << f)));
591
592     int delta = bits & mask;
593
594     if ((unsigned int) delta >= ((mask + 1) >> 1))
595       delta -= mask + 1;
596
597     return delta;
598   }
599
600   inline unsigned int get_size () const
601   {
602     unsigned int f = deltaFormat;
603     if (HB_UNLIKELY (f < 1 || f > 3 || startSize > endSize)) return 3 * USHORT::get_size ();
604     return 3 * USHORT::get_size () + ((endSize - startSize + (1 << (4 - f)) - 1) >> (4 - f));
605   }
606
607   inline bool sanitize (SANITIZE_ARG_DEF) {
608     TRACE_SANITIZE ();
609     return SANITIZE_SELF() && SANITIZE_MEM (this, this->get_size ());
610   }
611
612   private:
613   USHORT        startSize;              /* Smallest size to correct--in ppem */
614   USHORT        endSize;                /* Largest size to correct--in ppem */
615   USHORT        deltaFormat;            /* Format of DeltaValue array data: 1, 2, or 3 */
616   USHORT        deltaValue[VAR];        /* Array of compressed data */
617 };
618 ASSERT_SIZE_VAR (Device, 6, USHORT);
619
620
621 #endif /* HB_OT_LAYOUT_COMMON_PRIVATE_HH */