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-private.hh"
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-02-09 00:11:15 +01:00
|
|
|
#include "hb-subset-plan.hh"
|
2018-02-07 19:07:46 +01:00
|
|
|
#include "hb-ot-cmap-table.hh"
|
|
|
|
|
2018-02-10 22:17:28 +01:00
|
|
|
static int
|
|
|
|
_hb_codepoint_t_cmp (const void *pa, const void *pb)
|
|
|
|
{
|
|
|
|
hb_codepoint_t a = * (hb_codepoint_t *) pa;
|
|
|
|
hb_codepoint_t b = * (hb_codepoint_t *) pb;
|
|
|
|
|
|
|
|
return a < b ? -1 : a > b ? +1 : 0;
|
2018-02-09 04:22:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-12 23:29:23 +01:00
|
|
|
hb_bool_t
|
|
|
|
hb_subset_plan_new_gid_for_codepoint (hb_subset_plan_t *plan,
|
|
|
|
hb_codepoint_t codepoint,
|
|
|
|
hb_codepoint_t *new_gid)
|
|
|
|
{
|
|
|
|
// TODO actual map, delete this garbage.
|
|
|
|
for (unsigned int i = 0; i < plan->codepoints.len; i++)
|
|
|
|
{
|
|
|
|
if (plan->codepoints[i] != codepoint) continue;
|
|
|
|
if (!hb_subset_plan_new_gid_for_old_id(plan, plan->gids_to_retain[i], new_gid))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-07 18:32:36 +01:00
|
|
|
hb_bool_t
|
2018-02-10 01:06:33 +01:00
|
|
|
hb_subset_plan_new_gid_for_old_id (hb_subset_plan_t *plan,
|
|
|
|
hb_codepoint_t old_gid,
|
|
|
|
hb_codepoint_t *new_gid)
|
|
|
|
{
|
2018-02-09 04:22:47 +01:00
|
|
|
// the index in old_gids is the new gid; only up to codepoints.len are valid
|
2018-02-12 23:37:47 +01:00
|
|
|
for (unsigned int i = 0; i < plan->gids_to_retain.len; i++) {
|
|
|
|
if (plan->gids_to_retain[i] == old_gid) {
|
2018-02-12 23:29:23 +01:00
|
|
|
// +1: assign new gids from 1..N; 0 is special
|
|
|
|
*new_gid = i + 1;
|
2018-02-07 18:32:36 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-14 23:16:25 +01:00
|
|
|
hb_bool_t
|
|
|
|
hb_subset_plan_add_table (hb_subset_plan_t *plan,
|
|
|
|
hb_tag_t tag,
|
|
|
|
hb_blob_t *contents)
|
|
|
|
{
|
|
|
|
return hb_subset_face_add_table(plan->dest, tag, contents);
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:30:03 +01:00
|
|
|
static void
|
2018-02-10 01:06:33 +01:00
|
|
|
_populate_codepoints (hb_set_t *input_codepoints,
|
2018-02-10 21:20:10 +01:00
|
|
|
hb_prealloced_array_t<hb_codepoint_t>& plan_codepoints)
|
2018-02-10 01:06:33 +01:00
|
|
|
{
|
|
|
|
plan_codepoints.alloc (hb_set_get_population (input_codepoints));
|
2018-02-09 04:22:47 +01:00
|
|
|
hb_codepoint_t cp = -1;
|
2018-02-10 01:06:33 +01:00
|
|
|
while (hb_set_next (input_codepoints, &cp)) {
|
2018-02-09 04:22:47 +01:00
|
|
|
hb_codepoint_t *wr = plan_codepoints.push();
|
|
|
|
*wr = cp;
|
|
|
|
}
|
2018-02-10 01:22:09 +01:00
|
|
|
plan_codepoints.qsort (_hb_codepoint_t_cmp);
|
2018-02-09 04:22:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-10 22:30:03 +01:00
|
|
|
static void
|
2018-02-10 01:06:33 +01:00
|
|
|
_populate_gids_to_retain (hb_face_t *face,
|
2018-02-10 21:20:10 +01:00
|
|
|
hb_prealloced_array_t<hb_codepoint_t>& codepoints,
|
|
|
|
hb_prealloced_array_t<hb_codepoint_t>& old_gids,
|
|
|
|
hb_prealloced_array_t<hb_codepoint_t>& old_gids_sorted)
|
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-09 04:22:47 +01:00
|
|
|
|
2018-02-12 02:01:44 +01:00
|
|
|
hb_auto_array_t<unsigned int> bad_indices;
|
2018-02-09 04:22:47 +01:00
|
|
|
|
2018-02-10 01:06:33 +01:00
|
|
|
old_gids.alloc (codepoints.len);
|
2018-02-10 01:22:09 +01:00
|
|
|
bool has_zero = false;
|
2018-02-09 04:22:47 +01:00
|
|
|
for (unsigned int i = 0; i < codepoints.len; i++) {
|
2018-02-07 01:58:35 +01:00
|
|
|
hb_codepoint_t gid;
|
2018-02-10 01:06:33 +01:00
|
|
|
if (!cmap.get_nominal_glyph (codepoints[i], &gid)) {
|
2018-02-09 04:22:47 +01:00
|
|
|
gid = -1;
|
2018-02-10 01:06:33 +01:00
|
|
|
*(bad_indices.push ()) = i;
|
2018-02-07 01:58:35 +01:00
|
|
|
}
|
2018-02-10 01:22:09 +01:00
|
|
|
if (gid == 0) {
|
|
|
|
has_zero = true;
|
|
|
|
}
|
2018-02-10 01:06:33 +01:00
|
|
|
*(old_gids.push ()) = gid;
|
2018-02-09 04:22:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-14 23:16:25 +01:00
|
|
|
/* Generally there shouldn't be any */
|
2018-02-09 04:22:47 +01:00
|
|
|
while (bad_indices.len > 0) {
|
|
|
|
unsigned int i = bad_indices[bad_indices.len - 1];
|
2018-02-10 01:06:33 +01:00
|
|
|
bad_indices.pop ();
|
2018-02-09 04:22:47 +01:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Drop U+%04X; no gid", codepoints[i]);
|
2018-02-10 01:06:33 +01:00
|
|
|
codepoints.remove (i);
|
|
|
|
old_gids.remove (i);
|
2018-02-07 01:58:35 +01:00
|
|
|
}
|
2018-02-07 18:32:36 +01:00
|
|
|
|
2018-02-10 01:22:09 +01:00
|
|
|
// Populate a second glyph id array that is sorted by glyph id
|
|
|
|
// and is gauranteed to contain 0.
|
|
|
|
old_gids_sorted.alloc (old_gids.len + (has_zero ? 0 : 1));
|
|
|
|
for (unsigned int i = 0; i < old_gids.len; i++) {
|
|
|
|
*(old_gids_sorted.push ()) = old_gids[i];
|
|
|
|
}
|
|
|
|
if (!has_zero)
|
|
|
|
*(old_gids_sorted.push ()) = 0;
|
|
|
|
old_gids_sorted.qsort (_hb_codepoint_t_cmp);
|
|
|
|
|
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-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-10 21:20:10 +01:00
|
|
|
|
|
|
|
plan->codepoints.init();
|
|
|
|
plan->gids_to_retain.init();
|
|
|
|
plan->gids_to_retain_sorted.init();
|
2018-02-14 23:16:25 +01:00
|
|
|
plan->source = face;
|
|
|
|
plan->dest = hb_subset_face_create ();
|
2018-02-10 21:20:10 +01:00
|
|
|
|
2018-02-13 22:50:50 +01:00
|
|
|
_populate_codepoints (input->unicodes, plan->codepoints);
|
2018-02-10 01:22:09 +01:00
|
|
|
_populate_gids_to_retain (face,
|
|
|
|
plan->codepoints,
|
|
|
|
plan->gids_to_retain,
|
|
|
|
plan->gids_to_retain_sorted);
|
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-02-10 01:06:33 +01:00
|
|
|
plan->codepoints.finish ();
|
|
|
|
plan->gids_to_retain.finish ();
|
2018-02-10 01:22:09 +01:00
|
|
|
plan->gids_to_retain_sorted.finish ();
|
2018-02-10 21:20:10 +01:00
|
|
|
|
2018-02-06 00:22:30 +01:00
|
|
|
free (plan);
|
|
|
|
}
|