hb-face.cc 9.4 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 © 2009  Red Hat, Inc.
 * Copyright © 2012  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.
 *
 * Red Hat Author(s): Behdad Esfahbod
 * Google Author(s): Behdad Esfahbod
 */

#include "hb-private.hh"

B
Behdad Esfahbod 已提交
31
#include "hb-face-private.hh"
32
#include "hb-blob-private.hh"
33 34 35
#include "hb-open-file-private.hh"


36 37 38 39 40 41 42 43 44

/**
 * hb_face_count: Get number of faces on the blob
 * @blob:
 *
 *
 *
 * Return value: Number of faces on the blob
 *
B
1.7.7  
Behdad Esfahbod 已提交
45
 * Since: 1.7.7
46 47 48 49 50 51 52
 **/
unsigned int
hb_face_count (hb_blob_t *blob)
{
  if (unlikely (!blob))
    return 0;

53
  /* TODO We shouldn't be sanitizing blob.  Port to run sanitizer and return if not sane. */
54
  /* Make API signature const after. */
55
  hb_blob_t *sanitized = hb_sanitize_context_t ().sanitize_blob<OT::OpenTypeFontFile> (hb_blob_reference (blob));
E
Ebrahim Byagowi 已提交
56
  const OT::OpenTypeFontFile& ot = *sanitized->as<OT::OpenTypeFontFile> ();
57 58
  unsigned int ret = ot.get_face_count ();
  hb_blob_destroy (sanitized);
59

60
  return ret;
61 62
}

63 64 65 66 67 68 69 70 71
/*
 * hb_face_t
 */

const hb_face_t _hb_face_nil = {
  HB_OBJECT_HEADER_STATIC,

  true, /* immutable */

B
Behdad Esfahbod 已提交
72 73 74
  nullptr, /* reference_table_func */
  nullptr, /* user_data */
  nullptr, /* destroy */
75 76 77 78 79 80 81 82 83 84 85

  0,    /* index */
  1000, /* upem */
  0,    /* num_glyphs */

  {
#define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_INVALID,
#include "hb-shaper-list.hh"
#undef HB_SHAPER_IMPLEMENT
  },

B
Behdad Esfahbod 已提交
86
  nullptr, /* shape_plans */
87 88 89
};


90 91
/**
 * hb_face_create_for_tables:
92
 * @reference_table_func: (closure user_data) (destroy destroy) (scope notified):
93 94 95
 * @user_data:
 * @destroy:
 *
96 97 98 99
 *
 *
 * Return value: (transfer full)
 *
100
 * Since: 0.9.2
101
 **/
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
hb_face_t *
hb_face_create_for_tables (hb_reference_table_func_t  reference_table_func,
			   void                      *user_data,
			   hb_destroy_func_t          destroy)
{
  hb_face_t *face;

  if (!reference_table_func || !(face = hb_object_create<hb_face_t> ())) {
    if (destroy)
      destroy (user_data);
    return hb_face_get_empty ();
  }

  face->reference_table_func = reference_table_func;
  face->user_data = user_data;
  face->destroy = destroy;

  face->upem = 0;
  face->num_glyphs = (unsigned int) -1;

  return face;
}


typedef struct hb_face_for_data_closure_t {
  hb_blob_t *blob;
  unsigned int  index;
} hb_face_for_data_closure_t;

static hb_face_for_data_closure_t *
_hb_face_for_data_closure_create (hb_blob_t *blob, unsigned int index)
{
  hb_face_for_data_closure_t *closure;

136
  closure = (hb_face_for_data_closure_t *) calloc (1, sizeof (hb_face_for_data_closure_t));
137
  if (unlikely (!closure))
B
Behdad Esfahbod 已提交
138
    return nullptr;
139 140 141 142 143 144 145 146

  closure->blob = blob;
  closure->index = index;

  return closure;
}

static void
147
_hb_face_for_data_closure_destroy (void *data)
148
{
149 150
  hb_face_for_data_closure_t *closure = (hb_face_for_data_closure_t *) data;

151 152 153 154 155 156 157 158 159 160 161 162
  hb_blob_destroy (closure->blob);
  free (closure);
}

static hb_blob_t *
_hb_face_for_data_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
{
  hb_face_for_data_closure_t *data = (hb_face_for_data_closure_t *) user_data;

  if (tag == HB_TAG_NONE)
    return hb_blob_reference (data->blob);

163
  const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
164 165 166 167 168 169 170 171 172
  const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index);

  const OT::OpenTypeTable &table = ot_face.get_table_by_tag (tag);

  hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, table.offset, table.length);

  return blob;
}

