hb-subset-glyf.cc 11.1 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,
B
Behdad Esfahbod 已提交
35
                                     hb_prealloced_array_t<hb_codepoint_t> &glyph_ids,
36 37 38 39 40
                                     hb_bool_t drop_hints,
                                     bool *use_short_loca /* OUT */,
                                     unsigned int *glyf_size /* OUT */,
                                     unsigned int *loca_size /* OUT */,
                                     hb_prealloced_array_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 48
    *(instruction_ranges->push()) = 0;
    *(instruction_ranges->push()) = 0;

49
    unsigned int start_offset, end_offset;
50 51
    if (unlikely (!(glyf.get_offsets(next_glyph, &start_offset, &end_offset)
                    && glyf.trim(start_offset, &end_offset))))
52 53 54 55
    {
      DEBUG_MSG(SUBSET, nullptr, "Invalid gid %d", next_glyph);
      continue;
    }
56 57 58
    if (end_offset - start_offset < OT::glyf::GlyphHeader::static_size)
      continue; /* 0-length glyph */

59 60 61 62 63 64 65 66 67
    unsigned int instruction_start = 0, instruction_end = 0;
    if (drop_hints)
    {
      if (unlikely (!glyf.get_instruction_offsets(start_offset, end_offset,
                                                  &instruction_start, &instruction_end)))
      {
        DEBUG_MSG(SUBSET, nullptr, "Unable to get instruction offsets for %d", next_glyph);
        return false;
      }
68 69
      instruction_ranges->array[i * 2] = instruction_start;
      instruction_ranges->array[i * 2 + 1] = instruction_end;
70
    }
71

72
    total += end_offset - start_offset - (instruction_end - instruction_start);
73 74
    /* round2 so short loca will work */
    total += total % 2;
75 76
  }

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

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
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;
105
  }
106 107 108 109 110 111 112 113

  // 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;
114 115
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
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;
      if (!hb_subset_plan_new_gid_for_old_id (plan,
					      iterator.current->glyphIndex,
					      &new_gid))
	continue;

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

140
static bool
141 142
_write_glyf_and_loca_prime (hb_subset_plan_t              *plan,
			    const OT::glyf::accelerator_t &glyf,
143
                            const char                    *glyf_data,
144
                            bool                           use_short_loca,
145
                            hb_prealloced_array_t<unsigned int> &instruction_ranges,
146
                            unsigned int                   glyf_prime_size,
147
                            char                          *glyf_prime_data /* OUT */,
148
                            unsigned int                   loca_prime_size,
149
                            char                          *loca_prime_data /* OUT */)
150
{
151
  hb_prealloced_array_t<hb_codepoint_t> &glyph_ids = plan->gids_to_retain_sorted;
152 153
  char *glyf_prime_data_next = glyf_prime_data;

154
  bool success = true;
B
Behdad Esfahbod 已提交
155 156 157
  for (unsigned int i = 0; i < glyph_ids.len; i++)
  {
    unsigned int start_offset, end_offset;
158 159
    if (unlikely (!(glyf.get_offsets (glyph_ids[i], &start_offset, &end_offset)
                    && glyf.trim(start_offset, &end_offset))))
B
Behdad Esfahbod 已提交
160
      end_offset = start_offset = 0;
161 162
    unsigned int instruction_start = instruction_ranges[i * 2];
    unsigned int instruction_end = instruction_ranges[i * 2 + 1];
163

164
    int length = end_offset - start_offset - (instruction_end - instruction_start);
165
    length += length % 2;
166 167 168 169 170

    if (glyf_prime_data_next + length > glyf_prime_data + glyf_prime_size)
    {
      DEBUG_MSG (SUBSET,
                 nullptr,
171 172
                 "WARNING: Attempted to write an out of bounds glyph entry for gid %d (length %d)",
                 i, length);
173 174
      return false;
    }
175 176 177 178 179 180 181 182 183 184 185

    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);
      /* if the instructions end at the end this was a composite glyph */
      if (instruction_end == end_offset)
        ; // TODO(rsheeter) remove WE_HAVE_INSTRUCTIONS from last flags
      else
186 187
        /* zero instruction length, which is just before instruction_start */
        memset (glyf_prime_data_next + instruction_start - start_offset - 2, 0, 2);
188
    }
