2018-02-06 00:22:30 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
2018-02-07 01:58:35 +01:00
|
|
|
* Google Author(s): Garret Rieger, Roderick Sheeter
|
2018-02-06 00:22:30 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-31 22:25:19 +02:00
|
|
|
#include "hb-subset-plan.hh"
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-map.hh"
|
|
|
|
#include "hb-set.hh"
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-02-07 19:07:46 +01:00
|
|
|
#include "hb-ot-cmap-table.hh"
|
2018-02-16 19:27:03 +01:00
|
|
|
#include "hb-ot-glyf-table.hh"
|
2018-11-14 22:38:03 +01:00
|
|
|
#include "hb-ot-cff1-table.hh"
|
2018-02-07 19:07:46 +01:00
|
|
|
|
2018-02-15 23:41:56 +01:00
|
|
|
static void
|
2018-02-16 19:27:03 +01:00
|
|
|
_add_gid_and_children (const OT::glyf::accelerator_t &glyf,
|
|
|
|
hb_codepoint_t gid,
|
|
|
|
hb_set_t *gids_to_retain)
|
2018-02-15 23:41:56 +01:00
|
|
|
{
|
|
|
|
if (hb_set_has (gids_to_retain, gid))
|
|
|
|
// Already visited this gid, ignore.
|
|
|
|
return;
|
|
|
|
|
|
|
|
hb_set_add (gids_to_retain, gid);
|
|
|
|
|
2018-02-17 00:56:15 +01:00
|
|
|
OT::glyf::CompositeGlyphHeader::Iterator composite;
|
2018-02-15 23:41:56 +01:00
|
|
|
if (glyf.get_composite (gid, &composite))
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2018-02-17 00:56:15 +01:00
|
|
|
_add_gid_and_children (glyf, (hb_codepoint_t) composite.current->glyphIndex, gids_to_retain);
|
|
|
|
} while (composite.move_to_next());
|
2018-02-15 23:41:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 22:38:03 +01:00
|
|
|
static void
|
|
|
|
_add_cff_seac_components (const OT::cff1::accelerator_t &cff,
|
|
|
|
hb_codepoint_t gid,
|
|
|
|
hb_set_t *gids_to_retain)
|
|
|
|
{
|
|
|
|
hb_codepoint_t base_gid, accent_gid;
|
|
|
|
if (cff.get_seac_components (gid, &base_gid, &accent_gid))
|
|
|
|
{
|
|
|
|
hb_set_add (gids_to_retain, base_gid);
|
|
|
|
hb_set_add (gids_to_retain, accent_gid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-07 23:32:34 +02:00
|
|
|
static void
|
|
|
|
_gsub_closure (hb_face_t *face, hb_set_t *gids_to_retain)
|
|
|
|
{
|
2018-10-30 02:05:25 +01:00
|
|
|
hb_set_t lookup_indices;
|
2018-07-25 22:39:17 +02:00
|
|
|
hb_ot_layout_collect_lookups (face,
|
2018-11-15 20:40:56 +01:00
|
|
|
HB_OT_TAG_GSUB,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
&lookup_indices);
|
2018-06-07 23:32:34 +02:00
|
|
|
hb_ot_layout_lookups_substitute_closure (face,
|
2018-11-15 20:40:56 +01:00
|
|
|
&lookup_indices,
|
|
|
|
gids_to_retain);
|
2018-06-07 23:32:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-16 07:48:26 +01:00
|
|
|
static void
|
|
|
|
_remove_invalid_gids (hb_set_t *glyphs,
|
|
|
|
unsigned int num_glyphs)
|
|
|
|
{
|
|
|
|
hb_codepoint_t gid = HB_SET_VALUE_INVALID;
|
|
|
|
while (glyphs->next (&gid))
|
|
|
|
{
|
|
|
|
if (gid >= num_glyphs)
|
|
|
|
glyphs->del (gid);
|
|
|
|
}
|
|
|
|
}
|
2018-06-07 23:32:34 +02:00
|
|
|
|
2018-09-04 03:54:32 +02:00
|
|
|
static hb_set_t *
|
2018-02-10 01:06:33 +01:00
|
|
|
_populate_gids_to_retain (hb_face_t *face,
|
2018-11-15 20:40:56 +01:00
|
|
|
const hb_set_t *unicodes,
|
2019-03-01 02:25:05 +01:00
|
|
|
const hb_set_t *input_glyphs_to_retain,
|
2018-11-15 20:40:56 +01:00
|
|
|
bool close_over_gsub,
|
|
|
|
hb_set_t *unicodes_to_retain,
|
|
|
|
hb_map_t *codepoint_to_glyph,
|
|
|
|
hb_vector_t<hb_codepoint_t> *glyphs)
|
2018-02-06 02:26:25 +01:00
|
|
|
{
|
2018-02-07 19:07:46 +01:00
|
|
|
OT::cmap::accelerator_t cmap;
|
2018-02-16 19:27:03 +01:00
|
|
|
OT::glyf::accelerator_t glyf;
|
2018-11-14 22:38:03 +01:00
|
|
|
OT::cff1::accelerator_t cff;
|
2018-02-07 19:07:46 +01:00
|
|
|
cmap.init (face);
|
2018-02-16 19:27:03 +01:00
|
|
|
glyf.init (face);
|
2018-11-14 22:38:03 +01:00
|
|
|
cff.init (face);
|
2018-02-09 04:22:47 +01:00
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_set_t *initial_gids_to_retain = hb_set_create ();
|
|
|
|
initial_gids_to_retain->add (0); // Not-def
|
2019-03-01 02:25:05 +01:00
|
|
|
hb_set_union (initial_gids_to_retain, input_glyphs_to_retain);
|
2018-02-09 04:22:47 +01:00
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_codepoint_t cp = HB_SET_VALUE_INVALID;
|
|
|
|
while (unicodes->next (&cp))
|
2018-02-17 01:58:17 +01:00
|
|
|
{
|
2018-02-07 01:58:35 +01:00
|
|
|
hb_codepoint_t gid;
|
2018-05-30 21:23:51 +02:00
|
|
|
if (!cmap.get_nominal_glyph (cp, &gid))
|
2018-02-17 01:58:17 +01:00
|
|
|
{
|
2018-05-30 21:23:51 +02:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Drop U+%04X; no gid", cp);
|
|
|
|
continue;
|
2018-02-07 01:58:35 +01:00
|
|
|
}
|
2018-05-30 21:23:51 +02:00
|
|
|
unicodes_to_retain->add (cp);
|
|
|
|
codepoint_to_glyph->set (cp, gid);
|
|
|
|
initial_gids_to_retain->add (gid);
|
2018-02-07 01:58:35 +01:00
|
|
|
}
|
2018-02-07 18:32:36 +01:00
|
|
|
|
2018-06-07 23:32:34 +02:00
|
|
|
if (close_over_gsub)
|
|
|
|
// Add all glyphs needed for GSUB substitutions.
|
|
|
|
_gsub_closure (face, initial_gids_to_retain);
|
|
|
|
|
2018-02-16 19:27:03 +01:00
|
|
|
// Populate a full set of glyphs to retain by adding all referenced
|
|
|
|
// composite glyphs.
|
2018-02-17 01:58:17 +01:00
|
|
|
hb_codepoint_t gid = HB_SET_VALUE_INVALID;
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_set_t *all_gids_to_retain = hb_set_create ();
|
|
|
|
while (initial_gids_to_retain->next (&gid))
|
|
|
|
{
|
|
|
|
_add_gid_and_children (glyf, gid, all_gids_to_retain);
|
2018-11-14 22:38:03 +01:00
|
|
|
if (cff.is_valid ())
|
|
|
|
_add_cff_seac_components (cff, gid, all_gids_to_retain);
|
2018-05-30 21:23:51 +02:00
|
|
|
}
|
|
|
|
hb_set_destroy (initial_gids_to_retain);
|
|
|
|
|
2018-11-16 07:48:26 +01:00
|
|
|
_remove_invalid_gids (all_gids_to_retain, face->get_num_glyphs ());
|
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
glyphs->alloc (all_gids_to_retain->get_population ());
|
|
|
|
gid = HB_SET_VALUE_INVALID;
|
|
|
|
while (all_gids_to_retain->next (&gid))
|
|
|
|
glyphs->push (gid);
|
2018-02-10 01:22:09 +01:00
|
|
|
|
2018-11-14 22:38:03 +01:00
|
|
|
cff.fini ();
|
2018-02-16 19:27:03 +01:00
|
|
|
glyf.fini ();
|
2018-02-07 19:07:46 +01:00
|
|
|
cmap.fini ();
|
2018-09-04 03:54:32 +02:00
|
|
|
|
|
|
|
return all_gids_to_retain;
|
2018-02-06 02:26:25 +01:00
|
|
|
}
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
static void
|
2019-01-29 03:10:56 +01:00
|
|
|
_create_old_gid_to_new_gid_map (const hb_face_t *face,
|
|
|
|
bool retain_gids,
|
2019-01-18 03:55:56 +01:00
|
|
|
const hb_vector_t<hb_codepoint_t> &glyphs,
|
2019-01-19 02:49:35 +01:00
|
|
|
hb_map_t *glyph_map, /* OUT */
|
2019-01-19 03:33:21 +01:00
|
|
|
hb_map_t *reverse_glyph_map, /* OUT */
|
2019-01-19 02:49:35 +01:00
|
|
|
unsigned int *num_glyphs /* OUT */)
|
2018-05-30 21:23:51 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
for (unsigned int i = 0; i < glyphs.length; i++) {
|
2019-01-18 03:55:56 +01:00
|
|
|
if (!retain_gids)
|
2019-01-19 03:33:21 +01:00
|
|
|
{
|
2019-01-18 03:55:56 +01:00
|
|
|
glyph_map->set (glyphs[i], i);
|
2019-01-19 03:33:21 +01:00
|
|
|
reverse_glyph_map->set (i, glyphs[i]);
|
|
|
|
}
|
2019-01-18 03:55:56 +01:00
|
|
|
else
|
2019-01-19 03:33:21 +01:00
|
|
|
{
|
2019-01-18 03:55:56 +01:00
|
|
|
glyph_map->set (glyphs[i], glyphs[i]);
|
2019-01-19 03:33:21 +01:00
|
|
|
reverse_glyph_map->set (glyphs[i], glyphs[i]);
|
|
|
|
}
|
2018-05-30 21:23:51 +02:00
|
|
|
}
|
2019-01-19 02:49:35 +01:00
|
|
|
if (!retain_gids || glyphs.length == 0)
|
|
|
|
{
|
|
|
|
*num_glyphs = glyphs.length;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-29 03:10:56 +01:00
|
|
|
*num_glyphs = face->get_num_glyphs ();
|
2019-01-19 02:49:35 +01:00
|
|
|
}
|
2018-05-30 21:23:51 +02:00
|
|
|
}
|
|
|
|
|
2018-02-06 00:22:30 +01:00
|
|
|
/**
|
|
|
|
* hb_subset_plan_create:
|
|
|
|
* Computes a plan for subsetting the supplied face according
|
2018-08-30 03:09:55 +02:00
|
|
|
* to a provided input. The plan describes
|
2018-02-06 00:22:30 +01:00
|
|
|
* which tables and glyphs should be retained.
|
|
|
|
*
|
2018-02-06 02:14:46 +01:00
|
|
|
* Return value: New subset plan.
|
2018-02-06 00:22:30 +01:00
|
|
|
*
|
|
|
|
* Since: 1.7.5
|
|
|
|
**/
|
|
|
|
hb_subset_plan_t *
|
2018-02-07 19:07:46 +01:00
|
|
|
hb_subset_plan_create (hb_face_t *face,
|
2018-11-15 20:40:56 +01:00
|
|
|
hb_subset_input_t *input)
|
2018-02-06 00:22:30 +01:00
|
|
|
{
|
2018-02-06 02:26:25 +01:00
|
|
|
hb_subset_plan_t *plan = hb_object_create<hb_subset_plan_t> ();
|
2018-02-10 21:20:10 +01:00
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
plan->drop_hints = input->drop_hints;
|
2018-08-30 03:24:03 +02:00
|
|
|
plan->drop_layout = input->drop_layout;
|
2018-11-01 06:30:34 +01:00
|
|
|
plan->desubroutinize = input->desubroutinize;
|
2018-05-30 21:23:51 +02:00
|
|
|
plan->unicodes = hb_set_create();
|
2019-03-26 03:59:37 +01:00
|
|
|
//plan->glyphs_deprecated.init();
|
2018-02-15 01:05:39 +01:00
|
|
|
plan->source = hb_face_reference (face);
|
2018-08-25 17:18:53 +02:00
|
|
|
plan->dest = hb_face_builder_create ();
|
2018-05-30 21:23:51 +02:00
|
|
|
plan->codepoint_to_glyph = hb_map_create();
|
|
|
|
plan->glyph_map = hb_map_create();
|
2019-01-19 03:33:21 +01:00
|
|
|
plan->reverse_glyph_map = hb_map_create();
|
2019-03-26 03:59:37 +01:00
|
|
|
hb_vector_t<hb_codepoint_t> glyphs;
|
2019-01-29 01:59:15 +01:00
|
|
|
plan->_glyphset = _populate_gids_to_retain (face,
|
|
|
|
input->unicodes,
|
2019-03-01 02:25:05 +01:00
|
|
|
input->glyphs,
|
2019-01-29 01:59:15 +01:00
|
|
|
!plan->drop_layout,
|
|
|
|
plan->unicodes,
|
|
|
|
plan->codepoint_to_glyph,
|
2019-03-26 03:59:37 +01:00
|
|
|
&glyphs);
|
2019-01-18 03:55:56 +01:00
|
|
|
|
2019-01-29 03:10:56 +01:00
|
|
|
_create_old_gid_to_new_gid_map (face,
|
|
|
|
input->retain_gids,
|
2019-03-26 03:59:37 +01:00
|
|
|
glyphs,
|
2019-01-19 02:49:35 +01:00
|
|
|
plan->glyph_map,
|
2019-01-19 03:33:21 +01:00
|
|
|
plan->reverse_glyph_map,
|
2019-01-29 01:15:06 +01:00
|
|
|
&plan->_num_output_glyphs);
|
2018-02-14 23:16:25 +01:00
|
|
|
|
2018-02-06 02:26:25 +01:00
|
|
|
return plan;
|
2018-02-06 00:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_plan_destroy:
|
|
|
|
*
|
|
|
|
* Since: 1.7.5
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
hb_subset_plan_destroy (hb_subset_plan_t *plan)
|
|
|
|
{
|
|
|
|
if (!hb_object_destroy (plan)) return;
|
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_set_destroy (plan->unicodes);
|
2019-03-26 03:59:37 +01:00
|
|
|
//plan->glyphs_deprecated.fini ();
|
2018-02-15 01:05:39 +01:00
|
|
|
hb_face_destroy (plan->source);
|
|
|
|
hb_face_destroy (plan->dest);
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_map_destroy (plan->codepoint_to_glyph);
|
|
|
|
hb_map_destroy (plan->glyph_map);
|
2019-01-19 03:33:21 +01:00
|
|
|
hb_map_destroy (plan->reverse_glyph_map);
|
2019-01-29 01:59:15 +01:00
|
|
|
hb_set_destroy (plan->_glyphset);
|
2018-02-15 01:05:39 +01:00
|
|
|
|
2018-02-06 00:22:30 +01:00
|
|
|
free (plan);
|
|
|
|
}
|