173
/**
174
 * hb_face_create: (Xconstructor)
175 176 177
 * @blob:
 * @index:
 *
178 179 180 181
 *
 *
 * Return value: (transfer full):
 *
182
 * Since: 0.9.2
183
 **/
184 185 186 187 188 189
hb_face_t *
hb_face_create (hb_blob_t    *blob,
		unsigned int  index)
{
  hb_face_t *face;

B
Behdad Esfahbod 已提交
190 191
  if (unlikely (!blob))
    blob = hb_blob_get_empty ();
192

193
  hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (hb_sanitize_context_t ().sanitize_blob<OT::OpenTypeFontFile> (hb_blob_reference (blob)), index);
194 195 196 197 198 199

  if (unlikely (!closure))
    return hb_face_get_empty ();

  face = hb_face_create_for_tables (_hb_face_for_data_reference_table,
				    closure,
200
				    _hb_face_for_data_closure_destroy);
201

202
  face->index = index;
203 204 205 206

  return face;
}

207 208 209
/**
 * hb_face_get_empty:
 *
210
 *
211 212 213
 *
 * Return value: (transfer full)
 *
214
 * Since: 0.9.2
215
 **/
216 217 218 219 220 221 222
hb_face_t *
hb_face_get_empty (void)
{
  return const_cast<hb_face_t *> (&_hb_face_nil);
}


223 224 225 226 227
/**
 * hb_face_reference: (skip)
 * @face: a face.
 *
 *
228 229
 *
 * Return value:
230
 *
231
 * Since: 0.9.2
232
 **/
233 234 235 236 237 238
hb_face_t *
hb_face_reference (hb_face_t *face)
{
  return hb_object_reference (face);
}

239 240 241 242
/**
 * hb_face_destroy: (skip)
 * @face: a face.
 *
243
 *
244
 *
245
 * Since: 0.9.2
246
 **/
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
void
hb_face_destroy (hb_face_t *face)
{
  if (!hb_object_destroy (face)) return;

  for (hb_face_t::plan_node_t *node = face->shape_plans; node; )
  {
    hb_face_t::plan_node_t *next = node->next;
    hb_shape_plan_destroy (node->shape_plan);
    free (node);
    node = next;
  }

#define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_DESTROY(shaper, face);
#include "hb-shaper-list.hh"
#undef HB_SHAPER_IMPLEMENT

  if (face->destroy)
    face->destroy (face->user_data);

  free (face);
}

270 271 272
/**
 * hb_face_set_user_data: (skip)
 * @face: a face.
273 274 275 276 277
 * @key:
 * @data:
 * @destroy:
 * @replace:
 *
278 279
 *
 *
280
 * Return value:
281
 *
282
 * Since: 0.9.2
283
 **/
284 285 286 287 288 289 290 291 292 293
hb_bool_t
hb_face_set_user_data (hb_face_t          *face,
		       hb_user_data_key_t *key,
		       void *              data,
		       hb_destroy_func_t   destroy,
		       hb_bool_t           replace)
{
  return hb_object_set_user_data (face, key, data, destroy, replace);
}

294 295 296
/**
 * hb_face_get_user_data: (skip)
 * @face: a face.
297 298
 * @key:
 *
299 300 301 302
 *
 *
 * Return value: (transfer none):
 *
303
 * Since: 0.9.2
304
 **/
305
void *
306
hb_face_get_user_data (const hb_face_t    *face,
307 308 309 310 311
		       hb_user_data_key_t *key)
{
  return hb_object_get_user_data (face, key);
}

312 313 314 315
/**
 * hb_face_make_immutable:
 * @face: a face.
 *
316
 *
317
 *
318
 * Since: 0.9.2
319
 **/
320 321 322
void
hb_face_make_immutable (hb_face_t *face)
{
323
  if (unlikely (hb_object_is_inert (face)))
324 325 326 327 328
    return;

  face->immutable = true;
}

329 330 331 332 333
/**
 * hb_face_is_immutable:
 * @face: a face.
 *
 *
334 335
 *
 * Return value:
336
 *
337
 * Since: 0.9.2
338
 **/
339
hb_bool_t
340
hb_face_is_immutable (const hb_face_t *face)
341 342 343 344 345
{
  return face->immutable;
}


