2018-08-10 20:07:07 +02:00
|
|
|
/*
|
2018-11-12 17:47:07 +01:00
|
|
|
* Copyright © 2018 Adobe Inc.
|
2018-08-10 20:07:07 +02:00
|
|
|
*
|
|
|
|
* 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-29 22:26:17 +02:00
|
|
|
#include "hb-open-type.hh"
|
2018-08-16 09:13:09 +02:00
|
|
|
#include "hb-ot-cff1-table.hh"
|
2018-08-10 20:07:07 +02:00
|
|
|
#include "hb-set.h"
|
2018-08-16 09:13:09 +02:00
|
|
|
#include "hb-subset-cff1.hh"
|
2018-08-10 20:07:07 +02:00
|
|
|
#include "hb-subset-plan.hh"
|
2018-08-29 22:26:17 +02:00
|
|
|
#include "hb-subset-cff-common.hh"
|
2018-08-16 09:13:09 +02:00
|
|
|
#include "hb-cff1-interp-cs.hh"
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
using namespace CFF;
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct remap_sid_t : remap_t
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int add (unsigned int sid)
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
if ((sid != CFF_UNDEF_SID) && !is_std_std (sid))
|
2018-12-22 16:47:04 +01:00
|
|
|
return offset_sid (remap_t::add (unoffset_sid (sid)));
|
2018-09-11 01:00:20 +02:00
|
|
|
else
|
|
|
|
return sid;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int operator[] (unsigned int sid) const
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-11-16 00:39:43 +01:00
|
|
|
if (is_std_std (sid) || (sid == CFF_UNDEF_SID))
|
2018-09-11 01:00:20 +02:00
|
|
|
return sid;
|
|
|
|
else
|
2018-12-22 16:47:04 +01:00
|
|
|
return offset_sid (remap_t::operator [] (unoffset_sid (sid)));
|
2018-09-11 01:00:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const unsigned int num_std_strings = 391;
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
static bool is_std_std (unsigned int sid) { return sid < num_std_strings; }
|
|
|
|
static unsigned int offset_sid (unsigned int sid) { return sid + num_std_strings; }
|
|
|
|
static unsigned int unoffset_sid (unsigned int sid) { return sid - num_std_strings; }
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct cff1_sub_table_offsets_t : cff_sub_table_offsets_t
|
2018-08-30 03:18:18 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
cff1_sub_table_offsets_t ()
|
|
|
|
: cff_sub_table_offsets_t (),
|
2018-08-30 03:18:18 +02:00
|
|
|
nameIndexOffset (0),
|
2018-09-11 01:00:20 +02:00
|
|
|
encodingOffset (0)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-09-11 01:00:20 +02:00
|
|
|
stringIndexInfo.init ();
|
|
|
|
charsetInfo.init ();
|
2018-08-30 03:18:18 +02:00
|
|
|
privateDictInfo.init ();
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int nameIndexOffset;
|
2018-12-22 16:47:04 +01:00
|
|
|
table_info_t stringIndexInfo;
|
2018-08-10 20:07:07 +02:00
|
|
|
unsigned int encodingOffset;
|
2018-12-22 16:47:04 +01:00
|
|
|
table_info_t charsetInfo;
|
|
|
|
table_info_t privateDictInfo;
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
/* a copy of a parsed out cff1_top_dict_values_t augmented with additional operators */
|
|
|
|
struct cff1_top_dict_values_mod_t : cff1_top_dict_values_t
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
void init (const cff1_top_dict_values_t *base_= &Null(cff1_top_dict_values_t))
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
SUPER::init ();
|
|
|
|
base = base_;
|
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini () { SUPER::fini (); }
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned get_count () const { return base->get_count () + SUPER::get_count (); }
|
2018-12-22 16:47:04 +01:00
|
|
|
const cff1_top_dict_val_t &get_value (unsigned int i) const
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-11-01 06:30:34 +01:00
|
|
|
if (i < base->get_count ())
|
2018-09-11 01:00:20 +02:00
|
|
|
return (*base)[i];
|
|
|
|
else
|
2018-11-01 06:30:34 +01:00
|
|
|
return SUPER::values[i - base->get_count ()];
|
2018-09-11 01:00:20 +02:00
|
|
|
}
|
2018-12-22 16:47:04 +01:00
|
|
|
const cff1_top_dict_val_t &operator [] (unsigned int i) const { return get_value (i); }
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
void reassignSIDs (const remap_sid_t& sidmap)
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
for (unsigned int i = 0; i < name_dict_values_t::ValCount; i++)
|
2018-09-11 01:00:20 +02:00
|
|
|
nameSIDs[i] = sidmap[base->nameSIDs[i]];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2018-12-22 16:47:04 +01:00
|
|
|
typedef cff1_top_dict_values_t SUPER;
|
|
|
|
const cff1_top_dict_values_t *base;
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct top_dict_modifiers_t
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
top_dict_modifiers_t (const cff1_sub_table_offsets_t &offsets_,
|
|
|
|
const unsigned int (&nameSIDs_)[name_dict_values_t::ValCount])
|
2018-09-11 01:00:20 +02:00
|
|
|
: offsets (offsets_),
|
|
|
|
nameSIDs (nameSIDs_)
|
|
|
|
{}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
const cff1_sub_table_offsets_t &offsets;
|
|
|
|
const unsigned int (&nameSIDs)[name_dict_values_t::ValCount];
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct cff1_top_dict_op_serializer_t : cff_top_dict_op_serializer_t<cff1_top_dict_val_t>
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
bool serialize (hb_serialize_context_t *c,
|
2018-12-22 16:47:04 +01:00
|
|
|
const cff1_top_dict_val_t &opstr,
|
|
|
|
const top_dict_modifiers_t &mod) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
op_code_t op = opstr.op;
|
2018-09-11 01:00:20 +02:00
|
|
|
switch (op)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
case OpCode_charset:
|
2018-12-01 05:04:59 +01:00
|
|
|
return_trace (FontDict::serialize_offset4_op(c, op, mod.offsets.charsetInfo.offset));
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
case OpCode_Encoding:
|
2018-12-01 05:04:59 +01:00
|
|
|
return_trace (FontDict::serialize_offset4_op(c, op, mod.offsets.encodingOffset));
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
case OpCode_Private:
|
2018-12-01 05:04:59 +01:00
|
|
|
{
|
|
|
|
if (unlikely (!UnsizedByteStr::serialize_int2 (c, mod.offsets.privateDictInfo.size)))
|
|
|
|
return_trace (false);
|
|
|
|
if (unlikely (!UnsizedByteStr::serialize_int4 (c, mod.offsets.privateDictInfo.offset)))
|
|
|
|
return_trace (false);
|
|
|
|
HBUINT8 *p = c->allocate_size<HBUINT8> (1);
|
|
|
|
if (unlikely (p == nullptr)) return_trace (false);
|
2019-03-30 04:17:46 +01:00
|
|
|
*p = OpCode_Private;
|
2018-12-01 05:04:59 +01:00
|
|
|
}
|
|
|
|
break;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_version:
|
|
|
|
case OpCode_Notice:
|
|
|
|
case OpCode_Copyright:
|
|
|
|
case OpCode_FullName:
|
|
|
|
case OpCode_FamilyName:
|
|
|
|
case OpCode_Weight:
|
|
|
|
case OpCode_PostScript:
|
|
|
|
case OpCode_BaseFontName:
|
|
|
|
case OpCode_FontName:
|
2018-12-22 16:47:04 +01:00
|
|
|
return_trace (FontDict::serialize_offset2_op(c, op, mod.nameSIDs[name_dict_values_t::name_op_to_index (op)]));
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
case OpCode_ROS:
|
2018-12-01 05:04:59 +01:00
|
|
|
{
|
|
|
|
/* for registry & ordering, reassigned SIDs are serialized
|
|
|
|
* for supplement, the original byte string is copied along with the op code */
|
2018-12-22 16:47:04 +01:00
|
|
|
op_str_t supp_op;
|
2018-12-01 05:04:59 +01:00
|
|
|
supp_op.op = op;
|
2018-12-22 16:47:04 +01:00
|
|
|
if ( unlikely (!(opstr.str.length >= opstr.last_arg_offset + 3)))
|
2018-12-11 21:20:20 +01:00
|
|
|
return_trace (false);
|
2018-12-22 16:47:04 +01:00
|
|
|
supp_op.str = byte_str_t (&opstr.str + opstr.last_arg_offset, opstr.str.length - opstr.last_arg_offset);
|
|
|
|
return_trace (UnsizedByteStr::serialize_int2 (c, mod.nameSIDs[name_dict_values_t::registry]) &&
|
|
|
|
UnsizedByteStr::serialize_int2 (c, mod.nameSIDs[name_dict_values_t::ordering]) &&
|
2018-12-11 21:20:20 +01:00
|
|
|
copy_opstr (c, supp_op));
|
2018-12-01 05:04:59 +01:00
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
default:
|
2018-12-22 16:47:04 +01:00
|
|
|
return_trace (cff_top_dict_op_serializer_t<cff1_top_dict_val_t>::serialize (c, opstr, mod.offsets));
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
unsigned int calculate_serialized_size (const cff1_top_dict_val_t &opstr) const
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
op_code_t op = opstr.op;
|
2018-09-11 01:00:20 +02:00
|
|
|
switch (op)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
case OpCode_charset:
|
|
|
|
case OpCode_Encoding:
|
2018-12-01 05:04:59 +01:00
|
|
|
return OpCode_Size (OpCode_longintdict) + 4 + OpCode_Size (op);
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
case OpCode_Private:
|
2018-12-01 05:04:59 +01:00
|
|
|
return OpCode_Size (OpCode_longintdict) + 4 + OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (OpCode_Private);
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
case OpCode_version:
|
|
|
|
case OpCode_Notice:
|
|
|
|
case OpCode_Copyright:
|
|
|
|
case OpCode_FullName:
|
|
|
|
case OpCode_FamilyName:
|
|
|
|
case OpCode_Weight:
|
|
|
|
case OpCode_PostScript:
|
|
|
|
case OpCode_BaseFontName:
|
|
|
|
case OpCode_FontName:
|
2018-12-01 05:04:59 +01:00
|
|
|
return OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (op);
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
case OpCode_ROS:
|
2018-12-22 16:47:04 +01:00
|
|
|
return ((OpCode_Size (OpCode_shortint) + 2) * 2) + (opstr.str.length - opstr.last_arg_offset)/* supplement + op */;
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
default:
|
2018-12-22 16:47:04 +01:00
|
|
|
return cff_top_dict_op_serializer_t<cff1_top_dict_val_t>::calculate_serialized_size (opstr);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct font_dict_values_mod_t
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
void init (const cff1_font_dict_values_t *base_,
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int fontName_,
|
2018-12-22 16:47:04 +01:00
|
|
|
const table_info_t &privateDictInfo_)
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
base = base_;
|
|
|
|
fontName = fontName_;
|
|
|
|
privateDictInfo = privateDictInfo_;
|
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned get_count () const { return base->get_count (); }
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
const op_str_t &operator [] (unsigned int i) const { return (*base)[i]; }
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
const cff1_font_dict_values_t *base;
|
|
|
|
table_info_t privateDictInfo;
|
2018-12-01 05:04:59 +01:00
|
|
|
unsigned int fontName;
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct cff1_font_dict_op_serializer_t : cff_font_dict_op_serializer_t
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
bool serialize (hb_serialize_context_t *c,
|
2018-12-22 16:47:04 +01:00
|
|
|
const op_str_t &opstr,
|
|
|
|
const font_dict_values_mod_t &mod) const
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
TRACE_SERIALIZE (this);
|
|
|
|
|
|
|
|
if (opstr.op == OpCode_FontName)
|
|
|
|
return_trace (FontDict::serialize_uint2_op (c, opstr.op, mod.fontName));
|
|
|
|
else
|
|
|
|
return_trace (SUPER::serialize (c, opstr, mod.privateDictInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
unsigned int calculate_serialized_size (const op_str_t &opstr) const
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
if (opstr.op == OpCode_FontName)
|
|
|
|
return OpCode_Size (OpCode_shortint) + 2 + OpCode_Size (OpCode_FontName);
|
|
|
|
else
|
|
|
|
return SUPER::calculate_serialized_size (opstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-12-22 16:47:04 +01:00
|
|
|
typedef cff_font_dict_op_serializer_t SUPER;
|
2018-09-11 01:00:20 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct cff1_cs_opset_flatten_t : cff1_cs_opset_t<cff1_cs_opset_flatten_t, flatten_param_t>
|
2018-08-18 01:50:13 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
static void flush_args_and_op (op_code_t op, cff1_cs_interp_env_t &env, flatten_param_t& param)
|
2018-08-18 01:50:13 +02:00
|
|
|
{
|
2018-11-01 06:30:34 +01:00
|
|
|
if (env.arg_start > 0)
|
2018-09-19 02:24:30 +02:00
|
|
|
flush_width (env, param);
|
|
|
|
|
2018-08-29 21:14:30 +02:00
|
|
|
switch (op)
|
|
|
|
{
|
2018-08-31 22:28:16 +02:00
|
|
|
case OpCode_hstem:
|
|
|
|
case OpCode_hstemhm:
|
|
|
|
case OpCode_vstem:
|
|
|
|
case OpCode_vstemhm:
|
2018-08-29 21:14:30 +02:00
|
|
|
case OpCode_hintmask:
|
|
|
|
case OpCode_cntrmask:
|
2018-11-16 21:28:24 +01:00
|
|
|
case OpCode_dotsection:
|
2018-12-01 05:04:59 +01:00
|
|
|
if (param.drop_hints)
|
|
|
|
{
|
|
|
|
env.clear_args ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
HB_FALLTHROUGH;
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-08-29 21:14:30 +02:00
|
|
|
default:
|
2018-12-01 05:04:59 +01:00
|
|
|
SUPER::flush_args_and_op (op, env, param);
|
|
|
|
break;
|
2018-08-29 21:14:30 +02:00
|
|
|
}
|
2018-08-18 01:50:13 +02:00
|
|
|
}
|
2018-12-22 16:47:04 +01:00
|
|
|
static void flush_args (cff1_cs_interp_env_t &env, flatten_param_t& param)
|
2018-08-18 01:50:13 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
str_encoder_t encoder (param.flatStr);
|
2018-11-01 06:30:34 +01:00
|
|
|
for (unsigned int i = env.arg_start; i < env.argStack.get_count (); i++)
|
|
|
|
encoder.encode_num (env.eval_arg (i));
|
|
|
|
SUPER::flush_args (env, param);
|
2018-08-31 22:28:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
static void flush_op (op_code_t op, cff1_cs_interp_env_t &env, flatten_param_t& param)
|
2018-08-31 22:28:16 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
str_encoder_t encoder (param.flatStr);
|
2018-11-01 06:30:34 +01:00
|
|
|
encoder.encode_op (op);
|
2018-08-31 22:28:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
static void flush_width (cff1_cs_interp_env_t &env, flatten_param_t& param)
|
2018-09-19 02:24:30 +02:00
|
|
|
{
|
|
|
|
assert (env.has_width);
|
2018-12-22 16:47:04 +01:00
|
|
|
str_encoder_t encoder (param.flatStr);
|
2018-11-01 06:30:34 +01:00
|
|
|
encoder.encode_num (env.width);
|
2018-09-19 02:24:30 +02:00
|
|
|
}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
static void flush_hintmask (op_code_t op, cff1_cs_interp_env_t &env, flatten_param_t& param)
|
2018-08-31 22:28:16 +02:00
|
|
|
{
|
|
|
|
SUPER::flush_hintmask (op, env, param);
|
2018-09-04 19:25:21 +02:00
|
|
|
if (!param.drop_hints)
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
str_encoder_t encoder (param.flatStr);
|
2018-09-04 19:25:21 +02:00
|
|
|
for (unsigned int i = 0; i < env.hintmask_size; i++)
|
2018-12-22 16:47:04 +01:00
|
|
|
encoder.encode_byte (env.str_ref[i]);
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
2018-08-18 01:50:13 +02:00
|
|
|
}
|
2018-08-29 21:14:30 +02:00
|
|
|
|
|
|
|
private:
|
2018-12-22 16:47:04 +01:00
|
|
|
typedef cff1_cs_opset_t<cff1_cs_opset_flatten_t, flatten_param_t> SUPER;
|
2018-08-18 01:50:13 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct range_list_t : hb_vector_t<code_pair_t>
|
2018-09-12 22:22:19 +02:00
|
|
|
{
|
|
|
|
/* replace the first glyph ID in the "glyph" field each range with a nLeft value */
|
2018-12-16 20:08:10 +01:00
|
|
|
bool finalize (unsigned int last_glyph)
|
2018-09-12 22:22:19 +02:00
|
|
|
{
|
2018-11-17 02:29:03 +01:00
|
|
|
bool two_byte = false;
|
2018-12-22 00:46:51 +01:00
|
|
|
for (unsigned int i = (*this).length; i > 0; i--)
|
2018-09-12 22:22:19 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
code_pair_t &pair = (*this)[i - 1];
|
2018-09-12 22:22:19 +02:00
|
|
|
unsigned int nLeft = last_glyph - pair.glyph - 1;
|
2018-11-17 02:29:03 +01:00
|
|
|
if (nLeft >= 0x100)
|
2018-12-01 05:04:59 +01:00
|
|
|
two_byte = true;
|
2018-09-12 22:22:19 +02:00
|
|
|
last_glyph = pair.glyph;
|
|
|
|
pair.glyph = nLeft;
|
|
|
|
}
|
2018-11-17 02:29:03 +01:00
|
|
|
return two_byte;
|
2018-09-12 22:22:19 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
struct cff1_cs_opset_subr_subset_t : cff1_cs_opset_t<cff1_cs_opset_subr_subset_t, subr_subset_param_t>
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
static void process_op (op_code_t op, cff1_cs_interp_env_t &env, subr_subset_param_t& param)
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
|
|
|
switch (op) {
|
|
|
|
|
|
|
|
case OpCode_return:
|
2018-12-22 16:47:04 +01:00
|
|
|
param.current_parsed_str->add_op (op, env.str_ref);
|
2018-12-01 05:04:59 +01:00
|
|
|
param.current_parsed_str->set_parsed ();
|
|
|
|
env.returnFromSubr ();
|
2018-12-11 21:21:24 +01:00
|
|
|
param.set_current_str (env, false);
|
2018-12-01 05:04:59 +01:00
|
|
|
break;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
case OpCode_endchar:
|
2018-12-22 16:47:04 +01:00
|
|
|
param.current_parsed_str->add_op (op, env.str_ref);
|
2018-12-01 05:04:59 +01:00
|
|
|
param.current_parsed_str->set_parsed ();
|
|
|
|
SUPER::process_op (op, env, param);
|
|
|
|
break;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
case OpCode_callsubr:
|
2018-12-01 05:04:59 +01:00
|
|
|
process_call_subr (op, CSType_LocalSubr, env, param, env.localSubrs, param.local_closure);
|
|
|
|
break;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
case OpCode_callgsubr:
|
2018-12-01 05:04:59 +01:00
|
|
|
process_call_subr (op, CSType_GlobalSubr, env, param, env.globalSubrs, param.global_closure);
|
|
|
|
break;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
default:
|
2018-12-01 05:04:59 +01:00
|
|
|
SUPER::process_op (op, env, param);
|
2018-12-22 16:47:04 +01:00
|
|
|
param.current_parsed_str->add_op (op, env.str_ref);
|
2018-12-01 05:04:59 +01:00
|
|
|
break;
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2018-12-22 16:47:04 +01:00
|
|
|
static void process_call_subr (op_code_t op, cs_type_t type,
|
|
|
|
cff1_cs_interp_env_t &env, subr_subset_param_t& param,
|
|
|
|
cff1_biased_subrs_t& subrs, hb_set_t *closure)
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
byte_str_ref_t str_ref = env.str_ref;
|
2018-11-01 06:30:34 +01:00
|
|
|
env.callSubr (subrs, type);
|
2018-12-22 16:47:04 +01:00
|
|
|
param.current_parsed_str->add_call_op (op, str_ref, env.context.subr_num);
|
2018-11-01 06:30:34 +01:00
|
|
|
hb_set_add (closure, env.context.subr_num);
|
2018-12-11 21:21:24 +01:00
|
|
|
param.set_current_str (env, true);
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-12-22 16:47:04 +01:00
|
|
|
typedef cff1_cs_opset_t<cff1_cs_opset_subr_subset_t, subr_subset_param_t> SUPER;
|
2018-11-01 06:30:34 +01:00
|
|
|
};
|
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
struct cff1_subr_subsetter_t : subr_subsetter_t<cff1_subr_subsetter_t, CFF1Subrs, const OT::cff1::accelerator_subset_t, cff1_cs_interp_env_t, cff1_cs_opset_subr_subset_t, OpCode_endchar>
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2019-01-31 23:16:37 +01:00
|
|
|
cff1_subr_subsetter_t (const OT::cff1::accelerator_subset_t &acc, const hb_subset_plan_t *plan)
|
|
|
|
: subr_subsetter_t (acc, plan) {}
|
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
static void finalize_parsed_str (cff1_cs_interp_env_t &env, subr_subset_param_t& param, parsed_cs_str_t &charstring)
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-11-04 06:42:22 +01:00
|
|
|
/* insert width at the beginning of the charstring as necessary */
|
2018-11-02 23:28:01 +01:00
|
|
|
if (env.has_width)
|
2018-11-01 06:30:34 +01:00
|
|
|
charstring.set_prefix (env.width);
|
2018-11-04 06:42:22 +01:00
|
|
|
|
|
|
|
/* subroutines/charstring left on the call stack are legally left unmarked
|
|
|
|
* unmarked when a subroutine terminates with endchar. mark them.
|
|
|
|
*/
|
|
|
|
param.current_parsed_str->set_parsed ();
|
|
|
|
for (unsigned int i = 0; i < env.callStack.get_count (); i++)
|
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
parsed_cs_str_t *parsed_str = param.get_parsed_str_for_context (env.callStack[i]);
|
2018-11-04 06:42:22 +01:00
|
|
|
if (likely (parsed_str != nullptr))
|
2018-12-01 05:04:59 +01:00
|
|
|
parsed_str->set_parsed ();
|
2018-11-04 06:42:22 +01:00
|
|
|
else
|
2018-12-01 05:04:59 +01:00
|
|
|
env.set_error ();
|
2018-11-04 06:42:22 +01:00
|
|
|
}
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
struct cff_subset_plan {
|
2018-12-17 19:01:01 +01:00
|
|
|
cff_subset_plan ()
|
2018-08-10 20:07:07 +02:00
|
|
|
: final_size (0),
|
2018-08-29 21:14:30 +02:00
|
|
|
offsets (),
|
2018-10-03 06:08:36 +02:00
|
|
|
orig_fdcount (0),
|
2018-10-03 05:44:30 +02:00
|
|
|
subset_fdcount (1),
|
2018-10-02 23:38:06 +02:00
|
|
|
subset_fdselect_format (0),
|
2018-11-01 06:30:34 +01:00
|
|
|
drop_hints (false),
|
|
|
|
desubroutinize(false)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
topdict_sizes.init ();
|
|
|
|
topdict_sizes.resize (1);
|
2018-09-07 02:28:15 +02:00
|
|
|
topdict_mod.init ();
|
2018-09-13 01:08:54 +02:00
|
|
|
subset_fdselect_ranges.init ();
|
2018-08-10 20:07:07 +02:00
|
|
|
fdmap.init ();
|
|
|
|
subset_charstrings.init ();
|
2018-11-01 06:30:34 +01:00
|
|
|
subset_globalsubrs.init ();
|
|
|
|
subset_localsubrs.init ();
|
2018-09-11 01:00:20 +02:00
|
|
|
fontdicts_mod.init ();
|
2018-09-07 02:28:15 +02:00
|
|
|
subset_enc_code_ranges.init ();
|
|
|
|
subset_enc_supp_codes.init ();
|
|
|
|
subset_charset_ranges.init ();
|
2018-09-11 01:00:20 +02:00
|
|
|
sidmap.init ();
|
2018-12-22 16:47:04 +01:00
|
|
|
for (unsigned int i = 0; i < name_dict_values_t::ValCount; i++)
|
2018-09-11 01:00:20 +02:00
|
|
|
topDictModSIDs[i] = CFF_UNDEF_SID;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
~cff_subset_plan ()
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
topdict_sizes.fini ();
|
2018-09-07 02:28:15 +02:00
|
|
|
topdict_mod.fini ();
|
2018-09-13 01:08:54 +02:00
|
|
|
subset_fdselect_ranges.fini ();
|
2018-08-10 20:07:07 +02:00
|
|
|
fdmap.fini ();
|
2018-11-01 18:31:21 +01:00
|
|
|
subset_charstrings.fini_deep ();
|
|
|
|
subset_globalsubrs.fini_deep ();
|
2018-11-01 06:30:34 +01:00
|
|
|
subset_localsubrs.fini_deep ();
|
2018-09-11 01:00:20 +02:00
|
|
|
fontdicts_mod.fini ();
|
2018-09-07 02:28:15 +02:00
|
|
|
subset_enc_code_ranges.fini ();
|
2019-01-08 21:37:48 +01:00
|
|
|
subset_enc_supp_codes.fini ();
|
2018-09-07 02:28:15 +02:00
|
|
|
subset_charset_ranges.fini ();
|
2018-09-11 01:00:20 +02:00
|
|
|
sidmap.fini ();
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int plan_subset_encoding (const OT::cff1::accelerator_subset_t &acc, hb_subset_plan_t *plan)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
|
|
|
const Encoding *encoding = acc.encoding;
|
|
|
|
unsigned int size0, size1, supp_size;
|
|
|
|
hb_codepoint_t code, last_code = CFF_UNDEF_CODE;
|
|
|
|
hb_vector_t<hb_codepoint_t> supp_codes;
|
|
|
|
|
|
|
|
subset_enc_code_ranges.resize (0);
|
|
|
|
supp_size = 0;
|
|
|
|
supp_codes.init ();
|
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
subset_enc_num_codes = plan->num_output_glyphs () - 1;
|
2018-09-07 02:28:15 +02:00
|
|
|
unsigned int glyph;
|
2019-01-31 23:16:37 +01:00
|
|
|
for (glyph = 1; glyph < plan->num_output_glyphs (); glyph++)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
hb_codepoint_t old_glyph;
|
|
|
|
if (!plan->old_gid_for_new_gid (glyph, &old_glyph))
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
/* Retain the code for the old missing glyph ID */
|
|
|
|
old_glyph = glyph;
|
2019-01-31 23:16:37 +01:00
|
|
|
}
|
2019-02-01 23:50:01 +01:00
|
|
|
code = acc.glyph_to_code (old_glyph);
|
|
|
|
if (code == CFF_UNDEF_CODE)
|
2019-01-31 23:16:37 +01:00
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
subset_enc_num_codes = glyph - 1;
|
|
|
|
break;
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
|
2019-02-01 23:50:01 +01:00
|
|
|
if ((last_code == CFF_UNDEF_CODE) || (code != last_code + 1))
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
code_pair_t pair = { code, glyph };
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_enc_code_ranges.push (pair);
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
last_code = code;
|
|
|
|
|
|
|
|
if (encoding != &Null(Encoding))
|
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
hb_codepoint_t sid = acc.glyph_to_sid (old_glyph);
|
2018-12-01 05:04:59 +01:00
|
|
|
encoding->get_supplement_codes (sid, supp_codes);
|
2018-12-22 00:46:51 +01:00
|
|
|
for (unsigned int i = 0; i < supp_codes.length; i++)
|
2018-12-01 05:04:59 +01:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
code_pair_t pair = { supp_codes[i], sid };
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_enc_supp_codes.push (pair);
|
|
|
|
}
|
2018-12-22 00:46:51 +01:00
|
|
|
supp_size += SuppEncoding::static_size * supp_codes.length;
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
supp_codes.fini ();
|
2018-09-12 22:22:19 +02:00
|
|
|
|
|
|
|
subset_enc_code_ranges.finalize (glyph);
|
2018-09-07 02:28:15 +02:00
|
|
|
|
|
|
|
assert (subset_enc_num_codes <= 0xFF);
|
|
|
|
size0 = Encoding0::min_size + HBUINT8::static_size * subset_enc_num_codes;
|
2018-12-22 00:46:51 +01:00
|
|
|
size1 = Encoding1::min_size + Encoding1_Range::static_size * subset_enc_code_ranges.length;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
|
|
|
if (size0 < size1)
|
|
|
|
subset_enc_format = 0;
|
|
|
|
else
|
|
|
|
subset_enc_format = 1;
|
|
|
|
|
|
|
|
return Encoding::calculate_serialized_size (
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_enc_format,
|
2018-12-22 00:46:51 +01:00
|
|
|
subset_enc_format? subset_enc_code_ranges.length: subset_enc_num_codes,
|
|
|
|
subset_enc_supp_codes.length);
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int plan_subset_charset (const OT::cff1::accelerator_subset_t &acc, hb_subset_plan_t *plan)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
|
|
|
unsigned int size0, size_ranges;
|
|
|
|
hb_codepoint_t sid, last_sid = CFF_UNDEF_CODE;
|
|
|
|
|
|
|
|
subset_charset_ranges.resize (0);
|
|
|
|
unsigned int glyph;
|
2019-01-31 23:16:37 +01:00
|
|
|
for (glyph = 1; glyph < plan->num_output_glyphs (); glyph++)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
hb_codepoint_t old_glyph;
|
|
|
|
if (!plan->old_gid_for_new_gid (glyph, &old_glyph))
|
2019-01-31 23:16:37 +01:00
|
|
|
{
|
2019-02-01 23:50:01 +01:00
|
|
|
/* Retain the SID for the old missing glyph ID */
|
|
|
|
old_glyph = glyph;
|
2019-01-31 23:16:37 +01:00
|
|
|
}
|
2019-02-01 23:50:01 +01:00
|
|
|
sid = acc.glyph_to_sid (old_glyph);
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2019-02-01 23:50:01 +01:00
|
|
|
if (!acc.is_CID ())
|
|
|
|
sid = sidmap.add (sid);
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2019-02-01 23:50:01 +01:00
|
|
|
if ((last_sid == CFF_UNDEF_CODE) || (sid != last_sid + 1))
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2018-12-22 16:47:04 +01:00
|
|
|
code_pair_t pair = { sid, glyph };
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_charset_ranges.push (pair);
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
last_sid = sid;
|
|
|
|
}
|
|
|
|
|
2018-11-17 02:29:03 +01:00
|
|
|
bool two_byte = subset_charset_ranges.finalize (glyph);
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
size0 = Charset0::min_size + HBUINT16::static_size * (plan->num_output_glyphs () - 1);
|
2018-09-07 02:28:15 +02:00
|
|
|
if (!two_byte)
|
2018-12-22 00:46:51 +01:00
|
|
|
size_ranges = Charset1::min_size + Charset1_Range::static_size * subset_charset_ranges.length;
|
2018-09-07 02:28:15 +02:00
|
|
|
else
|
2018-12-22 00:46:51 +01:00
|
|
|
size_ranges = Charset2::min_size + Charset2_Range::static_size * subset_charset_ranges.length;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
|
|
|
if (size0 < size_ranges)
|
|
|
|
subset_charset_format = 0;
|
|
|
|
else if (!two_byte)
|
|
|
|
subset_charset_format = 1;
|
|
|
|
else
|
|
|
|
subset_charset_format = 2;
|
|
|
|
|
|
|
|
return Charset::calculate_serialized_size (
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_charset_format,
|
2019-01-31 23:16:37 +01:00
|
|
|
subset_charset_format? subset_charset_ranges.length: plan->num_output_glyphs ());
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool collect_sids_in_dicts (const OT::cff1::accelerator_subset_t &acc)
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
if (unlikely (!sidmap.reset (acc.stringIndex->count)))
|
|
|
|
return false;
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
for (unsigned int i = 0; i < name_dict_values_t::ValCount; i++)
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
unsigned int sid = acc.topDict.nameSIDs[i];
|
|
|
|
if (sid != CFF_UNDEF_SID)
|
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
(void)sidmap.add (sid);
|
|
|
|
topDictModSIDs[i] = sidmap[sid];
|
2018-09-11 01:00:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (acc.fdArray != &Null(CFF1FDArray))
|
2018-11-01 06:30:34 +01:00
|
|
|
for (unsigned int i = 0; i < orig_fdcount; i++)
|
2018-12-01 05:04:59 +01:00
|
|
|
if (fdmap.includes (i))
|
|
|
|
(void)sidmap.add (acc.fontDicts[i].fontName);
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool create (const OT::cff1::accelerator_subset_t &acc,
|
2019-01-31 23:16:37 +01:00
|
|
|
hb_subset_plan_t *plan)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2019-01-31 23:16:37 +01:00
|
|
|
/* make sure notdef is first */
|
|
|
|
hb_codepoint_t old_glyph;
|
|
|
|
if (!plan->old_gid_for_new_gid (0, &old_glyph) || (old_glyph != 0)) return false;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
final_size = 0;
|
2019-01-31 23:16:37 +01:00
|
|
|
num_glyphs = plan->num_output_glyphs ();
|
2018-08-10 20:07:07 +02:00
|
|
|
orig_fdcount = acc.fdCount;
|
2018-08-18 01:50:13 +02:00
|
|
|
drop_hints = plan->drop_hints;
|
2018-11-02 01:25:23 +01:00
|
|
|
desubroutinize = plan->desubroutinize;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
/* check whether the subset renumbers any glyph IDs */
|
|
|
|
gid_renum = false;
|
2019-01-31 23:16:37 +01:00
|
|
|
for (hb_codepoint_t new_glyph = 0; new_glyph < plan->num_output_glyphs (); new_glyph++)
|
2018-09-07 02:28:15 +02:00
|
|
|
{
|
2019-01-31 23:16:37 +01:00
|
|
|
if (!plan->old_gid_for_new_gid(new_glyph, &old_glyph))
|
|
|
|
continue;
|
|
|
|
if (new_glyph != old_glyph) {
|
2018-12-01 05:04:59 +01:00
|
|
|
gid_renum = true;
|
|
|
|
break;
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subset_charset = gid_renum || !acc.is_predef_charset ();
|
2018-09-19 02:24:30 +02:00
|
|
|
subset_encoding = !acc.is_CID() && !acc.is_predef_encoding ();
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
/* CFF header */
|
2018-08-16 09:25:57 +02:00
|
|
|
final_size += OT::cff1::static_size;
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
/* Name INDEX */
|
|
|
|
offsets.nameIndexOffset = final_size;
|
|
|
|
final_size += acc.nameIndex->get_size ();
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
/* top dict INDEX */
|
|
|
|
{
|
2018-09-07 02:28:15 +02:00
|
|
|
/* Add encoding/charset to a (copy of) top dict as necessary */
|
2018-09-11 01:00:20 +02:00
|
|
|
topdict_mod.init (&acc.topDict);
|
2018-11-01 06:30:34 +01:00
|
|
|
bool need_to_add_enc = (subset_encoding && !acc.topDict.has_op (OpCode_Encoding));
|
|
|
|
bool need_to_add_set = (subset_charset && !acc.topDict.has_op (OpCode_charset));
|
2018-09-07 02:28:15 +02:00
|
|
|
if (need_to_add_enc || need_to_add_set)
|
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
if (need_to_add_enc)
|
|
|
|
topdict_mod.add_op (OpCode_Encoding);
|
|
|
|
if (need_to_add_set)
|
|
|
|
topdict_mod.add_op (OpCode_charset);
|
2018-09-07 02:28:15 +02:00
|
|
|
}
|
2018-08-15 21:00:19 +02:00
|
|
|
offsets.topDictInfo.offset = final_size;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff1_top_dict_op_serializer_t topSzr;
|
2018-09-07 02:28:15 +02:00
|
|
|
unsigned int topDictSize = TopDict::calculate_serialized_size (topdict_mod, topSzr);
|
2018-08-15 21:00:19 +02:00
|
|
|
offsets.topDictInfo.offSize = calcOffSize(topDictSize);
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (offsets.topDictInfo.offSize > 4))
|
|
|
|
return false;
|
2018-12-22 16:47:04 +01:00
|
|
|
final_size += CFF1IndexOf<TopDict>::calculate_serialized_size<cff1_top_dict_values_mod_t>
|
2018-12-01 05:04:59 +01:00
|
|
|
(offsets.topDictInfo.offSize,
|
|
|
|
&topdict_mod, 1, topdict_sizes, topSzr);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-11 01:00:20 +02:00
|
|
|
/* Determine re-mapping of font index as fdmap among other info */
|
2018-11-16 22:46:58 +01:00
|
|
|
if (acc.fdSelect != &Null(CFF1FDSelect))
|
|
|
|
{
|
2019-01-31 23:16:37 +01:00
|
|
|
if (unlikely (!hb_plan_subset_cff_fdselect (plan,
|
2018-12-01 05:04:59 +01:00
|
|
|
orig_fdcount,
|
|
|
|
*acc.fdSelect,
|
|
|
|
subset_fdcount,
|
|
|
|
offsets.FDSelectInfo.size,
|
|
|
|
subset_fdselect_format,
|
|
|
|
subset_fdselect_ranges,
|
|
|
|
fdmap)))
|
|
|
|
return false;
|
2018-11-16 22:46:58 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fdmap.identity (1);
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
/* remove unused SIDs & reassign SIDs */
|
|
|
|
{
|
|
|
|
/* SIDs for name strings in dicts are added before glyph names so they fit in 16-bit int range */
|
|
|
|
if (unlikely (!collect_sids_in_dicts (acc)))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (sidmap.get_count () > 0x8000)) /* assumption: a dict won't reference that many strings */
|
|
|
|
return false;
|
2018-09-11 01:00:20 +02:00
|
|
|
if (subset_charset)
|
2018-12-01 05:04:59 +01:00
|
|
|
offsets.charsetInfo.size = plan_subset_charset (acc, plan);
|
2018-09-11 01:00:20 +02:00
|
|
|
|
|
|
|
topdict_mod.reassignSIDs (sidmap);
|
|
|
|
}
|
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
/* String INDEX */
|
2018-09-11 01:00:20 +02:00
|
|
|
{
|
|
|
|
offsets.stringIndexInfo.offset = final_size;
|
|
|
|
offsets.stringIndexInfo.size = acc.stringIndex->calculate_serialized_size (offsets.stringIndexInfo.offSize, sidmap);
|
|
|
|
final_size += offsets.stringIndexInfo.size;
|
|
|
|
}
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-11-01 06:30:34 +01:00
|
|
|
if (desubroutinize)
|
2018-08-29 21:14:30 +02:00
|
|
|
{
|
|
|
|
/* Flatten global & local subrs */
|
2019-01-31 23:16:37 +01:00
|
|
|
subr_flattener_t<const OT::cff1::accelerator_subset_t, cff1_cs_interp_env_t, cff1_cs_opset_flatten_t, OpCode_endchar>
|
|
|
|
flattener(acc, plan);
|
2018-11-01 06:30:34 +01:00
|
|
|
if (!flattener.flatten (subset_charstrings))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-08-29 21:14:30 +02:00
|
|
|
/* no global/local subroutines */
|
2018-11-02 23:28:01 +01:00
|
|
|
offsets.globalSubrsInfo.size = CFF1Subrs::calculate_serialized_size (1, 0, 0);
|
2018-08-29 21:14:30 +02:00
|
|
|
}
|
2018-11-01 06:30:34 +01:00
|
|
|
else
|
|
|
|
{
|
2019-01-31 23:16:37 +01:00
|
|
|
cff1_subr_subsetter_t subr_subsetter (acc, plan);
|
|
|
|
|
2018-11-01 06:30:34 +01:00
|
|
|
/* Subset subrs: collect used subroutines, leaving all unused ones behind */
|
2019-01-31 23:16:37 +01:00
|
|
|
if (!subr_subsetter.subset ())
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
/* encode charstrings, global subrs, local subrs with new subroutine numbers */
|
2019-01-31 23:16:37 +01:00
|
|
|
if (!subr_subsetter.encode_charstrings (subset_charstrings))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
if (!subr_subsetter.encode_globalsubrs (subset_globalsubrs))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
/* global subrs */
|
|
|
|
unsigned int dataSize = subset_globalsubrs.total_size ();
|
|
|
|
offsets.globalSubrsInfo.offSize = calcOffSize (dataSize);
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (offsets.globalSubrsInfo.offSize > 4))
|
|
|
|
return false;
|
2018-12-22 00:46:51 +01:00
|
|
|
offsets.globalSubrsInfo.size = CFF1Subrs::calculate_serialized_size (offsets.globalSubrsInfo.offSize, subset_globalsubrs.length, dataSize);
|
2018-11-01 06:30:34 +01:00
|
|
|
|
|
|
|
/* local subrs */
|
|
|
|
if (!offsets.localSubrsInfos.resize (orig_fdcount))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
if (!subset_localsubrs.resize (orig_fdcount))
|
2018-12-01 05:04:59 +01:00
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
for (unsigned int fd = 0; fd < orig_fdcount; fd++)
|
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
subset_localsubrs[fd].init ();
|
|
|
|
offsets.localSubrsInfos[fd].init ();
|
|
|
|
if (fdmap.includes (fd))
|
|
|
|
{
|
|
|
|
if (!subr_subsetter.encode_localsubrs (fd, subset_localsubrs[fd]))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
unsigned int dataSize = subset_localsubrs[fd].total_size ();
|
|
|
|
if (dataSize > 0)
|
|
|
|
{
|
|
|
|
offsets.localSubrsInfos[fd].offset = final_size;
|
|
|
|
offsets.localSubrsInfos[fd].offSize = calcOffSize (dataSize);
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (offsets.localSubrsInfos[fd].offSize > 4))
|
|
|
|
return false;
|
2018-12-22 00:46:51 +01:00
|
|
|
offsets.localSubrsInfos[fd].size = CFF1Subrs::calculate_serialized_size (offsets.localSubrsInfos[fd].offSize, subset_localsubrs[fd].length, dataSize);
|
2018-12-01 05:04:59 +01:00
|
|
|
}
|
|
|
|
}
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-11 01:27:49 +02:00
|
|
|
|
2018-08-10 20:07:07 +02:00
|
|
|
/* global subrs */
|
2018-08-15 21:00:19 +02:00
|
|
|
offsets.globalSubrsInfo.offset = final_size;
|
|
|
|
final_size += offsets.globalSubrsInfo.size;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* Encoding */
|
2018-11-15 19:54:15 +01:00
|
|
|
if (!subset_encoding)
|
2018-10-14 02:25:09 +02:00
|
|
|
offsets.encodingOffset = acc.topDict.EncodingOffset;
|
|
|
|
else
|
2018-11-15 19:54:15 +01:00
|
|
|
{
|
2018-10-14 02:25:09 +02:00
|
|
|
offsets.encodingOffset = final_size;
|
2018-09-07 02:28:15 +02:00
|
|
|
final_size += plan_subset_encoding (acc, plan);
|
2018-11-15 19:54:15 +01:00
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* Charset */
|
2018-10-14 02:25:09 +02:00
|
|
|
if (!subset_charset && acc.is_predef_charset ())
|
|
|
|
offsets.charsetInfo.offset = acc.topDict.CharsetOffset;
|
|
|
|
else
|
|
|
|
offsets.charsetInfo.offset = final_size;
|
2018-09-11 01:00:20 +02:00
|
|
|
final_size += offsets.charsetInfo.size;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* FDSelect */
|
2018-08-16 09:13:09 +02:00
|
|
|
if (acc.fdSelect != &Null(CFF1FDSelect))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
offsets.FDSelectInfo.offset = final_size;
|
|
|
|
final_size += offsets.FDSelectInfo.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDArray (FDIndex) */
|
2018-08-16 09:13:09 +02:00
|
|
|
if (acc.fdArray != &Null(CFF1FDArray)) {
|
2018-08-15 21:00:19 +02:00
|
|
|
offsets.FDArrayInfo.offset = final_size;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff1_font_dict_op_serializer_t fontSzr;
|
2018-09-11 01:00:20 +02:00
|
|
|
unsigned int dictsSize = 0;
|
2018-12-22 00:46:51 +01:00
|
|
|
for (unsigned int i = 0; i < acc.fontDicts.length; i++)
|
2018-12-01 05:04:59 +01:00
|
|
|
if (fdmap.includes (i))
|
|
|
|
dictsSize += FontDict::calculate_serialized_size (acc.fontDicts[i], fontSzr);
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-09-12 01:20:39 +02:00
|
|
|
offsets.FDArrayInfo.offSize = calcOffSize (dictsSize);
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (offsets.FDArrayInfo.offSize > 4))
|
|
|
|
return false;
|
2018-09-11 01:00:20 +02:00
|
|
|
final_size += CFF1Index::calculate_serialized_size (offsets.FDArrayInfo.offSize, subset_fdcount, dictsSize);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CharStrings */
|
|
|
|
{
|
2018-08-15 21:00:19 +02:00
|
|
|
offsets.charStringsInfo.offset = final_size;
|
2018-11-01 06:30:34 +01:00
|
|
|
unsigned int dataSize = subset_charstrings.total_size ();
|
2018-09-12 01:20:39 +02:00
|
|
|
offsets.charStringsInfo.offSize = calcOffSize (dataSize);
|
2018-12-11 21:20:20 +01:00
|
|
|
if (unlikely (offsets.charStringsInfo.offSize > 4))
|
|
|
|
return false;
|
2019-01-31 23:16:37 +01:00
|
|
|
final_size += CFF1CharStrings::calculate_serialized_size (offsets.charStringsInfo.offSize, plan->num_output_glyphs (), dataSize);
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* private dicts & local subrs */
|
|
|
|
offsets.privateDictInfo.offset = final_size;
|
|
|
|
for (unsigned int i = 0; i < orig_fdcount; i++)
|
|
|
|
{
|
2018-11-01 06:30:34 +01:00
|
|
|
if (fdmap.includes (i))
|
2018-08-10 21:55:22 +02:00
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
bool has_localsubrs = offsets.localSubrsInfos[i].size > 0;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff_private_dict_op_serializer_t privSzr (desubroutinize, plan->drop_hints);
|
2018-12-01 05:04:59 +01:00
|
|
|
unsigned int priv_size = PrivateDict::calculate_serialized_size (acc.privateDicts[i], privSzr, has_localsubrs);
|
2018-12-22 16:47:04 +01:00
|
|
|
table_info_t privInfo = { final_size, priv_size, 0 };
|
|
|
|
font_dict_values_mod_t fontdict_mod;
|
2018-12-01 05:04:59 +01:00
|
|
|
if (!acc.is_CID ())
|
2018-12-22 16:47:04 +01:00
|
|
|
fontdict_mod.init ( &Null(cff1_font_dict_values_t), CFF_UNDEF_SID, privInfo );
|
2018-12-01 05:04:59 +01:00
|
|
|
else
|
|
|
|
fontdict_mod.init ( &acc.fontDicts[i], sidmap[acc.fontDicts[i].fontName], privInfo );
|
|
|
|
fontdicts_mod.push (fontdict_mod);
|
|
|
|
final_size += privInfo.size;
|
|
|
|
|
|
|
|
if (!plan->desubroutinize && has_localsubrs)
|
|
|
|
{
|
|
|
|
offsets.localSubrsInfos[i].offset = final_size;
|
|
|
|
final_size += offsets.localSubrsInfos[i].size;
|
|
|
|
}
|
2018-08-10 21:55:22 +02:00
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!acc.is_CID ())
|
2018-12-01 03:58:14 +01:00
|
|
|
offsets.privateDictInfo = fontdicts_mod[0].privateDictInfo;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
return ((subset_charstrings.length == plan->num_output_glyphs ())
|
2018-12-22 00:46:51 +01:00
|
|
|
&& (fontdicts_mod.length == subset_fdcount));
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned int get_final_size () const { return final_size; }
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-12-01 05:04:59 +01:00
|
|
|
unsigned int final_size;
|
2018-12-22 16:47:04 +01:00
|
|
|
hb_vector_t<unsigned int> topdict_sizes;
|
|
|
|
cff1_top_dict_values_mod_t topdict_mod;
|
|
|
|
cff1_sub_table_offsets_t offsets;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-09-07 02:28:15 +02:00
|
|
|
unsigned int num_glyphs;
|
2018-08-10 20:07:07 +02:00
|
|
|
unsigned int orig_fdcount;
|
2018-09-07 02:28:15 +02:00
|
|
|
unsigned int subset_fdcount;
|
|
|
|
unsigned int subset_fdselect_format;
|
2018-12-22 16:47:04 +01:00
|
|
|
hb_vector_t<code_pair_t> subset_fdselect_ranges;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* font dict index remap table from fullset FDArray to subset FDArray.
|
2018-09-11 01:00:20 +02:00
|
|
|
* set to CFF_UNDEF_CODE if excluded from subset */
|
2018-12-22 16:47:04 +01:00
|
|
|
remap_t fdmap;
|
2018-08-10 20:07:07 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
str_buff_vec_t subset_charstrings;
|
|
|
|
str_buff_vec_t subset_globalsubrs;
|
|
|
|
hb_vector_t<str_buff_vec_t> subset_localsubrs;
|
|
|
|
hb_vector_t<font_dict_values_mod_t> fontdicts_mod;
|
2018-08-15 21:00:19 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
bool drop_hints;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
bool gid_renum;
|
|
|
|
bool subset_encoding;
|
|
|
|
uint8_t subset_enc_format;
|
|
|
|
unsigned int subset_enc_num_codes;
|
|
|
|
range_list_t subset_enc_code_ranges;
|
|
|
|
hb_vector_t<code_pair_t> subset_enc_supp_codes;
|
2018-09-07 02:28:15 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
uint8_t subset_charset_format;
|
|
|
|
range_list_t subset_charset_ranges;
|
|
|
|
bool subset_charset;
|
2018-09-11 01:00:20 +02:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
remap_sid_t sidmap;
|
|
|
|
unsigned int topDictModSIDs[name_dict_values_t::ValCount];
|
2018-11-01 06:30:34 +01:00
|
|
|
|
2018-12-22 16:47:04 +01:00
|
|
|
bool desubroutinize;
|
2018-08-10 20:07:07 +02:00
|
|
|
};
|
|
|
|
|
2018-08-16 09:13:09 +02:00
|
|
|
static inline bool _write_cff1 (const cff_subset_plan &plan,
|
2018-12-01 05:04:59 +01:00
|
|
|
const OT::cff1::accelerator_subset_t &acc,
|
2019-01-31 23:16:37 +01:00
|
|
|
unsigned int num_glyphs,
|
2018-12-01 05:04:59 +01:00
|
|
|
unsigned int dest_sz,
|
|
|
|
void *dest)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
hb_serialize_context_t c (dest, dest_sz);
|
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
OT::cff1 *cff = c.start_serialize<OT::cff1> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (unlikely (!c.extend_min (*cff)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* header */
|
2019-03-30 04:17:46 +01:00
|
|
|
cff->version.major = 0x01;
|
|
|
|
cff->version.minor = 0x00;
|
|
|
|
cff->nameIndex = cff->min_size;
|
|
|
|
cff->offSize = 4; /* unused? */
|
2018-08-10 20:07:07 +02:00
|
|
|
|
|
|
|
/* name INDEX */
|
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (cff->nameIndex == (unsigned) (c.head - c.start));
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1NameIndex *dest = c.start_embed<CFF1NameIndex> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (unlikely (dest == nullptr)) return false;
|
|
|
|
if (unlikely (!dest->serialize (&c, *acc.nameIndex)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF name INDEX");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* top dict INDEX */
|
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.topDictInfo.offset == (unsigned) (c.head - c.start));
|
2019-04-30 22:05:10 +02:00
|
|
|
CFF1IndexOf<TopDict> *dest = c.start_embed< CFF1IndexOf<TopDict>> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (dest == nullptr) return false;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff1_top_dict_op_serializer_t topSzr;
|
|
|
|
top_dict_modifiers_t modifier (plan.offsets, plan.topDictModSIDs);
|
2018-09-07 02:28:15 +02:00
|
|
|
if (unlikely (!dest->serialize (&c, plan.offsets.topDictInfo.offSize,
|
2018-12-01 05:04:59 +01:00
|
|
|
&plan.topdict_mod, 1,
|
|
|
|
plan.topdict_sizes, topSzr, modifier)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF top dict");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* String INDEX */
|
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.stringIndexInfo.offset == (unsigned) (c.head - c.start));
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1StringIndex *dest = c.start_embed<CFF1StringIndex> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (unlikely (dest == nullptr)) return false;
|
2018-09-11 01:00:20 +02:00
|
|
|
if (unlikely (!dest->serialize (&c, *acc.stringIndex, plan.offsets.stringIndexInfo.offSize, plan.sidmap)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF string INDEX");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* global subrs */
|
|
|
|
{
|
2018-08-29 21:14:30 +02:00
|
|
|
assert (plan.offsets.globalSubrsInfo.offset != 0);
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.globalSubrsInfo.offset == (unsigned) (c.head - c.start));
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2018-11-02 23:28:01 +01:00
|
|
|
CFF1Subrs *dest = c.start_embed <CFF1Subrs> ();
|
|
|
|
if (unlikely (dest == nullptr)) return false;
|
|
|
|
if (unlikely (!dest->serialize (&c, plan.offsets.globalSubrsInfo.offSize, plan.subset_globalsubrs)))
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-11-02 23:28:01 +01:00
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize global subroutines");
|
|
|
|
return false;
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Encoding */
|
2018-09-07 02:28:15 +02:00
|
|
|
if (plan.subset_encoding)
|
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.encodingOffset == (unsigned) (c.head - c.start));
|
2018-08-10 20:07:07 +02:00
|
|
|
Encoding *dest = c.start_embed<Encoding> ();
|
|
|
|
if (unlikely (dest == nullptr)) return false;
|
2018-09-07 02:28:15 +02:00
|
|
|
if (unlikely (!dest->serialize (&c,
|
2018-12-01 05:04:59 +01:00
|
|
|
plan.subset_enc_format,
|
|
|
|
plan.subset_enc_num_codes,
|
|
|
|
plan.subset_enc_code_ranges,
|
|
|
|
plan.subset_enc_supp_codes)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize Encoding");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Charset */
|
2018-09-07 02:28:15 +02:00
|
|
|
if (plan.subset_charset)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.charsetInfo.offset == (unsigned) (c.head - c.start));
|
2018-08-10 20:07:07 +02:00
|
|
|
Charset *dest = c.start_embed<Charset> ();
|
|
|
|
if (unlikely (dest == nullptr)) return false;
|
2018-09-07 02:28:15 +02:00
|
|
|
if (unlikely (!dest->serialize (&c,
|
2018-12-01 05:04:59 +01:00
|
|
|
plan.subset_charset_format,
|
|
|
|
plan.num_glyphs,
|
|
|
|
plan.subset_charset_ranges)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize Charset");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDSelect */
|
2018-08-16 09:13:09 +02:00
|
|
|
if (acc.fdSelect != &Null(CFF1FDSelect))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.FDSelectInfo.offset == (unsigned) (c.head - c.start));
|
2018-12-01 04:54:57 +01:00
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
if (unlikely (!hb_serialize_cff_fdselect (&c, num_glyphs, *acc.fdSelect, acc.fdCount,
|
2018-12-01 05:04:59 +01:00
|
|
|
plan.subset_fdselect_format, plan.offsets.FDSelectInfo.size,
|
|
|
|
plan.subset_fdselect_ranges)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-11-16 00:39:43 +01:00
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF subset FDSelect");
|
|
|
|
return false;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FDArray (FD Index) */
|
2018-08-16 09:13:09 +02:00
|
|
|
if (acc.fdArray != &Null(CFF1FDArray))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.FDArrayInfo.offset == (unsigned) (c.head - c.start));
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1FDArray *fda = c.start_embed<CFF1FDArray> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (unlikely (fda == nullptr)) return false;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff1_font_dict_op_serializer_t fontSzr;
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!fda->serialize (&c, plan.offsets.FDArrayInfo.offSize,
|
2018-12-01 05:04:59 +01:00
|
|
|
plan.fontdicts_mod,
|
|
|
|
fontSzr)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF FDArray");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CharStrings */
|
|
|
|
{
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.charStringsInfo.offset == (unsigned) (c.head - c.start));
|
2018-08-16 09:13:09 +02:00
|
|
|
CFF1CharStrings *cs = c.start_embed<CFF1CharStrings> ();
|
2018-08-10 20:07:07 +02:00
|
|
|
if (unlikely (cs == nullptr)) return false;
|
2018-08-15 21:00:19 +02:00
|
|
|
if (unlikely (!cs->serialize (&c, plan.offsets.charStringsInfo.offSize, plan.subset_charstrings)))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF CharStrings");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* private dicts & local subrs */
|
2019-01-22 16:36:00 +01:00
|
|
|
assert (plan.offsets.privateDictInfo.offset == (unsigned) (c.head - c.start));
|
2018-12-22 00:46:51 +01:00
|
|
|
for (unsigned int i = 0; i < acc.privateDicts.length; i++)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-11-02 23:28:01 +01:00
|
|
|
if (plan.fdmap.includes (i))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-08-10 21:55:22 +02:00
|
|
|
PrivateDict *pd = c.start_embed<PrivateDict> ();
|
|
|
|
if (unlikely (pd == nullptr)) return false;
|
2018-09-11 01:27:49 +02:00
|
|
|
unsigned int priv_size = plan.fontdicts_mod[plan.fdmap[i]].privateDictInfo.size;
|
2018-08-18 01:50:13 +02:00
|
|
|
bool result;
|
2018-12-22 16:47:04 +01:00
|
|
|
cff_private_dict_op_serializer_t privSzr (plan.desubroutinize, plan.drop_hints);
|
2018-08-10 21:55:22 +02:00
|
|
|
/* N.B. local subrs immediately follows its corresponding private dict. i.e., subr offset == private dict size */
|
2018-11-04 06:42:22 +01:00
|
|
|
unsigned int subroffset = (plan.offsets.localSubrsInfos[i].size > 0)? priv_size: 0;
|
|
|
|
result = pd->serialize (&c, acc.privateDicts[i], privSzr, subroffset);
|
2018-08-18 01:50:13 +02:00
|
|
|
if (unlikely (!result))
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize CFF Private Dict[%d]", i);
|
|
|
|
return false;
|
2018-08-10 20:07:07 +02:00
|
|
|
}
|
2018-11-02 23:28:01 +01:00
|
|
|
if (plan.offsets.localSubrsInfos[i].size > 0)
|
2018-11-01 06:30:34 +01:00
|
|
|
{
|
2018-12-01 05:04:59 +01:00
|
|
|
CFF1Subrs *dest = c.start_embed <CFF1Subrs> ();
|
|
|
|
if (unlikely (dest == nullptr)) return false;
|
|
|
|
if (unlikely (!dest->serialize (&c, plan.offsets.localSubrsInfos[i].offSize, plan.subset_localsubrs[i])))
|
|
|
|
{
|
|
|
|
DEBUG_MSG (SUBSET, nullptr, "failed to serialize local subroutines");
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-01 06:30:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-17 22:13:18 +02:00
|
|
|
assert (c.head == c.end);
|
2018-08-10 20:07:07 +02:00
|
|
|
c.end_serialize ();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2018-08-16 09:25:57 +02:00
|
|
|
_hb_subset_cff1 (const OT::cff1::accelerator_subset_t &acc,
|
2018-12-22 16:47:04 +01:00
|
|
|
const char *data,
|
|
|
|
hb_subset_plan_t *plan,
|
|
|
|
hb_blob_t **prime /* OUT */)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
|
|
|
cff_subset_plan cff_plan;
|
|
|
|
|
|
|
|
if (unlikely (!cff_plan.create (acc, plan)))
|
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to generate a cff subsetting plan.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int cff_prime_size = cff_plan.get_final_size ();
|
|
|
|
char *cff_prime_data = (char *) calloc (1, cff_prime_size);
|
|
|
|
|
2019-01-31 23:16:37 +01:00
|
|
|
if (unlikely (!_write_cff1 (cff_plan, acc, plan->num_output_glyphs (),
|
2018-12-01 05:04:59 +01:00
|
|
|
cff_prime_size, cff_prime_data))) {
|
2018-08-10 20:07:07 +02:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to write a subset cff.");
|
|
|
|
free (cff_prime_data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*prime = hb_blob_create (cff_prime_data,
|
2018-12-01 05:04:59 +01:00
|
|
|
cff_prime_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
cff_prime_data,
|
|
|
|
free);
|
2018-08-10 20:07:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-08-16 09:13:09 +02:00
|
|
|
* hb_subset_cff1:
|
2018-08-10 20:07:07 +02:00
|
|
|
* Subsets the CFF table according to a provided plan.
|
|
|
|
*
|
|
|
|
* Return value: subsetted cff table.
|
|
|
|
**/
|
|
|
|
bool
|
2018-08-16 09:13:09 +02:00
|
|
|
hb_subset_cff1 (hb_subset_plan_t *plan,
|
2018-12-01 05:04:59 +01:00
|
|
|
hb_blob_t **prime /* OUT */)
|
2018-08-10 20:07:07 +02:00
|
|
|
{
|
2018-08-16 09:25:57 +02:00
|
|
|
hb_blob_t *cff_blob = hb_sanitize_context_t().reference_table<CFF::cff1> (plan->source);
|
2018-08-10 20:07:07 +02:00
|
|
|
const char *data = hb_blob_get_data(cff_blob, nullptr);
|
|
|
|
|
2018-08-16 09:25:57 +02:00
|
|
|
OT::cff1::accelerator_subset_t acc;
|
2018-08-10 20:07:07 +02:00
|
|
|
acc.init(plan->source);
|
|
|
|
bool result = likely (acc.is_valid ()) &&
|
2018-12-01 05:04:59 +01:00
|
|
|
_hb_subset_cff1 (acc, data, plan, prime);
|
2018-08-10 20:07:07 +02:00
|
|
|
hb_blob_destroy (cff_blob);
|
|
|
|
acc.fini ();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|