hb-subset-glyf.cc 8.7 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 24 25 26
/*
 * 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
 */

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
                                     bool *use_short_loca, /* OUT */
                                     unsigned int *glyf_size, /* OUT */
38
                                     unsigned int *loca_size /* OUT */)
39 40
{
  unsigned int total = 0;
41
  unsigned int count = 0;
B
Behdad Esfahbod 已提交
42 43
  for (unsigned int i = 0; i < glyph_ids.len; i++)
  {
44
    hb_codepoint_t next_glyph = glyph_ids[i];
45
    unsigned int start_offset, end_offset;
B
Behdad Esfahbod 已提交
46 47
    if (unlikely (!glyf.get_offsets (next_glyph, &start_offset, &end_offset)))
      end_offset = start_offset = 0;
48 49

    total += end_offset - start_offset;
50
    count++;
51 52
  }

53
  *glyf_size = total;
54 55 56 57 58 59 60 61
  *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");
62 63 64
  return true;
}

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
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;
81
  }
82 83 84 85 86 87 88 89

  // 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;
90 91
}

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

116
static bool
117 118
_write_glyf_and_loca_prime (hb_subset_plan_t              *plan,
			    const OT::glyf::accelerator_t &glyf,
119
                            const char                    *glyf_data,
120
                            bool                           use_short_loca,
121
                            unsigned int                   glyf_prime_size,
122
                            char                          *glyf_prime_data /* OUT */,
123
                            unsigned int                   loca_prime_size,
124
                            char                          *loca_prime_data /* OUT */)
125
{
126
  hb_prealloced_array_t<hb_codepoint_t> &glyph_ids = plan->gids_to_retain_sorted;
127 128
  char *glyf_prime_data_next = glyf_prime_data;

129
  bool success = true;
B
Behdad Esfahbod 已提交
130 131 132 133 134
  for (unsigned int i = 0; i < glyph_ids.len; i++)
  {
    unsigned int start_offset, end_offset;
    if (unlikely (!glyf.get_offsets (glyph_ids[i], &start_offset, &end_offset)))
      end_offset = start_offset = 0;
135 136

    int length = end_offset - start_offset;
137 138 139 140 141 142 143 144 145

    if (glyf_prime_data_next + length > glyf_prime_data + glyf_prime_size)
    {
      DEBUG_MSG (SUBSET,
                 nullptr,
                 "WARNING: Attempted to write an out of bounds glyph entry for gid %d",
                 i);
      return false;
    }
146
    memcpy (glyf_prime_data_next, glyf_data + start_offset, length);
147

148 149 150 151 152
    success = success && _write_loca_entry (i,
                                            glyf_prime_data_next - glyf_prime_data,
                                            use_short_loca,
                                            loca_prime_data,
                                            loca_prime_size);
153
    _update_components (plan, glyf_prime_data_next, end_offset - start_offset);
154

155 156 157
    glyf_prime_data_next += length;
  }

158 159 160 161 162 163
  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;
164 165
}

166
static bool
167 168
_hb_subset_glyf_and_loca (const OT::glyf::accelerator_t  &glyf,
                          const char                     *glyf_data,
169
			  hb_subset_plan_t               *plan,
170
                          bool                           *use_short_loca,
171 172
                          hb_blob_t                     **glyf_prime /* OUT */,
                          hb_blob_t                     **loca_prime /* OUT */)
173
{
174
  // TODO(grieger): Sanity check allocation size for the new table.
175
  hb_prealloced_array_t<hb_codepoint_t> &glyphs_to_retain = plan->gids_to_retain_sorted;
176 177

  unsigned int glyf_prime_size;
178
  unsigned int loca_prime_size;
179

180 181
  if (unlikely (!_calculate_glyf_and_loca_prime_size (glyf,
                                                      glyphs_to_retain,
182
                                                      use_short_loca,
183 184
                                                      &glyf_prime_size,
                                                      &loca_prime_size))) {
185 186
    return false;
  }
187

188 189
  char *glyf_prime_data = (char *) malloc (glyf_prime_size);
  char *loca_prime_data = (char *) malloc (loca_prime_size);
190
  if (unlikely (!_write_glyf_and_loca_prime (plan, glyf, glyf_data,
191
                                             *use_short_loca,
192 193
                                             glyf_prime_size, glyf_prime_data,
                                             loca_prime_size, loca_prime_data))) {
194
    free (glyf_prime_data);
195
    free (loca_prime_data);
196 197
    return false;
  }
198

199 200 201 202 203
  *glyf_prime = hb_blob_create (glyf_prime_data,
                                glyf_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                glyf_prime_data,
                                free);
204 205 206 207 208
  *loca_prime = hb_blob_create (loca_prime_data,
                                loca_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                loca_prime_data,
                                free);
209 210
  return true;
}
211 212 213 214 215 216 217 218 219 220

/**
 * hb_subset_glyf:
 * Subsets the glyph table according to a provided plan.
 *
 * Return value: subsetted glyf table.
 *
 * Since: 1.7.5
 **/
bool
221
hb_subset_glyf_and_loca (hb_subset_plan_t *plan,
222 223
                         bool             *use_short_loca, /* OUT */
                         hb_blob_t       **glyf_prime, /* OUT */
224
                         hb_blob_t       **loca_prime /* OUT */)
225
{
R
Rod Sheeter 已提交
226
  hb_blob_t *glyf_blob = OT::Sanitizer<OT::glyf>().sanitize (plan->source->reference_table (HB_OT_TAG_glyf));
227 228 229
  const char *glyf_data = hb_blob_get_data(glyf_blob, nullptr);

  OT::glyf::accelerator_t glyf;
R
Rod Sheeter 已提交
230
  glyf.init(plan->source);
231 232
  bool result = _hb_subset_glyf_and_loca (glyf,
                                          glyf_data,
233
                                          plan,
234 235 236
                                          use_short_loca,
                                          glyf_prime,
                                          loca_prime);
237 238

  hb_blob_destroy (glyf_blob);
239 240 241 242
  glyf.fini();

  return result;
}