189

190 191 192 193 194
    success = success && _write_loca_entry (i,
                                            glyf_prime_data_next - glyf_prime_data,
                                            use_short_loca,
                                            loca_prime_data,
                                            loca_prime_size);
195
    _update_components (plan, glyf_prime_data_next, length);
196

197 198 199
    glyf_prime_data_next += length;
  }

200 201 202 203 204 205
  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;
206 207
}

208
static bool
209 210
_hb_subset_glyf_and_loca (const OT::glyf::accelerator_t  &glyf,
                          const char                     *glyf_data,
211
                          hb_subset_plan_t               *plan,
212
                          bool                           *use_short_loca,
213 214
                          hb_blob_t                     **glyf_prime /* OUT */,
                          hb_blob_t                     **loca_prime /* OUT */)
215
{
216
  // TODO(grieger): Sanity check allocation size for the new table.
217
  hb_prealloced_array_t<hb_codepoint_t> &glyphs_to_retain = plan->gids_to_retain_sorted;
218 219

  unsigned int glyf_prime_size;
220
  unsigned int loca_prime_size;
221 222
  hb_prealloced_array_t<unsigned int> instruction_ranges;
  instruction_ranges.init();
223

224 225
  if (unlikely (!_calculate_glyf_and_loca_prime_size (glyf,
                                                      glyphs_to_retain,
226
                                                      plan->drop_hints,
227
                                                      use_short_loca,
228
                                                      &glyf_prime_size,
229 230 231
                                                      &loca_prime_size,
                                                      &instruction_ranges))) {
    instruction_ranges.finish();
232 233
    return false;
  }
234

235 236
  char *glyf_prime_data = (char *) calloc (1, glyf_prime_size);
  char *loca_prime_data = (char *) calloc (1, loca_prime_size);
237
  if (unlikely (!_write_glyf_and_loca_prime (plan, glyf, glyf_data,
238
                                             *use_short_loca,
239
                                             instruction_ranges,
240 241
                                             glyf_prime_size, glyf_prime_data,
                                             loca_prime_size, loca_prime_data))) {
242
    free (glyf_prime_data);
243
    free (loca_prime_data);
244
    instruction_ranges.finish();
245 246
    return false;
  }
247
  instruction_ranges.finish();
248

249 250 251 252 253
  *glyf_prime = hb_blob_create (glyf_prime_data,
                                glyf_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                glyf_prime_data,
                                free);
254 255 256 257 258
  *loca_prime = hb_blob_create (loca_prime_data,
                                loca_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                loca_prime_data,
                                free);
259 260
  return true;
}
261 262 263 264 265 266 267 268 269 270

/**
 * hb_subset_glyf:
 * Subsets the glyph table according to a provided plan.
 *
 * Return value: subsetted glyf table.
 *
 * Since: 1.7.5
 **/
bool
271
hb_subset_glyf_and_loca (hb_subset_plan_t *plan,
272 273
                         bool             *use_short_loca, /* OUT */
                         hb_blob_t       **glyf_prime, /* OUT */
274
                         hb_blob_t       **loca_prime /* OUT */)
275
{
R
Rod Sheeter 已提交
276
  hb_blob_t *glyf_blob = OT::Sanitizer<OT::glyf>().sanitize (plan->source->reference_table (HB_OT_TAG_glyf));
277 278 279
  const char *glyf_data = hb_blob_get_data(glyf_blob, nullptr);

  OT::glyf::accelerator_t glyf;
R
Rod Sheeter 已提交
280
  glyf.init(plan->source);
281 282
  bool result = _hb_subset_glyf_and_loca (glyf,
                                          glyf_data,
283
                                          plan,
284 285 286
                                          use_short_loca,
                                          glyf_prime,
                                          loca_prime);
287 288

  hb_blob_destroy (glyf_blob);
289 290 291 292
  glyf.fini();

  return result;
}