hb-face.cc 14.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
/*
 * 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
 */

29
#include "hb.hh"
30

31 32 33
#include "hb-face.hh"
#include "hb-blob.hh"
#include "hb-open-file.hh"
34
#include "hb-ot-face.hh"
35
#include "hb-ot-cmap-table.hh"
36 37


B
Behdad Esfahbod 已提交
38 39
/**
 * SECTION:hb-face
40
 * @title: hb-face
41
 * @short_description: Font face objects
B
Behdad Esfahbod 已提交
42 43 44 45 46 47 48 49 50
 * @include: hb.h
 *
 * Font face is objects represent a single face in a font family.
 * More exactly, a font face represents a single face in a binary font file.
 * Font faces are typically built from a binary blob and a face index.
 * Font faces are used to create fonts.
 **/


51
/**
B
Behdad Esfahbod 已提交
52 53
 * hb_face_count:
 * @blob: a blob.
54
 *
B
Behdad Esfahbod 已提交
55
 * Get number of faces in a blob.
56
 *
B
Behdad Esfahbod 已提交
57
 * Return value: Number of faces in @blob
58
 *
B
1.7.7  
Behdad Esfahbod 已提交
59
 * Since: 1.7.7
60 61 62 63 64 65 66
 **/
unsigned int
hb_face_count (hb_blob_t *blob)
{
  if (unlikely (!blob))
    return 0;

67
  /* TODO We shouldn't be sanitizing blob.  Port to run sanitizer and return if not sane. */
68
  /* Make API signature const after. */
69
  hb_blob_t *sanitized = hb_sanitize_context_t ().sanitize_blob<OT::OpenTypeFontFile> (hb_blob_reference (blob));
E
Ebrahim Byagowi 已提交
70
  const OT::OpenTypeFontFile& ot = *sanitized->as<OT::OpenTypeFontFile> ();
71 72
  unsigned int ret = ot.get_face_count ();
  hb_blob_destroy (sanitized);
73

74
  return ret;
75 76
}

77 78 79 80
/*
 * hb_face_t
 */

81 82
DEFINE_NULL_INSTANCE (hb_face_t) =
{
83 84
  HB_OBJECT_HEADER_STATIC,

B
Behdad Esfahbod 已提交
85 86 87
  nullptr, /* reference_table_func */
  nullptr, /* user_data */
  nullptr, /* destroy */
88 89 90 91 92 93

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

  {
94
#define HB_SHAPER_IMPLEMENT(shaper) HB_ATOMIC_PTR_INIT (HB_SHAPER_DATA_INVALID),
95 96 97 98
#include "hb-shaper-list.hh"
#undef HB_SHAPER_IMPLEMENT
  },

99
  HB_ATOMIC_PTR_INIT (nullptr), /* shape_plans */
100 101 102
};


103 104
/**
 * hb_face_create_for_tables:
105
 * @reference_table_func: (closure user_data) (destroy destroy) (scope notified):
106 107 108
 * @user_data:
 * @destroy:
 *
109 110 111 112
 *
 *
 * Return value: (transfer full)
 *
113
 * Since: 0.9.2
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 140 141 142 143 144 145 146 147 148
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;

149
  closure = (hb_face_for_data_closure_t *) calloc (1, sizeof (hb_face_for_data_closure_t));
150
  if (unlikely (!closure))
B
Behdad Esfahbod 已提交
151
    return nullptr;
152 153 154 155 156 157 158 159

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

  return closure;
}

static void
160
_hb_face_for_data_closure_destroy (void *data)
161
{
162 163
  hb_face_for_data_closure_t *closure = (hb_face_for_data_closure_t *) data;

164 165 166 167 168 169 170 171 172 173 174 175
  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);

176
  const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
177 178
  unsigned int base_offset;
  const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index, &base_offset);
179 180 181

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

182
  hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, base_offset + table.offset, table.length);
183 184 185 186

  return blob;
}

187
/**
188
 * hb_face_create: (Xconstructor)
189 190 191
 * @blob:
 * @index:
 *
192 193 194 195
 *
 *
 * Return value: (transfer full):
 *
196
 * Since: 0.9.2
197
 **/
198 199 200 201 202 203
hb_face_t *
hb_face_create (hb_blob_t    *blob,
		unsigned int  index)
{
  hb_face_t *face;

B
Behdad Esfahbod 已提交
204 205
  if (unlikely (!blob))
    blob = hb_blob_get_empty ();
206

207
  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);
208 209 210 211 212 213

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

  face = hb_face_create_for_tables (_hb_face_for_data_reference_table,
				    closure,
214
				    _hb_face_for_data_closure_destroy);
