hb-face.cc 8.6 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * 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"

#include "hb-ot-layout-private.hh"

#include "hb-font-private.hh"
#include "hb-open-file-private.hh"
#include "hb-ot-head-table.hh"
#include "hb-ot-maxp-table.hh"

#include <string.h>


/*
 * hb_face_t
 */

const hb_face_t _hb_face_nil = {
  HB_OBJECT_HEADER_STATIC,

  true, /* immutable */

  NULL, /* reference_table_func */
  NULL, /* user_data */
  NULL, /* destroy */

  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
  },

  NULL, /* shape_plans */
};


68 69
/**
 * hb_face_create_for_tables:
70
 * @reference_table_func: (closure user_data) (destroy destroy) (scope notified):
71 72 73 74 75 76 77
 * @user_data: 
 * @destroy: 
 *
 * 
 *
 * Return value: (transfer full)
 *
78
 * Since: 0.9.2
79
 **/
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
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;

114
  closure = (hb_face_for_data_closure_t *) calloc (1, sizeof (hb_face_for_data_closure_t));
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
  if (unlikely (!closure))
    return NULL;

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

  return closure;
}

static void
_hb_face_for_data_closure_destroy (hb_face_for_data_closure_t *closure)
{
  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);

  const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->blob);
  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;
}

149
/**
150
 * hb_face_create: (Xconstructor)
151 152 153 154 155 156 157
 * @blob: 
 * @index: 
 *
 * 
 *
 * Return value: (transfer full):
 *
158
 * Since: 0.9.2
159
 **/
160 161 162 163 164 165
hb_face_t *
hb_face_create (hb_blob_t    *blob,
		unsigned int  index)
{
  hb_face_t *face;

B
Behdad Esfahbod 已提交
166 167
  if (unlikely (!blob))
    blob = hb_blob_get_empty ();
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

  hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (hb_blob_reference (blob)), index);

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

  face = hb_face_create_for_tables (_hb_face_for_data_reference_table,
				    closure,
				    (hb_destroy_func_t) _hb_face_for_data_closure_destroy);

  hb_face_set_index (face, index);

  return face;
}

183 184 185 186 187 188 189
/**
 * hb_face_get_empty:
 *
 * 
 *
 * Return value: (transfer full)
 *
190
 * Since: 0.9.2
191
 **/
192 193 194 195 196 197 198
hb_face_t *
hb_face_get_empty (void)
{
  return const_cast<hb_face_t *> (&_hb_face_nil);
}


199 200 201 202 203 204 205 206
/**
 * hb_face_reference: (skip)
 * @face: a face.
 *
 * 
 *
 * Return value: 
 *
207
 * Since: 0.9.2
208
 **/
209 210 211 212 213 214
hb_face_t *
hb_face_reference (hb_face_t *face)
{
  return hb_object_reference (face);
}

215 216 217 218 219 220
/**
 * hb_face_destroy: (skip)
 * @face: a face.
 *
 * 
 *
221
 * Since: 0.9.2
222
 **/
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
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);
}

246 247 248 249 250 251 252 253 254 255 256 257
/**
 * hb_face_set_user_data: (skip)
 * @face: a face.
 * @key: 
 * @data: 
 * @destroy: 
 * @replace: 
 *
 * 
 *
 * Return value: 
 *
258
 * Since: 0.9.2
259
 **/
260 261 262 263 264 265 266 267 268 269
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);
}

270 271 272 273 274 275 276 277 278
/**
 * hb_face_get_user_data: (skip)
 * @face: a face.
 * @key: 
 *
 * 
 *
 * Return value: (transfer none):
 *
279
 * Since: 0.9.2
280
 **/
281 282 283 284 285 286 287
void *
hb_face_get_user_data (hb_face_t          *face,
		       hb_user_data_key_t *key)
{
  return hb_object_get_user_data (face, key);
}

288 289 290 291 292 293
/**
 * hb_face_make_immutable:
 * @face: a face.
 *
 * 
 *
294
 * Since: 0.9.2
295
 **/
296 297 298
void
hb_face_make_immutable (hb_face_t *face)
{
299
  if (unlikely (hb_object_is_inert (face)))
300 301 302 303 304
    return;

  face->immutable = true;
}

