2018-08-10 20:07:07 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Adobe Systems Incorporated.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Adobe Author(s): Michiharu Ariza
|
|
|
|
*/
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
#ifndef HB_OT_CFF1_TABLE_HH
|
|
|
|
#define HB_OT_CFF1_TABLE_HH
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-29 22:26:17 +02:00
|
|
|
#include "hb-ot-cff-common.hh"
|
2018-08-16 09:13:09 +02:00
|
|
|
#include "hb-subset-cff1.hh"
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
namespace CFF {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CFF -- Compact Font Format (CFF)
|
|
|
|
* http://www.adobe.com/content/dam/acom/en/devnet/font/pdfs/5176.CFF.pdf
|
|
|
|
*/
|
2018-08-16 09:25:57 +02:00
|
|
|
#define HB_OT_TAG_cff1 HB_TAG('C','F','F',' ')
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
#define CFF_UNDEF_SID CFF_UNDEF_CODE
|
2018-09-07 02:28:15 +02:00
|
|
|
|
|
|
|
enum EncodingID { StandardEncoding = 0, ExpertEncoding = 1 };
|
|
|
|
enum CharsetID { ISOAdobeCharset = 0, ExpertCharset = 1, ExpertSubsetCharset = 2 };
|
|
|
|
|
2018-08-16 17:03:46 +02:00
|
|
|
typedef CFFIndex<HBUINT16> CFF1Index;
|
2018-09-07 02:28:15 +02:00
|
|
|
template <typename Type> struct CFF1IndexOf : CFFIndexOf<HBUINT16, Type> {};
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 17:03:46 +02:00
|
|
|
typedef CFFIndex<HBUINT16> CFF1Index;
|
2018-08-16 09:13:09 +02:00
|
|
|
typedef CFF1Index CFF1CharStrings;
|
|
|
|
typedef FDArray<HBUINT16> CFF1FDArray;
|
|
|
|
typedef Subrs<HBUINT16> CFF1Subrs;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
struct CFF1FDSelect : FDSelect {};
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* Encoding */
|
|
|
|
struct Encoding0 {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) && codes[nCodes - 1].sanitize (c));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_code (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
if (glyph < nCodes)
|
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
return (hb_codepoint_t)codes[glyph];
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
else
|
2018-09-07 02:28:15 +02:00
|
|
|
return CFF_UNDEF_CODE;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{ return HBUINT8::static_size * (nCodes + 1); }
|
|
|
|
|
|
|
|
HBUINT8 nCodes;
|
|
|
|
HBUINT8 codes[VAR];
|
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY(1, codes);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Encoding1_Range {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT8 first;
|
|
|
|
HBUINT8 nLeft;
|
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC (2);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Encoding1 {
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{ return HBUINT8::static_size + Encoding1_Range::static_size * nRanges; }
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) && ((nRanges == 0) || (ranges[nRanges - 1]).sanitize (c)));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_code (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < nRanges; i++)
|
|
|
|
{
|
|
|
|
if (glyph <= ranges[i].nLeft)
|
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
return (hb_codepoint_t)ranges[i].first + glyph;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
glyph -= (ranges[i].nLeft + 1);
|
|
|
|
}
|
2018-09-07 02:28:15 +02:00
|
|
|
return CFF_UNDEF_CODE;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT8 nRanges;
|
|
|
|
Encoding1_Range ranges[VAR];
|
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY (1, ranges);
|
|
|
|
};
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
struct SuppEncoding {
|
2018-08-10 20:07:07 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT8 code;
|
|
|
|
HBUINT16 glyph;
|
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC (3);
|
|
|
|
};
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
struct CFF1SuppEncData {
|
2018-08-10 20:07:07 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) && ((nSups == 0) || (supps[nSups - 1]).sanitize (c)));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline void get_codes (hb_codepoint_t sid, hb_vector_t<hb_codepoint_t> &codes) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < nSups; i++)
|
2018-09-07 02:28:15 +02:00
|
|
|
if (sid == supps[i].glyph)
|
|
|
|
codes.push (supps[i].code);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_size (void) const
|
2018-09-07 02:28:15 +02:00
|
|
|
{ return HBUINT8::static_size + SuppEncoding::static_size * nSups; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
HBUINT8 nSups;
|
2018-09-07 02:28:15 +02:00
|
|
|
SuppEncoding supps[VAR];
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY (1, supps);
|
|
|
|
};
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
struct code_pair
|
|
|
|
{
|
|
|
|
hb_codepoint_t code;
|
|
|
|
hb_codepoint_t glyph;
|
|
|
|
};
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
struct Encoding {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
|
|
|
if (unlikely (!c->check_struct (this)))
|
|
|
|
return_trace (false);
|
|
|
|
unsigned int fmt = format & 0x7F;
|
|
|
|
if (unlikely (fmt > 1))
|
|
|
|
return_trace (false);
|
|
|
|
if (unlikely (!((fmt == 0)? u.format0.sanitize (c): u.format1.sanitize (c))))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (((format & 0x80) == 0) || suppEncData ().sanitize (c));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
/* serialize a fullset Encoding */
|
|
|
|
inline bool serialize (hb_serialize_context_t *c, const Encoding &src)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
unsigned int size = src.get_size ();
|
|
|
|
Encoding *dest = c->allocate_size<Encoding> (size);
|
|
|
|
if (unlikely (dest == nullptr)) return_trace (false);
|
|
|
|
memcpy (dest, &src, size);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
/* serialize a subset Encoding */
|
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
uint8_t format,
|
|
|
|
unsigned int enc_count,
|
|
|
|
const hb_vector_t<code_pair>& code_ranges,
|
|
|
|
const hb_vector_t<code_pair>& supp_codes)
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
Encoding *dest = c->extend_min (*this);
|
|
|
|
if (unlikely (dest == nullptr)) return_trace (false);
|
|
|
|
dest->format.set (format | ((supp_codes.len > 0)? 0x80: 0));
|
|
|
|
if (format == 0)
|
|
|
|
{
|
|
|
|
Encoding0 *fmt0 = c->allocate_size<Encoding0> (Encoding0::min_size + HBUINT8::static_size * enc_count);
|
|
|
|
if (unlikely (fmt0 == nullptr)) return_trace (false);
|
|
|
|
fmt0->nCodes.set (enc_count);
|
|
|
|
unsigned int glyph = 0;
|
|
|
|
for (unsigned int i = 0; i < code_ranges.len; i++)
|
|
|
|
{
|
|
|
|
hb_codepoint_t code = code_ranges[i].code;
|
|
|
|
for (int left = (int)code_ranges[i].glyph; left >= 0; left--)
|
|
|
|
fmt0->codes[glyph++].set (code++);
|
|
|
|
assert ((glyph <= 0x100) && (code <= 0x100));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Encoding1 *fmt1 = c->allocate_size<Encoding1> (Encoding1::min_size + Encoding1_Range::static_size * code_ranges.len);
|
|
|
|
if (unlikely (fmt1 == nullptr)) return_trace (false);
|
|
|
|
fmt1->nRanges.set (code_ranges.len);
|
|
|
|
for (unsigned int i = 0; i < code_ranges.len; i++)
|
|
|
|
{
|
|
|
|
assert ((code_ranges[i].code <= 0xFF) && (code_ranges[i].glyph <= 0xFF));
|
|
|
|
fmt1->ranges[i].first.set (code_ranges[i].code);
|
|
|
|
fmt1->ranges[i].nLeft.set (code_ranges[i].glyph);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (supp_codes.len > 0)
|
|
|
|
{
|
|
|
|
CFF1SuppEncData *suppData = c->allocate_size<CFF1SuppEncData> (CFF1SuppEncData::min_size + SuppEncoding::static_size * supp_codes.len);
|
|
|
|
if (unlikely (suppData == nullptr)) return_trace (false);
|
|
|
|
suppData->nSups.set (supp_codes.len);
|
|
|
|
for (unsigned int i = 0; i < supp_codes.len; i++)
|
|
|
|
{
|
|
|
|
suppData->supps[i].code.set (supp_codes[i].code);
|
|
|
|
suppData->supps[i].glyph.set (supp_codes[i].glyph); /* actually SID */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parallel to above: calculate the size of a subset Encoding */
|
|
|
|
static inline unsigned int calculate_serialized_size (
|
|
|
|
uint8_t format,
|
|
|
|
unsigned int enc_count,
|
|
|
|
unsigned int supp_count)
|
|
|
|
{
|
|
|
|
unsigned int size = min_size;
|
|
|
|
if (format == 0)
|
|
|
|
size += Encoding0::min_size + HBUINT8::static_size * enc_count;
|
|
|
|
else
|
|
|
|
size += Encoding1::min_size + Encoding1_Range::static_size * enc_count;
|
|
|
|
if (supp_count > 0)
|
|
|
|
size += CFF1SuppEncData::min_size + SuppEncoding::static_size * supp_count;
|
|
|
|
return size;
|
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{
|
|
|
|
unsigned int size = min_size;
|
2018-09-07 02:28:15 +02:00
|
|
|
if (table_format () == 0)
|
2018-08-10 20:07:07 +02:00
|
|
|
size += u.format0.get_size ();
|
|
|
|
else
|
|
|
|
size += u.format1.get_size ();
|
2018-09-07 02:28:15 +02:00
|
|
|
if (has_supplement ())
|
2018-08-10 20:07:07 +02:00
|
|
|
size += suppEncData ().get_size ();
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_code (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
if (table_format () == 0)
|
|
|
|
return u.format0.get_code (glyph);
|
|
|
|
else
|
|
|
|
return u.format1.get_code (glyph);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline uint8_t table_format (void) const { return (format & 0x7F); }
|
|
|
|
inline bool has_supplement (void) const { return (format & 0x80) != 0; }
|
|
|
|
|
|
|
|
inline void get_supplement_codes (hb_codepoint_t sid, hb_vector_t<hb_codepoint_t> &codes) const
|
|
|
|
{
|
|
|
|
codes.resize (0);
|
|
|
|
if (has_supplement ())
|
|
|
|
suppEncData().get_codes (sid, codes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2018-08-16 09:13:09 +02:00
|
|
|
inline const CFF1SuppEncData &suppEncData (void) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
if ((format & 0x7F) == 0)
|
2018-08-16 09:13:09 +02:00
|
|
|
return StructAfter<CFF1SuppEncData> (u.format0.codes[u.format0.nCodes-1]);
|
2018-08-10 20:07:07 +02:00
|
|
|
else
|
2018-08-16 09:13:09 +02:00
|
|
|
return StructAfter<CFF1SuppEncData> (u.format1.ranges[u.format1.nRanges-1]);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
public:
|
2018-08-10 20:07:07 +02:00
|
|
|
HBUINT8 format;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
union {
|
|
|
|
Encoding0 format0;
|
|
|
|
Encoding1 format1;
|
|
|
|
} u;
|
2018-08-16 09:13:09 +02:00
|
|
|
/* CFF1SuppEncData suppEncData; */
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
DEFINE_SIZE_MIN (1);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Charset */
|
|
|
|
struct Charset0 {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int num_glyphs) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) && sids[num_glyphs - 1].sanitize (c));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_sid (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
if (glyph == 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return sids[glyph - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_size (unsigned int num_glyphs) const
|
|
|
|
{
|
|
|
|
assert (num_glyphs > 0);
|
|
|
|
return HBUINT16::static_size * (num_glyphs - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT16 sids[VAR];
|
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY(0, sids);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename TYPE>
|
|
|
|
struct Charset_Range {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
HBUINT16 first;
|
2018-08-10 20:07:07 +02:00
|
|
|
TYPE nLeft;
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
DEFINE_SIZE_STATIC (HBUINT16::static_size + TYPE::static_size);
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename TYPE>
|
|
|
|
struct Charset1_2 {
|
2018-09-07 02:28:15 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int num_glyphs) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-09-07 02:28:15 +02:00
|
|
|
if (unlikely (!c->check_struct (this)))
|
|
|
|
return_trace (false);
|
|
|
|
num_glyphs--;
|
|
|
|
for (unsigned int i = 0; num_glyphs > 0; i++)
|
|
|
|
{
|
|
|
|
if (unlikely (!ranges[i].sanitize (c) || (num_glyphs < ranges[i].nLeft + 1)))
|
|
|
|
return_trace (false);
|
|
|
|
num_glyphs -= (ranges[i].nLeft + 1);
|
|
|
|
}
|
|
|
|
return_trace (true);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_sid (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
if (glyph == 0) return 0;
|
|
|
|
glyph--;
|
|
|
|
for (unsigned int i = 0;; i++)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
if (glyph <= ranges[i].nLeft)
|
2018-09-07 02:28:15 +02:00
|
|
|
return (hb_codepoint_t)ranges[i].first + glyph;
|
2018-08-10 20:07:07 +02:00
|
|
|
glyph -= (ranges[i].nLeft + 1);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
return 0;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline unsigned int get_size (unsigned int num_glyphs) const
|
|
|
|
{
|
|
|
|
unsigned int size = HBUINT8::static_size;
|
|
|
|
int glyph = (int)num_glyphs;
|
|
|
|
|
|
|
|
assert (glyph > 0);
|
|
|
|
glyph--;
|
|
|
|
for (unsigned int i = 0; glyph > 0; i++)
|
|
|
|
{
|
|
|
|
glyph -= (ranges[i].nLeft + 1);
|
|
|
|
size += Charset_Range<TYPE>::static_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
Charset_Range<TYPE> ranges[VAR];
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
DEFINE_SIZE_ARRAY (0, ranges);
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
typedef Charset1_2<HBUINT8> Charset1;
|
|
|
|
typedef Charset1_2<HBUINT16> Charset2;
|
|
|
|
typedef Charset_Range<HBUINT8> Charset1_Range;
|
|
|
|
typedef Charset_Range<HBUINT16> Charset2_Range;
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
struct Charset {
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
|
|
|
|
if (unlikely (!c->check_struct (this)))
|
|
|
|
return_trace (false);
|
|
|
|
if (format == 0)
|
|
|
|
return_trace (u.format0.sanitize (c, c->get_num_glyphs ()));
|
|
|
|
else if (format == 1)
|
2018-09-07 02:28:15 +02:00
|
|
|
return_trace (u.format1.sanitize (c, c->get_num_glyphs ()));
|
2018-08-10 20:07:07 +02:00
|
|
|
else if (likely (format == 2))
|
2018-09-07 02:28:15 +02:00
|
|
|
return_trace (u.format2.sanitize (c, c->get_num_glyphs ()));
|
2018-08-10 20:07:07 +02:00
|
|
|
else
|
|
|
|
return_trace (false);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
/* serialize a fullset Charset */
|
2018-08-10 20:07:07 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c, const Charset &src, unsigned int num_glyphs)
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
unsigned int size = src.get_size (num_glyphs);
|
|
|
|
Charset *dest = c->allocate_size<Charset> (size);
|
|
|
|
if (unlikely (dest == nullptr)) return_trace (false);
|
|
|
|
memcpy (dest, &src, size);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
/* serialize a subset Charset */
|
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
uint8_t format,
|
|
|
|
unsigned int num_glyphs,
|
|
|
|
const hb_vector_t<code_pair>& sid_ranges)
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
Charset *dest = c->extend_min (*this);
|
|
|
|
if (unlikely (dest == nullptr)) return_trace (false);
|
|
|
|
dest->format.set (format);
|
|
|
|
if (format == 0)
|
|
|
|
{
|
|
|
|
Charset0 *fmt0 = c->allocate_size<Charset0> (Charset0::min_size + HBUINT8::static_size * (num_glyphs - 1));
|
|
|
|
if (unlikely (fmt0 == nullptr)) return_trace (false);
|
|
|
|
unsigned int glyph = 0;
|
|
|
|
for (unsigned int i = 0; i < sid_ranges.len; i++)
|
|
|
|
{
|
|
|
|
hb_codepoint_t sid = sid_ranges[i].code;
|
|
|
|
for (int left = (int)sid_ranges[i].glyph; left >= 0; left--)
|
|
|
|
fmt0->sids[glyph++].set (sid++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (format == 1)
|
|
|
|
{
|
|
|
|
Charset1 *fmt1 = c->allocate_size<Charset1> (Charset1::min_size + Charset1_Range::static_size * sid_ranges.len);
|
|
|
|
if (unlikely (fmt1 == nullptr)) return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < sid_ranges.len; i++)
|
|
|
|
{
|
|
|
|
assert (sid_ranges[i].glyph <= 0xFF);
|
|
|
|
fmt1->ranges[i].first.set (sid_ranges[i].code);
|
|
|
|
fmt1->ranges[i].nLeft.set (sid_ranges[i].glyph);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* format 2 */
|
|
|
|
{
|
|
|
|
Charset2 *fmt2 = c->allocate_size<Charset2> (Charset2::min_size + Charset2_Range::static_size * sid_ranges.len);
|
|
|
|
if (unlikely (fmt2 == nullptr)) return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < sid_ranges.len; i++)
|
|
|
|
{
|
|
|
|
assert (sid_ranges[i].glyph <= 0xFFFF);
|
|
|
|
fmt2->ranges[i].first.set (sid_ranges[i].code);
|
|
|
|
fmt2->ranges[i].nLeft.set (sid_ranges[i].glyph);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parallel to above: calculate the size of a subset Charset */
|
|
|
|
static inline unsigned int calculate_serialized_size (
|
|
|
|
uint8_t format,
|
|
|
|
unsigned int count)
|
|
|
|
{
|
|
|
|
unsigned int size = min_size;
|
|
|
|
if (format == 0)
|
|
|
|
size += Charset0::min_size + HBUINT8::static_size * (count - 1);
|
|
|
|
else if (format == 1)
|
|
|
|
size += Charset1::min_size + Charset1_Range::static_size * count;
|
|
|
|
else
|
|
|
|
size += Charset2::min_size + Charset2_Range::static_size * count;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
inline unsigned int get_size (unsigned int num_glyphs) const
|
|
|
|
{
|
|
|
|
unsigned int size = min_size;
|
|
|
|
if (format == 0)
|
|
|
|
size += u.format0.get_size (num_glyphs);
|
|
|
|
else if (format == 1)
|
2018-09-07 02:28:15 +02:00
|
|
|
size += u.format1.get_size (num_glyphs);
|
2018-08-10 20:07:07 +02:00
|
|
|
else
|
2018-09-07 02:28:15 +02:00
|
|
|
size += u.format2.get_size (num_glyphs);
|
2018-08-10 20:07:07 +02:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
inline hb_codepoint_t get_sid (hb_codepoint_t glyph) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
if (format == 0)
|
|
|
|
return u.format0.get_sid (glyph);
|
|
|
|
else if (format == 1)
|
|
|
|
return u.format1.get_sid (glyph);
|
|
|
|
else
|
|
|
|
return u.format2.get_sid (glyph);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HBUINT8 format;
|
|
|
|
union {
|
2018-09-07 02:28:15 +02:00
|
|
|
Charset0 format0;
|
|
|
|
Charset1 format1;
|
|
|
|
Charset2 format2;
|
2018-08-10 20:07:07 +02:00
|
|
|
} u;
|
|
|
|
|
|
|
|
DEFINE_SIZE_MIN (1);
|
|
|
|
};
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
struct CFF1StringIndex : CFF1Index
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c, const CFF1StringIndex &strings, unsigned int offSize_, const Remap &sidmap)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
if (unlikely ((strings.count == 0) || (sidmap.get_count () == 0)))
|
|
|
|
{
|
|
|
|
if (!unlikely (c->extend_min (*this)))
|
|
|
|
return_trace (false);
|
|
|
|
count.set (0);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
hb_vector_t<ByteStr> bytesArray;
|
|
|
|
bytesArray.init ();
|
|
|
|
if (!bytesArray.resize (sidmap.get_count ()))
|
|
|
|
return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < strings.count; i++)
|
|
|
|
{
|
|
|
|
hb_codepoint_t j = sidmap[i];
|
|
|
|
if (j != CFF_UNDEF_CODE)
|
|
|
|
bytesArray[j] = strings[i];
|
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
bool result = CFF1Index::serialize (c, offSize_, bytesArray);
|
|
|
|
bytesArray.fini ();
|
|
|
|
return_trace (result);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
/* in parallel to above */
|
|
|
|
inline unsigned int calculate_serialized_size (unsigned int &offSize /*OUT*/, const Remap &sidmap) const
|
|
|
|
{
|
|
|
|
offSize = 0;
|
|
|
|
if ((count == 0) || (sidmap.get_count () == 0))
|
|
|
|
return count.static_size;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
unsigned int dataSize = 0;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (sidmap[i] != CFF_UNDEF_CODE)
|
|
|
|
dataSize += length_at (i);
|
|
|
|
|
|
|
|
offSize = calcOffSize(dataSize);
|
|
|
|
return CFF1Index::calculate_serialized_size (offSize, sidmap.get_count (), dataSize);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CFF1TopDictInterpEnv : NumInterpEnv
|
|
|
|
{
|
|
|
|
inline CFF1TopDictInterpEnv (void)
|
|
|
|
: NumInterpEnv(), prev_offset(0), last_offset(0) {}
|
|
|
|
|
|
|
|
unsigned int prev_offset;
|
|
|
|
unsigned int last_offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameDictValues
|
|
|
|
{
|
2018-09-11 02:02:31 +02:00
|
|
|
enum NameDictValIndex
|
|
|
|
{
|
|
|
|
version,
|
|
|
|
notice,
|
|
|
|
copyright,
|
|
|
|
fullName,
|
|
|
|
familyName,
|
|
|
|
weight,
|
|
|
|
postscript,
|
|
|
|
fontName,
|
|
|
|
baseFontName,
|
|
|
|
registry,
|
|
|
|
ordering,
|
|
|
|
|
|
|
|
ValCount
|
|
|
|
};
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
inline void init (void)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 02:02:31 +02:00
|
|
|
for (unsigned int i = 0; i < ValCount; i++)
|
2018-09-11 01:00:20 +02:00
|
|
|
values[i] = CFF_UNDEF_SID;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
inline unsigned int& operator[] (unsigned int i)
|
2018-09-11 02:02:31 +02:00
|
|
|
{ assert (i < ValCount); return values[i]; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
inline unsigned int operator[] (unsigned int i) const
|
2018-09-11 02:02:31 +02:00
|
|
|
{ assert (i < ValCount); return values[i]; }
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
static inline enum NameDictValIndex name_op_to_index (OpCode op)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
switch (op) {
|
|
|
|
case OpCode_version:
|
2018-09-11 02:02:31 +02:00
|
|
|
return version;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_Notice:
|
2018-09-11 02:02:31 +02:00
|
|
|
return notice;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_Copyright:
|
2018-09-11 02:02:31 +02:00
|
|
|
return copyright;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_FullName:
|
2018-09-11 02:02:31 +02:00
|
|
|
return fullName;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_FamilyName:
|
2018-09-11 02:02:31 +02:00
|
|
|
return familyName;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_Weight:
|
2018-09-11 02:02:31 +02:00
|
|
|
return weight;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_PostScript:
|
2018-09-11 02:02:31 +02:00
|
|
|
return postscript;
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_FontName:
|
2018-09-11 02:02:31 +02:00
|
|
|
return fontName;
|
2018-09-11 01:00:20 +02:00
|
|
|
default:
|
|
|
|
assert (0);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 02:02:31 +02:00
|
|
|
unsigned int values[ValCount];
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
struct CFF1TopDictVal : OpStr
|
|
|
|
{
|
|
|
|
unsigned int last_arg_offset;
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
struct CFF1TopDictValues : TopDictValues<CFF1TopDictVal>
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
inline void init (void)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2018-09-11 02:02:31 +02:00
|
|
|
TopDictValues<CFF1TopDictVal>::init ();
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
nameSIDs.init ();
|
|
|
|
ros_supplement = 0;
|
|
|
|
cidCount = 8720;
|
|
|
|
EncodingOffset = 0;
|
|
|
|
CharsetOffset = 0;
|
|
|
|
FDSelectOffset = 0;
|
|
|
|
privateDictInfo.init ();
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
2018-09-11 02:02:31 +02:00
|
|
|
TopDictValues<CFF1TopDictVal>::fini ();
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
inline bool is_CID (void) const
|
2018-09-11 02:02:31 +02:00
|
|
|
{ return nameSIDs[NameDictValues::registry] != CFF_UNDEF_SID; }
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
NameDictValues nameSIDs;
|
|
|
|
unsigned int ros_supplement_offset;
|
|
|
|
unsigned int ros_supplement;
|
|
|
|
unsigned int cidCount;
|
|
|
|
|
|
|
|
unsigned int EncodingOffset;
|
|
|
|
unsigned int CharsetOffset;
|
|
|
|
unsigned int FDSelectOffset;
|
|
|
|
TableInfo privateDictInfo;
|
2018-09-07 02:28:15 +02:00
|
|
|
};
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
struct CFF1TopDictOpSet : TopDictOpSet<CFF1TopDictVal>
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
static inline bool process_op (OpCode op, CFF1TopDictInterpEnv& env, CFF1TopDictValues& dictval)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
CFF1TopDictVal val;
|
|
|
|
val.last_arg_offset = (env.last_offset-1) - dictval.opStart; /* offset to the last argument */
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
switch (op) {
|
|
|
|
case OpCode_version:
|
|
|
|
case OpCode_Notice:
|
|
|
|
case OpCode_Copyright:
|
|
|
|
case OpCode_FullName:
|
|
|
|
case OpCode_FamilyName:
|
|
|
|
case OpCode_Weight:
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_PostScript:
|
|
|
|
case OpCode_BaseFontName:
|
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.nameSIDs[NameDictValues::name_op_to_index (op)])))
|
|
|
|
return false;
|
|
|
|
env.clear_args ();
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
case OpCode_isFixedPitch:
|
|
|
|
case OpCode_ItalicAngle:
|
|
|
|
case OpCode_UnderlinePosition:
|
|
|
|
case OpCode_UnderlineThickness:
|
|
|
|
case OpCode_PaintType:
|
|
|
|
case OpCode_CharstringType:
|
|
|
|
case OpCode_UniqueID:
|
|
|
|
case OpCode_StrokeWidth:
|
|
|
|
case OpCode_SyntheticBase:
|
|
|
|
case OpCode_CIDFontVersion:
|
|
|
|
case OpCode_CIDFontRevision:
|
|
|
|
case OpCode_CIDFontType:
|
|
|
|
case OpCode_UIDBase:
|
|
|
|
case OpCode_FontBBox:
|
|
|
|
case OpCode_XUID:
|
|
|
|
case OpCode_BaseFontBlend:
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_CIDCount:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.cidCount)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_ROS:
|
2018-09-11 01:00:20 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.ros_supplement) ||
|
2018-09-11 02:02:31 +02:00
|
|
|
!env.argStack.check_pop_uint (dictval.nameSIDs[NameDictValues::ordering]) ||
|
|
|
|
!env.argStack.check_pop_uint (dictval.nameSIDs[NameDictValues::registry])))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_Encoding:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.EncodingOffset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_charset:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.CharsetOffset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_FDSelect:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.FDSelectOffset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_Private:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.privateDictInfo.offset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.privateDictInfo.size)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-09-11 01:00:20 +02:00
|
|
|
env.last_offset = env.substr.offset;
|
2018-09-11 02:02:31 +02:00
|
|
|
if (unlikely (!TopDictOpSet<CFF1TopDictVal>::process_op (op, env, dictval)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
|
|
|
/* Record this operand below if stack is empty, otherwise done */
|
2018-08-15 21:00:19 +02:00
|
|
|
if (!env.argStack.is_empty ()) return true;
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
dictval.addOp (op, env.substr, val);
|
2018-08-10 20:07:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
struct CFF1FontDictValues : DictValues<OpStr>
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
inline void init (void)
|
|
|
|
{
|
|
|
|
DictValues<OpStr>::init ();
|
|
|
|
privateDictInfo.init ();
|
2018-09-11 01:00:20 +02:00
|
|
|
fontName = CFF_UNDEF_SID;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
DictValues<OpStr>::fini ();
|
|
|
|
}
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
TableInfo privateDictInfo;
|
|
|
|
unsigned int fontName;
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-09-04 20:29:15 +02:00
|
|
|
struct CFF1FontDictOpSet : DictOpSet
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-01 01:28:47 +02:00
|
|
|
static inline bool process_op (OpCode op, NumInterpEnv& env, CFF1FontDictValues& dictval)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
switch (op) {
|
|
|
|
case OpCode_FontName:
|
2018-09-11 01:00:20 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.fontName)))
|
|
|
|
return false;
|
|
|
|
env.clear_args ();
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
case OpCode_FontMatrix:
|
|
|
|
case OpCode_PaintType:
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
case OpCode_Private:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.privateDictInfo.offset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.privateDictInfo.size)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!DictOpSet::process_op (op, env)))
|
|
|
|
return false;
|
|
|
|
if (!env.argStack.is_empty ()) return true;
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
dictval.addOp (op, env.substr);
|
2018-08-10 20:07:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename VAL>
|
2018-08-16 09:13:09 +02:00
|
|
|
struct CFF1PrivateDictValues_Base : DictValues<VAL>
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
inline void init (void)
|
|
|
|
{
|
|
|
|
DictValues<VAL>::init ();
|
|
|
|
subrsOffset = 0;
|
2018-08-16 09:13:09 +02:00
|
|
|
localSubrs = &Null(CFF1Subrs);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
DictValues<VAL>::fini ();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int calculate_serialized_size (void) const
|
|
|
|
{
|
|
|
|
unsigned int size = 0;
|
2018-09-07 02:28:15 +02:00
|
|
|
for (unsigned int i = 0; i < DictValues<VAL>::getNumValues; i++)
|
|
|
|
if (DictValues<VAL>::getValue (i).op == OpCode_Subrs)
|
2018-08-10 20:07:07 +02:00
|
|
|
size += OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (OpCode_Subrs);
|
|
|
|
else
|
2018-09-07 02:28:15 +02:00
|
|
|
size += DictValues<VAL>::getValue (i).str.len;
|
2018-08-10 20:07:07 +02:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int subrsOffset;
|
2018-08-16 09:13:09 +02:00
|
|
|
const CFF1Subrs *localSubrs;
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
typedef CFF1PrivateDictValues_Base<OpStr> CFF1PrivateDictValues_Subset;
|
2018-09-01 01:28:47 +02:00
|
|
|
typedef CFF1PrivateDictValues_Base<NumDictVal> CFF1PrivateDictValues;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-04 20:29:15 +02:00
|
|
|
struct CFF1PrivateDictOpSet : DictOpSet
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-01 01:28:47 +02:00
|
|
|
static inline bool process_op (OpCode op, NumInterpEnv& env, CFF1PrivateDictValues& dictval)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-01 01:28:47 +02:00
|
|
|
NumDictVal val;
|
2018-08-10 20:07:07 +02:00
|
|
|
val.init ();
|
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case OpCode_BlueValues:
|
|
|
|
case OpCode_OtherBlues:
|
|
|
|
case OpCode_FamilyBlues:
|
|
|
|
case OpCode_FamilyOtherBlues:
|
|
|
|
case OpCode_StemSnapH:
|
|
|
|
case OpCode_StemSnapV:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_delta (val.multi_val)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case OpCode_StdHW:
|
|
|
|
case OpCode_StdVW:
|
|
|
|
case OpCode_BlueScale:
|
|
|
|
case OpCode_BlueShift:
|
|
|
|
case OpCode_BlueFuzz:
|
|
|
|
case OpCode_ForceBold:
|
|
|
|
case OpCode_LanguageGroup:
|
|
|
|
case OpCode_ExpansionFactor:
|
|
|
|
case OpCode_initialRandomSeed:
|
|
|
|
case OpCode_defaultWidthX:
|
|
|
|
case OpCode_nominalWidthX:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_num (val.single_val)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
case OpCode_Subrs:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.subrsOffset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!DictOpSet::process_op (op, env)))
|
|
|
|
return false;
|
|
|
|
if (!env.argStack.is_empty ()) return true;
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
dictval.addOp (op, env.substr, val);
|
2018-08-10 20:07:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-04 20:29:15 +02:00
|
|
|
struct CFF1PrivateDictOpSet_Subset : DictOpSet
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-01 01:28:47 +02:00
|
|
|
static inline bool process_op (OpCode op, NumInterpEnv& env, CFF1PrivateDictValues_Subset& dictval)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
switch (op) {
|
|
|
|
case OpCode_BlueValues:
|
|
|
|
case OpCode_OtherBlues:
|
|
|
|
case OpCode_FamilyBlues:
|
|
|
|
case OpCode_FamilyOtherBlues:
|
|
|
|
case OpCode_StemSnapH:
|
|
|
|
case OpCode_StemSnapV:
|
|
|
|
case OpCode_StdHW:
|
|
|
|
case OpCode_StdVW:
|
|
|
|
case OpCode_BlueScale:
|
|
|
|
case OpCode_BlueShift:
|
|
|
|
case OpCode_BlueFuzz:
|
|
|
|
case OpCode_ForceBold:
|
|
|
|
case OpCode_LanguageGroup:
|
|
|
|
case OpCode_ExpansionFactor:
|
|
|
|
case OpCode_initialRandomSeed:
|
|
|
|
case OpCode_defaultWidthX:
|
|
|
|
case OpCode_nominalWidthX:
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OpCode_Subrs:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!env.argStack.check_pop_uint (dictval.subrsOffset)))
|
2018-08-10 20:07:07 +02:00
|
|
|
return false;
|
2018-08-31 22:28:16 +02:00
|
|
|
env.clear_args ();
|
2018-08-10 20:07:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!DictOpSet::process_op (op, env)))
|
|
|
|
return false;
|
|
|
|
if (!env.argStack.is_empty ()) return true;
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
dictval.addOp (op, env.substr);
|
2018-08-10 20:07:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
typedef DictInterpreter<CFF1TopDictOpSet, CFF1TopDictValues, CFF1TopDictInterpEnv> CFF1TopDict_Interpreter;
|
2018-08-16 09:13:09 +02:00
|
|
|
typedef DictInterpreter<CFF1FontDictOpSet, CFF1FontDictValues> CFF1FontDict_Interpreter;
|
|
|
|
typedef DictInterpreter<CFF1PrivateDictOpSet, CFF1PrivateDictValues> CFF1PrivateDict_Interpreter;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
typedef CFF1Index CFF1NameIndex;
|
|
|
|
typedef CFF1IndexOf<TopDict> CFF1TopDictIndex;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
}; /* namespace CFF */
|
|
|
|
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
using namespace CFF;
|
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
struct cff1
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-08-16 09:25:57 +02:00
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_cff1;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
likely (version.major == 1));
|
|
|
|
}
|
|
|
|
|
2018-09-01 01:28:47 +02:00
|
|
|
template <typename PRIVOPSET, typename PRIVDICTVAL>
|
2018-08-10 20:07:07 +02:00
|
|
|
struct accelerator_templ_t
|
|
|
|
{
|
|
|
|
inline void init (hb_face_t *face)
|
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
topDict.init ();
|
2018-08-10 20:07:07 +02:00
|
|
|
fontDicts.init ();
|
|
|
|
privateDicts.init ();
|
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
this->blob = sc.reference_table<cff1> (face);
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* setup for run-time santization */
|
|
|
|
sc.init (this->blob);
|
|
|
|
sc.start_processing ();
|
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
const OT::cff1 *cff = this->blob->template as<OT::cff1> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
if (cff == &Null(OT::cff1))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
|
|
|
nameIndex = &cff->nameIndex (cff);
|
2018-08-16 09:13:09 +02:00
|
|
|
if ((nameIndex == &Null (CFF1NameIndex)) || !nameIndex->sanitize (&sc))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
topDictIndex = &StructAtOffset<CFF1TopDictIndex> (nameIndex, nameIndex->get_size ());
|
|
|
|
if ((topDictIndex == &Null (CFF1TopDictIndex)) || !topDictIndex->sanitize (&sc) || (topDictIndex->count == 0))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
|
|
|
{ /* parse top dict */
|
|
|
|
const ByteStr topDictStr = (*topDictIndex)[0];
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!topDictStr.sanitize (&sc))) { fini (); return; }
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1TopDict_Interpreter top_interp;
|
2018-08-15 21:00:19 +02:00
|
|
|
top_interp.env.init (topDictStr);
|
2018-09-11 01:00:20 +02:00
|
|
|
if (unlikely (!top_interp.interpret (topDict))) { fini (); return; }
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
encoding = &Null(Encoding);
|
2018-09-11 01:00:20 +02:00
|
|
|
charset = &StructAtOffsetOrNull<Charset> (cff, topDict.CharsetOffset);
|
2018-09-07 02:28:15 +02:00
|
|
|
if (unlikely (is_CID () && (charset == &Null(Charset))))
|
|
|
|
{ fini (); return; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
fdCount = 1;
|
|
|
|
if (is_CID ())
|
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
fdArray = &StructAtOffsetOrNull<CFF1FDArray> (cff, topDict.FDArrayOffset);
|
|
|
|
fdSelect = &StructAtOffsetOrNull<CFF1FDSelect> (cff, topDict.FDSelectOffset);
|
2018-08-16 09:13:09 +02:00
|
|
|
if (unlikely ((fdArray == &Null(CFF1FDArray)) || !fdArray->sanitize (&sc) ||
|
|
|
|
(fdSelect == &Null(CFF1FDSelect)) || !fdSelect->sanitize (&sc, fdArray->count)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
|
|
|
fdCount = fdArray->count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-08-16 09:13:09 +02:00
|
|
|
fdArray = &Null(CFF1FDArray);
|
|
|
|
fdSelect = &Null(CFF1FDSelect);
|
2018-09-07 02:28:15 +02:00
|
|
|
if (!is_predef_encoding ())
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
encoding = &StructAtOffsetOrNull<Encoding> (cff, topDict.EncodingOffset);
|
2018-08-10 20:07:07 +02:00
|
|
|
if ((encoding == &Null (Encoding)) || !encoding->sanitize (&sc))
|
|
|
|
{ fini (); return; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
stringIndex = &StructAtOffset<CFF1StringIndex> (topDictIndex, topDictIndex->get_size ());
|
|
|
|
if ((stringIndex == &Null (CFF1StringIndex)) || !stringIndex->sanitize (&sc))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
globalSubrs = &StructAtOffset<CFF1Subrs> (stringIndex, stringIndex->get_size ());
|
|
|
|
if ((globalSubrs != &Null (CFF1Subrs)) && !stringIndex->sanitize (&sc))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
charStrings = &StructAtOffsetOrNull<CFF1CharStrings> (cff, topDict.charStringsOffset);
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
if ((charStrings == &Null(CFF1CharStrings)) || unlikely (!charStrings->sanitize (&sc)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{ fini (); return; }
|
|
|
|
|
|
|
|
num_glyphs = charStrings->count;
|
|
|
|
if (num_glyphs != sc.get_num_glyphs ())
|
|
|
|
{ fini (); return; }
|
|
|
|
|
|
|
|
privateDicts.resize (fdCount);
|
|
|
|
for (unsigned int i = 0; i < fdCount; i++)
|
|
|
|
privateDicts[i].init ();
|
|
|
|
|
|
|
|
// parse CID font dicts and gather private dicts
|
|
|
|
if (is_CID ())
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < fdCount; i++)
|
|
|
|
{
|
|
|
|
ByteStr fontDictStr = (*fdArray)[i];
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!fontDictStr.sanitize (&sc))) { fini (); return; }
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1FontDictValues *font;
|
|
|
|
CFF1FontDict_Interpreter font_interp;
|
2018-08-15 21:00:19 +02:00
|
|
|
font_interp.env.init (fontDictStr);
|
2018-08-10 20:07:07 +02:00
|
|
|
font = fontDicts.push ();
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!font_interp.interpret (*font))) { fini (); return; }
|
2018-09-01 01:28:47 +02:00
|
|
|
PRIVDICTVAL *priv = &privateDicts[i];
|
2018-08-10 20:07:07 +02:00
|
|
|
const ByteStr privDictStr (StructAtOffset<UnsizedByteStr> (cff, font->privateDictInfo.offset), font->privateDictInfo.size);
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!privDictStr.sanitize (&sc))) { fini (); return; }
|
2018-09-01 01:28:47 +02:00
|
|
|
DictInterpreter<PRIVOPSET, PRIVDICTVAL> priv_interp;
|
2018-08-15 21:00:19 +02:00
|
|
|
priv_interp.env.init (privDictStr);
|
|
|
|
if (unlikely (!priv_interp.interpret (*priv))) { fini (); return; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
priv->localSubrs = &StructAtOffsetOrNull<CFF1Subrs> (privDictStr.str, priv->subrsOffset);
|
|
|
|
if (priv->localSubrs != &Null(CFF1Subrs) &&
|
2018-08-10 20:07:07 +02:00
|
|
|
unlikely (!priv->localSubrs->sanitize (&sc)))
|
|
|
|
{ fini (); return; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* non-CID */
|
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
CFF1TopDictValues *font = &topDict;
|
2018-09-01 01:28:47 +02:00
|
|
|
PRIVDICTVAL *priv = &privateDicts[0];
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
const ByteStr privDictStr (StructAtOffset<UnsizedByteStr> (cff, font->privateDictInfo.offset), font->privateDictInfo.size);
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!privDictStr.sanitize (&sc))) { fini (); return; }
|
2018-09-01 01:28:47 +02:00
|
|
|
DictInterpreter<PRIVOPSET, PRIVDICTVAL> priv_interp;
|
2018-08-15 21:00:19 +02:00
|
|
|
priv_interp.env.init (privDictStr);
|
|
|
|
if (unlikely (!priv_interp.interpret (*priv))) { fini (); return; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
priv->localSubrs = &StructAtOffsetOrNull<CFF1Subrs> (privDictStr.str, priv->subrsOffset);
|
|
|
|
if (priv->localSubrs != &Null(CFF1Subrs) &&
|
2018-08-10 20:07:07 +02:00
|
|
|
unlikely (!priv->localSubrs->sanitize (&sc)))
|
|
|
|
{ fini (); return; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
sc.end_processing ();
|
2018-09-11 01:00:20 +02:00
|
|
|
topDict.fini ();
|
2018-08-10 20:07:07 +02:00
|
|
|
fontDicts.fini ();
|
|
|
|
privateDicts.fini ();
|
|
|
|
hb_blob_destroy (blob);
|
|
|
|
blob = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool is_valid (void) const { return blob != nullptr; }
|
2018-09-11 01:00:20 +02:00
|
|
|
inline bool is_CID (void) const { return topDict.is_CID (); }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
inline bool is_predef_encoding (void) const { return topDict.EncodingOffset <= ExpertEncoding; }
|
|
|
|
inline bool is_predef_charset (void) const { return topDict.CharsetOffset <= ExpertSubsetCharset; }
|
2018-09-07 02:28:15 +02:00
|
|
|
|
|
|
|
inline hb_codepoint_t glyph_to_code (hb_codepoint_t glyph) const
|
|
|
|
{
|
|
|
|
if (encoding != &Null(Encoding))
|
|
|
|
return encoding->get_code (glyph);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hb_codepoint_t sid = glyph_to_sid (glyph);
|
|
|
|
if (sid == 0) return 0;
|
|
|
|
hb_codepoint_t code = 0;
|
2018-09-11 01:00:20 +02:00
|
|
|
switch (topDict.EncodingOffset)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
|
|
|
case StandardEncoding:
|
|
|
|
code = lookup_standard_encoding (sid);
|
|
|
|
break;
|
|
|
|
case ExpertEncoding:
|
|
|
|
code = lookup_expert_encoding (sid);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline hb_codepoint_t glyph_to_sid (hb_codepoint_t glyph) const
|
|
|
|
{
|
|
|
|
if (charset != &Null(Charset))
|
|
|
|
return charset->get_sid (glyph);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hb_codepoint_t sid = 0;
|
2018-09-11 01:00:20 +02:00
|
|
|
switch (topDict.CharsetOffset)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
|
|
|
case ISOAdobeCharset:
|
|
|
|
if (glyph <= 228 /*zcaron*/) sid = glyph;
|
|
|
|
break;
|
|
|
|
case ExpertCharset:
|
|
|
|
sid = lookup_expert_charset (glyph);
|
|
|
|
break;
|
|
|
|
case ExpertSubsetCharset:
|
|
|
|
sid = lookup_expert_subset_charset (glyph);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return sid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
inline bool get_extents (hb_codepoint_t glyph,
|
|
|
|
hb_glyph_extents_t *extents) const
|
|
|
|
{
|
|
|
|
// XXX: TODO
|
|
|
|
if (glyph >= num_glyphs)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
hb_blob_t *blob;
|
|
|
|
hb_sanitize_context_t sc;
|
|
|
|
|
|
|
|
public:
|
2018-08-16 09:13:09 +02:00
|
|
|
const CFF1NameIndex *nameIndex;
|
|
|
|
const CFF1TopDictIndex *topDictIndex;
|
|
|
|
const CFF1StringIndex *stringIndex;
|
2018-08-10 20:07:07 +02:00
|
|
|
const Encoding *encoding;
|
|
|
|
const Charset *charset;
|
2018-08-16 09:13:09 +02:00
|
|
|
const CFF1Subrs *globalSubrs;
|
|
|
|
const CFF1CharStrings *charStrings;
|
|
|
|
const CFF1FDArray *fdArray;
|
|
|
|
const CFF1FDSelect *fdSelect;
|
2018-08-10 20:07:07 +02:00
|
|
|
unsigned int fdCount;
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
CFF1TopDictValues topDict;
|
2018-08-16 09:13:09 +02:00
|
|
|
hb_vector_t<CFF1FontDictValues> fontDicts;
|
2018-09-01 01:28:47 +02:00
|
|
|
hb_vector_t<PRIVDICTVAL> privateDicts;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
unsigned int num_glyphs;
|
|
|
|
};
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
typedef accelerator_templ_t<CFF1PrivateDictOpSet, CFF1PrivateDictValues> accelerator_t;
|
|
|
|
typedef accelerator_templ_t<CFF1PrivateDictOpSet_Subset, CFF1PrivateDictValues_Subset> accelerator_subset_t;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
inline bool subset (hb_subset_plan_t *plan) const
|
|
|
|
{
|
|
|
|
hb_blob_t *cff_prime = nullptr;
|
|
|
|
|
|
|
|
bool success = true;
|
2018-08-16 09:13:09 +02:00
|
|
|
if (hb_subset_cff1 (plan, &cff_prime)) {
|
2018-08-16 09:25:57 +02:00
|
|
|
success = success && plan->add_table (HB_OT_TAG_cff1, cff_prime);
|
2018-08-10 20:07:07 +02:00
|
|
|
} else {
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
hb_blob_destroy (cff_prime);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
protected:
|
2018-09-07 02:56:05 +02:00
|
|
|
HB_INTERNAL static hb_codepoint_t lookup_standard_encoding (hb_codepoint_t sid);
|
|
|
|
HB_INTERNAL static hb_codepoint_t lookup_expert_encoding (hb_codepoint_t sid);
|
|
|
|
HB_INTERNAL static hb_codepoint_t lookup_expert_charset (hb_codepoint_t glyph);
|
|
|
|
HB_INTERNAL static hb_codepoint_t lookup_expert_subset_charset (hb_codepoint_t glyph);
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
public:
|
|
|
|
FixedVersion<HBUINT8> version; /* Version of CFF table. set to 0x0100u */
|
2018-08-16 09:13:09 +02:00
|
|
|
OffsetTo<CFF1NameIndex, HBUINT8> nameIndex; /* headerSize = Offset to Name INDEX. */
|
2018-08-10 20:07:07 +02:00
|
|
|
HBUINT8 offSize; /* offset size (unused?) */
|
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
#endif /* HB_OT_CFF1_TABLE_HH */
|