215

216
  face->index = index;
217 218 219 220

  return face;
}

221 222 223
/**
 * hb_face_get_empty:
 *
224
 *
225 226 227
 *
 * Return value: (transfer full)
 *
228
 * Since: 0.9.2
229
 **/
230 231 232
hb_face_t *
hb_face_get_empty (void)
{
233
  return const_cast<hb_face_t *> (&Null(hb_face_t));
234 235 236
}


237 238 239 240 241
/**
 * hb_face_reference: (skip)
 * @face: a face.
 *
 *
242 243
 *
 * Return value:
244
 *
245
 * Since: 0.9.2
246
 **/
247 248 249 250 251 252
hb_face_t *
hb_face_reference (hb_face_t *face)
{
  return hb_object_reference (face);
}

253 254 255 256
/**
 * hb_face_destroy: (skip)
 * @face: a face.
 *
257
 *
258
 *
259
 * Since: 0.9.2
260
 **/
261 262 263 264 265
void
hb_face_destroy (hb_face_t *face)
{
  if (!hb_object_destroy (face)) return;

266
  for (hb_face_t::plan_node_t *node = face->shape_plans.get (); node; )
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
  {
    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);
}

284 285 286
/**
 * hb_face_set_user_data: (skip)
 * @face: a face.
287 288 289 290 291
 * @key:
 * @data:
 * @destroy:
 * @replace:
 *
292 293
 *
 *
294
 * Return value:
295
 *
296
 * Since: 0.9.2
297
 **/
298 299 300 301 302 303 304 305 306 307
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);
}

308 309 310
/**
 * hb_face_get_user_data: (skip)
 * @face: a face.
311 312
 * @key:
 *
313 314 315 316
 *
 *
 * Return value: (transfer none):
 *
317
 * Since: 0.9.2
318
 **/
319
void *
320
hb_face_get_user_data (const hb_face_t    *face,
321 322 323 324 325
		       hb_user_data_key_t *key)
{
  return hb_object_get_user_data (face, key);
}

326 327 328 329
/**
 * hb_face_make_immutable:
 * @face: a face.
 *
330
 *
331
 *
332
 * Since: 0.9.2
333
 **/
334 335 336
void
hb_face_make_immutable (hb_face_t *face)
{
337
  if (hb_object_is_immutable (face))
338
    return;
339

340
  hb_object_make_immutable (face);
341 342
}

343 344 345 346 347
/**
 * hb_face_is_immutable:
 * @face: a face.
 *
 *
348 349
 *
 * Return value:
350
 *
351
 * Since: 0.9.2
352
 **/
353
hb_bool_t
354
hb_face_is_immutable (const hb_face_t *face)
355
{
356
  return hb_object_is_immutable (face);
357 358 359
}


360 361 362
/**
 * hb_face_reference_table:
 * @face: a face.
363 364
 * @tag:
 *
365 366 367 368
 *
 *
 * Return value: (transfer full):
 *
369
 * Since: 0.9.2
370
 **/
371
hb_blob_t *
372 373
hb_face_reference_table (const hb_face_t *face,
			 hb_tag_t tag)
374 375 376 377
{
  return face->reference_table (tag);
}

378 379 380 381
/**
 * hb_face_reference_blob:
 * @face: a face.
 *
382
 *
383 384 385
 *
 * Return value: (transfer full):
 *
S
Sascha Brawer 已提交
386
 * Since: 0.9.2
387
 **/
388 389 390 391 392 393
hb_blob_t *
hb_face_reference_blob (hb_face_t *face)
{
  return face->reference_table (HB_TAG_NONE);
}

394 395 396
/**
 * hb_face_set_index:
 * @face: a face.
397 398
 * @index:
 *
399 400
 *
 *
S
Sascha Brawer 已提交
401
 * Since: 0.9.2
402
 **/
403 404 405 406
void
hb_face_set_index (hb_face_t    *face,
		   unsigned int  index)
{
407
  if (hb_object_is_immutable (face))
408 409 410 411 412
    return;

  face->index = index;
}

413 414 415 416 417
/**
 * hb_face_get_index:
 * @face: a face.
 *
 *
418 419
 *
 * Return value:
420
 *
S
Sascha Brawer 已提交
421
 * Since: 0.9.2
422
 **/
423
unsigned int
424
hb_face_get_index (const hb_face_t *face)
425 426 427 428
{
  return face->index;
}

