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-02-06 02:26:25 +01:00
|
|
|
#include "hb-subset-plan.hh"
|
|
|
|
#include "hb-subset-private.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-07 18:32:36 +01:00
|
|
|
hb_bool_t
|
|
|
|
hb_subset_plan_new_gid_for_old_id(hb_subset_plan_t *plan,
|
|
|
|
hb_codepoint_t old_gid,
|
|
|
|
hb_codepoint_t *new_gid) {
|
|
|
|
// TODO(Q1) lookup in map from old:new gid
|
|
|
|
// TEMPORARY: just loop over ids to retain and count up
|
|
|
|
hb_codepoint_t current = -1;
|
|
|
|
hb_codepoint_t count = 0;
|
|
|
|
while (hb_set_next(plan->glyphs_to_retain, ¤t)) {
|
|
|
|
if (old_gid == current) {
|
|
|
|
*new_gid = count;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-06 02:26:25 +01:00
|
|
|
hb_set_t *
|
2018-02-07 19:07:46 +01:00
|
|
|
glyph_ids_to_retain (hb_face_t *face,
|
2018-02-07 01:58:35 +01:00
|
|
|
hb_set_t *codepoints)
|
2018-02-06 02:26:25 +01:00
|
|
|
{
|
2018-02-07 19:07:46 +01:00
|
|
|
OT::cmap::accelerator_t cmap;
|
|
|
|
cmap.init (face);
|
2018-02-07 01:58:35 +01:00
|
|
|
hb_codepoint_t cp = -1;
|
|
|
|
hb_set_t *gids = hb_set_create();
|
|
|
|
while (hb_set_next(codepoints, &cp)) {
|
|
|
|
hb_codepoint_t gid;
|
2018-02-07 19:07:46 +01:00
|
|
|
if (cmap.get_nominal_glyph(cp, &gid)) {
|
2018-02-07 18:35:59 +01:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "gid for U+%04X is %d", cp, gid);
|
2018-02-07 18:37:06 +01:00
|
|
|
hb_set_add(gids, gid);
|
2018-02-07 01:58:35 +01:00
|
|
|
} else {
|
2018-02-07 18:35:59 +01:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Unable to resolve gid for U+%04X", cp);
|
2018-02-07 01:58:35 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-07 18:32:36 +01:00
|
|
|
|
|
|
|
// TODO(Q1) expand with glyphs that make up complex glyphs
|
|
|
|
// TODO expand with glyphs reached by G*
|
2018-02-07 19:07:46 +01:00
|
|
|
//
|
|
|
|
cmap.fini ();
|
2018-02-07 01:58:35 +01:00
|
|
|
return gids;
|
2018-02-06 02:26:25 +01:00
|
|
|
}
|
2018-02-06 00:22:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_plan_create:
|
|
|
|
* Computes a plan for subsetting the supplied face according
|
|
|
|
* to a provide profile and input. The plan describes
|
|
|
|
* 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-02-06 00:22:30 +01:00
|
|
|
hb_subset_profile_t *profile,
|
|
|
|
hb_subset_input_t *input)
|
|
|
|
{
|
2018-02-06 02:26:25 +01:00
|
|
|
hb_subset_plan_t *plan = hb_object_create<hb_subset_plan_t> ();
|
2018-02-07 01:58:35 +01:00
|
|
|
plan->glyphs_to_retain = glyph_ids_to_retain (face, input->codepoints);
|
2018-02-06 02:26:25 +01:00
|
|
|
return plan;
|
2018-02-06 00:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hb_subset_plan_t *
|
2018-02-06 02:26:25 +01:00
|
|
|
hb_subset_plan_get_empty ()
|
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> ();
|
|
|
|
plan->glyphs_to_retain = hb_set_get_empty();
|
|
|
|
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-02-06 02:26:25 +01:00
|
|
|
hb_set_destroy (plan->glyphs_to_retain);
|
2018-02-06 00:22:30 +01:00
|
|
|
free (plan);
|
|
|
|
}
|