hb-subset-glyf.cc 12.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * 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.
 *
24
 * Google Author(s): Garret Rieger, Roderick Sheeter
25 26
 */

27
#include "hb-open-type-private.hh"
28
#include "hb-ot-glyf-table.hh"
29
#include "hb-set.h"
30
#include "hb-subset-glyf.hh"
31
#include "hb-subset-plan.hh"
32

33
static bool
34
_calculate_glyf_and_loca_prime_size (const OT::glyf::accelerator_t &glyf,
35
                                     hb_vector_t<hb_codepoint_t> &glyph_ids,
36 37 38 39
                                     hb_bool_t drop_hints,
                                     bool *use_short_loca /* OUT */,
                                     unsigned int *glyf_size /* OUT */,
                                     unsigned int *loca_size /* OUT */,
40
                                     hb_vector_t<unsigned int> *instruction_ranges /* OUT */)
41 42
{
  unsigned int total = 0;
B
Behdad Esfahbod 已提交
43 44
  for (unsigned int i = 0; i < glyph_ids.len; i++)
  {
45
    hb_codepoint_t next_glyph = glyph_ids[i];
46 47
    if (!instruction_ranges->resize (instruction_ranges->len + 2))
    {
G
Garret Rieger 已提交
48
      DEBUG_MSG(SUBSET, nullptr, "Failed to resize instruction_ranges.");
49 50 51
      return false;
    }
    unsigned int *instruction_start = &(*instruction_ranges)[instruction_ranges->len - 2];
52
    *instruction_start = 0;
53
    unsigned int *instruction_end = &(*instruction_ranges)[instruction_ranges->len - 1];
54
    *instruction_end = 0;
55

56
    unsigned int start_offset, end_offset;
57
    if (unlikely (!(glyf.get_offsets(next_glyph, &start_offset, &end_offset)
58
                    && glyf.remove_padding(start_offset, &end_offset))))
59 60 61 62
    {
      DEBUG_MSG(SUBSET, nullptr, "Invalid gid %d", next_glyph);
      continue;
    }
63 64 65
    if (end_offset - start_offset < OT::glyf::GlyphHeader::static_size)
      continue; /* 0-length glyph */

66 67 68
    if (drop_hints)
    {
      if (unlikely (!glyf.get_instruction_offsets(start_offset, end_offset,
69
                                                  instruction_start, instruction_end)))
70 71 72 73 74
      {
        DEBUG_MSG(SUBSET, nullptr, "Unable to get instruction offsets for %d", next_glyph);
        return false;
      }
    }
75

76
    total += end_offset - start_offset - (*instruction_end - *instruction_start);
77 78
    /* round2 so short loca will work */
    total += total % 2;
79 80
  }

81
  *glyf_size = total;
82
  *use_short_loca = (total <= 131070);
83
  *loca_size = (glyph_ids.len + 1)
84 85 86 87 88 89
      * (*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");
90 91 92
  return true;
}

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
static bool
_write_loca_entry (unsigned int  id,
                   unsigned int  offset,
                   bool          is_short,
                   void         *loca_prime,
                   unsigned int  loca_size)
{
  unsigned int entry_size = is_short ? sizeof (OT::HBUINT16) : sizeof (OT::HBUINT32);
  if ((id + 1) * entry_size <= loca_size)
  {
    if (is_short) {
      ((OT::HBUINT16*) loca_prime) [id].set (offset / 2);
    } else {
      ((OT::HBUINT32*) loca_prime) [id].set (offset);
    }
    return true;
109
  }
110 111 112 113 114 115 116 117

  // 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,
             loca_size);
  return false;
118 119
}

120 121 122 123 124 125 126 127 128 129 130 131 132
static void
_update_components (hb_subset_plan_t * plan,
		    char * glyph_start,
		    unsigned int length)
{
  OT::glyf::CompositeGlyphHeader::Iterator iterator;
  if (OT::glyf::CompositeGlyphHeader::get_iterator (glyph_start,
						    length,
						    &iterator))
  {
    do
    {
      hb_codepoint_t new_gid;
133 134
      if (!plan->new_gid_for_old_gid (iterator.current->glyphIndex,
                                      &new_gid))
135 136 137 138 139 140 141
	continue;

      ((OT::glyf::CompositeGlyphHeader *) iterator.current)->glyphIndex.set (new_gid);
    } while (iterator.move_to_next());
  }
}

142 143 144 145 146 147 148 149 150 151 152 153 154 155
static bool _remove_composite_instruction_flag(char *glyf_prime, unsigned int length)
{
  /* 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);
  } while (composite_it.move_to_next());
  return true;
}

156
static bool
157 158
_write_glyf_and_loca_prime (hb_subset_plan_t              *plan,
			    const OT::glyf::accelerator_t &glyf,
159
                            const char                    *glyf_data,
160
                            bool                           use_short_loca,
161
                            hb_vector_t<unsigned int> &instruction_ranges,
162
                            unsigned int                   glyf_prime_size,
163
                            char                          *glyf_prime_data /* OUT */,
164
                            unsigned int                   loca_prime_size,
165
                            char                          *loca_prime_data /* OUT */)