429 430 431
/**
 * hb_face_set_upem:
 * @face: a face.
432 433
 * @upem:
 *
434 435
 *
 *
S
Sascha Brawer 已提交
436
 * Since: 0.9.2
437
 **/
438 439 440 441
void
hb_face_set_upem (hb_face_t    *face,
		  unsigned int  upem)
{
442
  if (hb_object_is_immutable (face))
443 444 445 446 447
    return;

  face->upem = upem;
}

448 449 450 451 452
/**
 * hb_face_get_upem:
 * @face: a face.
 *
 *
453 454
 *
 * Return value:
455
 *
456
 * Since: 0.9.2
457
 **/
458
unsigned int
459
hb_face_get_upem (const hb_face_t *face)
460 461 462 463
{
  return face->get_upem ();
}

464 465 466
/**
 * hb_face_set_glyph_count:
 * @face: a face.
467 468
 * @glyph_count:
 *
469 470
 *
 *
S
Sascha Brawer 已提交
471
 * Since: 0.9.7
472
 **/
473 474 475 476
void
hb_face_set_glyph_count (hb_face_t    *face,
			 unsigned int  glyph_count)
{
477
  if (hb_object_is_immutable (face))
478 479 480 481 482
    return;

  face->num_glyphs = glyph_count;
}

483 484 485 486 487
/**
 * hb_face_get_glyph_count:
 * @face: a face.
 *
 *
488 489
 *
 * Return value:
490
 *
S
Sascha Brawer 已提交
491
 * Since: 0.9.7
492
 **/
493
unsigned int
494
hb_face_get_glyph_count (const hb_face_t *face)
495 496 497 498
{
  return face->get_num_glyphs ();
}

B
Behdad Esfahbod 已提交
499 500 501
/**
 * hb_face_get_table_tags:
 * @face: a face.
B
Behdad Esfahbod 已提交
502 503 504
 * @start_offset: index of first tag to return.
 * @table_count: input length of @table_tags array, output number of items written.
 * @table_tags: array to write tags into.
B
Behdad Esfahbod 已提交
505 506 507 508 509 510 511 512
 *
 * 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
513
hb_face_get_table_tags (const hb_face_t *face,
B
Behdad Esfahbod 已提交
514 515 516 517
			unsigned int  start_offset,
			unsigned int *table_count, /* IN/OUT */
			hb_tag_t     *table_tags /* OUT */)
{
P
prrace 已提交
518
  if (face->destroy != (hb_destroy_func_t) _hb_face_for_data_closure_destroy)
B
Behdad Esfahbod 已提交
519 520 521 522 523
  {
    if (table_count)
      *table_count = 0;
    return 0;
  }
524

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

527
  const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
B
Behdad Esfahbod 已提交
528 529 530 531
  const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index);

  return ot_face.get_table_tags (start_offset, table_count, table_tags);
}
B
Behdad Esfahbod 已提交
532 533


534 535 536 537
/*
 * Character set.
 */

538

539 540 541 542 543
/**
 * hb_face_collect_unicodes:
 * @face: font face.
 * @out: set to add Unicode characters covered by @face to.
 *
B
1.9.0  
Behdad Esfahbod 已提交
544
 * Since: 1.9.0
545 546 547 548 549
 */
void
hb_face_collect_unicodes (hb_face_t *face,
			  hb_set_t  *out)
{
550
  if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return;
551
  hb_ot_face_data (face)->cmap->collect_unicodes (out);
552 553 554 555 556 557 558 559 560
}

/**
 * hb_face_collect_variation_selectors:
 * @face: font face.
 * @out: set to add Variation Selector characters covered by @face to.
 *
 *
 *
B
1.9.0  
Behdad Esfahbod 已提交
561
 * Since: 1.9.0
562 563 564 565 566
 */
void
hb_face_collect_variation_selectors (hb_face_t *face,
				     hb_set_t  *out)
{
567
  if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return;
568
  hb_ot_face_data (face)->cmap->collect_variation_selectors (out);
569 570 571 572 573 574 575 576 577
}

/**
 * hb_face_collect_variation_unicodes:
 * @face: font face.
 * @out: set to add Unicode characters for @variation_selector covered by @face to.
 *
 *
 *
B
1.9.0  
Behdad Esfahbod 已提交
578
 * Since: 1.9.0
579 580 581 582 583 584
 */
void
hb_face_collect_variation_unicodes (hb_face_t *face,
				    hb_codepoint_t variation_selector,
				    hb_set_t  *out)
{
585
  if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return;
586
  hb_ot_face_data (face)->cmap->collect_variation_unicodes (variation_selector, out);
587 588 589 590
}



