hb-ot-post-table.hh 8.9 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 27 28 29 30
/*
 * Copyright © 2016  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): Behdad Esfahbod
 */

#ifndef HB_OT_POST_TABLE_HH
#define HB_OT_POST_TABLE_HH

#include "hb-open-type-private.hh"
31
#include "hb-subset-plan.hh"
32

33 34 35 36 37
#define HB_STRING_ARRAY_NAME format1_names
#define HB_STRING_ARRAY_LIST "hb-ot-post-macroman.hh"
#include "hb-string-array.hh"
#undef HB_STRING_ARRAY_LIST
#undef HB_STRING_ARRAY_NAME
38

39
#define NUM_FORMAT1_NAMES 258
40 41 42

/*
 * post -- PostScript
43
 * https://docs.microsoft.com/en-us/typography/opentype/spec/post
44 45 46 47
 */
#define HB_OT_TAG_post HB_TAG('p','o','s','t')


48 49 50
namespace OT {


51 52 53 54 55
struct postV2Tail
{
  inline bool sanitize (hb_sanitize_context_t *c) const
  {
    TRACE_SANITIZE (this);
56
    return_trace (glyphNameIndex.sanitize (c));
57 58
  }

B
Behdad Esfahbod 已提交
59
  ArrayOf<HBUINT16>glyphNameIndex;	/* This is not an offset, but is the
60 61
					 * ordinal number of the glyph in 'post'
					 * string tables. */
B
Behdad Esfahbod 已提交
62
  HBUINT8		namesX[VAR];		/* Glyph names with length bytes [variable]
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
					 * (a Pascal string). */

  DEFINE_SIZE_ARRAY2 (2, glyphNameIndex, namesX);
};

struct post
{
  static const hb_tag_t tableTag = HB_OT_TAG_post;

