blob: 62e1f1700afb0e1cc0911068df19fde67c85de05 [file] [log] [blame]
Behdad Esfahbod2098a022009-08-02 19:57:00 -04001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 2007,2008,2009 Red Hat, Inc.
Behdad Esfahbod2098a022009-08-02 19:57:00 -04003 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04004 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbod2098a022009-08-02 19:57:00 -04005 *
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
Behdad Esfahbod5f5b24f2009-08-02 20:03:12 -040027#ifndef HB_OPEN_FILE_PRIVATE_HH
28#define HB_OPEN_FILE_PRIVATE_HH
Behdad Esfahbod2098a022009-08-02 19:57:00 -040029
Behdad Esfahbod7edb4302009-08-04 22:06:57 -040030#include "hb-open-type-private.hh"
Behdad Esfahbod2098a022009-08-02 19:57:00 -040031
Behdad Esfahbodacdba3f2010-07-23 15:11:18 -040032
Behdad Esfahbod2098a022009-08-02 19:57:00 -040033
34/*
35 *
36 * The OpenType Font File
37 *
38 */
39
40
41/*
42 * Organization of an OpenType Font
43 */
44
45struct OpenTypeFontFile;
46struct OffsetTable;
47struct TTCHeader;
48
Behdad Esfahbod569da922010-05-10 16:38:32 -040049
Behdad Esfahbod22c53762010-12-14 23:51:29 -050050typedef struct TableRecord
Behdad Esfahbod2098a022009-08-02 19:57:00 -040051{
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -040052 inline bool sanitize (hb_sanitize_context_t *c) {
Behdad Esfahbod3e2401f2009-08-28 17:17:11 -040053 TRACE_SANITIZE ();
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -040054 return c->check_struct (this);
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -040055 }
56
Behdad Esfahbod2098a022009-08-02 19:57:00 -040057 Tag tag; /* 4-byte identifier. */
58 CheckSum checkSum; /* CheckSum for this table. */
59 ULONG offset; /* Offset from beginning of TrueType font
60 * file. */
61 ULONG length; /* Length of this table. */
Behdad Esfahbod569da922010-05-10 16:38:32 -040062 public:
63 DEFINE_SIZE_STATIC (16);
Behdad Esfahbod2098a022009-08-02 19:57:00 -040064} OpenTypeTable;
Behdad Esfahbod2098a022009-08-02 19:57:00 -040065
66typedef struct OffsetTable
67{
68 friend struct OpenTypeFontFile;
Behdad Esfahbod2098a022009-08-02 19:57:00 -040069
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040070 inline unsigned int get_table_count (void) const
71 { return numTables; }
Behdad Esfahbod22c53762010-12-14 23:51:29 -050072 inline const TableRecord& get_table (unsigned int i) const
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040073 {
Behdad Esfahbod22c53762010-12-14 23:51:29 -050074 if (unlikely (i >= numTables)) return Null(TableRecord);
75 return tables[i];
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040076 }
77 inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const
78 {
Behdad Esfahbodffd321a2010-04-21 00:14:12 -040079 Tag t;
80 t.set (tag);
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040081 unsigned int count = numTables;
82 for (unsigned int i = 0; i < count; i++)
83 {
Behdad Esfahbod22c53762010-12-14 23:51:29 -050084 if (t == tables[i].tag)
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040085 {
86 if (table_index) *table_index = i;
87 return true;
88 }
89 }
Behdad Esfahbodb5db4f12010-05-10 22:22:22 -040090 if (table_index) *table_index = Index::NOT_FOUND_INDEX;
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040091 return false;
92 }
Behdad Esfahbod22c53762010-12-14 23:51:29 -050093 inline const TableRecord& get_table_by_tag (hb_tag_t tag) const
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -040094 {
95 unsigned int table_index;
96 find_table_index (tag, &table_index);
97 return get_table (table_index);
98 }
Behdad Esfahbod2098a022009-08-02 19:57:00 -040099
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -0400100 public:
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400101 inline bool sanitize (hb_sanitize_context_t *c) {
Behdad Esfahbod3e2401f2009-08-28 17:17:11 -0400102 TRACE_SANITIZE ();
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400103 return c->check_struct (this)
Behdad Esfahbod22c53762010-12-14 23:51:29 -0500104 && c->check_array (tables, TableRecord::static_size, numTables);
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -0400105 }
106
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400107 private:
108 Tag sfnt_version; /* '\0\001\0\00' if TrueType / 'OTTO' if CFF */
109 USHORT numTables; /* Number of tables. */
110 USHORT searchRange; /* (Maximum power of 2 <= numTables) x 16 */
111 USHORT entrySelector; /* Log2(maximum power of 2 <= numTables). */
112 USHORT rangeShift; /* NumTables x 16-searchRange. */
Behdad Esfahbod22c53762010-12-14 23:51:29 -0500113 TableRecord tables[VAR]; /* TableRecord entries. numTables items */
Behdad Esfahbod569da922010-05-10 16:38:32 -0400114 public:
Behdad Esfahbod22c53762010-12-14 23:51:29 -0500115 DEFINE_SIZE_ARRAY (12, tables);
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400116} OpenTypeFontFace;
Behdad Esfahbod569da922010-05-10 16:38:32 -0400117
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400118
119/*
120 * TrueType Collections
121 */
122
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400123struct TTCHeaderVersion1
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400124{
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400125 friend struct TTCHeader;
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400126
Behdad Esfahbod20b035d2009-08-10 19:00:36 -0400127 inline unsigned int get_face_count (void) const { return table.len; }
Behdad Esfahboddf3f5052010-04-22 14:11:33 -0400128 inline const OpenTypeFontFace& get_face (unsigned int i) const { return this+table[i]; }
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -0400129
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400130 inline bool sanitize (hb_sanitize_context_t *c) {
Behdad Esfahbod3e2401f2009-08-28 17:17:11 -0400131 TRACE_SANITIZE ();
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400132 return table.sanitize (c, this);
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -0400133 }
134
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400135 private:
136 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400137 FixedVersion version; /* Version of the TTC Header (1.0),
138 * 0x00010000 */
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400139 LongOffsetLongArrayOf<OffsetTable>
140 table; /* Array of offsets to the OffsetTable for each font
141 * from the beginning of the file */
Behdad Esfahbodb3651232010-05-10 16:57:29 -0400142 public:
Behdad Esfahbod0eb9fc62010-05-10 19:01:17 -0400143 DEFINE_SIZE_ARRAY (12, table);
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400144};
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400145
146struct TTCHeader
147{
148 friend struct OpenTypeFontFile;
149
150 private:
151
152 inline unsigned int get_face_count (void) const
153 {
Behdad Esfahbod4f28fbd2011-05-31 12:33:11 -0400154 switch (u.header.version.major) {
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400155 case 2: /* version 2 is compatible with version 1 */
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400156 case 1: return u.version1.get_face_count ();
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400157 default:return 0;
158 }
159 }
160 inline const OpenTypeFontFace& get_face (unsigned int i) const
161 {
Behdad Esfahbod4f28fbd2011-05-31 12:33:11 -0400162 switch (u.header.version.major) {
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400163 case 2: /* version 2 is compatible with version 1 */
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400164 case 1: return u.version1.get_face (i);
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400165 default:return Null(OpenTypeFontFace);
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400166 }
167 }
168
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400169 inline bool sanitize (hb_sanitize_context_t *c) {
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400170 TRACE_SANITIZE ();
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400171 if (unlikely (!u.header.version.sanitize (c))) return false;
Behdad Esfahbod4f28fbd2011-05-31 12:33:11 -0400172 switch (u.header.version.major) {
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400173 case 2: /* version 2 is compatible with version 1 */
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400174 case 1: return u.version1.sanitize (c);
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400175 default:return true;
176 }
177 }
178
179 private:
180 union {
181 struct {
182 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
183 FixedVersion version; /* Version of the TTC Header (1.0 or 2.0),
184 * 0x00010000 or 0x00020000 */
185 } header;
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400186 TTCHeaderVersion1 version1;
Behdad Esfahbodae4190c2010-04-23 12:33:02 -0400187 } u;
188};
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400189
190
191/*
192 * OpenType Font File
193 */
194
195struct OpenTypeFontFile
196{
Behdad Esfahbod710500a2010-05-03 23:11:16 -0400197 static const hb_tag_t CFFTag = HB_TAG ('O','T','T','O'); /* OpenType with Postscript outlines */
198 static const hb_tag_t TrueTypeTag = HB_TAG ( 0 , 1 , 0 , 0 ); /* OpenType with TrueType outlines */
199 static const hb_tag_t TTCTag = HB_TAG ('t','t','c','f'); /* TrueType Collection */
Behdad Esfahbodce5694c2010-05-04 14:10:18 -0400200 static const hb_tag_t TrueTag = HB_TAG ('t','r','u','e'); /* Obsolete Apple TrueType */
201 static const hb_tag_t Typ1Tag = HB_TAG ('t','y','p','1'); /* Obsolete Apple Type1 font in SFNT container */
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400202
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400203 inline hb_tag_t get_tag (void) const { return u.tag; }
204
Behdad Esfahbod20b035d2009-08-10 19:00:36 -0400205 inline unsigned int get_face_count (void) const
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400206 {
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400207 switch (u.tag) {
208 case CFFTag: /* All the non-collection tags */
Jeff Muizelaar4ce578e2010-05-03 15:03:53 -0400209 case TrueTag:
210 case Typ1Tag:
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400211 case TrueTypeTag: return 1;
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400212 case TTCTag: return u.ttcHeader.get_face_count ();
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400213 default: return 0;
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400214 }
215 }
Behdad Esfahbod20b035d2009-08-10 19:00:36 -0400216 inline const OpenTypeFontFace& get_face (unsigned int i) const
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400217 {
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400218 switch (u.tag) {
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400219 /* Note: for non-collection SFNT data we ignore index. This is because
220 * Apple dfont container is a container of SFNT's. So each SFNT is a
221 * non-TTC, but the index is more than zero. */
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400222 case CFFTag: /* All the non-collection tags */
Jeff Muizelaar4ce578e2010-05-03 15:03:53 -0400223 case TrueTag:
224 case Typ1Tag:
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400225 case TrueTypeTag: return u.fontFace;
226 case TTCTag: return u.ttcHeader.get_face (i);
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400227 default: return Null(OpenTypeFontFace);
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400228 }
229 }
230
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400231 inline bool sanitize (hb_sanitize_context_t *c) {
Behdad Esfahbod3e2401f2009-08-28 17:17:11 -0400232 TRACE_SANITIZE ();
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400233 if (unlikely (!u.tag.sanitize (c))) return false;
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400234 switch (u.tag) {
235 case CFFTag: /* All the non-collection tags */
Jeff Muizelaar4ce578e2010-05-03 15:03:53 -0400236 case TrueTag:
237 case Typ1Tag:
Behdad Esfahbodd7cfb3b2010-05-13 14:18:49 -0400238 case TrueTypeTag: return u.fontFace.sanitize (c);
239 case TTCTag: return u.ttcHeader.sanitize (c);
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400240 default: return true;
Behdad Esfahbodb508e5c2009-08-04 15:07:24 -0400241 }
242 }
243
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400244 private:
245 union {
246 Tag tag; /* 4-byte identifier. */
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400247 OpenTypeFontFace fontFace;
248 TTCHeader ttcHeader;
Behdad Esfahbod1aa46662010-04-23 13:32:03 -0400249 } u;
Behdad Esfahboddacebca2010-05-10 19:45:41 -0400250 public:
251 DEFINE_SIZE_UNION (4, tag);
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400252};
Behdad Esfahbod2098a022009-08-02 19:57:00 -0400253
254
Behdad Esfahbodacdba3f2010-07-23 15:11:18 -0400255
Behdad Esfahbod5f5b24f2009-08-02 20:03:12 -0400256#endif /* HB_OPEN_FILE_PRIVATE_HH */