2018-02-06 00:22:30 +01:00
|
|
|
/*
|
2018-02-10 20:37:28 +01:00
|
|
|
* Copyright © 2018 Google, Inc.
|
2018-02-06 00:22:30 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2018-02-09 04:22:47 +01:00
|
|
|
* Google Author(s): Garret Rieger, Roderick Sheeter
|
2018-02-06 00:22:30 +01:00
|
|
|
*/
|
|
|
|
|
2018-02-09 00:11:15 +01:00
|
|
|
#ifndef HB_SUBSET_PLAN_HH
|
|
|
|
#define HB_SUBSET_PLAN_HH
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2018-02-09 00:11:15 +01:00
|
|
|
|
2018-02-19 20:49:25 +01:00
|
|
|
#include "hb-subset.h"
|
2018-08-31 22:25:19 +02:00
|
|
|
#include "hb-subset-input.hh"
|
2022-10-13 23:12:22 +02:00
|
|
|
#include "hb-subset-accelerator.hh"
|
2018-02-19 20:49:25 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-map.hh"
|
2022-08-01 20:37:47 +02:00
|
|
|
#include "hb-bimap.hh"
|
2019-01-26 03:03:47 +01:00
|
|
|
#include "hb-set.hh"
|
2018-02-06 02:26:25 +01:00
|
|
|
|
2022-09-09 18:36:19 +02:00
|
|
|
namespace OT {
|
|
|
|
struct Feature;
|
|
|
|
}
|
|
|
|
|
2023-01-18 00:16:17 +01:00
|
|
|
struct head_maxp_info_t
|
|
|
|
{
|
|
|
|
head_maxp_info_t ()
|
|
|
|
:xMin (0x7FFF), xMax (-0x7FFF), yMin (0x7FFF), yMax (-0x7FFF),
|
|
|
|
maxPoints (0), maxContours (0),
|
|
|
|
maxCompositePoints (0),
|
|
|
|
maxCompositeContours (0),
|
|
|
|
maxComponentElements (0),
|
2023-01-25 20:01:08 +01:00
|
|
|
maxComponentDepth (0),
|
|
|
|
allXMinIsLsb (true) {}
|
2023-01-18 00:16:17 +01:00
|
|
|
|
|
|
|
int xMin;
|
|
|
|
int xMax;
|
|
|
|
int yMin;
|
|
|
|
int yMax;
|
|
|
|
unsigned maxPoints;
|
|
|
|
unsigned maxContours;
|
|
|
|
unsigned maxCompositePoints;
|
|
|
|
unsigned maxCompositeContours;
|
|
|
|
unsigned maxComponentElements;
|
|
|
|
unsigned maxComponentDepth;
|
2023-01-25 20:01:08 +01:00
|
|
|
bool allXMinIsLsb;
|
2023-01-18 00:16:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct head_maxp_info_t head_maxp_info_t;
|
|
|
|
|
2018-06-03 05:30:09 +02:00
|
|
|
struct hb_subset_plan_t
|
|
|
|
{
|
2023-01-12 20:53:46 +01:00
|
|
|
HB_INTERNAL hb_subset_plan_t (hb_face_t *,
|
|
|
|
const hb_subset_input_t *input);
|
|
|
|
|
2022-08-18 23:05:48 +02:00
|
|
|
~hb_subset_plan_t()
|
|
|
|
{
|
|
|
|
hb_face_destroy (source);
|
|
|
|
hb_face_destroy (dest);
|
2023-01-11 20:28:18 +01:00
|
|
|
|
2022-08-18 23:05:48 +02:00
|
|
|
hb_map_destroy (codepoint_to_glyph);
|
|
|
|
hb_map_destroy (glyph_map);
|
|
|
|
hb_map_destroy (reverse_glyph_map);
|
2023-01-11 20:28:18 +01:00
|
|
|
|
2022-11-15 00:06:39 +01:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2023-01-11 20:38:26 +01:00
|
|
|
for (auto _ : name_table_overrides)
|
|
|
|
_.second.fini ();
|
2022-11-15 00:06:39 +01:00
|
|
|
#endif
|
2022-10-28 19:44:48 +02:00
|
|
|
|
2022-11-23 21:24:40 +01:00
|
|
|
if (inprogress_accelerator)
|
|
|
|
hb_subset_accelerator_t::destroy ((void*) inprogress_accelerator);
|
2022-08-18 23:05:48 +02:00
|
|
|
}
|
|
|
|
|
2018-02-06 02:26:25 +01:00
|
|
|
hb_object_header_t header;
|
|
|
|
|
2021-07-30 00:07:13 +02:00
|
|
|
bool successful;
|
2021-07-30 00:25:41 +02:00
|
|
|
unsigned flags;
|
2022-10-14 01:42:00 +02:00
|
|
|
bool attach_accelerator_data = false;
|
2022-11-23 19:41:23 +01:00
|
|
|
bool force_long_loca = false;
|
2018-02-21 20:19:18 +01:00
|
|
|
|
2018-05-30 21:23:51 +02:00
|
|
|
// For each cp that we'd like to retain maps to the corresponding gid.
|
2023-01-11 20:27:19 +01:00
|
|
|
hb_set_t unicodes;
|
2022-12-03 00:25:26 +01:00
|
|
|
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> unicode_to_new_gid_list;
|
2018-02-16 19:27:03 +01:00
|
|
|
|
2019-05-16 20:29:15 +02:00
|
|
|
// name_ids we would like to retain
|
2023-01-11 18:47:40 +01:00
|
|
|
hb_set_t name_ids;
|
2019-04-05 19:05:55 +02:00
|
|
|
|
2020-01-21 22:37:28 +01:00
|
|
|
// name_languages we would like to retain
|
2023-01-11 18:45:02 +01:00
|
|
|
hb_set_t name_languages;
|
2020-01-21 22:37:28 +01:00
|
|
|
|
2021-05-20 02:33:46 +02:00
|
|
|
//layout features which will be preserved
|
2023-01-11 18:43:01 +01:00
|
|
|
hb_set_t layout_features;
|
2021-05-20 02:33:46 +02:00
|
|
|
|
2022-06-30 22:03:33 +02:00
|
|
|
// layout scripts which will be preserved.
|
2023-01-11 18:40:54 +01:00
|
|
|
hb_set_t layout_scripts;
|
2022-06-30 22:03:33 +02:00
|
|
|
|
2020-04-23 00:58:41 +02:00
|
|
|
//glyph ids requested to retain
|
2023-01-11 19:23:48 +01:00
|
|
|
hb_set_t glyphs_requested;
|
2020-04-23 00:58:41 +02:00
|
|
|
|
2021-06-10 02:46:47 +02:00
|
|
|
// Tables which should not be processed, just pass them through.
|
2023-01-11 19:22:22 +01:00
|
|
|
hb_set_t no_subset_tables;
|
2021-06-10 02:46:47 +02:00
|
|
|
|
2019-05-16 20:29:15 +02:00
|
|
|
// Tables which should be dropped.
|
2023-01-11 19:21:17 +01:00
|
|
|
hb_set_t drop_tables;
|
2019-05-16 20:29:15 +02:00
|
|
|
|
2019-01-19 03:33:21 +01:00
|
|
|
// The glyph subset
|
2023-01-11 19:44:09 +01:00
|
|
|
hb_map_t *codepoint_to_glyph; // Needs to be heap-allocated
|
2019-01-19 03:33:21 +01:00
|
|
|
|
|
|
|
// Old -> New glyph id mapping
|
2023-01-11 19:44:09 +01:00
|
|
|
hb_map_t *glyph_map; // Needs to be heap-allocated
|
|
|
|
hb_map_t *reverse_glyph_map; // Needs to be heap-allocated
|
2023-01-11 19:27:22 +01:00
|
|
|
hb_map_t glyph_map_gsub;
|
2018-02-14 23:16:25 +01:00
|
|
|
|
|
|
|
// Plan is only good for a specific source/dest so keep them with it
|
|
|
|
hb_face_t *source;
|
|
|
|
hb_face_t *dest;
|
2018-05-30 21:23:51 +02:00
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
unsigned int _num_output_glyphs;
|
2023-01-11 19:00:02 +01:00
|
|
|
hb_set_t _glyphset;
|
2023-01-11 19:01:11 +01:00
|
|
|
hb_set_t _glyphset_gsub;
|
2023-01-11 19:03:19 +01:00
|
|
|
hb_set_t _glyphset_mathed;
|
2023-01-11 19:04:17 +01:00
|
|
|
hb_set_t _glyphset_colred;
|
2019-01-26 03:03:47 +01:00
|
|
|
|
2019-10-23 01:00:43 +02:00
|
|
|
//active lookups we'd like to retain
|
2023-01-11 18:56:16 +01:00
|
|
|
hb_map_t gsub_lookups;
|
|
|
|
hb_map_t gpos_lookups;
|
2019-10-23 01:00:43 +02:00
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
//active langsys we'd like to retain
|
2023-01-11 19:07:31 +01:00
|
|
|
hb_hashmap_t<unsigned, hb::unique_ptr<hb_set_t>> gsub_langsys;
|
|
|
|
hb_hashmap_t<unsigned, hb::unique_ptr<hb_set_t>> gpos_langsys;
|
2021-01-29 00:21:26 +01:00
|
|
|
|
|
|
|
//active features after removing redundant langsys and prune_features
|
2023-01-11 18:51:48 +01:00
|
|
|
hb_map_t gsub_features;
|
|
|
|
hb_map_t gpos_features;
|
2019-10-31 23:59:02 +01:00
|
|
|
|
2022-09-09 18:36:19 +02:00
|
|
|
//active feature variation records/condition index with variations
|
2023-01-11 19:10:28 +01:00
|
|
|
hb_hashmap_t<unsigned, hb::shared_ptr<hb_set_t>> gsub_feature_record_cond_idx_map;
|
|
|
|
hb_hashmap_t<unsigned, hb::shared_ptr<hb_set_t>> gpos_feature_record_cond_idx_map;
|
2022-09-09 18:36:19 +02:00
|
|
|
|
|
|
|
//feature index-> address of substituation feature table mapping with
|
|
|
|
//variations
|
2023-01-11 19:12:07 +01:00
|
|
|
hb_hashmap_t<unsigned, const OT::Feature*> gsub_feature_substitutes_map;
|
|
|
|
hb_hashmap_t<unsigned, const OT::Feature*> gpos_feature_substitutes_map;
|
2022-09-09 18:36:19 +02:00
|
|
|
|
2021-04-01 21:01:19 +02:00
|
|
|
//active layers/palettes we'd like to retain
|
2023-01-11 19:15:15 +01:00
|
|
|
hb_map_t colrv1_layers;
|
2023-01-11 19:16:18 +01:00
|
|
|
hb_map_t colr_palettes;
|
2021-04-01 21:01:19 +02:00
|
|
|
|
2022-08-01 20:37:47 +02:00
|
|
|
//Old layout item variation index -> (New varidx, delta) mapping
|
2023-01-11 19:20:04 +01:00
|
|
|
hb_hashmap_t<unsigned, hb_pair_t<unsigned, int>> layout_variation_idx_delta_map;
|
2022-08-01 20:37:47 +02:00
|
|
|
|
|
|
|
//gdef varstore retained varidx mapping
|
|
|
|
hb_vector_t<hb_inc_bimap_t> gdef_varstore_inner_maps;
|
2020-02-26 22:11:42 +01:00
|
|
|
|
2023-01-11 19:13:49 +01:00
|
|
|
hb_hashmap_t<hb_tag_t, hb::unique_ptr<hb_blob_t>> sanitized_table_cache;
|
2022-06-22 04:29:52 +02:00
|
|
|
//normalized axes location map
|
2023-01-11 20:32:04 +01:00
|
|
|
hb_hashmap_t<hb_tag_t, int> axes_location;
|
2023-01-06 19:01:25 +01:00
|
|
|
hb_vector_t<int> normalized_coords;
|
2022-06-30 18:36:19 +02:00
|
|
|
//user specified axes location map
|
2023-01-11 20:36:54 +01:00
|
|
|
hb_hashmap_t<hb_tag_t, float> user_axes_location;
|
2022-08-08 22:47:39 +02:00
|
|
|
//retained old axis index -> new axis index mapping in fvar axis array
|
2023-01-11 20:33:25 +01:00
|
|
|
hb_map_t axes_index_map;
|
2022-08-08 22:47:39 +02:00
|
|
|
//axis_index->axis_tag mapping in fvar axis array
|
2023-01-11 20:29:25 +01:00
|
|
|
hb_map_t axes_old_index_tag_map;
|
2022-06-22 04:29:52 +02:00
|
|
|
bool all_axes_pinned;
|
2022-07-22 18:37:09 +02:00
|
|
|
bool pinned_at_default;
|
2022-11-22 00:09:39 +01:00
|
|
|
bool has_seac;
|
2022-07-22 18:37:09 +02:00
|
|
|
|
|
|
|
//hmtx metrics map: new gid->(advance, lsb)
|
2023-01-11 20:24:35 +01:00
|
|
|
mutable hb_hashmap_t<hb_codepoint_t, hb_pair_t<unsigned, int>> hmtx_map;
|
2022-07-22 18:37:09 +02:00
|
|
|
//vmtx metrics map: new gid->(advance, lsb)
|
2023-01-11 20:24:35 +01:00
|
|
|
mutable hb_hashmap_t<hb_codepoint_t, hb_pair_t<unsigned, int>> vmtx_map;
|
2023-01-13 20:42:58 +01:00
|
|
|
//boundsWidth map: new gid->boundsWidth, boundWidth=xMax - xMin
|
|
|
|
mutable hb_map_t bounds_width_map;
|
|
|
|
//boundsHeight map: new gid->boundsHeight, boundsHeight=yMax - yMin
|
|
|
|
mutable hb_map_t bounds_height_map;
|
2022-07-07 22:16:16 +02:00
|
|
|
|
2023-01-18 00:16:17 +01:00
|
|
|
//recalculated head/maxp table info after instancing
|
|
|
|
mutable head_maxp_info_t head_maxp_info;
|
|
|
|
|
2022-11-15 00:06:39 +01:00
|
|
|
#ifdef HB_EXPERIMENTAL_API
|
2022-11-10 19:33:26 +01:00
|
|
|
// name table overrides map: hb_ot_name_record_ids_t-> name string new value or
|
|
|
|
// None to indicate should remove
|
2023-01-11 20:38:26 +01:00
|
|
|
hb_hashmap_t<hb_ot_name_record_ids_t, hb_bytes_t> name_table_overrides;
|
2022-11-15 00:06:39 +01:00
|
|
|
#endif
|
2022-10-28 19:44:48 +02:00
|
|
|
|
2022-10-13 23:12:22 +02:00
|
|
|
const hb_subset_accelerator_t* accelerator;
|
2022-11-23 21:24:40 +01:00
|
|
|
hb_subset_accelerator_t* inprogress_accelerator;
|
2022-10-13 23:12:22 +02:00
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
public:
|
|
|
|
|
2022-07-07 22:16:16 +02:00
|
|
|
template<typename T>
|
|
|
|
hb_blob_ptr_t<T> source_table()
|
|
|
|
{
|
2023-03-17 01:58:58 +01:00
|
|
|
hb_lock_t lock (accelerator ? &accelerator->sanitized_table_cache_lock : nullptr);
|
2022-11-29 21:49:15 +01:00
|
|
|
|
2023-01-11 19:13:49 +01:00
|
|
|
auto *cache = accelerator ? &accelerator->sanitized_table_cache : &sanitized_table_cache;
|
2022-11-29 21:49:15 +01:00
|
|
|
if (cache
|
|
|
|
&& !cache->in_error ()
|
|
|
|
&& cache->has (+T::tableTag)) {
|
|
|
|
return hb_blob_reference (cache->get (+T::tableTag).get ());
|
2022-07-07 22:16:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hb::unique_ptr<hb_blob_t> table_blob {hb_sanitize_context_t ().reference_table<T> (source)};
|
|
|
|
hb_blob_t* ret = hb_blob_reference (table_blob.get ());
|
|
|
|
|
2022-11-29 21:49:15 +01:00
|
|
|
if (likely (cache))
|
|
|
|
cache->set (+T::tableTag, std::move (table_blob));
|
2022-07-07 22:16:16 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-07-29 06:03:32 +02:00
|
|
|
bool in_error () const { return !successful; }
|
2020-07-29 03:31:46 +02:00
|
|
|
|
2020-07-30 22:45:04 +02:00
|
|
|
bool check_success(bool success)
|
|
|
|
{
|
|
|
|
successful = (successful && success);
|
|
|
|
return successful;
|
|
|
|
}
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
/*
|
|
|
|
* The set of input glyph ids which will be retained in the subset.
|
2019-05-08 23:43:18 +02:00
|
|
|
* Does NOT include ids kept due to retain_gids. You probably want to use
|
|
|
|
* glyph_map/reverse_glyph_map.
|
2019-01-26 03:03:47 +01:00
|
|
|
*/
|
|
|
|
inline const hb_set_t *
|
|
|
|
glyphset () const
|
|
|
|
{
|
2023-01-11 19:00:02 +01:00
|
|
|
return &_glyphset;
|
2019-01-26 03:03:47 +01:00
|
|
|
}
|
|
|
|
|
2019-05-21 00:04:20 +02:00
|
|
|
/*
|
|
|
|
* The set of input glyph ids which will be retained in the subset.
|
|
|
|
*/
|
|
|
|
inline const hb_set_t *
|
|
|
|
glyphset_gsub () const
|
|
|
|
{
|
2023-01-11 19:01:11 +01:00
|
|
|
return &_glyphset_gsub;
|
2019-05-21 00:04:20 +02:00
|
|
|
}
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
/*
|
|
|
|
* The total number of output glyphs in the final subset.
|
|
|
|
*/
|
|
|
|
inline unsigned int
|
2019-01-29 01:15:06 +01:00
|
|
|
num_output_glyphs () const
|
2019-01-26 03:03:47 +01:00
|
|
|
{
|
|
|
|
return _num_output_glyphs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given an output gid , returns true if that glyph id is an empty
|
|
|
|
* glyph (ie. it's a gid that we are dropping all data for).
|
|
|
|
*/
|
|
|
|
inline bool is_empty_glyph (hb_codepoint_t gid) const
|
|
|
|
{
|
2023-01-11 19:00:02 +01:00
|
|
|
return !_glyphset.has (gid);
|
2019-01-26 03:03:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool new_gid_for_codepoint (hb_codepoint_t codepoint,
|
2019-08-24 15:27:14 +02:00
|
|
|
hb_codepoint_t *new_gid) const
|
2018-05-30 21:23:51 +02:00
|
|
|
{
|
|
|
|
hb_codepoint_t old_gid = codepoint_to_glyph->get (codepoint);
|
|
|
|
if (old_gid == HB_MAP_VALUE_INVALID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return new_gid_for_old_gid (old_gid, new_gid);
|
|
|
|
}
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
inline bool new_gid_for_old_gid (hb_codepoint_t old_gid,
|
2019-08-24 15:27:14 +02:00
|
|
|
hb_codepoint_t *new_gid) const
|
2018-05-30 21:23:51 +02:00
|
|
|
{
|
|
|
|
hb_codepoint_t gid = glyph_map->get (old_gid);
|
|
|
|
if (gid == HB_MAP_VALUE_INVALID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*new_gid = gid;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
inline bool old_gid_for_new_gid (hb_codepoint_t new_gid,
|
2019-08-24 15:27:14 +02:00
|
|
|
hb_codepoint_t *old_gid) const
|
2019-01-19 03:33:21 +01:00
|
|
|
{
|
|
|
|
hb_codepoint_t gid = reverse_glyph_map->get (new_gid);
|
|
|
|
if (gid == HB_MAP_VALUE_INVALID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*old_gid = gid;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
inline bool
|
2018-05-30 21:23:51 +02:00
|
|
|
add_table (hb_tag_t tag,
|
2018-11-15 20:40:56 +01:00
|
|
|
hb_blob_t *contents)
|
2018-05-30 21:23:51 +02:00
|
|
|
{
|
2021-02-12 22:14:17 +01:00
|
|
|
if (HB_DEBUG_SUBSET)
|
|
|
|
{
|
|
|
|
hb_blob_t *source_blob = source->reference_table (tag);
|
2023-01-13 01:04:24 +01:00
|
|
|
DEBUG_MSG(SUBSET, nullptr, "add table %c%c%c%c, dest %u bytes, source %u bytes",
|
2021-02-12 22:14:17 +01:00
|
|
|
HB_UNTAG(tag),
|
|
|
|
hb_blob_get_length (contents),
|
|
|
|
hb_blob_get_length (source_blob));
|
|
|
|
hb_blob_destroy (source_blob);
|
|
|
|
}
|
2018-08-25 17:18:53 +02:00
|
|
|
return hb_face_builder_add_table (dest, tag, contents);
|
2018-05-30 21:23:51 +02:00
|
|
|
}
|
2018-02-06 02:26:25 +01:00
|
|
|
};
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-02-08 01:30:07 +01:00
|
|
|
#endif /* HB_SUBSET_PLAN_HH */
|