305 306 307 308 309 310 311 312
/**
 * hb_face_is_immutable:
 * @face: a face.
 *
 * 
 *
 * Return value: 
 *
313
 * Since: 0.9.2
314
 **/
315 316 317 318 319 320 321
hb_bool_t
hb_face_is_immutable (hb_face_t *face)
{
  return face->immutable;
}


322 323 324 325 326 327 328 329 330
/**
 * hb_face_reference_table:
 * @face: a face.
 * @tag: 
 *
 * 
 *
 * Return value: (transfer full):
 *
331
 * Since: 0.9.2
332
 **/
333 334 335 336 337 338 339
hb_blob_t *
hb_face_reference_table (hb_face_t *face,
			 hb_tag_t   tag)
{
  return face->reference_table (tag);
}

340 341 342 343 344 345 346 347
/**
 * hb_face_reference_blob:
 * @face: a face.
 *
 * 
 *
 * Return value: (transfer full):
 *
S
Sascha Brawer 已提交
348
 * Since: 0.9.2
349
 **/
350 351 352 353 354 355
hb_blob_t *
hb_face_reference_blob (hb_face_t *face)
{
  return face->reference_table (HB_TAG_NONE);
}

356 357 358 359 360 361 362
/**
 * hb_face_set_index:
 * @face: a face.
 * @index: 
 *
 * 
 *
S
Sascha Brawer 已提交
363
 * Since: 0.9.2
364
 **/
365 366 367 368
void
hb_face_set_index (hb_face_t    *face,
		   unsigned int  index)
{
369
  if (face->immutable)
370 371 372 373 374
    return;

  face->index = index;
}

375 376 377 378 379 380 381 382
/**
 * hb_face_get_index:
 * @face: a face.
 *
 * 
 *
 * Return value: 
 *
S
Sascha Brawer 已提交
383
 * Since: 0.9.2
384
 **/
385 386 387 388 389 390
unsigned int
hb_face_get_index (hb_face_t    *face)
{
  return face->index;
}

391 392 393 394 395 396 397
/**
 * hb_face_set_upem:
 * @face: a face.
 * @upem: 
 *
 * 
 *
S
Sascha Brawer 已提交
398
 * Since: 0.9.2
399
 **/
400 401 402 403
void
hb_face_set_upem (hb_face_t    *face,
		  unsigned int  upem)
{
404
  if (face->immutable)
405 406 407 408 409
    return;

  face->upem = upem;
}

410 411 412 413 414 415 416 417
/**
 * hb_face_get_upem:
 * @face: a face.
 *
 * 
 *
 * Return value: 
 *
418
 * Since: 0.9.2
419
 **/
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
unsigned int
hb_face_get_upem (hb_face_t *face)
{
  return face->get_upem ();
}

void
hb_face_t::load_upem (void) const
{
  hb_blob_t *head_blob = OT::Sanitizer<OT::head>::sanitize (reference_table (HB_OT_TAG_head));
  const OT::head *head_table = OT::Sanitizer<OT::head>::lock_instance (head_blob);
  upem = head_table->get_upem ();
  hb_blob_destroy (head_blob);
}

435 436 437 438 439 440 441
/**
 * hb_face_set_glyph_count:
 * @face: a face.
 * @glyph_count: 
 *
 * 
 *
S
Sascha Brawer 已提交
442
 * Since: 0.9.7
443
 **/
444 445 446 447
void
hb_face_set_glyph_count (hb_face_t    *face,
			 unsigned int  glyph_count)
{
448
  if (face->immutable)
449 450 451 452 453
    return;

  face->num_glyphs = glyph_count;
}

454 455 456 457 458 459 460 461
/**
 * hb_face_get_glyph_count:
 * @face: a face.
 *
 * 
 *
 * Return value: 
 *
S
Sascha Brawer 已提交
462
 * Since: 0.9.7
463
 **/
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
unsigned int
hb_face_get_glyph_count (hb_face_t *face)
{
  return face->get_num_glyphs ();
}

void
hb_face_t::load_num_glyphs (void) const
{
  hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp));
  const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob);
  num_glyphs = maxp_table->get_num_glyphs ();
  hb_blob_destroy (maxp_blob);
}