346 347 348
/**
 * hb_face_reference_table:
 * @face: a face.
349 350
 * @tag:
 *
351 352 353 354
 *
 *
 * Return value: (transfer full):
 *
355
 * Since: 0.9.2
356
 **/
357
hb_blob_t *
358 359
hb_face_reference_table (const hb_face_t *face,
			 hb_tag_t tag)
360 361 362 363
{
  return face->reference_table (tag);
}

364 365 366 367
/**
 * hb_face_reference_blob:
 * @face: a face.
 *
368
 *
369 370 371
 *
 * Return value: (transfer full):
 *
S
Sascha Brawer 已提交
372
 * Since: 0.9.2
373
 **/
374 375 376 377 378 379
hb_blob_t *
hb_face_reference_blob (hb_face_t *face)
{
  return face->reference_table (HB_TAG_NONE);
}

380 381 382
/**
 * hb_face_set_index:
 * @face: a face.
383 384
 * @index:
 *
385 386
 *
 *
S
Sascha Brawer 已提交
387
 * Since: 0.9.2
388
 **/
389 390 391 392
void
hb_face_set_index (hb_face_t    *face,
		   unsigned int  index)
{
393
  if (face->immutable)
394 395 396 397 398
    return;

  face->index = index;
}

399 400 401 402 403
/**
 * hb_face_get_index:
 * @face: a face.
 *
 *
404 405
 *
 * Return value:
406
 *
S
Sascha Brawer 已提交
407
 * Since: 0.9.2
408
 **/
409
unsigned int
410
hb_face_get_index (const hb_face_t *face)
411 412 413 414
{
  return face->index;
}

415 416 417
/**
 * hb_face_set_upem:
 * @face: a face.
418 419
 * @upem:
 *
420 421
 *
 *
S
Sascha Brawer 已提交
422
 * Since: 0.9.2
423
 **/
424 425 426 427
void
hb_face_set_upem (hb_face_t    *face,
		  unsigned int  upem)
{
428
  if (face->immutable)
429 430 431 432 433
    return;

  face->upem = upem;
}

434 435 436 437 438
/**
 * hb_face_get_upem:
 * @face: a face.
 *
 *
439 440
 *
 * Return value:
441
 *
442
 * Since: 0.9.2
443
 **/
444
unsigned int
445
hb_face_get_upem (const hb_face_t *face)
446 447 448 449
{
  return face->get_upem ();
}

450 451 452
/**
 * hb_face_set_glyph_count:
 * @face: a face.
453 454
 * @glyph_count:
 *
455 456
 *
 *
S
Sascha Brawer 已提交
457
 * Since: 0.9.7
458
 **/
459 460 461 462
void
hb_face_set_glyph_count (hb_face_t    *face,
			 unsigned int  glyph_count)
{
463
  if (face->immutable)
464 465 466 467 468
    return;

  face->num_glyphs = glyph_count;
}

469 470 471 472 473
/**
 * hb_face_get_glyph_count:
 * @face: a face.
 *
 *
474 475
 *
 * Return value:
476
 *
S
Sascha Brawer 已提交
477
 * Since: 0.9.7
478
 **/
479
unsigned int
480
hb_face_get_glyph_count (const hb_face_t *face)
481 482 483 484
{
  return face->get_num_glyphs ();
}

B
Behdad Esfahbod 已提交
485 486 487 488 489 490 491 492 493 494 495
/**
 * hb_face_get_table_tags:
 * @face: a face.
 *
 * Retrieves table tags for a face, if possible.
 *
 * Return value: total number of tables, or 0 if not possible to list.
 *
 * Since: 1.6.0
 **/
unsigned int
496
hb_face_get_table_tags (const hb_face_t *face,
B
Behdad Esfahbod 已提交
497 498 499 500
			unsigned int  start_offset,
			unsigned int *table_count, /* IN/OUT */
			hb_tag_t     *table_tags /* OUT */)
{
P
prrace 已提交
501
  if (face->destroy != (hb_destroy_func_t) _hb_face_for_data_closure_destroy)
B
Behdad Esfahbod 已提交
502 503 504 505 506
  {
    if (table_count)
      *table_count = 0;
    return 0;
  }
507

B
Behdad Esfahbod 已提交
508 509
  hb_face_for_data_closure_t *data = (hb_face_for_data_closure_t *) face->user_data;

510
  const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
B
Behdad Esfahbod 已提交
511 512 513 514
  const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index);

  return ot_face.get_table_tags (start_offset, table_count, table_tags);
}