2018-02-07 01:04:09 +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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Garret Rieger
|
|
|
|
*/
|
|
|
|
|
2018-02-07 22:09:54 +01:00
|
|
|
#include "hb-open-type-private.hh"
|
2018-02-07 02:05:22 +01:00
|
|
|
#include "hb-ot-glyf-table.hh"
|
2018-02-07 22:09:54 +01:00
|
|
|
#include "hb-set.h"
|
2018-02-07 01:04:09 +01:00
|
|
|
#include "hb-subset-glyf.hh"
|
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL bool
|
2018-02-08 04:01:21 +01:00
|
|
|
_calculate_glyf_and_loca_prime_size (const OT::glyf::accelerator_t &glyf,
|
2018-02-10 21:20:10 +01:00
|
|
|
hb_prealloced_array_t<unsigned int> &glyph_ids,
|
2018-02-10 03:41:21 +01:00
|
|
|
bool *use_short_loca, /* OUT */
|
|
|
|
unsigned int *glyf_size, /* OUT */
|
2018-02-08 04:01:21 +01:00
|
|
|
unsigned int *loca_size /* OUT */)
|
2018-02-07 22:09:54 +01:00
|
|
|
{
|
|
|
|
unsigned int total = 0;
|
2018-02-08 04:01:21 +01:00
|
|
|
unsigned int count = 0;
|
2018-02-09 04:22:47 +01:00
|
|
|
for (unsigned int i = 0; i < glyph_ids.len; i++) {
|
|
|
|
hb_codepoint_t next_glyph = glyph_ids[i];
|
2018-02-07 22:09:54 +01:00
|
|
|
unsigned int start_offset, end_offset;
|
2018-02-08 01:30:07 +01:00
|
|
|
if (unlikely (!glyf.get_offsets (next_glyph, &start_offset, &end_offset))) {
|
2018-02-08 04:01:21 +01:00
|
|
|
*glyf_size = 0;
|
|
|
|
*loca_size = sizeof(OT::HBUINT32);
|
2018-02-07 22:09:54 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
total += end_offset - start_offset;
|
2018-02-08 04:01:21 +01:00
|
|
|
count++;
|
2018-02-07 22:09:54 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 04:01:21 +01:00
|
|
|
*glyf_size = total;
|
2018-02-10 03:41:21 +01:00
|
|
|
*use_short_loca = (total <= 131070);
|
|
|
|
*loca_size = (count + 1)
|
|
|
|
* (*use_short_loca ? sizeof(OT::HBUINT16) : sizeof(OT::HBUINT32));
|
|
|
|
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "preparing to subset glyf: final size %d, loca size %d, using %s loca",
|
|
|
|
total,
|
|
|
|
*loca_size,
|
|
|
|
*use_short_loca ? "short" : "long");
|
2018-02-07 22:09:54 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL void
|
2018-02-10 03:41:21 +01:00
|
|
|
_write_loca_entry (unsigned int id, unsigned int offset, bool is_short, void *loca_prime) {
|
|
|
|
if (is_short) {
|
|
|
|
((OT::HBUINT16*) loca_prime) [id].set (offset / 2);
|
|
|
|
} else {
|
|
|
|
((OT::HBUINT32*) loca_prime) [id].set (offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL bool
|
2018-02-08 04:01:21 +01:00
|
|
|
_write_glyf_and_loca_prime (const OT::glyf::accelerator_t &glyf,
|
|
|
|
const char *glyf_data,
|
2018-02-10 21:20:10 +01:00
|
|
|
hb_prealloced_array_t<unsigned int> &glyph_ids,
|
2018-02-10 03:41:21 +01:00
|
|
|
bool use_short_loca,
|
2018-02-08 04:01:21 +01:00
|
|
|
int glyf_prime_size,
|
|
|
|
char *glyf_prime_data /* OUT */,
|
|
|
|
int loca_prime_size,
|
|
|
|
char *loca_prime_data /* OUT */)
|
2018-02-07 22:09:54 +01:00
|
|
|
{
|
|
|
|
char *glyf_prime_data_next = glyf_prime_data;
|
|
|
|
|
2018-02-08 04:01:21 +01:00
|
|
|
hb_codepoint_t new_glyph_id = 0;
|
|
|
|
|
2018-02-10 21:11:16 +01:00
|
|
|
unsigned int end_offset = 0;
|
2018-02-09 04:22:47 +01:00
|
|
|
for (unsigned int i = 0; i < glyph_ids.len; i++) {
|
2018-02-09 03:32:24 +01:00
|
|
|
unsigned int start_offset;
|
2018-02-09 04:22:47 +01:00
|
|
|
if (unlikely (!glyf.get_offsets (glyph_ids[i], &start_offset, &end_offset))) {
|
2018-02-07 22:09:54 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int length = end_offset - start_offset;
|
|
|
|
memcpy (glyf_prime_data_next, glyf_data + start_offset, length);
|
2018-02-10 03:41:21 +01:00
|
|
|
|
|
|
|
_write_loca_entry (i, start_offset, use_short_loca, loca_prime_data);
|
2018-02-08 04:01:21 +01:00
|
|
|
|
2018-02-07 22:09:54 +01:00
|
|
|
glyf_prime_data_next += length;
|
2018-02-08 04:01:21 +01:00
|
|
|
new_glyph_id++;
|
2018-02-07 22:09:54 +01:00
|
|
|
}
|
|
|
|
|
2018-02-09 03:32:24 +01:00
|
|
|
// Add the last loca entry which doesn't correspond to a specific glyph
|
|
|
|
// but identifies the end of the last glyphs data.
|
2018-02-10 03:41:21 +01:00
|
|
|
_write_loca_entry (new_glyph_id, end_offset, use_short_loca, loca_prime_data);
|
2018-02-09 03:32:24 +01:00
|
|
|
|
2018-02-07 22:09:54 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL bool
|
2018-02-08 04:01:21 +01:00
|
|
|
_hb_subset_glyf_and_loca (const OT::glyf::accelerator_t &glyf,
|
|
|
|
const char *glyf_data,
|
2018-02-10 21:20:10 +01:00
|
|
|
hb_prealloced_array_t<hb_codepoint_t>&glyphs_to_retain,
|
2018-02-10 03:41:21 +01:00
|
|
|
bool *use_short_loca,
|
2018-02-08 04:01:21 +01:00
|
|
|
hb_blob_t **glyf_prime /* OUT */,
|
|
|
|
hb_blob_t **loca_prime /* OUT */)
|
2018-02-07 01:04:09 +01:00
|
|
|
{
|
2018-02-07 22:09:54 +01:00
|
|
|
// TODO(grieger): Sanity check writes to make sure they are in-bounds.
|
|
|
|
// TODO(grieger): Sanity check allocation size for the new table.
|
2018-02-08 01:53:18 +01:00
|
|
|
// TODO(grieger): Don't fail on bad offsets, just dump them.
|
2018-02-07 22:09:54 +01:00
|
|
|
|
|
|
|
unsigned int glyf_prime_size;
|
2018-02-08 04:01:21 +01:00
|
|
|
unsigned int loca_prime_size;
|
2018-02-10 03:41:21 +01:00
|
|
|
|
2018-02-08 04:01:21 +01:00
|
|
|
if (unlikely (!_calculate_glyf_and_loca_prime_size (glyf,
|
|
|
|
glyphs_to_retain,
|
2018-02-10 03:41:21 +01:00
|
|
|
use_short_loca,
|
2018-02-08 04:01:21 +01:00
|
|
|
&glyf_prime_size,
|
|
|
|
&loca_prime_size))) {
|
2018-02-07 22:09:54 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-02-07 01:04:09 +01:00
|
|
|
|
2018-02-07 22:09:54 +01:00
|
|
|
char *glyf_prime_data = (char *) calloc (glyf_prime_size, 1);
|
2018-02-08 04:01:21 +01:00
|
|
|
char *loca_prime_data = (char *) calloc (loca_prime_size, 1);
|
|
|
|
if (unlikely (!_write_glyf_and_loca_prime (glyf, glyf_data, glyphs_to_retain,
|
2018-02-10 03:41:21 +01:00
|
|
|
*use_short_loca,
|
2018-02-08 04:01:21 +01:00
|
|
|
glyf_prime_size, glyf_prime_data,
|
|
|
|
loca_prime_size, loca_prime_data))) {
|
2018-02-07 22:09:54 +01:00
|
|
|
free (glyf_prime_data);
|
|
|
|
return false;
|
|
|
|
}
|
2018-02-07 02:05:22 +01:00
|
|
|
|
2018-02-07 22:09:54 +01:00
|
|
|
*glyf_prime = hb_blob_create (glyf_prime_data,
|
|
|
|
glyf_prime_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
glyf_prime_data,
|
|
|
|
free);
|
2018-02-08 04:01:21 +01:00
|
|
|
*loca_prime = hb_blob_create (loca_prime_data,
|
|
|
|
loca_prime_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
loca_prime_data,
|
|
|
|
free);
|
2018-02-07 01:04:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-02-07 22:28:11 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_glyf:
|
|
|
|
* Subsets the glyph table according to a provided plan.
|
|
|
|
*
|
|
|
|
* Return value: subsetted glyf table.
|
|
|
|
*
|
|
|
|
* Since: 1.7.5
|
|
|
|
**/
|
|
|
|
bool
|
2018-02-08 01:53:18 +01:00
|
|
|
hb_subset_glyf_and_loca (hb_subset_plan_t *plan,
|
|
|
|
hb_face_t *face,
|
2018-02-09 21:52:08 +01:00
|
|
|
bool *use_short_loca, /* OUT */
|
|
|
|
hb_blob_t **glyf_prime, /* OUT */
|
2018-02-08 01:53:18 +01:00
|
|
|
hb_blob_t **loca_prime /* OUT */)
|
2018-02-07 22:28:11 +01:00
|
|
|
{
|
|
|
|
hb_blob_t *glyf_blob = OT::Sanitizer<OT::glyf>().sanitize (face->reference_table (HB_OT_TAG_glyf));
|
|
|
|
const char *glyf_data = hb_blob_get_data(glyf_blob, nullptr);
|
|
|
|
|
|
|
|
OT::glyf::accelerator_t glyf;
|
|
|
|
glyf.init(face);
|
2018-02-10 03:41:21 +01:00
|
|
|
bool result = _hb_subset_glyf_and_loca (glyf,
|
|
|
|
glyf_data,
|
|
|
|
plan->gids_to_retain_sorted,
|
|
|
|
use_short_loca,
|
|
|
|
glyf_prime,
|
|
|
|
loca_prime);
|
2018-02-07 22:28:11 +01:00
|
|
|
glyf.fini();
|
|
|
|
|
2018-02-09 21:52:08 +01:00
|
|
|
*use_short_loca = false;
|
2018-02-08 01:53:18 +01:00
|
|
|
|
2018-02-07 22:28:11 +01:00
|
|
|
return result;
|
|
|
|
}
|