2013-08-26 22:49:07 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2018-08-26 05:36:36 +00:00
|
|
|
#include "hb.hh"
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2018-08-26 05:36:36 +00:00
|
|
|
#include "hb-face.hh"
|
|
|
|
#include "hb-blob.hh"
|
|
|
|
#include "hb-open-file.hh"
|
2018-08-26 16:33:01 +00:00
|
|
|
#include "hb-ot-face.hh"
|
2018-08-26 22:11:24 +00:00
|
|
|
#include "hb-ot-cmap-table.hh"
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
|
2018-10-27 11:07:33 +00:00
|
|
|
/**
|
|
|
|
* SECTION:hb-face
|
2018-10-27 11:50:38 +00:00
|
|
|
* @title: hb-face
|
2018-10-27 11:28:40 +00:00
|
|
|
* @short_description: Font face objects
|
2018-10-27 11:07:33 +00:00
|
|
|
* @include: hb.h
|
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* A font face is an object that represents a single face from within a
|
|
|
|
* font family.
|
|
|
|
*
|
|
|
|
* More precisely, a font face represents a single face in a binary font file.
|
2018-10-27 11:07:33 +00:00
|
|
|
* Font faces are typically built from a binary blob and a face index.
|
|
|
|
* Font faces are used to create fonts.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2018-06-05 14:26:26 +00:00
|
|
|
/**
|
2018-09-24 14:43:06 +00:00
|
|
|
* hb_face_count:
|
|
|
|
* @blob: a blob.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the number of faces in a blob.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2018-09-24 14:43:06 +00:00
|
|
|
* Return value: Number of faces in @blob
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2018-06-05 22:17:39 +00:00
|
|
|
* Since: 1.7.7
|
2018-06-05 14:26:26 +00:00
|
|
|
**/
|
|
|
|
unsigned int
|
|
|
|
hb_face_count (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
if (unlikely (!blob))
|
|
|
|
return 0;
|
|
|
|
|
2018-07-17 17:17:59 +00:00
|
|
|
/* TODO We shouldn't be sanitizing blob. Port to run sanitizer and return if not sane. */
|
2018-08-02 05:50:06 +00:00
|
|
|
/* Make API signature const after. */
|
2018-08-02 06:59:09 +00:00
|
|
|
hb_blob_t *sanitized = hb_sanitize_context_t ().sanitize_blob<OT::OpenTypeFontFile> (hb_blob_reference (blob));
|
2018-06-05 18:20:53 +00:00
|
|
|
const OT::OpenTypeFontFile& ot = *sanitized->as<OT::OpenTypeFontFile> ();
|
2018-07-17 17:17:59 +00:00
|
|
|
unsigned int ret = ot.get_face_count ();
|
|
|
|
hb_blob_destroy (sanitized);
|
2018-06-05 14:26:26 +00:00
|
|
|
|
2018-07-17 17:17:59 +00:00
|
|
|
return ret;
|
2018-06-05 14:26:26 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 22:49:07 +00:00
|
|
|
/*
|
|
|
|
* hb_face_t
|
|
|
|
*/
|
|
|
|
|
2018-08-06 13:17:48 +00:00
|
|
|
DEFINE_NULL_INSTANCE (hb_face_t) =
|
|
|
|
{
|
2013-08-26 22:49:07 +00:00
|
|
|
HB_OBJECT_HEADER_STATIC,
|
|
|
|
|
2017-10-15 10:11:08 +00:00
|
|
|
nullptr, /* reference_table_func */
|
|
|
|
nullptr, /* user_data */
|
|
|
|
nullptr, /* destroy */
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
0, /* index */
|
2020-06-29 10:51:09 +00:00
|
|
|
1000, /* upem */
|
|
|
|
0, /* num_glyphs */
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2018-11-11 21:25:43 +00:00
|
|
|
/* Zero for the rest is fine. */
|
2013-08-26 22:49:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_create_for_tables:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @reference_table_func: (closure user_data) (destroy destroy) (scope notified): Table-referencing function
|
|
|
|
* @user_data: A pointer to the user data
|
2020-12-30 22:19:29 +00:00
|
|
|
* @destroy: (nullable): A callback to call when @data is not needed anymore
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2020-09-26 08:22:39 +00:00
|
|
|
* Variant of hb_face_create(), built for those cases where it is more
|
|
|
|
* convenient to provide data for individual tables instead of the whole font
|
|
|
|
* data. With the caveat that hb_face_get_table_tags() does not currently work
|
|
|
|
* with faces created this way.
|
2019-04-22 18:21:27 +00:00
|
|
|
*
|
|
|
|
* Creates a new face object from the specified @user_data and @reference_table_func,
|
|
|
|
* with the @destroy callback.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2020-04-26 15:01:31 +00:00
|
|
|
* Return value: (transfer full): The new face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
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;
|
|
|
|
|
2018-11-13 16:54:33 +00:00
|
|
|
face->num_glyphs.set_relaxed (-1);
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2018-11-16 07:29:13 +00:00
|
|
|
face->data.init0 (face);
|
2018-11-06 03:39:50 +00:00
|
|
|
face->table.init0 (face);
|
|
|
|
|
2013-08-26 22:49:07 +00:00
|
|
|
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;
|
|
|
|
|
2015-10-02 07:02:29 +00:00
|
|
|
closure = (hb_face_for_data_closure_t *) calloc (1, sizeof (hb_face_for_data_closure_t));
|
2013-08-26 22:49:07 +00:00
|
|
|
if (unlikely (!closure))
|
2017-10-15 10:11:08 +00:00
|
|
|
return nullptr;
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
closure->blob = blob;
|
|
|
|
closure->index = index;
|
|
|
|
|
|
|
|
return closure;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-10-11 13:51:31 +00:00
|
|
|
_hb_face_for_data_closure_destroy (void *data)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
2017-10-11 13:51:31 +00:00
|
|
|
hb_face_for_data_closure_t *closure = (hb_face_for_data_closure_t *) data;
|
|
|
|
|
2013-08-26 22:49:07 +00:00
|
|
|
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);
|
|
|
|
|
2018-05-08 09:47:42 +00:00
|
|
|
const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
|
2018-09-11 14:41:26 +00:00
|
|
|
unsigned int base_offset;
|
|
|
|
const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index, &base_offset);
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
const OT::OpenTypeTable &table = ot_face.get_table_by_tag (tag);
|
|
|
|
|
2018-09-11 14:41:26 +00:00
|
|
|
hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, base_offset + table.offset, table.length);
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
2013-09-12 21:14:33 +00:00
|
|
|
* hb_face_create: (Xconstructor)
|
2019-04-22 18:21:27 +00:00
|
|
|
* @blob: #hb_blob_t to work upon
|
|
|
|
* @index: The index of the face within @blob
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Constructs a new face object from the specified blob and
|
2020-04-26 14:56:57 +00:00
|
|
|
* a face index into that blob. This is used for blobs of
|
|
|
|
* file formats such as Dfont and TTC that can contain more
|
|
|
|
* than one face.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: (transfer full): The new face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_face_t *
|
|
|
|
hb_face_create (hb_blob_t *blob,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
|
|
|
hb_face_t *face;
|
|
|
|
|
2014-08-06 19:36:41 +00:00
|
|
|
if (unlikely (!blob))
|
|
|
|
blob = hb_blob_get_empty ();
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2020-06-23 19:25:43 +00:00
|
|
|
blob = hb_sanitize_context_t ().sanitize_blob<OT::OpenTypeFontFile> (hb_blob_reference (blob));
|
|
|
|
|
|
|
|
hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (blob, index);
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
if (unlikely (!closure))
|
2020-06-23 19:25:43 +00:00
|
|
|
{
|
|
|
|
hb_blob_destroy (blob);
|
2013-08-26 22:49:07 +00:00
|
|
|
return hb_face_get_empty ();
|
2020-06-23 19:25:43 +00:00
|
|
|
}
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
face = hb_face_create_for_tables (_hb_face_for_data_reference_table,
|
|
|
|
closure,
|
2017-10-11 13:51:31 +00:00
|
|
|
_hb_face_for_data_closure_destroy);
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2017-02-03 23:42:03 +00:00
|
|
|
face->index = index;
|
2013-08-26 22:49:07 +00:00
|
|
|
|
|
|
|
return face;
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_empty:
|
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the singleton empty face object.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2020-12-30 21:58:37 +00:00
|
|
|
* Return value: (transfer full): The empty face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_face_t *
|
2018-12-17 18:01:01 +00:00
|
|
|
hb_face_get_empty ()
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
2020-04-20 09:42:45 +00:00
|
|
|
return const_cast<hb_face_t *> (&Null (hb_face_t));
|
2013-08-26 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_reference: (skip)
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Increases the reference count on a face object.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: The @face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_face_t *
|
|
|
|
hb_face_reference (hb_face_t *face)
|
|
|
|
{
|
|
|
|
return hb_object_reference (face);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_destroy: (skip)
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
*
|
|
|
|
* Decreases the reference count on a face object. When the
|
|
|
|
* reference count reaches zero, the face is destroyed,
|
|
|
|
* freeing all memory.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void
|
|
|
|
hb_face_destroy (hb_face_t *face)
|
|
|
|
{
|
|
|
|
if (!hb_object_destroy (face)) return;
|
|
|
|
|
2018-11-05 18:23:54 +00:00
|
|
|
for (hb_face_t::plan_node_t *node = face->shape_plans; node; )
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
|
|
|
hb_face_t::plan_node_t *next = node->next;
|
|
|
|
hb_shape_plan_destroy (node->shape_plan);
|
|
|
|
free (node);
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
|
2018-11-16 07:29:13 +00:00
|
|
|
face->data.fini ();
|
2018-11-06 03:39:50 +00:00
|
|
|
face->table.fini ();
|
|
|
|
|
2013-08-26 22:49:07 +00:00
|
|
|
if (face->destroy)
|
|
|
|
face->destroy (face->user_data);
|
|
|
|
|
|
|
|
free (face);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_set_user_data: (skip)
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @key: The user-data key to set
|
|
|
|
* @data: A pointer to the user data
|
2020-12-30 22:19:29 +00:00
|
|
|
* @destroy: (nullable): A callback to call when @data is not needed anymore
|
2019-04-22 18:21:27 +00:00
|
|
|
* @replace: Whether to replace an existing data with the same key
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Attaches a user-data key/data pair to the given face object.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2020-12-24 19:28:37 +00:00
|
|
|
* Return value: %true if success, %false otherwise
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_user_data: (skip)
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @key: The user-data key to query
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the user data associated with the specified key,
|
|
|
|
* attached to the specified face object.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: (transfer none): A pointer to the user data
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void *
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_get_user_data (const hb_face_t *face,
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_user_data_key_t *key)
|
|
|
|
{
|
|
|
|
return hb_object_get_user_data (face, key);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_make_immutable:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Makes the given face object immutable.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void
|
|
|
|
hb_face_make_immutable (hb_face_t *face)
|
|
|
|
{
|
2018-11-03 18:51:38 +00:00
|
|
|
if (hb_object_is_immutable (face))
|
2018-09-26 19:03:07 +00:00
|
|
|
return;
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2018-11-03 18:51:38 +00:00
|
|
|
hb_object_make_immutable (face);
|
2013-08-26 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_is_immutable:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Tests whether the given face object is immutable.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2020-12-30 21:08:40 +00:00
|
|
|
* Return value: %true is @face is immutable, %false otherwise
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_bool_t
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_is_immutable (const hb_face_t *face)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
2018-11-03 18:51:38 +00:00
|
|
|
return hb_object_is_immutable (face);
|
2013-08-26 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_reference_table:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @tag: The #hb_tag_t of the table to query
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches a reference to the specified table within
|
|
|
|
* the specified face.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: (transfer full): A pointer to the @tag table within @face
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_blob_t *
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_reference_table (const hb_face_t *face,
|
|
|
|
hb_tag_t tag)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
2019-08-31 21:48:09 +00:00
|
|
|
if (unlikely (tag == HB_TAG_NONE))
|
|
|
|
return hb_blob_get_empty ();
|
|
|
|
|
2013-08-26 22:49:07 +00:00
|
|
|
return face->reference_table (tag);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_reference_blob:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches a pointer to the binary blob that contains the
|
2020-09-26 08:22:39 +00:00
|
|
|
* specified face. Returns an empty blob if referencing face data is not
|
|
|
|
* possible.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: (transfer full): A pointer to the blob for @face
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
hb_blob_t *
|
|
|
|
hb_face_reference_blob (hb_face_t *face)
|
|
|
|
{
|
|
|
|
return face->reference_table (HB_TAG_NONE);
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_set_index:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @index: The index to assign
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Assigns the specified face-index to @face. Fails if the
|
|
|
|
* face is immutable.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* <note>Note: face indices within a collection are zero-based.</note>
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void
|
|
|
|
hb_face_set_index (hb_face_t *face,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
2018-11-03 18:51:38 +00:00
|
|
|
if (hb_object_is_immutable (face))
|
2013-08-26 22:49:07 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
face->index = index;
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_index:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the face-index corresponding to the given face.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* <note>Note: face indices within a collection are zero-based.</note>
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: The index of @face.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
unsigned int
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_get_index (const hb_face_t *face)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
|
|
|
return face->index;
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_set_upem:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @upem: The units-per-em value to assign
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Sets the units-per-em (upem) for a face object to the specified value.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void
|
|
|
|
hb_face_set_upem (hb_face_t *face,
|
|
|
|
unsigned int upem)
|
|
|
|
{
|
2018-11-03 18:51:38 +00:00
|
|
|
if (hb_object_is_immutable (face))
|
2013-08-26 22:49:07 +00:00
|
|
|
return;
|
|
|
|
|
2018-11-13 16:54:33 +00:00
|
|
|
face->upem.set_relaxed (upem);
|
2013-08-26 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_upem:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the units-per-em (upem) value of the specified face object.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: The upem value of @face
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-09-03 10:25:59 +00:00
|
|
|
* Since: 0.9.2
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
unsigned int
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_get_upem (const hb_face_t *face)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
|
|
|
return face->get_upem ();
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_set_glyph_count:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @glyph_count: The glyph-count value to assign
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Sets the glyph count for a face object to the specified value.
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.7
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
void
|
|
|
|
hb_face_set_glyph_count (hb_face_t *face,
|
|
|
|
unsigned int glyph_count)
|
|
|
|
{
|
2018-11-03 18:51:38 +00:00
|
|
|
if (hb_object_is_immutable (face))
|
2013-08-26 22:49:07 +00:00
|
|
|
return;
|
|
|
|
|
2018-11-13 16:54:33 +00:00
|
|
|
face->num_glyphs.set_relaxed (glyph_count);
|
2013-08-26 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 19:40:22 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_glyph_count:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches the glyph-count value of the specified face object.
|
2018-06-05 14:26:26 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: The glyph-count value of @face
|
2013-09-06 19:40:22 +00:00
|
|
|
*
|
2015-06-01 11:22:01 +00:00
|
|
|
* Since: 0.9.7
|
2013-09-06 19:40:22 +00:00
|
|
|
**/
|
2013-08-26 22:49:07 +00:00
|
|
|
unsigned int
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_get_glyph_count (const hb_face_t *face)
|
2013-08-26 22:49:07 +00:00
|
|
|
{
|
|
|
|
return face->get_num_glyphs ();
|
|
|
|
}
|
|
|
|
|
2017-10-11 15:22:44 +00:00
|
|
|
/**
|
|
|
|
* hb_face_get_table_tags:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @start_offset: The index of first table tag to retrieve
|
|
|
|
* @table_count: (inout): Input = the maximum number of table tags to return;
|
|
|
|
* Output = the actual number of table tags returned (may be zero)
|
|
|
|
* @table_tags: (out) (array length=table_count): The array of table tags found
|
2017-10-11 15:22:44 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Fetches a list of all table tags for a face, if possible. The list returned will
|
|
|
|
* begin at the offset provided
|
2017-10-11 15:22:44 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Return value: Total number of tables, or zero if it is not possible to list
|
2017-10-11 15:22:44 +00:00
|
|
|
*
|
|
|
|
* Since: 1.6.0
|
|
|
|
**/
|
|
|
|
unsigned int
|
2018-08-02 05:50:06 +00:00
|
|
|
hb_face_get_table_tags (const hb_face_t *face,
|
2017-10-11 15:22:44 +00:00
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *table_count, /* IN/OUT */
|
|
|
|
hb_tag_t *table_tags /* OUT */)
|
|
|
|
{
|
2018-06-09 23:04:28 +00:00
|
|
|
if (face->destroy != (hb_destroy_func_t) _hb_face_for_data_closure_destroy)
|
2017-10-11 15:22:44 +00:00
|
|
|
{
|
|
|
|
if (table_count)
|
|
|
|
*table_count = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-26 22:49:07 +00:00
|
|
|
|
2017-10-11 15:22:44 +00:00
|
|
|
hb_face_for_data_closure_t *data = (hb_face_for_data_closure_t *) face->user_data;
|
|
|
|
|
2018-05-08 09:47:42 +00:00
|
|
|
const OT::OpenTypeFontFile &ot_file = *data->blob->as<OT::OpenTypeFontFile> ();
|
2017-10-11 15:22:44 +00:00
|
|
|
const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index);
|
|
|
|
|
|
|
|
return ot_face.get_table_tags (start_offset, table_count, table_tags);
|
|
|
|
}
|
2018-08-25 15:18:53 +00:00
|
|
|
|
|
|
|
|
2018-08-26 05:44:39 +00:00
|
|
|
/*
|
|
|
|
* Character set.
|
|
|
|
*/
|
|
|
|
|
2018-08-26 16:33:01 +00:00
|
|
|
|
2019-06-20 03:07:02 +00:00
|
|
|
#ifndef HB_NO_FACE_COLLECT_UNICODES
|
2018-08-26 05:44:39 +00:00
|
|
|
/**
|
|
|
|
* hb_face_collect_unicodes:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @out: The set to add Unicode characters to
|
|
|
|
*
|
|
|
|
* Collects all of the Unicode characters covered by @face and adds
|
|
|
|
* them to the #hb_set_t set @out.
|
2018-08-26 05:44:39 +00:00
|
|
|
*
|
2018-09-10 09:37:24 +00:00
|
|
|
* Since: 1.9.0
|
2018-08-26 05:44:39 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
hb_face_collect_unicodes (hb_face_t *face,
|
|
|
|
hb_set_t *out)
|
|
|
|
{
|
2020-02-29 09:32:29 +00:00
|
|
|
face->table.cmap->collect_unicodes (out, face->get_num_glyphs ());
|
2018-08-26 05:44:39 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* hb_face_collect_variation_selectors:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @out: The set to add Variation Selector characters to
|
2018-08-26 05:44:39 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Collects all Unicode "Variation Selector" characters covered by @face and adds
|
|
|
|
* them to the #hb_set_t set @out.
|
2018-08-26 05:44:39 +00:00
|
|
|
*
|
2018-09-10 09:37:24 +00:00
|
|
|
* Since: 1.9.0
|
2018-08-26 05:44:39 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
hb_face_collect_variation_selectors (hb_face_t *face,
|
|
|
|
hb_set_t *out)
|
|
|
|
{
|
2018-11-06 04:08:33 +00:00
|
|
|
face->table.cmap->collect_variation_selectors (out);
|
2018-08-26 05:44:39 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* hb_face_collect_variation_unicodes:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object
|
|
|
|
* @variation_selector: The Variation Selector to query
|
|
|
|
* @out: The set to add Unicode characters to
|
2018-08-26 05:44:39 +00:00
|
|
|
*
|
2019-04-22 18:21:27 +00:00
|
|
|
* Collects all Unicode characters for @variation_selector covered by @face and adds
|
|
|
|
* them to the #hb_set_t set @out.
|
2018-08-26 05:44:39 +00:00
|
|
|
*
|
2018-09-10 09:37:24 +00:00
|
|
|
* Since: 1.9.0
|
2018-08-26 05:44:39 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
hb_face_collect_variation_unicodes (hb_face_t *face,
|
|
|
|
hb_codepoint_t variation_selector,
|
|
|
|
hb_set_t *out)
|
|
|
|
{
|
2018-11-06 04:08:33 +00:00
|
|
|
face->table.cmap->collect_variation_unicodes (variation_selector, out);
|
2018-08-26 05:44:39 +00:00
|
|
|
}
|
2019-06-20 03:07:02 +00:00
|
|
|
#endif
|
2018-08-26 05:44:39 +00:00
|
|
|
|
|
|
|
|
2018-08-25 15:18:53 +00:00
|
|
|
/*
|
|
|
|
* face-builder: A face that has add_table().
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct hb_face_builder_data_t
|
|
|
|
{
|
|
|
|
struct table_entry_t
|
|
|
|
{
|
2018-12-16 19:08:10 +00:00
|
|
|
int cmp (hb_tag_t t) const
|
2018-08-25 15:18:53 +00:00
|
|
|
{
|
2018-11-24 06:07:15 +00:00
|
|
|
if (t < tag) return -1;
|
|
|
|
if (t > tag) return -1;
|
2018-08-25 15:18:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hb_tag_t tag;
|
|
|
|
hb_blob_t *blob;
|
|
|
|
};
|
|
|
|
|
2018-12-27 22:56:22 +00:00
|
|
|
hb_vector_t<table_entry_t> tables;
|
2018-08-25 15:18:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static hb_face_builder_data_t *
|
2018-12-17 18:01:01 +00:00
|
|
|
_hb_face_builder_data_create ()
|
2018-08-25 15:18:53 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2018-12-21 23:46:51 +00:00
|
|
|
for (unsigned int i = 0; i < data->tables.length; i++)
|
2018-08-25 15:18:53 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
|
2018-12-21 23:46:51 +00:00
|
|
|
unsigned int table_count = data->tables.length;
|
2018-08-25 15:18:53 +00:00
|
|
|
unsigned int face_length = table_count * 16 + 12;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < table_count; i++)
|
2018-10-05 16:39:48 +00:00
|
|
|
face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob));
|
2018-08-25 15:18:53 +00:00
|
|
|
|
|
|
|
char *buf = (char *) malloc (face_length);
|
|
|
|
if (unlikely (!buf))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
hb_serialize_context_t c (buf, face_length);
|
2018-12-18 18:23:32 +00:00
|
|
|
c.propagate_error (data->tables);
|
2018-08-25 15:18:53 +00:00
|
|
|
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;
|
|
|
|
|
2018-12-18 21:49:08 +00:00
|
|
|
bool ret = f->serialize_single (&c, sfnt_tag, data->tables.as_array ());
|
2018-08-25 15:18:53 +00:00
|
|
|
|
|
|
|
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 *
|
2018-10-27 04:01:11 +00:00
|
|
|
_hb_face_builder_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
|
2018-08-25 15:18:53 +00:00
|
|
|
{
|
|
|
|
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().
|
|
|
|
*
|
2018-10-02 23:11:22 +00:00
|
|
|
* Return value: (transfer full): New face.
|
2018-08-25 15:18:53 +00:00
|
|
|
*
|
2018-09-10 09:37:24 +00:00
|
|
|
* Since: 1.9.0
|
2018-08-25 15:18:53 +00:00
|
|
|
**/
|
|
|
|
hb_face_t *
|
2018-12-17 18:01:01 +00:00
|
|
|
hb_face_builder_create ()
|
2018-08-25 15:18:53 +00:00
|
|
|
{
|
|
|
|
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:
|
2019-04-22 18:21:27 +00:00
|
|
|
* @face: A face object created with hb_face_builder_create()
|
|
|
|
* @tag: The #hb_tag_t of the table to add
|
|
|
|
* @blob: The blob containing the table data to add
|
2018-08-25 15:18:53 +00:00
|
|
|
*
|
|
|
|
* Add table for @tag with data provided by @blob to the face. @face must
|
|
|
|
* be created using hb_face_builder_create().
|
|
|
|
*
|
2018-09-10 09:37:24 +00:00
|
|
|
* Since: 1.9.0
|
2018-08-25 15:18:53 +00:00
|
|
|
**/
|
|
|
|
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;
|
2020-07-29 01:31:46 +00:00
|
|
|
|
2018-08-25 15:18:53 +00:00
|
|
|
hb_face_builder_data_t::table_entry_t *entry = data->tables.push ();
|
2021-02-11 17:55:03 +00:00
|
|
|
if (unlikely (data->tables.in_error()))
|
2020-07-29 01:31:46 +00:00
|
|
|
return false;
|
2018-08-25 15:18:53 +00:00
|
|
|
|
|
|
|
entry->tag = tag;
|
|
|
|
entry->blob = hb_blob_reference (blob);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|