  inline bool sanitize (hb_sanitize_context_t *c) const
  {
    TRACE_SANITIZE (this);
    if (unlikely (!c->check_struct (this)))
      return_trace (false);
    if (version.to_int () == 0x00020000)
    {
B
Behdad Esfahbod 已提交
79
      const postV2Tail &v2 = StructAfter<postV2Tail> (*this);
80 81 82 83 84
      return_trace (v2.sanitize (c));
    }
    return_trace (true);
  }

85 86
  inline bool subset (hb_subset_plan_t *plan) const
  {
87
    unsigned int post_prime_length;
88
    hb_blob_t *post_blob = OT::hb_sanitize_context_t().reference_table<post>(plan->source);
89 90 91
    hb_blob_t *post_prime_blob = hb_blob_create_sub_blob (post_blob, 0, post::static_size);
    post *post_prime = (post *) hb_blob_get_data_writable (post_prime_blob, &post_prime_length);
    hb_blob_destroy (post_blob);
92

93
    if (unlikely (!post_prime || post_prime_length != post::static_size))
94
    {
95 96
      hb_blob_destroy (post_prime_blob);
      DEBUG_MSG(SUBSET, nullptr, "Invalid source post table with length %d.", post_prime_length);
97 98 99 100
      return false;
    }

    post_prime->version.major.set (3); // Version 3 does not have any glyph names.
101
    bool result = plan->add_table (HB_OT_TAG_post, post_prime_blob);
102 103 104 105 106
    hb_blob_destroy (post_prime_blob);

    return result;
  }

B
Behdad Esfahbod 已提交
107
  struct accelerator_t
108
  {
109
    inline void init (hb_face_t *face)
110
    {
111 112
      index_to_offset.init ();

B
Behdad Esfahbod 已提交
113
      blob = Sanitizer<post>().sanitize (face->reference_table (HB_OT_TAG_post));
114
      const post *table = blob->as<post> ();
B
Minor  
Behdad Esfahbod 已提交
115
      unsigned int table_length = blob->length;
116

B
Behdad Esfahbod 已提交
117 118 119
      version = table->version.to_int ();
      if (version != 0x00020000)
        return;
120

B
Behdad Esfahbod 已提交
121 122 123 124 125
      const postV2Tail &v2 = StructAfter<postV2Tail> (*table);

      glyphNameIndex = &v2.glyphNameIndex;
      pool = &StructAfter<uint8_t> (v2.glyphNameIndex);

126
      const uint8_t *end = (uint8_t *) table + table_length;
127
      for (const uint8_t *data = pool; data < end && data + *data <= end; data += 1 + *data)
128
	index_to_offset.push (data - pool);
B
Behdad Esfahbod 已提交
129 130 131
    }
    inline void fini (void)
    {
B
Behdad Esfahbod 已提交
132
      index_to_offset.fini ();
133
      free (gids_sorted_by_name);
134 135
    }

136 137 138
    inline bool get_glyph_name (hb_codepoint_t glyph,
				char *buf, unsigned int buf_len) const
    {
139
      hb_bytes_t s = find_glyph_name (glyph);
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
      if (!s.len)
        return false;
      if (!buf_len)
	return true;
      if (buf_len <= s.len) /* What to do with truncation? Returning false for now. */
        return false;
      strncpy (buf, s.bytes, s.len);
      buf[s.len] = '\0';
      return true;
    }

    inline bool get_glyph_from_name (const char *name, int len,
				     hb_codepoint_t *glyph) const
    {
      unsigned int count = get_glyph_count ();
      if (unlikely (!count))
        return false;

      if (len < 0)
	len = strlen (name);

      if (unlikely (!len))
	return false;

    retry:
      uint16_t *gids = (uint16_t *) hb_atomic_ptr_get (&gids_sorted_by_name);

      if (unlikely (!gids))
      {
	gids = (uint16_t *) malloc (count * sizeof (gids[0]));
	if (unlikely (!gids))
	  return false; /* Anything better?! */

	for (unsigned int i = 0; i < count; i++)
	  gids[i] = i;
	hb_sort_r (gids, count, sizeof (gids[0]), cmp_gids, (void *) this);

	if (!hb_atomic_ptr_cmpexch (&gids_sorted_by_name, nullptr, gids)) {
	  free (gids);
	  goto retry;
	}
      }

183
      hb_bytes_t st (name, len);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
      const uint16_t *gid = (const uint16_t *) hb_bsearch_r (&st, gids, count, sizeof (gids[0]), cmp_key, (void *) this);
      if (gid)
      {
	*glyph = *gid;
	return true;
      }

      return false;
    }

    protected:

    inline unsigned int get_glyph_count (void) const
    {
      if (version == 0x00010000)
        return NUM_FORMAT1_NAMES;

      if (version == 0x00020000)
        return glyphNameIndex->len;

      return 0;
    }

    static inline int cmp_gids (const void *pa, const void *pb, void *arg)
    {
      const accelerator_t *thiz = (const accelerator_t *) arg;
      uint16_t a = * (const uint16_t *) pa;
      uint16_t b = * (const uint16_t *) pb;
      return thiz->find_glyph_name (b).cmp (thiz->find_glyph_name (a));
    }

    static inline int cmp_key (const void *pk, const void *po, void *arg)
    {
      const accelerator_t *thiz = (const accelerator_t *) arg;
218
      const hb_bytes_t *key = (const hb_bytes_t *) pk;
219 220 221 222
      uint16_t o = * (const uint16_t *) po;
      return thiz->find_glyph_name (o).cmp (*key);
    }

223
    inline hb_bytes_t find_glyph_name (hb_codepoint_t glyph) const
224
    {
B
Behdad Esfahbod 已提交
225 226 227
      if (version == 0x00010000)
      {
	if (glyph >= NUM_FORMAT1_NAMES)
228
	  return hb_bytes_t ();
229

230
	return format1_names (glyph);
B
Behdad Esfahbod 已提交
231 232
      }

233
      if (version != 0x00020000 || glyph >= glyphNameIndex->len)
234
	return hb_bytes_t ();
B
Behdad Esfahbod 已提交
235

236
      unsigned int index = glyphNameIndex->arrayZ[glyph];
B
Behdad Esfahbod 已提交
237
      if (index < NUM_FORMAT1_NAMES)
238
	return format1_names (index);
B
Behdad Esfahbod 已提交
239 240
      index -= NUM_FORMAT1_NAMES;

B
Behdad Esfahbod 已提交
241
      if (index >= index_to_offset.len)
242
	return hb_bytes_t ();
243
      unsigned int offset = index_to_offset.arrayZ[index];
244

B
Behdad Esfahbod 已提交
245 246 247
      const uint8_t *data = pool + offset;
      unsigned int name_length = *data;
      data++;
248

249
      return hb_bytes_t ((const char *) data, name_length);
250 251
    }

252
    private:
253
    hb_blob_t *blob;
B
Behdad Esfahbod 已提交
254
    uint32_t version;
B
Behdad Esfahbod 已提交
255
    const ArrayOf<HBUINT16> *glyphNameIndex;
256
    hb_vector_t<uint32_t, 1> index_to_offset;
B
Behdad Esfahbod 已提交
257
    const uint8_t *pool;
258
    mutable uint16_t *gids_sorted_by_name;
B
Behdad Esfahbod 已提交
259
  };
260

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
  public:
  FixedVersion<>version;		/* 0x00010000 for version 1.0
					 * 0x00020000 for version 2.0
					 * 0x00025000 for version 2.5 (deprecated)
					 * 0x00030000 for version 3.0 */
  Fixed		italicAngle;		/* Italic angle in counter-clockwise degrees
					 * from the vertical. Zero for upright text,
					 * negative for text that leans to the right
					 * (forward). */
  FWORD		underlinePosition;	/* This is the suggested distance of the top
					 * of the underline from the baseline
					 * (negative values indicate below baseline).
					 * The PostScript definition of this FontInfo
					 * dictionary key (the y coordinate of the
					 * center of the stroke) is not used for
					 * historical reasons. The value of the
					 * PostScript key may be calculated by
					 * subtracting half the underlineThickness
					 * from the value of this field. */
  FWORD		underlineThickness;	/* Suggested values for the underline
					   thickness. */
B
Behdad Esfahbod 已提交
282
  HBUINT32	isFixedPitch;		/* Set to 0 if the font is proportionally
283 284
					 * spaced, non-zero if the font is not
					 * proportionally spaced (i.e. monospaced). */
B
Behdad Esfahbod 已提交
285
  HBUINT32	minMemType42;		/* Minimum memory usage when an OpenType font
286
					 * is downloaded. */
B
Behdad Esfahbod 已提交
287
  HBUINT32	maxMemType42;		/* Maximum memory usage when an OpenType font
288
					 * is downloaded. */
B
Behdad Esfahbod 已提交
289
  HBUINT32	minMemType1;		/* Minimum memory usage when an OpenType font
290
					 * is downloaded as a Type 1 font. */
B
Behdad Esfahbod 已提交
291
  HBUINT32	maxMemType1;		/* Maximum memory usage when an OpenType font
292 293 294 295 296 297 298 299 300
					 * is downloaded as a Type 1 font. */
/*postV2Tail	v2[VAR];*/
  DEFINE_SIZE_STATIC (32);
};

} /* namespace OT */


#endif /* HB_OT_POST_TABLE_HH */