2018-02-13 22:50:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 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): Garret Rieger, Rod Sheeter, Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-subset.hh"
|
|
|
|
#include "hb-set.hh"
|
2022-11-10 19:33:26 +01:00
|
|
|
#include "hb-utf.hh"
|
2018-02-13 22:50:50 +01:00
|
|
|
/**
|
2018-02-14 07:07:12 +01:00
|
|
|
* hb_subset_input_create_or_fail:
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
2021-07-26 02:13:49 +02:00
|
|
|
* Creates a new subset input object.
|
|
|
|
*
|
2022-06-30 08:43:57 +02:00
|
|
|
* Return value: (transfer full): New subset input, or `NULL` if failed. Destroy
|
2021-07-26 02:13:49 +02:00
|
|
|
* with hb_subset_input_destroy().
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
hb_subset_input_t *
|
2021-07-26 02:13:49 +02:00
|
|
|
hb_subset_input_create_or_fail (void)
|
2018-02-13 22:50:50 +01:00
|
|
|
{
|
|
|
|
hb_subset_input_t *input = hb_object_create<hb_subset_input_t>();
|
|
|
|
|
|
|
|
if (unlikely (!input))
|
|
|
|
return nullptr;
|
|
|
|
|
2021-08-27 17:20:58 +02:00
|
|
|
for (auto& set : input->sets_iter ())
|
|
|
|
set = hb_set_create ();
|
2021-08-26 01:51:26 +02:00
|
|
|
|
2022-06-30 18:36:19 +02:00
|
|
|
input->axes_location = hb_hashmap_create<hb_tag_t, float> ();
|
2022-11-15 00:06:39 +01:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2022-11-10 19:33:26 +01:00
|
|
|
input->name_table_overrides = hb_hashmap_create<hb_ot_name_record_ids_t, hb_bytes_t> ();
|
2022-11-15 00:06:39 +01:00
|
|
|
#endif
|
2022-10-14 01:42:00 +02:00
|
|
|
|
2022-11-15 00:06:39 +01:00
|
|
|
if (!input->axes_location ||
|
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
|
|
|
!input->name_table_overrides ||
|
|
|
|
#endif
|
|
|
|
input->in_error ())
|
2021-08-24 00:33:57 +02:00
|
|
|
{
|
|
|
|
hb_subset_input_destroy (input);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-07-30 00:25:41 +02:00
|
|
|
input->flags = HB_SUBSET_FLAGS_DEFAULT;
|
2018-02-13 22:50:50 +01:00
|
|
|
|
2021-08-30 20:16:51 +02:00
|
|
|
hb_set_add_range (input->sets.name_ids, 0, 6);
|
|
|
|
hb_set_add (input->sets.name_languages, 0x0409);
|
2021-08-26 01:51:26 +02:00
|
|
|
|
2019-05-18 00:30:01 +02:00
|
|
|
hb_tag_t default_drop_tables[] = {
|
|
|
|
// Layout disabled by default
|
2019-05-23 02:36:16 +02:00
|
|
|
HB_TAG ('m', 'o', 'r', 'x'),
|
|
|
|
HB_TAG ('m', 'o', 'r', 't'),
|
|
|
|
HB_TAG ('k', 'e', 'r', 'x'),
|
|
|
|
HB_TAG ('k', 'e', 'r', 'n'),
|
2019-05-18 00:30:01 +02:00
|
|
|
|
|
|
|
// Copied from fontTools:
|
|
|
|
HB_TAG ('B', 'A', 'S', 'E'),
|
|
|
|
HB_TAG ('J', 'S', 'T', 'F'),
|
|
|
|
HB_TAG ('D', 'S', 'I', 'G'),
|
|
|
|
HB_TAG ('E', 'B', 'D', 'T'),
|
|
|
|
HB_TAG ('E', 'B', 'L', 'C'),
|
|
|
|
HB_TAG ('E', 'B', 'S', 'C'),
|
|
|
|
HB_TAG ('S', 'V', 'G', ' '),
|
|
|
|
HB_TAG ('P', 'C', 'L', 'T'),
|
|
|
|
HB_TAG ('L', 'T', 'S', 'H'),
|
|
|
|
// Graphite tables
|
|
|
|
HB_TAG ('F', 'e', 'a', 't'),
|
|
|
|
HB_TAG ('G', 'l', 'a', 't'),
|
|
|
|
HB_TAG ('G', 'l', 'o', 'c'),
|
|
|
|
HB_TAG ('S', 'i', 'l', 'f'),
|
|
|
|
HB_TAG ('S', 'i', 'l', 'l'),
|
|
|
|
};
|
2021-08-30 20:16:51 +02:00
|
|
|
input->sets.drop_tables->add_array (default_drop_tables, ARRAY_LENGTH (default_drop_tables));
|
2019-05-18 00:30:01 +02:00
|
|
|
|
2021-06-10 02:46:47 +02:00
|
|
|
hb_tag_t default_no_subset_tables[] = {
|
|
|
|
HB_TAG ('a', 'v', 'a', 'r'),
|
|
|
|
HB_TAG ('g', 'a', 's', 'p'),
|
|
|
|
HB_TAG ('c', 'v', 't', ' '),
|
|
|
|
HB_TAG ('f', 'p', 'g', 'm'),
|
|
|
|
HB_TAG ('p', 'r', 'e', 'p'),
|
|
|
|
HB_TAG ('V', 'D', 'M', 'X'),
|
|
|
|
HB_TAG ('D', 'S', 'I', 'G'),
|
|
|
|
HB_TAG ('M', 'V', 'A', 'R'),
|
|
|
|
HB_TAG ('c', 'v', 'a', 'r'),
|
|
|
|
};
|
2021-08-30 20:16:51 +02:00
|
|
|
input->sets.no_subset_tables->add_array (default_no_subset_tables,
|
2021-08-26 01:51:26 +02:00
|
|
|
ARRAY_LENGTH (default_no_subset_tables));
|
2021-06-10 02:46:47 +02:00
|
|
|
|
2021-05-20 02:33:46 +02:00
|
|
|
//copied from _layout_features_groups in fonttools
|
|
|
|
hb_tag_t default_layout_features[] = {
|
|
|
|
// default shaper
|
|
|
|
// common
|
|
|
|
HB_TAG ('r', 'v', 'r', 'n'),
|
|
|
|
HB_TAG ('c', 'c', 'm', 'p'),
|
|
|
|
HB_TAG ('l', 'i', 'g', 'a'),
|
|
|
|
HB_TAG ('l', 'o', 'c', 'l'),
|
|
|
|
HB_TAG ('m', 'a', 'r', 'k'),
|
|
|
|
HB_TAG ('m', 'k', 'm', 'k'),
|
|
|
|
HB_TAG ('r', 'l', 'i', 'g'),
|
|
|
|
|
|
|
|
//fractions
|
|
|
|
HB_TAG ('f', 'r', 'a', 'c'),
|
|
|
|
HB_TAG ('n', 'u', 'm', 'r'),
|
|
|
|
HB_TAG ('d', 'n', 'o', 'm'),
|
|
|
|
|
|
|
|
//horizontal
|
|
|
|
HB_TAG ('c', 'a', 'l', 't'),
|
|
|
|
HB_TAG ('c', 'l', 'i', 'g'),
|
|
|
|
HB_TAG ('c', 'u', 'r', 's'),
|
|
|
|
HB_TAG ('k', 'e', 'r', 'n'),
|
|
|
|
HB_TAG ('r', 'c', 'l', 't'),
|
|
|
|
|
|
|
|
//vertical
|
|
|
|
HB_TAG ('v', 'a', 'l', 't'),
|
|
|
|
HB_TAG ('v', 'e', 'r', 't'),
|
|
|
|
HB_TAG ('v', 'k', 'r', 'n'),
|
|
|
|
HB_TAG ('v', 'p', 'a', 'l'),
|
|
|
|
HB_TAG ('v', 'r', 't', '2'),
|
|
|
|
|
|
|
|
//ltr
|
|
|
|
HB_TAG ('l', 't', 'r', 'a'),
|
|
|
|
HB_TAG ('l', 't', 'r', 'm'),
|
|
|
|
|
|
|
|
//rtl
|
|
|
|
HB_TAG ('r', 't', 'l', 'a'),
|
|
|
|
HB_TAG ('r', 't', 'l', 'm'),
|
|
|
|
|
2022-06-03 13:35:19 +02:00
|
|
|
//random
|
|
|
|
HB_TAG ('r', 'a', 'n', 'd'),
|
|
|
|
|
2022-06-03 13:40:18 +02:00
|
|
|
//justify
|
|
|
|
HB_TAG ('j', 'a', 'l', 't'), // HarfBuzz doesn't use; others might
|
|
|
|
|
2022-06-03 13:35:19 +02:00
|
|
|
//private
|
|
|
|
HB_TAG ('H', 'a', 'r', 'f'),
|
|
|
|
HB_TAG ('H', 'A', 'R', 'F'),
|
|
|
|
HB_TAG ('B', 'u', 'z', 'z'),
|
|
|
|
HB_TAG ('B', 'U', 'Z', 'Z'),
|
|
|
|
|
2022-06-04 13:42:58 +02:00
|
|
|
//shapers
|
|
|
|
|
2021-05-20 02:33:46 +02:00
|
|
|
//arabic
|
|
|
|
HB_TAG ('i', 'n', 'i', 't'),
|
|
|
|
HB_TAG ('m', 'e', 'd', 'i'),
|
|
|
|
HB_TAG ('f', 'i', 'n', 'a'),
|
|
|
|
HB_TAG ('i', 's', 'o', 'l'),
|
|
|
|
HB_TAG ('m', 'e', 'd', '2'),
|
|
|
|
HB_TAG ('f', 'i', 'n', '2'),
|
|
|
|
HB_TAG ('f', 'i', 'n', '3'),
|
|
|
|
HB_TAG ('c', 's', 'w', 'h'),
|
|
|
|
HB_TAG ('m', 's', 'e', 't'),
|
|
|
|
HB_TAG ('s', 't', 'c', 'h'),
|
|
|
|
|
|
|
|
//hangul
|
|
|
|
HB_TAG ('l', 'j', 'm', 'o'),
|
|
|
|
HB_TAG ('v', 'j', 'm', 'o'),
|
|
|
|
HB_TAG ('t', 'j', 'm', 'o'),
|
|
|
|
|
|
|
|
//tibetan
|
|
|
|
HB_TAG ('a', 'b', 'v', 's'),
|
|
|
|
HB_TAG ('b', 'l', 'w', 's'),
|
|
|
|
HB_TAG ('a', 'b', 'v', 'm'),
|
|
|
|
HB_TAG ('b', 'l', 'w', 'm'),
|
|
|
|
|
|
|
|
//indic
|
|
|
|
HB_TAG ('n', 'u', 'k', 't'),
|
|
|
|
HB_TAG ('a', 'k', 'h', 'n'),
|
|
|
|
HB_TAG ('r', 'p', 'h', 'f'),
|
|
|
|
HB_TAG ('r', 'k', 'r', 'f'),
|
|
|
|
HB_TAG ('p', 'r', 'e', 'f'),
|
|
|
|
HB_TAG ('b', 'l', 'w', 'f'),
|
|
|
|
HB_TAG ('h', 'a', 'l', 'f'),
|
|
|
|
HB_TAG ('a', 'b', 'v', 'f'),
|
|
|
|
HB_TAG ('p', 's', 't', 'f'),
|
|
|
|
HB_TAG ('c', 'f', 'a', 'r'),
|
|
|
|
HB_TAG ('v', 'a', 't', 'u'),
|
|
|
|
HB_TAG ('c', 'j', 'c', 't'),
|
|
|
|
HB_TAG ('i', 'n', 'i', 't'),
|
|
|
|
HB_TAG ('p', 'r', 'e', 's'),
|
|
|
|
HB_TAG ('a', 'b', 'v', 's'),
|
|
|
|
HB_TAG ('b', 'l', 'w', 's'),
|
|
|
|
HB_TAG ('p', 's', 't', 's'),
|
|
|
|
HB_TAG ('h', 'a', 'l', 'n'),
|
|
|
|
HB_TAG ('d', 'i', 's', 't'),
|
|
|
|
HB_TAG ('a', 'b', 'v', 'm'),
|
|
|
|
HB_TAG ('b', 'l', 'w', 'm'),
|
|
|
|
};
|
|
|
|
|
2021-08-30 20:16:51 +02:00
|
|
|
input->sets.layout_features->add_array (default_layout_features, ARRAY_LENGTH (default_layout_features));
|
2021-08-26 01:51:26 +02:00
|
|
|
|
2022-06-30 23:00:48 +02:00
|
|
|
input->sets.layout_scripts->invert (); // Default to all scripts.
|
|
|
|
|
2021-08-26 01:51:26 +02:00
|
|
|
if (input->in_error ())
|
|
|
|
{
|
|
|
|
hb_subset_input_destroy (input);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-02-13 22:50:50 +01:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_reference: (skip)
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
2021-07-26 02:13:49 +02:00
|
|
|
* Increases the reference count on @input.
|
|
|
|
*
|
|
|
|
* Return value: @input.
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
hb_subset_input_t *
|
2021-06-28 21:57:39 +02:00
|
|
|
hb_subset_input_reference (hb_subset_input_t *input)
|
2018-02-13 22:50:50 +01:00
|
|
|
{
|
2021-06-28 21:57:39 +02:00
|
|
|
return hb_object_reference (input);
|
2018-02-13 22:50:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_destroy:
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
2021-07-26 02:13:49 +02:00
|
|
|
* Decreases the reference count on @input, and if it reaches zero, destroys
|
|
|
|
* @input, freeing all memory.
|
|
|
|
*
|
2018-02-13 22:50:50 +01:00
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
void
|
2021-06-28 21:57:39 +02:00
|
|
|
hb_subset_input_destroy (hb_subset_input_t *input)
|
2018-02-13 22:50:50 +01:00
|
|
|
{
|
2021-06-28 21:57:39 +02:00
|
|
|
if (!hb_object_destroy (input)) return;
|
2018-02-13 22:50:50 +01:00
|
|
|
|
2021-08-27 17:20:58 +02:00
|
|
|
for (hb_set_t* set : input->sets_iter ())
|
2021-08-26 01:51:26 +02:00
|
|
|
hb_set_destroy (set);
|
|
|
|
|
2022-06-30 18:36:19 +02:00
|
|
|
hb_hashmap_destroy (input->axes_location);
|
2022-06-22 04:29:52 +02:00
|
|
|
|
2022-11-15 00:06:39 +01:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2022-10-28 19:44:48 +02:00
|
|
|
if (input->name_table_overrides)
|
|
|
|
{
|
2022-11-10 19:33:26 +01:00
|
|
|
for (auto _ : *input->name_table_overrides)
|
|
|
|
_.second.fini ();
|
2022-10-28 19:44:48 +02:00
|
|
|
}
|
|
|
|
hb_hashmap_destroy (input->name_table_overrides);
|
2022-11-15 00:06:39 +01:00
|
|
|
#endif
|
2022-10-28 19:44:48 +02:00
|
|
|
|
2021-06-28 21:57:39 +02:00
|
|
|
hb_free (input);
|
2018-02-13 22:50:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_unicode_set:
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
2021-07-26 02:13:49 +02:00
|
|
|
* Gets the set of Unicode code points to retain, the caller should modify the
|
|
|
|
* set as needed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): pointer to the #hb_set_t of Unicode code
|
|
|
|
* points.
|
2021-06-23 22:55:11 +02:00
|
|
|
*
|
2018-02-13 22:50:50 +01:00
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
HB_EXTERN hb_set_t *
|
2021-06-28 21:57:39 +02:00
|
|
|
hb_subset_input_unicode_set (hb_subset_input_t *input)
|
2018-02-13 22:50:50 +01:00
|
|
|
{
|
2021-08-30 20:16:51 +02:00
|
|
|
return input->sets.unicodes;
|
2018-02-13 22:50:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_glyph_set:
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2018-02-13 22:50:50 +01:00
|
|
|
*
|
2021-07-26 02:13:49 +02:00
|
|
|
* Gets the set of glyph IDs to retain, the caller should modify the set as
|
|
|
|
* needed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): pointer to the #hb_set_t of glyph IDs.
|
2021-06-23 22:55:11 +02:00
|
|
|
*
|
2018-02-13 22:50:50 +01:00
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
HB_EXTERN hb_set_t *
|
2021-06-28 21:57:39 +02:00
|
|
|
hb_subset_input_glyph_set (hb_subset_input_t *input)
|
2018-02-13 22:50:50 +01:00
|
|
|
{
|
2021-08-30 20:16:51 +02:00
|
|
|
return input->sets.glyphs;
|
2018-02-13 22:50:50 +01:00
|
|
|
}
|
2018-02-22 07:23:05 +01:00
|
|
|
|
2021-08-26 01:51:26 +02:00
|
|
|
/**
|
|
|
|
* hb_subset_input_set:
|
|
|
|
* @input: a #hb_subset_input_t object.
|
|
|
|
* @set_type: a #hb_subset_sets_t set type.
|
|
|
|
*
|
|
|
|
* Gets the set of the specified type.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): pointer to the #hb_set_t of the specified type.
|
|
|
|
*
|
2021-09-07 13:46:08 +02:00
|
|
|
* Since: 2.9.1
|
2021-08-26 01:51:26 +02:00
|
|
|
**/
|
|
|
|
HB_EXTERN hb_set_t *
|
|
|
|
hb_subset_input_set (hb_subset_input_t *input, hb_subset_sets_t set_type)
|
|
|
|
{
|
2021-08-27 17:20:58 +02:00
|
|
|
return input->sets_iter () [set_type];
|
2019-05-16 20:29:15 +02:00
|
|
|
}
|
|
|
|
|
2021-06-23 22:55:11 +02:00
|
|
|
/**
|
2021-07-29 20:52:14 +02:00
|
|
|
* hb_subset_input_get_flags:
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2021-07-26 02:13:49 +02:00
|
|
|
*
|
2021-08-18 13:09:03 +02:00
|
|
|
* Gets all of the subsetting flags in the input object.
|
|
|
|
*
|
2021-07-30 00:25:41 +02:00
|
|
|
* Return value: the subsetting flags bit field.
|
2021-06-23 22:55:11 +02:00
|
|
|
*
|
2021-08-18 09:32:04 +02:00
|
|
|
* Since: 2.9.0
|
2021-06-23 22:55:11 +02:00
|
|
|
**/
|
2021-07-29 20:52:14 +02:00
|
|
|
HB_EXTERN hb_subset_flags_t
|
|
|
|
hb_subset_input_get_flags (hb_subset_input_t *input)
|
2021-06-09 20:09:14 +02:00
|
|
|
{
|
2021-07-30 00:25:41 +02:00
|
|
|
return (hb_subset_flags_t) input->flags;
|
2021-06-09 20:09:14 +02:00
|
|
|
}
|
|
|
|
|
2021-06-23 22:55:11 +02:00
|
|
|
/**
|
2021-07-29 20:52:14 +02:00
|
|
|
* hb_subset_input_set_flags:
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2021-07-30 00:25:41 +02:00
|
|
|
* @value: bit field of flags
|
2021-06-23 22:55:11 +02:00
|
|
|
*
|
2021-08-18 13:09:03 +02:00
|
|
|
* Sets all of the flags in the input object to the values specified by the bit
|
|
|
|
* field.
|
2021-06-23 22:55:11 +02:00
|
|
|
*
|
2021-08-18 09:32:04 +02:00
|
|
|
* Since: 2.9.0
|
2021-06-23 22:55:11 +02:00
|
|
|
**/
|
2021-06-09 20:09:14 +02:00
|
|
|
HB_EXTERN void
|
2021-07-29 20:52:14 +02:00
|
|
|
hb_subset_input_set_flags (hb_subset_input_t *input,
|
2021-07-30 00:25:41 +02:00
|
|
|
unsigned value)
|
2021-06-09 20:09:14 +02:00
|
|
|
{
|
2021-07-30 00:25:41 +02:00
|
|
|
input->flags = (hb_subset_flags_t) value;
|
2021-06-09 20:09:14 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 19:57:58 +02:00
|
|
|
/**
|
|
|
|
* hb_subset_input_set_user_data: (skip)
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2021-06-09 19:57:58 +02:00
|
|
|
* @key: The user-data key to set
|
|
|
|
* @data: A pointer to the user data
|
|
|
|
* @destroy: (nullable): A callback to call when @data is not needed anymore
|
|
|
|
* @replace: Whether to replace an existing data with the same key
|
|
|
|
*
|
|
|
|
* Attaches a user-data key/data pair to the given subset input object.
|
|
|
|
*
|
2022-06-30 08:43:57 +02:00
|
|
|
* Return value: `true` if success, `false` otherwise
|
2021-06-09 19:57:58 +02:00
|
|
|
*
|
2021-08-18 09:32:04 +02:00
|
|
|
* Since: 2.9.0
|
2021-06-09 19:57:58 +02:00
|
|
|
**/
|
|
|
|
hb_bool_t
|
|
|
|
hb_subset_input_set_user_data (hb_subset_input_t *input,
|
2021-06-09 21:54:14 +02:00
|
|
|
hb_user_data_key_t *key,
|
|
|
|
void * data,
|
|
|
|
hb_destroy_func_t destroy,
|
|
|
|
hb_bool_t replace)
|
2021-06-09 19:57:58 +02:00
|
|
|
{
|
|
|
|
return hb_object_set_user_data (input, key, data, destroy, replace);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_get_user_data: (skip)
|
2021-07-23 01:45:48 +02:00
|
|
|
* @input: a #hb_subset_input_t object.
|
2021-06-09 19:57:58 +02:00
|
|
|
* @key: The user-data key to query
|
|
|
|
*
|
|
|
|
* Fetches the user data associated with the specified key,
|
|
|
|
* attached to the specified subset input object.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): A pointer to the user data
|
|
|
|
*
|
2021-08-18 09:32:04 +02:00
|
|
|
* Since: 2.9.0
|
2021-06-09 19:57:58 +02:00
|
|
|
**/
|
|
|
|
void *
|
|
|
|
hb_subset_input_get_user_data (const hb_subset_input_t *input,
|
2021-06-09 21:54:14 +02:00
|
|
|
hb_user_data_key_t *key)
|
2021-06-09 19:57:58 +02:00
|
|
|
{
|
|
|
|
return hb_object_get_user_data (input, key);
|
|
|
|
}
|
2022-06-22 04:29:52 +02:00
|
|
|
|
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
|
|
|
#ifndef HB_NO_VAR
|
|
|
|
/**
|
|
|
|
* hb_subset_input_pin_axis_to_default: (skip)
|
|
|
|
* @input: a #hb_subset_input_t object.
|
|
|
|
* @axis_tag: Tag of the axis to be pinned
|
|
|
|
*
|
|
|
|
* Pin an axis to its default location in the given subset input object.
|
|
|
|
*
|
|
|
|
* Return value: `true` if success, `false` otherwise
|
|
|
|
*
|
2022-09-17 03:15:51 +02:00
|
|
|
* Since: EXPERIMENTAL
|
2022-06-22 04:29:52 +02:00
|
|
|
**/
|
2022-10-14 21:38:19 +02:00
|
|
|
HB_EXTERN hb_bool_t
|
2022-06-22 04:29:52 +02:00
|
|
|
hb_subset_input_pin_axis_to_default (hb_subset_input_t *input,
|
|
|
|
hb_face_t *face,
|
|
|
|
hb_tag_t axis_tag)
|
|
|
|
{
|
|
|
|
hb_ot_var_axis_info_t axis_info;
|
|
|
|
if (!hb_ot_var_find_axis_info (face, axis_tag, &axis_info))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return input->axes_location->set (axis_tag, axis_info.default_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_subset_input_pin_axis_location: (skip)
|
|
|
|
* @input: a #hb_subset_input_t object.
|
|
|
|
* @axis_tag: Tag of the axis to be pinned
|
|
|
|
* @axis_value: Location on the axis to be pinned at
|
|
|
|
*
|
|
|
|
* Pin an axis to a fixed location in the given subset input object.
|
|
|
|
*
|
|
|
|
* Return value: `true` if success, `false` otherwise
|
|
|
|
*
|
2022-09-17 03:15:51 +02:00
|
|
|
* Since: EXPERIMENTAL
|
2022-06-22 04:29:52 +02:00
|
|
|
**/
|
2022-10-14 21:38:19 +02:00
|
|
|
HB_EXTERN hb_bool_t
|
2022-06-22 04:29:52 +02:00
|
|
|
hb_subset_input_pin_axis_location (hb_subset_input_t *input,
|
|
|
|
hb_face_t *face,
|
|
|
|
hb_tag_t axis_tag,
|
|
|
|
float axis_value)
|
|
|
|
{
|
|
|
|
hb_ot_var_axis_info_t axis_info;
|
|
|
|
if (!hb_ot_var_find_axis_info (face, axis_tag, &axis_info))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
float val = hb_clamp(axis_value, axis_info.min_value, axis_info.max_value);
|
|
|
|
return input->axes_location->set (axis_tag, val);
|
|
|
|
}
|
|
|
|
#endif
|
2022-10-14 21:38:19 +02:00
|
|
|
#endif
|
2022-10-14 01:42:00 +02:00
|
|
|
|
2022-10-14 21:38:19 +02:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2022-10-14 01:42:00 +02:00
|
|
|
/**
|
|
|
|
* hb_subset_preprocess
|
|
|
|
* @input: a #hb_face_t object.
|
|
|
|
*
|
|
|
|
* Preprocesses the face and attaches data that will be needed by the
|
|
|
|
* subsetter. Future subsetting operations can then use the precomputed data
|
|
|
|
* to speed up the subsetting operation.
|
|
|
|
*
|
|
|
|
* Since: EXPERIMENTAL
|
|
|
|
**/
|
|
|
|
|
2022-10-14 20:30:39 +02:00
|
|
|
HB_EXTERN hb_face_t *
|
2022-10-14 01:42:00 +02:00
|
|
|
hb_subset_preprocess (hb_face_t *source)
|
|
|
|
{
|
|
|
|
hb_subset_input_t* input = hb_subset_input_create_or_fail ();
|
|
|
|
|
|
|
|
hb_set_clear (hb_subset_input_set(input, HB_SUBSET_SETS_UNICODE));
|
|
|
|
hb_set_invert (hb_subset_input_set(input, HB_SUBSET_SETS_UNICODE));
|
|
|
|
|
2022-11-23 23:51:16 +01:00
|
|
|
hb_set_clear (hb_subset_input_set(input, HB_SUBSET_SETS_GLYPH_INDEX));
|
|
|
|
hb_set_invert (hb_subset_input_set(input, HB_SUBSET_SETS_GLYPH_INDEX));
|
|
|
|
|
2022-10-14 01:42:00 +02:00
|
|
|
hb_set_clear (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_LAYOUT_FEATURE_TAG));
|
|
|
|
hb_set_invert (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_LAYOUT_FEATURE_TAG));
|
|
|
|
|
|
|
|
hb_set_clear (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_LAYOUT_SCRIPT_TAG));
|
|
|
|
hb_set_invert (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_LAYOUT_SCRIPT_TAG));
|
|
|
|
|
|
|
|
hb_set_clear (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_NAME_ID));
|
|
|
|
hb_set_invert (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_NAME_ID));
|
|
|
|
|
2022-11-23 23:33:57 +01:00
|
|
|
hb_set_clear (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_NAME_LANG_ID));
|
|
|
|
hb_set_invert (hb_subset_input_set(input,
|
|
|
|
HB_SUBSET_SETS_NAME_LANG_ID));
|
|
|
|
|
2022-10-14 01:42:00 +02:00
|
|
|
hb_subset_input_set_flags(input,
|
|
|
|
HB_SUBSET_FLAGS_NOTDEF_OUTLINE |
|
|
|
|
HB_SUBSET_FLAGS_GLYPH_NAMES |
|
|
|
|
HB_SUBSET_FLAGS_RETAIN_GIDS);
|
|
|
|
input->attach_accelerator_data = true;
|
|
|
|
|
2022-11-23 19:41:23 +01:00
|
|
|
// Always use long loca in the preprocessed version. This allows
|
|
|
|
// us to store the glyph bytes unpadded which allows the future subset
|
|
|
|
// operation to run faster by skipping the trim padding step.
|
|
|
|
input->force_long_loca = true;
|
|
|
|
|
2022-10-14 01:42:00 +02:00
|
|
|
hb_face_t* new_source = hb_subset_or_fail (source, input);
|
|
|
|
hb_subset_input_destroy (input);
|
|
|
|
|
|
|
|
return new_source;
|
|
|
|
}
|
2022-11-15 00:06:39 +01:00
|
|
|
#endif
|
2022-10-28 19:44:48 +02:00
|
|
|
|
2022-11-15 00:06:39 +01:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2022-10-28 19:44:48 +02:00
|
|
|
/**
|
|
|
|
* hb_subset_input_override_name_table:
|
|
|
|
* @input: a #hb_subset_input_t object.
|
|
|
|
* @name_id: name_id of a nameRecord
|
2022-11-10 19:33:26 +01:00
|
|
|
* @platform_id: platform ID of a nameRecord
|
|
|
|
* @encoding_id: encoding ID of a nameRecord
|
|
|
|
* @language_id: language ID of a nameRecord
|
2022-10-28 19:44:48 +02:00
|
|
|
* @name_str: pointer to name string new value or null to indicate should remove
|
|
|
|
* @str_len: the size of @name_str, or -1 if it is `NULL`-terminated
|
|
|
|
*
|
2022-11-10 19:33:26 +01:00
|
|
|
* Override the name string of the NameRecord identified by name_id,
|
|
|
|
* platform_id, encoding_id and language_id. If a record with that name_id
|
|
|
|
* doesn't exist, create it and insert to the name table.
|
|
|
|
*
|
|
|
|
* Note: for mac platform, we only support name_str with all ascii characters,
|
|
|
|
* name_str with non-ascii characters will be ignored.
|
|
|
|
*
|
2022-10-28 19:44:48 +02:00
|
|
|
* Since: EXPERIMENTAL
|
|
|
|
**/
|
2022-11-10 19:33:26 +01:00
|
|
|
HB_EXTERN hb_bool_t
|
2022-10-28 19:44:48 +02:00
|
|
|
hb_subset_input_override_name_table (hb_subset_input_t *input,
|
|
|
|
hb_ot_name_id_t name_id,
|
2022-11-10 19:33:26 +01:00
|
|
|
unsigned platform_id,
|
|
|
|
unsigned encoding_id,
|
|
|
|
unsigned language_id,
|
2022-10-28 19:44:48 +02:00
|
|
|
const char *name_str,
|
|
|
|
int str_len /* -1 means nul-terminated */)
|
|
|
|
{
|
|
|
|
if (!name_str)
|
|
|
|
{
|
2022-11-10 19:33:26 +01:00
|
|
|
str_len = 0;
|
2022-10-28 19:44:48 +02:00
|
|
|
}
|
2022-11-10 19:33:26 +01:00
|
|
|
else if (str_len == -1)
|
2022-10-28 19:44:48 +02:00
|
|
|
{
|
2022-11-10 19:33:26 +01:00
|
|
|
str_len = strlen (name_str);
|
2022-10-28 19:44:48 +02:00
|
|
|
}
|
|
|
|
|
2022-11-10 19:33:26 +01:00
|
|
|
hb_bytes_t name_bytes (nullptr, 0);
|
|
|
|
if (str_len)
|
|
|
|
{
|
|
|
|
if (platform_id == 1)
|
|
|
|
{
|
|
|
|
const uint8_t *src = reinterpret_cast<const uint8_t*> (name_str);
|
|
|
|
const uint8_t *src_end = src + str_len;
|
|
|
|
|
|
|
|
hb_codepoint_t unicode;
|
|
|
|
const hb_codepoint_t replacement = HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT;
|
|
|
|
while (src < src_end)
|
|
|
|
{
|
|
|
|
src = hb_utf8_t::next (src, src_end, &unicode, replacement);
|
|
|
|
if (unicode >= 0x0080u)
|
|
|
|
{
|
|
|
|
printf ("Non-ascii character detected, ignored...This API supports acsii characters only for mac platform\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
char *override_name = (char *) hb_malloc (str_len);
|
|
|
|
if (unlikely (!override_name)) return false;
|
|
|
|
|
|
|
|
hb_memcpy (override_name, name_str, str_len);
|
|
|
|
name_bytes = hb_bytes_t (override_name, str_len);
|
|
|
|
}
|
|
|
|
input->name_table_overrides->set (hb_ot_name_record_ids_t (platform_id, encoding_id, language_id, name_id), name_bytes);
|
|
|
|
return true;
|
2022-10-28 19:44:48 +02:00
|
|
|
}
|
|
|
|
|
2022-06-22 04:29:52 +02:00
|
|
|
#endif
|