2009-08-03 01:57:00 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009 Red Hat, Inc.
|
2012-05-11 01:25:34 +02:00
|
|
|
* Copyright © 2012 Google, Inc.
|
2009-08-03 01:57:00 +02:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-08-03 01:57:00 +02:00
|
|
|
*
|
|
|
|
* 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
|
2012-05-11 01:25:34 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2009-08-03 01:57:00 +02:00
|
|
|
*/
|
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#ifndef HB_OPEN_FILE_PRIVATE_HH
|
|
|
|
#define HB_OPEN_FILE_PRIVATE_HH
|
2009-08-03 01:57:00 +02:00
|
|
|
|
2009-08-05 04:06:57 +02:00
|
|
|
#include "hb-open-type-private.hh"
|
2009-08-03 01:57:00 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
namespace OT {
|
|
|
|
|
2009-08-03 01:57:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* The OpenType Font File
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Organization of an OpenType Font
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct OpenTypeFontFile;
|
|
|
|
struct OffsetTable;
|
|
|
|
struct TTCHeader;
|
|
|
|
|
2010-05-10 22:38:32 +02:00
|
|
|
|
2010-12-15 05:51:29 +01:00
|
|
|
typedef struct TableRecord
|
2009-08-03 01:57:00 +02:00
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (c->check_struct (this));
|
2009-08-04 21:07:24 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 01:57:00 +02:00
|
|
|
Tag tag; /* 4-byte identifier. */
|
|
|
|
CheckSum checkSum; /* CheckSum for this table. */
|
|
|
|
ULONG offset; /* Offset from beginning of TrueType font
|
|
|
|
* file. */
|
|
|
|
ULONG length; /* Length of this table. */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (16);
|
2009-08-03 01:57:00 +02:00
|
|
|
} OpenTypeTable;
|
|
|
|
|
|
|
|
typedef struct OffsetTable
|
|
|
|
{
|
|
|
|
friend struct OpenTypeFontFile;
|
|
|
|
|
2009-08-08 01:46:30 +02:00
|
|
|
inline unsigned int get_table_count (void) const
|
|
|
|
{ return numTables; }
|
2010-12-15 05:51:29 +01:00
|
|
|
inline const TableRecord& get_table (unsigned int i) const
|
2009-08-08 01:46:30 +02:00
|
|
|
{
|
2010-12-15 05:51:29 +01:00
|
|
|
if (unlikely (i >= numTables)) return Null(TableRecord);
|
|
|
|
return tables[i];
|
2009-08-08 01:46:30 +02:00
|
|
|
}
|
|
|
|
inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const
|
|
|
|
{
|
2010-04-21 06:14:12 +02:00
|
|
|
Tag t;
|
|
|
|
t.set (tag);
|
2009-08-08 01:46:30 +02:00
|
|
|
unsigned int count = numTables;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
{
|
2010-12-15 05:51:29 +01:00
|
|
|
if (t == tables[i].tag)
|
2009-08-08 01:46:30 +02:00
|
|
|
{
|
|
|
|
if (table_index) *table_index = i;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2010-05-11 04:22:22 +02:00
|
|
|
if (table_index) *table_index = Index::NOT_FOUND_INDEX;
|
2009-08-08 01:46:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-12-15 05:51:29 +01:00
|
|
|
inline const TableRecord& get_table_by_tag (hb_tag_t tag) const
|
2009-08-08 01:46:30 +02:00
|
|
|
{
|
|
|
|
unsigned int table_index;
|
|
|
|
find_table_index (tag, &table_index);
|
|
|
|
return get_table (table_index);
|
|
|
|
}
|
2009-08-04 21:07:24 +02:00
|
|
|
|
|
|
|
public:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (c->check_struct (this) && c->check_array (tables, TableRecord::static_size, numTables));
|
2009-08-04 21:07:24 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-08-03 01:57:00 +02:00
|
|
|
Tag sfnt_version; /* '\0\001\0\00' if TrueType / 'OTTO' if CFF */
|
|
|
|
USHORT numTables; /* Number of tables. */
|
|
|
|
USHORT searchRange; /* (Maximum power of 2 <= numTables) x 16 */
|
|
|
|
USHORT entrySelector; /* Log2(maximum power of 2 <= numTables). */
|
|
|
|
USHORT rangeShift; /* NumTables x 16-searchRange. */
|
2010-12-15 05:51:29 +01:00
|
|
|
TableRecord tables[VAR]; /* TableRecord entries. numTables items */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2010-12-15 05:51:29 +01:00
|
|
|
DEFINE_SIZE_ARRAY (12, tables);
|
2009-08-03 01:57:00 +02:00
|
|
|
} OpenTypeFontFace;
|
2010-05-10 22:38:32 +02:00
|
|
|
|
2009-08-03 01:57:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TrueType Collections
|
|
|
|
*/
|
|
|
|
|
2010-04-23 18:33:02 +02:00
|
|
|
struct TTCHeaderVersion1
|
2009-08-03 01:57:00 +02:00
|
|
|
{
|
2010-04-23 18:33:02 +02:00
|
|
|
friend struct TTCHeader;
|
2009-08-03 01:57:00 +02:00
|
|
|
|
2009-08-11 01:00:36 +02:00
|
|
|
inline unsigned int get_face_count (void) const { return table.len; }
|
2010-04-22 20:11:33 +02:00
|
|
|
inline const OpenTypeFontFace& get_face (unsigned int i) const { return this+table[i]; }
|
2009-08-04 21:07:24 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
return TRACE_RETURN (table.sanitize (c, this));
|
2009-08-04 21:07:24 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-08-03 01:57:00 +02:00
|
|
|
Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
|
2010-04-23 18:33:02 +02:00
|
|
|
FixedVersion version; /* Version of the TTC Header (1.0),
|
|
|
|
* 0x00010000 */
|
2014-06-27 21:24:35 +02:00
|
|
|
ArrayOf<OffsetTo<OffsetTable, ULONG>, ULONG>
|
2009-08-03 01:57:00 +02:00
|
|
|
table; /* Array of offsets to the OffsetTable for each font
|
|
|
|
* from the beginning of the file */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (12, table);
|
2009-08-03 01:57:00 +02:00
|
|
|
};
|
2010-04-23 18:33:02 +02:00
|
|
|
|
|
|
|
struct TTCHeader
|
|
|
|
{
|
|
|
|
friend struct OpenTypeFontFile;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
inline unsigned int get_face_count (void) const
|
|
|
|
{
|
2011-05-31 18:33:11 +02:00
|
|
|
switch (u.header.version.major) {
|
2010-04-23 18:33:02 +02:00
|
|
|
case 2: /* version 2 is compatible with version 1 */
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.version1.get_face_count ();
|
2010-04-23 18:33:02 +02:00
|
|
|
default:return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inline const OpenTypeFontFace& get_face (unsigned int i) const
|
|
|
|
{
|
2011-05-31 18:33:11 +02:00
|
|
|
switch (u.header.version.major) {
|
2010-04-23 18:33:02 +02:00
|
|
|
case 2: /* version 2 is compatible with version 1 */
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.version1.get_face (i);
|
2010-04-23 19:32:03 +02:00
|
|
|
default:return Null(OpenTypeFontFace);
|
2010-04-23 18:33:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (unlikely (!u.header.version.sanitize (c))) return TRACE_RETURN (false);
|
2011-05-31 18:33:11 +02:00
|
|
|
switch (u.header.version.major) {
|
2010-04-23 18:33:02 +02:00
|
|
|
case 2: /* version 2 is compatible with version 1 */
|
2012-05-11 01:25:34 +02:00
|
|
|
case 1: return TRACE_RETURN (u.version1.sanitize (c));
|
|
|
|
default:return TRACE_RETURN (true);
|
2010-04-23 18:33:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2010-04-23 18:33:02 +02:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
|
|
|
|
FixedVersion version; /* Version of the TTC Header (1.0 or 2.0),
|
|
|
|
* 0x00010000 or 0x00020000 */
|
|
|
|
} header;
|
2010-05-11 01:45:41 +02:00
|
|
|
TTCHeaderVersion1 version1;
|
2010-04-23 18:33:02 +02:00
|
|
|
} u;
|
|
|
|
};
|
2009-08-03 01:57:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OpenType Font File
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct OpenTypeFontFile
|
|
|
|
{
|
2010-05-04 05:11:16 +02:00
|
|
|
static const hb_tag_t CFFTag = HB_TAG ('O','T','T','O'); /* OpenType with Postscript outlines */
|
|
|
|
static const hb_tag_t TrueTypeTag = HB_TAG ( 0 , 1 , 0 , 0 ); /* OpenType with TrueType outlines */
|
|
|
|
static const hb_tag_t TTCTag = HB_TAG ('t','t','c','f'); /* TrueType Collection */
|
2010-05-04 20:10:18 +02:00
|
|
|
static const hb_tag_t TrueTag = HB_TAG ('t','r','u','e'); /* Obsolete Apple TrueType */
|
|
|
|
static const hb_tag_t Typ1Tag = HB_TAG ('t','y','p','1'); /* Obsolete Apple Type1 font in SFNT container */
|
2009-08-03 01:57:00 +02:00
|
|
|
|
2010-04-23 19:32:03 +02:00
|
|
|
inline hb_tag_t get_tag (void) const { return u.tag; }
|
|
|
|
|
2009-08-11 01:00:36 +02:00
|
|
|
inline unsigned int get_face_count (void) const
|
2009-08-03 01:57:00 +02:00
|
|
|
{
|
2010-04-23 19:32:03 +02:00
|
|
|
switch (u.tag) {
|
|
|
|
case CFFTag: /* All the non-collection tags */
|
2010-05-03 21:03:53 +02:00
|
|
|
case TrueTag:
|
|
|
|
case Typ1Tag:
|
2010-04-23 19:32:03 +02:00
|
|
|
case TrueTypeTag: return 1;
|
2010-05-11 01:45:41 +02:00
|
|
|
case TTCTag: return u.ttcHeader.get_face_count ();
|
2010-04-23 19:32:03 +02:00
|
|
|
default: return 0;
|
2009-08-03 01:57:00 +02:00
|
|
|
}
|
|
|
|
}
|
2009-08-11 01:00:36 +02:00
|
|
|
inline const OpenTypeFontFace& get_face (unsigned int i) const
|
2009-08-03 01:57:00 +02:00
|
|
|
{
|
2010-04-23 19:32:03 +02:00
|
|
|
switch (u.tag) {
|
2009-08-03 01:57:00 +02:00
|
|
|
/* Note: for non-collection SFNT data we ignore index. This is because
|
|
|
|
* Apple dfont container is a container of SFNT's. So each SFNT is a
|
|
|
|
* non-TTC, but the index is more than zero. */
|
2010-04-23 19:32:03 +02:00
|
|
|
case CFFTag: /* All the non-collection tags */
|
2010-05-03 21:03:53 +02:00
|
|
|
case TrueTag:
|
|
|
|
case Typ1Tag:
|
2010-05-11 01:45:41 +02:00
|
|
|
case TrueTypeTag: return u.fontFace;
|
|
|
|
case TTCTag: return u.ttcHeader.get_face (i);
|
2010-04-23 19:32:03 +02:00
|
|
|
default: return Null(OpenTypeFontFace);
|
2009-08-03 01:57:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2012-05-11 01:25:34 +02:00
|
|
|
if (unlikely (!u.tag.sanitize (c))) return TRACE_RETURN (false);
|
2010-04-23 19:32:03 +02:00
|
|
|
switch (u.tag) {
|
|
|
|
case CFFTag: /* All the non-collection tags */
|
2010-05-03 21:03:53 +02:00
|
|
|
case TrueTag:
|
|
|
|
case Typ1Tag:
|
2012-05-11 01:25:34 +02:00
|
|
|
case TrueTypeTag: return TRACE_RETURN (u.fontFace.sanitize (c));
|
|
|
|
case TTCTag: return TRACE_RETURN (u.ttcHeader.sanitize (c));
|
|
|
|
default: return TRACE_RETURN (true);
|
2009-08-04 21:07:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2010-04-23 19:32:03 +02:00
|
|
|
union {
|
|
|
|
Tag tag; /* 4-byte identifier. */
|
2010-05-11 01:45:41 +02:00
|
|
|
OpenTypeFontFace fontFace;
|
|
|
|
TTCHeader ttcHeader;
|
2010-04-23 19:32:03 +02:00
|
|
|
} u;
|
2010-05-11 01:45:41 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_UNION (4, tag);
|
2009-08-03 01:57:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-11-17 03:49:54 +01:00
|
|
|
} /* namespace OT */
|
2012-08-28 23:57:49 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#endif /* HB_OPEN_FILE_PRIVATE_HH */
|