166
{
167
  hb_vector_t<hb_codepoint_t> &glyph_ids = plan->glyphs;
168 169
  char *glyf_prime_data_next = glyf_prime_data;

170
  bool success = true;
B
Behdad Esfahbod 已提交
171 172 173
  for (unsigned int i = 0; i < glyph_ids.len; i++)
  {
    unsigned int start_offset, end_offset;
174
    if (unlikely (!(glyf.get_offsets (glyph_ids[i], &start_offset, &end_offset)
175
                    && glyf.remove_padding(start_offset, &end_offset))))
B
Behdad Esfahbod 已提交
176
      end_offset = start_offset = 0;
177

178 179
    unsigned int instruction_start = instruction_ranges[i * 2];
    unsigned int instruction_end = instruction_ranges[i * 2 + 1];
180

181
    int length = end_offset - start_offset - (instruction_end - instruction_start);
182 183 184 185 186

    if (glyf_prime_data_next + length > glyf_prime_data + glyf_prime_size)
    {
      DEBUG_MSG (SUBSET,
                 nullptr,
187 188
                 "WARNING: Attempted to write an out of bounds glyph entry for gid %d (length %d)",
                 i, length);
189 190
      return false;
    }
191 192 193 194 195 196 197

    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);
R
Rod Sheeter 已提交
198
      /* if the instructions end at the end this was a composite glyph, else simple */
199
      if (instruction_end == end_offset)
200
      {
201
        if (unlikely (!_remove_composite_instruction_flag (glyf_prime_data_next, length))) return false;
202
      }
203
      else
204 205
        /* zero instruction length, which is just before instruction_start */
        memset (glyf_prime_data_next + instruction_start - start_offset - 2, 0, 2);
206
    }
207

208 209 210 211 212
    success = success && _write_loca_entry (i,
                                            glyf_prime_data_next - glyf_prime_data,
                                            use_short_loca,
                                            loca_prime_data,
                                            loca_prime_size);
213
    _update_components (plan, glyf_prime_data_next, length);
214

215 216
    // 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.
217 218
  }

219 220 221 222 223 224
  success = success && _write_loca_entry (glyph_ids.len,
                                          glyf_prime_data_next - glyf_prime_data,
                                          use_short_loca,
                                          loca_prime_data,
                                          loca_prime_size);
  return success;
225 226
}

227
static bool
228 229
_hb_subset_glyf_and_loca (const OT::glyf::accelerator_t  &glyf,
                          const char                     *glyf_data,
230
                          hb_subset_plan_t               *plan,
231
                          bool                           *use_short_loca,
232 233
                          hb_blob_t                     **glyf_prime /* OUT */,
                          hb_blob_t                     **loca_prime /* OUT */)
234
{
235
  // TODO(grieger): Sanity check allocation size for the new table.
236
  hb_vector_t<hb_codepoint_t> &glyphs_to_retain = plan->glyphs;
237 238

  unsigned int glyf_prime_size;
239
  unsigned int loca_prime_size;
240
  hb_vector_t<unsigned int> instruction_ranges;
241
  instruction_ranges.init();
242

243 244
  if (unlikely (!_calculate_glyf_and_loca_prime_size (glyf,
                                                      glyphs_to_retain,
245
                                                      plan->drop_hints,
246
                                                      use_short_loca,
247
                                                      &glyf_prime_size,
248 249
                                                      &loca_prime_size,
                                                      &instruction_ranges))) {
B
Behdad Esfahbod 已提交
250
    instruction_ranges.fini();
251 252
    return false;
  }
253

254 255
  char *glyf_prime_data = (char *) calloc (1, glyf_prime_size);
  char *loca_prime_data = (char *) calloc (1, loca_prime_size);
256
  if (unlikely (!_write_glyf_and_loca_prime (plan, glyf, glyf_data,
257
                                             *use_short_loca,
258
                                             instruction_ranges,
259 260
                                             glyf_prime_size, glyf_prime_data,
                                             loca_prime_size, loca_prime_data))) {
261
    free (glyf_prime_data);
262
    free (loca_prime_data);
B
Behdad Esfahbod 已提交
263
    instruction_ranges.fini();
264 265
    return false;
  }
B
Behdad Esfahbod 已提交
266
  instruction_ranges.fini();
267

268 269 270 271 272
  *glyf_prime = hb_blob_create (glyf_prime_data,
                                glyf_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                glyf_prime_data,
                                free);
273 274 275 276 277
  *loca_prime = hb_blob_create (loca_prime_data,
                                loca_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                loca_prime_data,
                                free);
278 279
  return true;
}
280 281 282 283 284 285 286 287 288 289

/**
 * hb_subset_glyf:
 * Subsets the glyph table according to a provided plan.
 *
 * Return value: subsetted glyf table.
 *
 * Since: 1.7.5
 **/
bool
290
hb_subset_glyf_and_loca (hb_subset_plan_t *plan,
291 292
                         bool             *use_short_loca, /* OUT */
                         hb_blob_t       **glyf_prime, /* OUT */
293
                         hb_blob_t       **loca_prime /* OUT */)
294
{
R
Rod Sheeter 已提交
295
  hb_blob_t *glyf_blob = OT::Sanitizer<OT::glyf>().sanitize (plan->source->reference_table (HB_OT_TAG_glyf));
296 297 298
  const char *glyf_data = hb_blob_get_data(glyf_blob, nullptr);

  OT::glyf::accelerator_t glyf;
R
Rod Sheeter 已提交
299
  glyf.init(plan->source);
300 301
  bool result = _hb_subset_glyf_and_loca (glyf,
                                          glyf_data,
302
                                          plan,
303 304 305
                                          use_short_loca,
                                          glyf_prime,
                                          loca_prime);
306 307

  hb_blob_destroy (glyf_blob);
308 309 310 311
  glyf.fini();

  return result;
}