2018-07-18 23:17:52 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hb-open-type-private.hh"
|
|
|
|
#include "hb-ot-cff2-table.hh"
|
|
|
|
#include "hb-set.h"
|
|
|
|
#include "hb-subset-cff2.hh"
|
|
|
|
#include "hb-subset-plan.hh"
|
2018-08-06 19:04:53 +02:00
|
|
|
#include "hb-subset-cff-common-private.hh"
|
2018-07-18 23:17:52 +02:00
|
|
|
|
2018-08-01 20:30:38 +02:00
|
|
|
using namespace CFF;
|
|
|
|
|
|
|
|
struct CFF2TopDict_OpSerializer : OpSerializer
|
2018-07-18 23:17:52 +02:00
|
|
|
{
|
2018-08-01 20:30:38 +02:00
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
const OpStr &opstr,
|
|
|
|
const SubTableOffsets &offsets) const
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
2018-07-18 23:17:52 +02:00
|
|
|
|
2018-08-01 20:30:38 +02:00
|
|
|
switch (opstr.op)
|
|
|
|
{
|
|
|
|
case OpCode_vstore:
|
|
|
|
return_trace (FontDict::serialize_offset4_op(c, opstr.op, offsets.varStoreOffset));
|
|
|
|
|
|
|
|
case OpCode_CharStrings:
|
|
|
|
return_trace (FontDict::serialize_offset4_op(c, opstr.op, offsets.charStringsOffset));
|
|
|
|
|
|
|
|
case OpCode_FDArray:
|
|
|
|
return_trace (FontDict::serialize_offset4_op(c, opstr.op, offsets.FDArrayOffset));
|
|
|
|
|
|
|
|
case OpCode_FDSelect:
|
|
|
|
return_trace (FontDict::serialize_offset4_op(c, opstr.op, offsets.FDSelectOffset));
|
|
|
|
|
|
|
|
default:
|
|
|
|
return_trace (copy_opstr (c, opstr));
|
|
|
|
}
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int calculate_serialized_size (const OpStr &opstr) const
|
|
|
|
{
|
|
|
|
switch (opstr.op)
|
|
|
|
{
|
|
|
|
case OpCode_vstore:
|
|
|
|
case OpCode_CharStrings:
|
|
|
|
case OpCode_FDArray:
|
|
|
|
case OpCode_FDSelect:
|
|
|
|
return OpCode_Size (OpCode_longint) + 4 + OpCode_Size (opstr.op);
|
|
|
|
|
|
|
|
default:
|
|
|
|
return opstr.str.len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CFF2FontDict_OpSerializer : OpSerializer
|
|
|
|
{
|
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
const OpStr &opstr,
|
|
|
|
const offset_size_pair& privOffSize) const
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
|
|
|
if (opstr.op == OpCode_Private)
|
|
|
|
{
|
|
|
|
/* serialize the private dict size as a 2-byte integer */
|
|
|
|
if (unlikely (!UnsizedByteStr::serialize_int2 (c, privOffSize.size)))
|
|
|
|
return_trace (false);
|
|
|
|
|
|
|
|
/* serialize the private dict offset as a 4-byte integer */
|
|
|
|
if (unlikely (!UnsizedByteStr::serialize_int4 (c, privOffSize.offset)))
|
|
|
|
return_trace (false);
|
|
|
|
|
|
|
|
/* serialize the opcode */
|
|
|
|
HBUINT8 *p = c->allocate_size<HBUINT8> (1);
|
|
|
|
if (unlikely (p == nullptr)) return_trace (false);
|
|
|
|
p->set (OpCode_Private);
|
|
|
|
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HBUINT8 *d = c->allocate_size<HBUINT8> (opstr.str.len);
|
|
|
|
if (unlikely (d == nullptr)) return_trace (false);
|
|
|
|
memcpy (d, &opstr.str.str[0], opstr.str.len);
|
|
|
|
}
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int calculate_serialized_size (const OpStr &opstr) const
|
|
|
|
{
|
|
|
|
if (opstr.op == OpCode_Private)
|
|
|
|
return OpCode_Size (OpCode_longint) + 4 + OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (OpCode_Private);
|
|
|
|
else
|
|
|
|
return opstr.str.len;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CFF2PrivateDict_OpSerializer : OpSerializer
|
|
|
|
{
|
|
|
|
inline bool serialize (hb_serialize_context_t *c,
|
|
|
|
const OpStr &opstr,
|
|
|
|
const unsigned int subrsOffset) const
|
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
|
|
|
if (opstr.op == OpCode_Subrs)
|
|
|
|
return_trace (FontDict::serialize_offset2_op(c, OpCode_Subrs, subrsOffset));
|
|
|
|
else
|
|
|
|
return_trace (copy_opstr (c, opstr));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int calculate_serialized_size (const OpStr &opstr) const
|
|
|
|
{
|
|
|
|
if (opstr.op == OpCode_Subrs)
|
|
|
|
return OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (OpCode_Subrs);
|
|
|
|
else
|
|
|
|
return opstr.str.len;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct subset_plan {
|
|
|
|
inline subset_plan (void)
|
2018-08-06 19:04:53 +02:00
|
|
|
: final_size (0),
|
2018-08-06 19:44:12 +02:00
|
|
|
orig_fdcount (0),
|
|
|
|
subst_fdcount(1),
|
|
|
|
subst_fdselect_format (0)
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
2018-08-06 19:04:53 +02:00
|
|
|
subst_fdselect_first_glyphs.init ();
|
|
|
|
fdmap.init ();
|
2018-08-01 20:30:38 +02:00
|
|
|
subset_charstrings.init ();
|
|
|
|
private_off_and_size_pairs.init ();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ~subset_plan (void)
|
|
|
|
{
|
2018-08-06 19:04:53 +02:00
|
|
|
subst_fdselect_first_glyphs.fini ();
|
|
|
|
fdmap.fini ();
|
2018-08-01 20:30:38 +02:00
|
|
|
subset_charstrings.fini ();
|
|
|
|
private_off_and_size_pairs.fini ();
|
|
|
|
}
|
|
|
|
|
2018-08-03 01:28:10 +02:00
|
|
|
inline bool create (const OT::cff2::accelerator_subset_t &acc,
|
2018-08-01 20:30:38 +02:00
|
|
|
hb_subset_plan_t *plan)
|
|
|
|
{
|
|
|
|
final_size = 0;
|
2018-08-06 19:04:53 +02:00
|
|
|
orig_fdcount = acc.fdArray->count;
|
2018-08-01 20:30:38 +02:00
|
|
|
|
|
|
|
/* CFF2 header */
|
|
|
|
final_size += OT::cff2::static_size;
|
|
|
|
|
|
|
|
/* top dict */
|
|
|
|
{
|
|
|
|
CFF2TopDict_OpSerializer topSzr;
|
2018-08-03 23:35:09 +02:00
|
|
|
offsets.topDictSize = TopDict::calculate_serialized_size (acc.top, topSzr);
|
2018-08-01 20:30:38 +02:00
|
|
|
final_size += offsets.topDictSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* global subrs */
|
|
|
|
final_size += acc.globalSubrs->get_size ();
|
|
|
|
|
|
|
|
/* variation store */
|
|
|
|
if (acc.varStore != &Null(CFF2VariationStore))
|
|
|
|
{
|
|
|
|
offsets.varStoreOffset = final_size;
|
|
|
|
final_size += acc.varStore->get_size ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDSelect */
|
2018-08-06 19:04:53 +02:00
|
|
|
if (acc.fdSelect != &Null(CFF2FDSelect))
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
|
|
|
offsets.FDSelectOffset = final_size;
|
2018-08-06 19:04:53 +02:00
|
|
|
if (unlikely (!hb_plan_subset_cff_fdselect (plan->glyphs,
|
|
|
|
orig_fdcount,
|
|
|
|
*acc.fdSelect,
|
|
|
|
subst_fdcount,
|
|
|
|
offsets.FDSelectSize,
|
|
|
|
subst_fdselect_format,
|
|
|
|
subst_fdselect_first_glyphs,
|
|
|
|
fdmap)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!is_fds_subsetted ())
|
|
|
|
offsets.FDSelectSize = acc.fdSelect->calculate_serialized_size (acc.num_glyphs);
|
|
|
|
final_size += offsets.FDSelectSize;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FDArray (FDIndex) */
|
|
|
|
{
|
|
|
|
offsets.FDArrayOffset = final_size;
|
|
|
|
CFF2FontDict_OpSerializer fontSzr;
|
2018-08-06 19:04:53 +02:00
|
|
|
final_size += FDArray::calculate_serialized_size(offsets.FDArrayOffSize/*OUT*/, acc.fontDicts, subst_fdcount, fdmap, fontSzr);
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CharStrings */
|
|
|
|
{
|
|
|
|
offsets.charStringsOffset = final_size;
|
|
|
|
unsigned int dataSize = 0;
|
|
|
|
for (unsigned int i = 0; i < plan->glyphs.len; i++)
|
|
|
|
{
|
|
|
|
const ByteStr str = (*acc.charStrings)[plan->glyphs[i]];
|
|
|
|
subset_charstrings.push (str);
|
|
|
|
dataSize += str.len;
|
|
|
|
}
|
|
|
|
offsets.charStringsOffSize = calcOffSize (dataSize + 1);
|
|
|
|
final_size += CharStrings::calculate_serialized_size (offsets.charStringsOffSize, plan->glyphs.len, dataSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* private dicts & local subrs */
|
|
|
|
offsets.privateDictsOffset = final_size;
|
2018-08-06 19:04:53 +02:00
|
|
|
for (unsigned int i = 0; i < orig_fdcount; i++)
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
|
|
|
CFF2PrivateDict_OpSerializer privSzr;
|
|
|
|
unsigned int private_size = PrivateDict::calculate_serialized_size (acc.privateDicts[i], privSzr);
|
|
|
|
offset_size_pair pair = { final_size, private_size };
|
|
|
|
private_off_and_size_pairs.push (pair);
|
|
|
|
final_size += private_size + acc.privateDicts[i].localSubrs->get_size ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_final_size (void) const { return final_size; }
|
|
|
|
|
|
|
|
unsigned int final_size;
|
|
|
|
SubTableOffsets offsets;
|
|
|
|
|
2018-08-06 19:04:53 +02:00
|
|
|
unsigned int orig_fdcount;
|
|
|
|
unsigned int subst_fdcount;
|
|
|
|
inline bool is_fds_subsetted (void) const { return subst_fdcount < orig_fdcount; }
|
|
|
|
unsigned int subst_fdselect_format;
|
|
|
|
hb_vector_t<hb_codepoint_t> subst_fdselect_first_glyphs;
|
|
|
|
|
|
|
|
/* font dict index remap table from fullset FDArray to subset FDArray.
|
|
|
|
* set to HB_SET_VALUE_INVALID if excluded from subset */
|
|
|
|
hb_vector_t<hb_codepoint_t> fdmap;
|
|
|
|
|
2018-08-01 20:30:38 +02:00
|
|
|
hb_vector_t<ByteStr> subset_charstrings;
|
|
|
|
hb_vector_t<offset_size_pair> private_off_and_size_pairs;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline bool _write_cff2 (const subset_plan &plan,
|
2018-08-03 01:28:10 +02:00
|
|
|
const OT::cff2::accelerator_subset_t &acc,
|
2018-08-06 19:04:53 +02:00
|
|
|
const hb_vector_t<hb_codepoint_t>& glyphs,
|
2018-08-01 20:30:38 +02:00
|
|
|
unsigned int dest_sz,
|
|
|
|
void *dest)
|
2018-07-18 23:17:52 +02:00
|
|
|
{
|
2018-08-01 20:30:38 +02:00
|
|
|
hb_serialize_context_t c (dest, dest_sz);
|
|
|
|
|
|
|
|
OT::cff2 *cff2 = c.start_serialize<OT::cff2> ();
|
|
|
|
if (unlikely (!c.extend_min (*cff2)))
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
|
|
|
|
/* header */
|
|
|
|
cff2->version.major.set (0x02);
|
|
|
|
cff2->version.minor.set (0x00);
|
|
|
|
cff2->topDict.set (OT::cff2::static_size);
|
|
|
|
|
|
|
|
/* top dict */
|
|
|
|
{
|
|
|
|
assert (cff2->topDict == c.head - c.start);
|
|
|
|
cff2->topDictSize.set (plan.offsets.topDictSize);
|
|
|
|
TopDict &dict = cff2 + cff2->topDict;
|
|
|
|
CFF2TopDict_OpSerializer topSzr;
|
|
|
|
if (unlikely (!dict.serialize (&c, acc.top, topSzr, plan.offsets)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 top dict");
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* global subrs */
|
|
|
|
{
|
|
|
|
assert (cff2->topDict + plan.offsets.topDictSize == c.head - c.start);
|
|
|
|
Subrs *dest = c.start_embed<Subrs> ();
|
2018-08-02 21:23:10 +02:00
|
|
|
if (unlikely (dest == nullptr)) return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
if (unlikely (!dest->serialize (&c, *acc.globalSubrs)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 global subrs");
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* variation store */
|
|
|
|
if (acc.varStore != &Null(CFF2VariationStore))
|
|
|
|
{
|
|
|
|
assert (plan.offsets.varStoreOffset == c.head - c.start);
|
|
|
|
CFF2VariationStore *dest = c.start_embed<CFF2VariationStore> ();
|
|
|
|
if (unlikely (!dest->serialize (&c, acc.varStore)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 Variation Store");
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDSelect */
|
2018-08-06 19:04:53 +02:00
|
|
|
if (acc.fdSelect != &Null(CFF2FDSelect))
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
|
|
|
assert (plan.offsets.FDSelectOffset == c.head - c.start);
|
2018-08-06 19:04:53 +02:00
|
|
|
|
|
|
|
if (plan.is_fds_subsetted ())
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
2018-08-06 19:04:53 +02:00
|
|
|
if (unlikely (!hb_serialize_cff_fdselect (&c, glyphs, *acc.fdSelect, acc.fdArray->count,
|
|
|
|
plan.subst_fdselect_format, plan.offsets.FDSelectSize,
|
|
|
|
plan.subst_fdselect_first_glyphs,
|
|
|
|
plan.fdmap)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 subset FDSelect");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CFF2FDSelect *dest = c.start_embed<CFF2FDSelect> ();
|
|
|
|
if (unlikely (!dest->serialize (&c, *acc.fdSelect, acc.num_glyphs)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 FDSelect");
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDArray (FD Index) */
|
|
|
|
{
|
|
|
|
assert (plan.offsets.FDArrayOffset == c.head - c.start);
|
|
|
|
FDArray *fda = c.start_embed<FDArray> ();
|
2018-08-02 21:23:10 +02:00
|
|
|
if (unlikely (fda == nullptr)) return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
CFF2FontDict_OpSerializer fontSzr;
|
2018-08-06 19:04:53 +02:00
|
|
|
if (unlikely (!fda->serialize (&c, plan.offsets.FDArrayOffSize,
|
|
|
|
acc.fontDicts, plan.subst_fdcount, plan.fdmap,
|
|
|
|
fontSzr, plan.private_off_and_size_pairs)))
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 FDArray");
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CharStrings */
|
|
|
|
{
|
|
|
|
assert (plan.offsets.charStringsOffset == c.head - c.start);
|
|
|
|
CharStrings *cs = c.start_embed<CharStrings> ();
|
2018-08-02 21:23:10 +02:00
|
|
|
if (unlikely (cs == nullptr)) return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
if (unlikely (!cs->serialize (&c, plan.offsets.charStringsOffSize, plan.subset_charstrings)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 CharStrings");
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* private dicts & local subrs */
|
|
|
|
assert (plan.offsets.privateDictsOffset == c.head - c.start);
|
|
|
|
for (unsigned int i = 0; i < acc.privateDicts.len; i++)
|
|
|
|
{
|
|
|
|
PrivateDict *pd = c.start_embed<PrivateDict> ();
|
2018-08-02 21:23:10 +02:00
|
|
|
if (unlikely (pd == nullptr)) return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
CFF2PrivateDict_OpSerializer privSzr;
|
2018-08-03 01:28:10 +02:00
|
|
|
/* N.B. local subrs immediately follows its corresponding private dict. i.e., subr offset == private dict size */
|
|
|
|
if (unlikely (!pd->serialize (&c, acc.privateDicts[i], privSzr, plan.private_off_and_size_pairs[i].size)))
|
2018-08-01 20:30:38 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 Private Dict[%d]", i);
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
if (acc.privateDicts[i].subrsOffset != 0)
|
|
|
|
{
|
2018-08-03 01:28:10 +02:00
|
|
|
Subrs *subrs = c.start_embed<Subrs> ();
|
2018-08-01 20:30:38 +02:00
|
|
|
if (unlikely (subrs == nullptr) || acc.privateDicts[i].localSubrs == &Null(Subrs))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "CFF2 subset: local subrs unexpectedly null [%d]", i);
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
if (unlikely (!subrs->serialize (&c, *acc.privateDicts[i].localSubrs)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF2 local subrs [%d]", i);
|
2018-08-02 21:23:10 +02:00
|
|
|
return false;
|
2018-08-01 20:30:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.end_serialize ();
|
|
|
|
|
2018-07-18 23:17:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2018-08-03 01:28:10 +02:00
|
|
|
_hb_subset_cff2 (const OT::cff2::accelerator_subset_t &acc,
|
2018-08-01 20:30:38 +02:00
|
|
|
const char *data,
|
|
|
|
hb_subset_plan_t *plan,
|
|
|
|
hb_blob_t **prime /* OUT */)
|
2018-07-18 23:17:52 +02:00
|
|
|
{
|
2018-08-01 20:30:38 +02:00
|
|
|
subset_plan cff2_subset_plan;
|
|
|
|
|
|
|
|
if (unlikely (!cff2_subset_plan.create (acc, plan)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to generate a cff2 subsetting plan.");
|
2018-07-18 23:17:52 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-01 20:30:38 +02:00
|
|
|
unsigned int cff2_prime_size = cff2_subset_plan.get_final_size ();
|
2018-07-18 23:17:52 +02:00
|
|
|
char *cff2_prime_data = (char *) calloc (1, cff2_prime_size);
|
2018-08-01 20:30:38 +02:00
|
|
|
|
2018-08-06 19:04:53 +02:00
|
|
|
if (unlikely (!_write_cff2 (cff2_subset_plan, acc, plan->glyphs,
|
2018-08-01 20:30:38 +02:00
|
|
|
cff2_prime_size, cff2_prime_data))) {
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to write a subset cff2.");
|
2018-07-18 23:17:52 +02:00
|
|
|
free (cff2_prime_data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-01 20:30:38 +02:00
|
|
|
*prime = hb_blob_create (cff2_prime_data,
|
2018-07-18 23:17:52 +02:00
|
|
|
cff2_prime_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
cff2_prime_data,
|
|
|
|
free);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_cff2:
|
|
|
|
* Subsets the CFF2 table according to a provided plan.
|
|
|
|
*
|
|
|
|
* Return value: subsetted cff2 table.
|
|
|
|
**/
|
|
|
|
bool
|
|
|
|
hb_subset_cff2 (hb_subset_plan_t *plan,
|
2018-08-01 20:30:38 +02:00
|
|
|
hb_blob_t **prime /* OUT */)
|
2018-07-18 23:17:52 +02:00
|
|
|
{
|
2018-08-02 20:39:22 +02:00
|
|
|
hb_blob_t *cff2_blob = hb_sanitize_context_t().reference_table<CFF::cff2> (plan->source);
|
2018-08-01 20:30:38 +02:00
|
|
|
const char *data = hb_blob_get_data(cff2_blob, nullptr);
|
2018-07-18 23:17:52 +02:00
|
|
|
|
2018-08-03 01:28:10 +02:00
|
|
|
OT::cff2::accelerator_subset_t acc;
|
2018-08-01 20:30:38 +02:00
|
|
|
acc.init(plan->source);
|
|
|
|
bool result = likely (acc.is_valid ()) &&
|
|
|
|
_hb_subset_cff2 (acc,
|
|
|
|
data,
|
2018-07-18 23:17:52 +02:00
|
|
|
plan,
|
2018-08-01 20:30:38 +02:00
|
|
|
prime);
|
2018-07-18 23:17:52 +02:00
|
|
|
|
|
|
|
hb_blob_destroy (cff2_blob);
|
2018-08-01 20:30:38 +02:00
|
|
|
acc.fini();
|
2018-07-18 23:17:52 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|