B
Behdad Esfahbod 已提交
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
/*
 * face-builder: A face that has add_table().
 */

struct hb_face_builder_data_t
{
  struct table_entry_t
  {
    inline int cmp (const hb_tag_t *t) const
    {
      if (*t < tag) return -1;
      if (*t > tag) return -1;
      return 0;
    }

    hb_tag_t   tag;
    hb_blob_t *blob;
  };

  hb_vector_t<table_entry_t, 32> tables;
};

static hb_face_builder_data_t *
_hb_face_builder_data_create (void)
{
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) calloc (1, sizeof (hb_face_builder_data_t));
  if (unlikely (!data))
    return nullptr;

  data->tables.init ();

  return data;
}

static void
_hb_face_builder_data_destroy (void *user_data)
{
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;

  for (unsigned int i = 0; i < data->tables.len; i++)
    hb_blob_destroy (data->tables[i].blob);

  data->tables.fini ();

  free (data);
}

static hb_blob_t *
_hb_face_builder_data_reference_blob (hb_face_builder_data_t *data)
{

  unsigned int table_count = data->tables.len;
  unsigned int face_length = table_count * 16 + 12;

  for (unsigned int i = 0; i < table_count; i++)
646
    face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob));
B
Behdad Esfahbod 已提交
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677

  char *buf = (char *) malloc (face_length);
  if (unlikely (!buf))
    return nullptr;

  hb_serialize_context_t c (buf, face_length);
  OT::OpenTypeFontFile *f = c.start_serialize<OT::OpenTypeFontFile> ();

  bool is_cff = data->tables.lsearch (HB_TAG ('C','F','F',' ')) || data->tables.lsearch (HB_TAG ('C','F','F','2'));
  hb_tag_t sfnt_tag = is_cff ? OT::OpenTypeFontFile::CFFTag : OT::OpenTypeFontFile::TrueTypeTag;

  Supplier<hb_tag_t>    tags_supplier  (&data->tables[0].tag, table_count, sizeof (data->tables[0]));
  Supplier<hb_blob_t *> blobs_supplier (&data->tables[0].blob, table_count, sizeof (data->tables[0]));
  bool ret = f->serialize_single (&c,
				  sfnt_tag,
				  tags_supplier,
				  blobs_supplier,
				  table_count);

  c.end_serialize ();

  if (unlikely (!ret))
  {
    free (buf);
    return nullptr;
  }

  return hb_blob_create (buf, face_length, HB_MEMORY_MODE_WRITABLE, buf, free);
}

static hb_blob_t *
678
_hb_face_builder_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
B
Behdad Esfahbod 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
{
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;

  if (!tag)
    return _hb_face_builder_data_reference_blob (data);

  hb_face_builder_data_t::table_entry_t *entry = data->tables.lsearch (tag);
  if (entry)
    return hb_blob_reference (entry->blob);

  return nullptr;
}


/**
 * hb_face_builder_create:
 *
 * Creates a #hb_face_t that can be used with hb_face_builder_add_table().
 * After tables are added to the face, it can be compiled to a binary
 * font file by calling hb_face_reference_blob().
 *
H
HinTak 已提交
700
 * Return value: (transfer full): New face.
B
Behdad Esfahbod 已提交
701
 *
B
1.9.0  
Behdad Esfahbod 已提交
702
 * Since: 1.9.0
B
Behdad Esfahbod 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
 **/
hb_face_t *
hb_face_builder_create (void)
{
  hb_face_builder_data_t *data = _hb_face_builder_data_create ();
  if (unlikely (!data)) return hb_face_get_empty ();

  return hb_face_create_for_tables (_hb_face_builder_reference_table,
				    data,
				    _hb_face_builder_data_destroy);
}

/**
 * hb_face_builder_add_table:
 *
 * Add table for @tag with data provided by @blob to the face.  @face must
 * be created using hb_face_builder_create().
 *
B
1.9.0  
Behdad Esfahbod 已提交
721
 * Since: 1.9.0
B
Behdad Esfahbod 已提交
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
 **/
hb_bool_t
hb_face_builder_add_table (hb_face_t *face, hb_tag_t tag, hb_blob_t *blob)
{
  if (unlikely (face->destroy != (hb_destroy_func_t) _hb_face_builder_data_destroy))
    return false;

  hb_face_builder_data_t *data = (hb_face_builder_data_t *) face->user_data;
  hb_face_builder_data_t::table_entry_t *entry = data->tables.push ();

  entry->tag = tag;
  entry->blob = hb_blob_reference (blob);

  return true;
}