2014-05-09 21:35:56 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2014 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping 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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_OT_CMAP_TABLE_HH
|
|
|
|
#define HB_OT_CMAP_TABLE_HH
|
|
|
|
|
|
|
|
#include "hb-open-type-private.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cmap -- Character To Glyph Index Mapping Table
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HB_OT_TAG_cmap HB_TAG('c','m','a','p')
|
|
|
|
|
|
|
|
|
|
|
|
struct CmapSubtableFormat4
|
|
|
|
{
|
|
|
|
friend struct CmapSubtable;
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool get_glyph (hb_codepoint_t codepoint, hb_codepoint_t *glyph) const
|
|
|
|
{
|
2014-05-10 01:55:51 +02:00
|
|
|
unsigned int segCount;
|
|
|
|
const USHORT *endCount;
|
|
|
|
const USHORT *startCount;
|
|
|
|
const USHORT *idDelta;
|
|
|
|
const USHORT *idRangeOffset;
|
|
|
|
const USHORT *glyphIdArray;
|
|
|
|
unsigned int glyphIdArrayLength;
|
|
|
|
|
|
|
|
segCount = this->segCountX2 / 2;
|
|
|
|
endCount = this->values;
|
|
|
|
startCount = endCount + segCount + 1;
|
|
|
|
idDelta = startCount + segCount;
|
|
|
|
idRangeOffset = idDelta + segCount;
|
|
|
|
glyphIdArray = idRangeOffset + segCount;
|
|
|
|
glyphIdArrayLength = (this->length - 16 - 8 * segCount) / 2;
|
|
|
|
|
|
|
|
/* Custom bsearch. */
|
|
|
|
int min = 0, max = (int) segCount - 1;
|
|
|
|
unsigned int i;
|
|
|
|
while (min <= max)
|
|
|
|
{
|
|
|
|
int mid = (min + max) / 2;
|
|
|
|
if (codepoint < startCount[mid])
|
|
|
|
max = mid - 1;
|
|
|
|
else if (codepoint > endCount[mid])
|
|
|
|
min = mid + 1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i = mid;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
2014-05-09 21:35:56 +02:00
|
|
|
return false;
|
2014-05-10 01:55:51 +02:00
|
|
|
|
|
|
|
found:
|
|
|
|
hb_codepoint_t gid;
|
|
|
|
unsigned int rangeOffset = idRangeOffset[i];
|
|
|
|
if (rangeOffset == 0)
|
|
|
|
gid = codepoint + idDelta[i];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Somebody has been smoking... */
|
|
|
|
unsigned int index = rangeOffset / 2 + (codepoint - startCount[i]) + i - segCount;
|
|
|
|
if (unlikely (index >= glyphIdArrayLength))
|
|
|
|
return false;
|
|
|
|
gid = glyphIdArray[index];
|
|
|
|
if (unlikely (!gid))
|
|
|
|
return false;
|
|
|
|
gid += idDelta[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
*glyph = gid & 0xFFFF;
|
|
|
|
return true;
|
2014-05-09 21:35:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) &&
|
|
|
|
c->check_range (this, length) &&
|
|
|
|
16 + 4 * (unsigned int) segCountX2 < length);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
USHORT format; /* Format number is set to 4. */
|
|
|
|
USHORT length; /* This is the length in bytes of the
|
|
|
|
* subtable. */
|
|
|
|
USHORT language; /* Ignore. */
|
|
|
|
USHORT segCountX2; /* 2 x segCount. */
|
|
|
|
USHORT searchRange; /* 2 * (2**floor(log2(segCount))) */
|
|
|
|
USHORT entrySelector; /* log2(searchRange/2) */
|
|
|
|
USHORT rangeShift; /* 2 x segCount - searchRange */
|
|
|
|
|
|
|
|
USHORT values[VAR];
|
|
|
|
#if 0
|
|
|
|
USHORT endCount[segCount]; /* End characterCode for each segment,
|
|
|
|
* last=0xFFFF. */
|
|
|
|
USHORT reservedPad; /* Set to 0. */
|
|
|
|
USHORT startCount[segCount]; /* Start character code for each segment. */
|
|
|
|
SHORT idDelta[segCount]; /* Delta for all character codes in segment. */
|
|
|
|
USHORT idRangeOffset[segCount];/* Offsets into glyphIdArray or 0 */
|
|
|
|
USHORT glyphIdArray[VAR]; /* Glyph index array (arbitrary length) */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (14, values);
|
|
|
|
};
|
|
|
|
|
2014-05-12 23:58:31 +02:00
|
|
|
struct CmapSubtableLongGroup
|
2014-05-12 23:51:15 +02:00
|
|
|
{
|
|
|
|
friend struct CmapSubtableFormat12;
|
2014-05-12 23:58:31 +02:00
|
|
|
friend struct CmapSubtableFormat13;
|
2014-05-12 23:51:15 +02:00
|
|
|
|
|
|
|
int cmp (hb_codepoint_t codepoint) const
|
|
|
|
{
|
|
|
|
if (codepoint < startCharCode) return -1;
|
|
|
|
if (codepoint > endCharCode) return +1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ULONG startCharCode; /* First character code in this group. */
|
|
|
|
ULONG endCharCode; /* Last character code in this group. */
|
2014-05-12 23:58:31 +02:00
|
|
|
ULONG glyphID; /* Glyph index; interpretation depends on
|
|
|
|
* subtable format. */
|
2014-05-12 23:51:15 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (12);
|
|
|
|
};
|
|
|
|
|
2014-05-14 03:17:28 +02:00
|
|
|
template <typename UINT>
|
|
|
|
struct CmapSubtableTrimmed
|
2014-05-13 00:19:29 +02:00
|
|
|
{
|
|
|
|
friend struct CmapSubtable;
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool get_glyph (hb_codepoint_t codepoint, hb_codepoint_t *glyph) const
|
|
|
|
{
|
|
|
|
/* Rely on our implicit array bound-checking. */
|
|
|
|
hb_codepoint_t gid = glyphIdArray[codepoint - startCharCode];
|
|
|
|
if (!gid)
|
|
|
|
return false;
|
|
|
|
*glyph = gid;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) && glyphIdArray.sanitize (c));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-05-14 03:17:28 +02:00
|
|
|
UINT formatReserved; /* Subtable format and (maybe) padding. */
|
|
|
|
UINT length; /* Byte length of this subtable. */
|
|
|
|
UINT language; /* Ignore. */
|
|
|
|
UINT startCharCode; /* First character code covered. */
|
|
|
|
GenericArrayOf<UINT, GlyphID>
|
2014-05-13 00:19:29 +02:00
|
|
|
glyphIdArray; /* Array of glyph index values for character
|
|
|
|
* codes in the range. */
|
|
|
|
public:
|
2014-05-14 03:17:28 +02:00
|
|
|
DEFINE_SIZE_ARRAY (5 * sizeof (UINT), glyphIdArray);
|
2014-05-13 00:19:29 +02:00
|
|
|
};
|
|
|
|
|
2014-05-14 03:17:28 +02:00
|
|
|
struct CmapSubtableFormat6 : CmapSubtableTrimmed<USHORT> {};
|
|
|
|
struct CmapSubtableFormat10 : CmapSubtableTrimmed<ULONG > {};
|
2014-05-13 00:19:29 +02:00
|
|
|
|
2014-05-12 23:51:15 +02:00
|
|
|
struct CmapSubtableFormat12
|
|
|
|
{
|
|
|
|
friend struct CmapSubtable;
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool get_glyph (hb_codepoint_t codepoint, hb_codepoint_t *glyph) const
|
|
|
|
{
|
|
|
|
int i = groups.search (codepoint);
|
|
|
|
if (i == -1)
|
|
|
|
return false;
|
2014-05-12 23:58:31 +02:00
|
|
|
const CmapSubtableLongGroup &group = groups[i];
|
|
|
|
*glyph = group.glyphID + (codepoint - group.startCharCode);
|
2014-05-12 23:51:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) && groups.sanitize (c));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
USHORT format; /* Subtable format; set to 12. */
|
|
|
|
USHORT reserved; /* Reserved; set to 0. */
|
2014-05-13 00:19:29 +02:00
|
|
|
ULONG length; /* Byte length of this subtable. */
|
2014-05-12 23:51:15 +02:00
|
|
|
ULONG language; /* Ignore. */
|
2014-05-12 23:58:31 +02:00
|
|
|
LongArrayOf<CmapSubtableLongGroup>
|
|
|
|
groups; /* Groupings. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (16, groups);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmapSubtableFormat13
|
|
|
|
{
|
|
|
|
friend struct CmapSubtable;
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline bool get_glyph (hb_codepoint_t codepoint, hb_codepoint_t *glyph) const
|
|
|
|
{
|
|
|
|
int i = groups.search (codepoint);
|
|
|
|
if (i == -1)
|
|
|
|
return false;
|
|
|
|
const CmapSubtableLongGroup &group = groups[i];
|
|
|
|
*glyph = group.glyphID;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) && groups.sanitize (c));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-05-13 00:19:29 +02:00
|
|
|
USHORT format; /* Subtable format; set to 13. */
|
2014-05-12 23:58:31 +02:00
|
|
|
USHORT reserved; /* Reserved; set to 0. */
|
2014-05-13 00:19:29 +02:00
|
|
|
ULONG length; /* Byte length of this subtable. */
|
2014-05-12 23:58:31 +02:00
|
|
|
ULONG language; /* Ignore. */
|
|
|
|
LongArrayOf<CmapSubtableLongGroup>
|
2014-05-12 23:51:15 +02:00
|
|
|
groups; /* Groupings. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (16, groups);
|
|
|
|
};
|
|
|
|
|
2014-05-09 21:35:56 +02:00
|
|
|
struct CmapSubtable
|
|
|
|
{
|
|
|
|
inline bool get_glyph (hb_codepoint_t codepoint, hb_codepoint_t *glyph) const
|
|
|
|
{
|
|
|
|
switch (u.format) {
|
2014-05-12 23:51:15 +02:00
|
|
|
case 4: return u.format4 .get_glyph(codepoint, glyph);
|
2014-05-13 00:19:29 +02:00
|
|
|
case 6: return u.format6 .get_glyph(codepoint, glyph);
|
|
|
|
case 10: return u.format10.get_glyph(codepoint, glyph);
|
2014-05-12 23:51:15 +02:00
|
|
|
case 12: return u.format12.get_glyph(codepoint, glyph);
|
2014-05-12 23:58:31 +02:00
|
|
|
case 13: return u.format13.get_glyph(codepoint, glyph);
|
2014-05-09 21:35:56 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (!u.format.sanitize (c)) return TRACE_RETURN (false);
|
|
|
|
switch (u.format) {
|
2014-05-12 23:51:15 +02:00
|
|
|
case 4: return TRACE_RETURN (u.format4 .sanitize (c));
|
2014-05-13 00:19:29 +02:00
|
|
|
case 6: return TRACE_RETURN (u.format6 .sanitize (c));
|
|
|
|
case 10: return TRACE_RETURN (u.format10.sanitize (c));
|
2014-05-12 23:51:15 +02:00
|
|
|
case 12: return TRACE_RETURN (u.format12.sanitize (c));
|
2014-05-12 23:58:31 +02:00
|
|
|
case 13: return TRACE_RETURN (u.format13.sanitize (c));
|
2014-05-09 21:35:56 +02:00
|
|
|
default:return TRACE_RETURN (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
|
|
|
CmapSubtableFormat4 format4;
|
2014-05-13 00:19:29 +02:00
|
|
|
CmapSubtableFormat6 format6;
|
|
|
|
CmapSubtableFormat10 format10;
|
2014-05-12 23:51:15 +02:00
|
|
|
CmapSubtableFormat12 format12;
|
2014-05-12 23:58:31 +02:00
|
|
|
CmapSubtableFormat13 format13;
|
2014-05-09 21:35:56 +02:00
|
|
|
} u;
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_UNION (2, format);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct EncodingRecord
|
|
|
|
{
|
|
|
|
int cmp (const EncodingRecord &other) const
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = other.platformID.cmp (platformID);
|
|
|
|
if (ret) return ret;
|
|
|
|
ret = other.encodingID.cmp (encodingID);
|
|
|
|
if (ret) return ret;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, void *base) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) &&
|
|
|
|
subtable.sanitize (c, base));
|
|
|
|
}
|
|
|
|
|
|
|
|
USHORT platformID; /* Platform ID. */
|
|
|
|
USHORT encodingID; /* Platform-specific encoding ID. */
|
|
|
|
LongOffsetTo<CmapSubtable>
|
|
|
|
subtable; /* Byte offset from beginning of table to the subtable for this encoding. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cmap
|
|
|
|
{
|
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_cmap;
|
|
|
|
|
2014-05-12 19:46:29 +02:00
|
|
|
inline const CmapSubtable *find_subtable (unsigned int platform_id,
|
|
|
|
unsigned int encoding_id) const
|
2014-05-09 21:35:56 +02:00
|
|
|
{
|
|
|
|
EncodingRecord key;
|
|
|
|
key.platformID.set (platform_id);
|
|
|
|
key.encodingID.set (encoding_id);
|
|
|
|
|
2014-05-12 19:46:29 +02:00
|
|
|
int result = encodingRecord.search (key);
|
|
|
|
if (result == -1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &(this+encodingRecord[result].subtable);
|
2014-05-09 21:35:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return TRACE_RETURN (c->check_struct (this) &&
|
|
|
|
likely (version == 0) &&
|
|
|
|
encodingRecord.sanitize (c, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
USHORT version; /* Table version number (0). */
|
|
|
|
ArrayOf<EncodingRecord> encodingRecord; /* Encoding tables. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (4, encodingRecord);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_OT_CMAP_TABLE_HH */
|