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.
|
|
|
|
*
|
2018-02-22 07:23:05 +01:00
|
|
|
* Google Author(s): Garret Rieger, Roderick Sheeter
|
2018-02-07 01:04:09 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-open-type.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"
|
|
|
|
|
2019-01-19 00:11:26 +01:00
|
|
|
struct loca_data_t
|
|
|
|
{
|
|
|
|
bool is_short;
|
|
|
|
void *data;
|
|
|
|
unsigned int size;
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
_write_loca_entry (unsigned int id,
|
|
|
|
unsigned int offset)
|
|
|
|
{
|
|
|
|
unsigned int entry_size = is_short ? sizeof (OT::HBUINT16) : sizeof (OT::HBUINT32);
|
|
|
|
if ((id + 1) * entry_size <= size)
|
|
|
|
{
|
|
|
|
if (is_short) {
|
|
|
|
((OT::HBUINT16*) data) [id].set (offset / 2);
|
|
|
|
} else {
|
|
|
|
((OT::HBUINT32*) data) [id].set (offset);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Offset was not written because the write is out of bounds.
|
|
|
|
DEBUG_MSG(SUBSET,
|
|
|
|
nullptr,
|
|
|
|
"WARNING: Attempted to write an out of bounds loca entry at index %d. Loca size is %d.",
|
|
|
|
id,
|
|
|
|
size);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If hints are being dropped find the range which in glyf at which
|
|
|
|
* the hinting instructions are located. Add them to the instruction_ranges
|
|
|
|
* vector.
|
|
|
|
*/
|
2018-02-10 22:30:03 +01:00
|
|
|
static bool
|
2019-01-19 00:11:26 +01:00
|
|
|
_add_instructions_range (const OT::glyf::accelerator_t &glyf,
|
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
unsigned int glyph_start_offset,
|
|
|
|
unsigned int glyph_end_offset,
|
|
|
|
bool drop_hints,
|
|
|
|
hb_vector_t<unsigned int> *instruction_ranges /* OUT */)
|
2018-02-07 22:09:54 +01:00
|
|
|
{
|
2019-01-19 00:11:26 +01:00
|
|
|
if (!instruction_ranges->resize (instruction_ranges->length + 2))
|
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Failed to resize instruction_ranges.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unsigned int *instruction_start = &(*instruction_ranges)[instruction_ranges->length - 2];
|
|
|
|
*instruction_start = 0;
|
|
|
|
unsigned int *instruction_end = &(*instruction_ranges)[instruction_ranges->length - 1];
|
|
|
|
*instruction_end = 0;
|
|
|
|
|
|
|
|
if (drop_hints)
|
2018-02-14 01:35:30 +01:00
|
|
|
{
|
2019-01-19 00:11:26 +01:00
|
|
|
if (unlikely (!glyf.get_instruction_offsets (glyph_start_offset, glyph_end_offset,
|
|
|
|
instruction_start, instruction_end)))
|
2018-03-21 00:55:42 +01:00
|
|
|
{
|
2019-01-19 00:11:26 +01:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Unable to get instruction offsets for %d", glyph_id);
|
2018-03-21 00:55:42 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-01-19 00:11:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
_calculate_glyf_and_loca_prime_size (const OT::glyf::accelerator_t &glyf,
|
|
|
|
const hb_subset_plan_t *plan,
|
|
|
|
loca_data_t *loca_data, /* OUT */
|
|
|
|
unsigned int *glyf_size /* OUT */,
|
|
|
|
hb_vector_t<unsigned int> *instruction_ranges /* OUT */)
|
|
|
|
{
|
|
|
|
unsigned int total = 0;
|
2018-02-23 22:05:58 +01:00
|
|
|
|
2019-01-29 01:53:01 +01:00
|
|
|
hb_codepoint_t next_glyph = HB_SET_VALUE_INVALID;
|
|
|
|
while (plan->glyphset ()->next (&next_glyph))
|
|
|
|
{
|
2018-02-07 22:09:54 +01:00
|
|
|
unsigned int start_offset, end_offset;
|
2018-11-15 20:40:56 +01:00
|
|
|
if (unlikely (!(glyf.get_offsets (next_glyph, &start_offset, &end_offset) &&
|
|
|
|
glyf.remove_padding (start_offset, &end_offset))))
|
2018-02-22 07:23:05 +01:00
|
|
|
{
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "Invalid gid %d", next_glyph);
|
2019-01-19 01:41:08 +01:00
|
|
|
start_offset = end_offset = 0;
|
2018-02-22 07:23:05 +01:00
|
|
|
}
|
2018-02-23 22:05:58 +01:00
|
|
|
|
2019-01-19 00:11:26 +01:00
|
|
|
bool is_zero_length = end_offset - start_offset < OT::glyf::GlyphHeader::static_size;
|
|
|
|
if (!_add_instructions_range (glyf,
|
|
|
|
next_glyph,
|
|
|
|
start_offset,
|
|
|
|
end_offset,
|
|
|
|
plan->drop_hints && !is_zero_length,
|
|
|
|
instruction_ranges))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (is_zero_length)
|
|
|
|
continue; /* 0-length glyph */
|
2018-02-07 22:09:54 +01:00
|
|
|
|
2019-01-19 00:11:26 +01:00
|
|
|
total += end_offset - start_offset
|
|
|
|
- ((*instruction_ranges)[instruction_ranges->length - 1]
|
|
|
|
- (*instruction_ranges)[instruction_ranges->length - 2]);
|
2018-02-23 22:05:58 +01:00
|
|
|
/* round2 so short loca will work */
|
|
|
|
total += total % 2;
|
2018-02-07 22:09:54 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 04:01:21 +01:00
|
|
|
*glyf_size = total;
|
2019-01-19 00:11:26 +01:00
|
|
|
loca_data->is_short = (total <= 131070);
|
2019-01-29 01:53:01 +01:00
|
|
|
loca_data->size = (plan->num_output_glyphs () + 1)
|
2019-01-19 00:11:26 +01:00
|
|
|
* (loca_data->is_short ? sizeof (OT::HBUINT16) : sizeof (OT::HBUINT32));
|
2018-02-10 03:41:21 +01:00
|
|
|
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "preparing to subset glyf: final size %d, loca size %d, using %s loca",
|
2018-11-15 20:40:56 +01:00
|
|
|
total,
|
2019-01-19 00:11:26 +01:00
|
|
|
loca_data->size,
|
|
|
|
loca_data->is_short ? "short" : "long");
|
2018-02-07 22:09:54 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-17 01:01:00 +01:00
|
|
|
static void
|
2019-01-18 03:55:56 +01:00
|
|
|
_update_components (const hb_subset_plan_t *plan,
|
|
|
|
char *glyph_start,
|
|
|
|
unsigned int length)
|
2018-02-17 01:01:00 +01:00
|
|
|
{
|
|
|
|
OT::glyf::CompositeGlyphHeader::Iterator iterator;
|
|
|
|
if (OT::glyf::CompositeGlyphHeader::get_iterator (glyph_start,
|
|
|
|
length,
|
|
|
|
&iterator))
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
hb_codepoint_t new_gid;
|
2018-05-30 21:23:51 +02:00
|
|
|
if (!plan->new_gid_for_old_gid (iterator.current->glyphIndex,
|
2018-11-15 20:40:56 +01:00
|
|
|
&new_gid))
|
2018-02-17 01:01:00 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
((OT::glyf::CompositeGlyphHeader *) iterator.current)->glyphIndex.set (new_gid);
|
2018-11-15 20:40:56 +01:00
|
|
|
} while (iterator.move_to_next ());
|
2018-02-17 01:01:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-15 20:40:56 +01:00
|
|
|
static bool _remove_composite_instruction_flag (char *glyf_prime, unsigned int length)
|
2018-02-28 20:15:08 +01:00
|
|
|
{
|
|
|
|
/* remove WE_HAVE_INSTRUCTIONS from flags in dest */
|
|
|
|
OT::glyf::CompositeGlyphHeader::Iterator composite_it;
|
|
|
|
if (unlikely (!OT::glyf::CompositeGlyphHeader::get_iterator (glyf_prime, length, &composite_it))) return false;
|
|
|
|
const OT::glyf::CompositeGlyphHeader *glyph;
|
|
|
|
do {
|
|
|
|
glyph = composite_it.current;
|
|
|
|
OT::HBUINT16 *flags = const_cast<OT::HBUINT16 *> (&glyph->flags);
|
|
|
|
flags->set ( (uint16_t) *flags & ~OT::glyf::CompositeGlyphHeader::WE_HAVE_INSTRUCTIONS);
|
2018-11-15 20:40:56 +01:00
|
|
|
} while (composite_it.move_to_next ());
|
2018-02-28 20:15:08 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:30:03 +01:00
|
|
|
static bool
|
2019-01-18 03:55:56 +01:00
|
|
|
_write_glyf_and_loca_prime (const hb_subset_plan_t *plan,
|
2018-02-17 01:01:00 +01:00
|
|
|
const OT::glyf::accelerator_t &glyf,
|
2018-11-15 20:40:56 +01:00
|
|
|
const char *glyf_data,
|
2019-01-18 03:55:56 +01:00
|
|
|
hb_vector_t<unsigned int> &instruction_ranges,
|
2018-11-15 20:40:56 +01:00
|
|
|
unsigned int glyf_prime_size,
|
|
|
|
char *glyf_prime_data /* OUT */,
|
2019-01-19 00:11:26 +01:00
|
|
|
loca_data_t *loca_prime /* OUT */)
|
2018-02-07 22:09:54 +01:00
|
|
|
{
|
|
|
|
char *glyf_prime_data_next = glyf_prime_data;
|
|
|
|
|
2018-02-21 00:33:03 +01:00
|
|
|
bool success = true;
|
2019-01-29 01:53:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
unsigned int i = 0;
|
|
|
|
hb_codepoint_t new_gid;
|
|
|
|
for (new_gid = 0; new_gid < plan->num_output_glyphs (); new_gid++)
|
2018-02-14 01:35:30 +01:00
|
|
|
{
|
2019-01-29 01:53:01 +01:00
|
|
|
hb_codepoint_t old_gid;
|
|
|
|
if (!plan->old_gid_for_new_gid (new_gid, &old_gid))
|
|
|
|
{
|
|
|
|
// Empty glyph, add a loca entry and carry on.
|
|
|
|
loca_prime->_write_loca_entry (new_gid,
|
|
|
|
glyf_prime_data_next - glyf_prime_data);
|
|
|
|
continue;
|
|
|
|
}
|
2019-01-19 00:11:26 +01:00
|
|
|
|
2019-01-18 03:55:56 +01:00
|
|
|
|
2018-02-14 01:35:30 +01:00
|
|
|
unsigned int start_offset, end_offset;
|
2019-01-29 01:53:01 +01:00
|
|
|
if (unlikely (!(glyf.get_offsets (old_gid, &start_offset, &end_offset) &&
|
2018-11-15 20:40:56 +01:00
|
|
|
glyf.remove_padding (start_offset, &end_offset))))
|
2018-02-14 01:35:30 +01:00
|
|
|
end_offset = start_offset = 0;
|
2018-03-27 04:56:56 +02:00
|
|
|
|
2018-02-22 07:23:05 +01:00
|
|
|
unsigned int instruction_start = instruction_ranges[i * 2];
|
|
|
|
unsigned int instruction_end = instruction_ranges[i * 2 + 1];
|
2018-02-07 22:09:54 +01:00
|
|
|
|
2018-02-22 07:23:05 +01:00
|
|
|
int length = end_offset - start_offset - (instruction_end - instruction_start);
|
2018-02-21 01:48:52 +01:00
|
|
|
|
|
|
|
if (glyf_prime_data_next + length > glyf_prime_data + glyf_prime_size)
|
|
|
|
{
|
2018-11-15 20:40:56 +01:00
|
|
|
DEBUG_MSG(SUBSET,
|
2019-01-19 01:41:08 +01:00
|
|
|
nullptr,
|
|
|
|
"WARNING: Attempted to write an out of bounds glyph entry for gid %d (length %d)",
|
|
|
|
i, length);
|
2018-02-21 01:48:52 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-02-22 07:23:05 +01:00
|
|
|
|
|
|
|
if (instruction_start == instruction_end)
|
|
|
|
memcpy (glyf_prime_data_next, glyf_data + start_offset, length);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (glyf_prime_data_next, glyf_data + start_offset, instruction_start - start_offset);
|
|
|
|
memcpy (glyf_prime_data_next + instruction_start - start_offset, glyf_data + instruction_end, end_offset - instruction_end);
|
2018-02-28 20:41:24 +01:00
|
|
|
/* if the instructions end at the end this was a composite glyph, else simple */
|
2018-02-22 07:23:05 +01:00
|
|
|
if (instruction_end == end_offset)
|
2018-02-28 05:51:12 +01:00
|
|
|
{
|
2018-11-15 20:40:56 +01:00
|
|
|
if (unlikely (!_remove_composite_instruction_flag (glyf_prime_data_next, length))) return false;
|
2018-02-28 05:51:12 +01:00
|
|
|
}
|
2018-02-22 07:23:05 +01:00
|
|
|
else
|
2018-11-15 20:40:56 +01:00
|
|
|
/* zero instruction length, which is just before instruction_start */
|
|
|
|
memset (glyf_prime_data_next + instruction_start - start_offset - 2, 0, 2);
|
2018-02-22 07:23:05 +01:00
|
|
|
}
|
2018-02-10 03:41:21 +01:00
|
|
|
|
2019-01-29 01:53:01 +01:00
|
|
|
success = success && loca_prime->_write_loca_entry (new_gid,
|
2019-01-19 00:11:26 +01:00
|
|
|
glyf_prime_data_next - glyf_prime_data);
|
2018-02-22 07:23:05 +01:00
|
|
|
_update_components (plan, glyf_prime_data_next, length);
|
2018-02-08 04:01:21 +01:00
|
|
|
|
2018-03-27 04:56:56 +02:00
|
|
|
// TODO: don't align to two bytes if using long loca.
|
|
|
|
glyf_prime_data_next += length + (length % 2); // Align to 2 bytes for short loca.
|
2019-01-29 01:53:01 +01:00
|
|
|
|
|
|
|
i++;
|
2018-02-07 22:09:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 00:11:26 +01:00
|
|
|
// loca table has n+1 entries where the last entry signifies the end location of the last
|
|
|
|
// glyph.
|
2019-01-29 01:53:01 +01:00
|
|
|
success = success && loca_prime->_write_loca_entry (new_gid,
|
2019-01-19 00:11:26 +01:00
|
|
|
glyf_prime_data_next - glyf_prime_data);
|
2018-02-21 00:33:03 +01:00
|
|
|
return success;
|
2018-02-07 22:09:54 +01:00
|
|
|
}
|
|
|
|
|
2018-02-10 22:30:03 +01:00
|
|
|
static bool
|
2018-02-08 04:01:21 +01:00
|
|
|
_hb_subset_glyf_and_loca (const OT::glyf::accelerator_t &glyf,
|
2018-11-15 20:40:56 +01:00
|
|
|
const char *glyf_data,
|
|
|
|
hb_subset_plan_t *plan,
|
|
|
|
bool *use_short_loca,
|
2019-01-19 00:11:26 +01:00
|
|
|
hb_blob_t **glyf_prime_blob /* OUT */,
|
|
|
|
hb_blob_t **loca_prime_blob /* OUT */)
|
2018-02-07 01:04:09 +01:00
|
|
|
{
|
2018-02-07 22:09:54 +01:00
|
|
|
// TODO(grieger): Sanity check allocation size for the new table.
|
2019-01-19 00:11:26 +01:00
|
|
|
loca_data_t loca_prime;
|
2018-02-07 22:09:54 +01:00
|
|
|
unsigned int glyf_prime_size;
|
2018-05-02 01:07:04 +02:00
|
|
|
hb_vector_t<unsigned int> instruction_ranges;
|
2018-11-15 20:40:56 +01:00
|
|
|
instruction_ranges.init ();
|
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,
|
2019-01-19 00:11:26 +01:00
|
|
|
plan,
|
|
|
|
&loca_prime,
|
2018-11-15 20:40:56 +01:00
|
|
|
&glyf_prime_size,
|
|
|
|
&instruction_ranges))) {
|
|
|
|
instruction_ranges.fini ();
|
2018-02-07 22:09:54 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-01-19 00:11:26 +01:00
|
|
|
*use_short_loca = loca_prime.is_short;
|
2018-02-07 01:04:09 +01:00
|
|
|
|
2018-02-24 02:43:00 +01:00
|
|
|
char *glyf_prime_data = (char *) calloc (1, glyf_prime_size);
|
2019-01-19 00:11:26 +01:00
|
|
|
loca_prime.data = (void *) calloc (1, loca_prime.size);
|
2018-02-17 01:01:00 +01:00
|
|
|
if (unlikely (!_write_glyf_and_loca_prime (plan, glyf, glyf_data,
|
2018-11-15 20:40:56 +01:00
|
|
|
instruction_ranges,
|
|
|
|
glyf_prime_size, glyf_prime_data,
|
2019-01-19 00:11:26 +01:00
|
|
|
&loca_prime))) {
|
2018-02-07 22:09:54 +01:00
|
|
|
free (glyf_prime_data);
|
2019-01-19 00:11:26 +01:00
|
|
|
free (loca_prime.data);
|
2018-11-15 20:40:56 +01:00
|
|
|
instruction_ranges.fini ();
|
2018-02-07 22:09:54 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-15 20:40:56 +01:00
|
|
|
instruction_ranges.fini ();
|
2018-02-07 02:05:22 +01:00
|
|
|
|
2019-01-19 00:11:26 +01:00
|
|
|
*glyf_prime_blob = hb_blob_create (glyf_prime_data,
|
|
|
|
glyf_prime_size,
|
|
|
|
HB_MEMORY_MODE_READONLY,
|
|
|
|
glyf_prime_data,
|
|
|
|
free);
|
|
|
|
*loca_prime_blob = hb_blob_create ((char *) 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,
|
2018-11-15 20:40:56 +01:00
|
|
|
bool *use_short_loca, /* OUT */
|
|
|
|
hb_blob_t **glyf_prime, /* OUT */
|
|
|
|
hb_blob_t **loca_prime /* OUT */)
|
2018-02-07 22:28:11 +01:00
|
|
|
{
|
2018-08-02 08:59:09 +02:00
|
|
|
hb_blob_t *glyf_blob = hb_sanitize_context_t ().reference_table<OT::glyf> (plan->source);
|
2018-11-15 20:40:56 +01:00
|
|
|
const char *glyf_data = hb_blob_get_data (glyf_blob, nullptr);
|
2018-02-07 22:28:11 +01:00
|
|
|
|
|
|
|
OT::glyf::accelerator_t glyf;
|
2018-11-15 20:40:56 +01:00
|
|
|
glyf.init (plan->source);
|
2018-02-10 03:41:21 +01:00
|
|
|
bool result = _hb_subset_glyf_and_loca (glyf,
|
2018-11-15 20:40:56 +01:00
|
|
|
glyf_data,
|
|
|
|
plan,
|
|
|
|
use_short_loca,
|
|
|
|
glyf_prime,
|
|
|
|
loca_prime);
|
2018-02-24 00:45:45 +01:00
|
|
|
|
|
|
|
hb_blob_destroy (glyf_blob);
|
2018-11-15 20:40:56 +01:00
|
|
|
glyf.fini ();
|
2018-02-07 22:28:11 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|