hb-subset-glyf.cc 4.3 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 31
#include "hb-subset-glyf.hh"

32
bool
33 34 35
_calculate_glyf_prime_size (const OT::glyf::accelerator_t &glyf,
                            hb_set_t *glyph_ids,
                            unsigned int *size /* OUT */)
36 37 38 39 40
{
  unsigned int total = 0;
  hb_codepoint_t next_glyph = -1;
  while (hb_set_next(glyph_ids, &next_glyph)) {
    unsigned int start_offset, end_offset;
41
    if (unlikely (!glyf.get_offsets (next_glyph, &start_offset, &end_offset))) {
42 43 44 45 46 47 48 49 50 51 52 53
      *size = 0;
      return false;
    }

    total += end_offset - start_offset;
  }

  *size = total;
  return true;
}

bool
54 55 56 57 58
_write_glyf_prime (const OT::glyf::accelerator_t &glyf,
                   const char                    *glyf_data,
                   hb_set_t                      *glyph_ids,
                   int                            glyf_prime_size,
                   char                          *glyf_prime_data /* OUT */)
59 60 61 62 63 64
{
  char *glyf_prime_data_next = glyf_prime_data;

  hb_codepoint_t next_glyph = -1;
  while (hb_set_next(glyph_ids, &next_glyph)) {
    unsigned int start_offset, end_offset;
65
    if (unlikely (!glyf.get_offsets (next_glyph, &start_offset, &end_offset))) {
66 67 68 69 70 71 72 73 74 75 76
      return false;
    }

    int length = end_offset - start_offset;
    memcpy (glyf_prime_data_next, glyf_data + start_offset, length);
    glyf_prime_data_next += length;
  }

  return true;
}

77
bool
78 79 80 81
_hb_subset_glyf (const OT::glyf::accelerator_t  &glyf,
                 const char                     *glyf_data,
                 hb_set_t                       *glyphs_to_retain,
                 hb_blob_t                     **glyf_prime /* OUT */)
82
{
83 84 85 86 87
  // TODO(grieger): Sanity check writes to make sure they are in-bounds.
  // TODO(grieger): Sanity check allocation size for the new table.
  // TODO(grieger): Subset loca simultaneously.

  unsigned int glyf_prime_size;
88 89 90
  if (unlikely (!_calculate_glyf_prime_size (glyf,
                                             glyphs_to_retain,
                                             &glyf_prime_size))) {
91 92
    return false;
  }
93

94
  char *glyf_prime_data = (char *) calloc (glyf_prime_size, 1);
95 96
  if (unlikely (!_write_glyf_prime (glyf, glyf_data, glyphs_to_retain, glyf_prime_size,
                                    glyf_prime_data))) {
97 98 99
    free (glyf_prime_data);
    return false;
  }
100

101 102 103 104 105
  *glyf_prime = hb_blob_create (glyf_prime_data,
                                glyf_prime_size,
                                HB_MEMORY_MODE_READONLY,
                                glyf_prime_data,
                                free);
106 107
  return true;
}
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131

/**
 * hb_subset_glyf:
 * Subsets the glyph table according to a provided plan.
 *
 * Return value: subsetted glyf table.
 *
 * Since: 1.7.5
 **/
bool
hb_subset_glyf (hb_subset_plan_t *plan,
                hb_face_t        *face,
                hb_blob_t       **glyf_prime /* OUT */)
{
  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);
  bool result = _hb_subset_glyf (glyf, glyf_data, plan->glyphs_to_retain, glyf_prime);
  glyf.fini();

  return result;
}