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"
|
2018-02-19 20:49:25 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-map.hh"
|
2019-01-26 03:03:47 +01:00
|
|
|
#include "hb-set.hh"
|
2018-02-06 02:26:25 +01:00
|
|
|
|
2018-06-03 05:30:09 +02:00
|
|
|
struct hb_subset_plan_t
|
|
|
|
{
|
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;
|
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.
|
|
|
|
hb_set_t *unicodes;
|
2018-02-16 19:27:03 +01:00
|
|
|
|
2019-05-16 20:29:15 +02:00
|
|
|
// name_ids we would like to retain
|
2019-04-05 19:05:55 +02:00
|
|
|
hb_set_t *name_ids;
|
|
|
|
|
2020-01-21 22:37:28 +01:00
|
|
|
// name_languages we would like to retain
|
|
|
|
hb_set_t *name_languages;
|
|
|
|
|
2021-05-20 02:33:46 +02:00
|
|
|
//layout features which will be preserved
|
|
|
|
hb_set_t *layout_features;
|
|
|
|
|
2020-04-23 00:58:41 +02:00
|
|
|
//glyph ids requested to retain
|
|
|
|
hb_set_t *glyphs_requested;
|
|
|
|
|
2021-06-10 02:46:47 +02:00
|
|
|
// Tables which should not be processed, just pass them through.
|
|
|
|
hb_set_t *no_subset_tables;
|
|
|
|
|
2019-05-16 20:29:15 +02:00
|
|
|
// Tables which should be dropped.
|
|
|
|
hb_set_t *drop_tables;
|
|
|
|
|
2019-01-19 03:33:21 +01:00
|
|
|
// The glyph subset
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_map_t *codepoint_to_glyph;
|
2019-01-19 03:33:21 +01:00
|
|
|
|
|
|
|
// Old -> New glyph id mapping
|
2018-05-30 21:23:51 +02:00
|
|
|
hb_map_t *glyph_map;
|
2019-01-19 03:33:21 +01:00
|
|
|
hb_map_t *reverse_glyph_map;
|
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;
|
|
|
|
hb_set_t *_glyphset;
|
2019-05-21 00:04:20 +02:00
|
|
|
hb_set_t *_glyphset_gsub;
|
2019-01-26 03:03:47 +01:00
|
|
|
|
2019-10-23 01:00:43 +02:00
|
|
|
//active lookups we'd like to retain
|
|
|
|
hb_map_t *gsub_lookups;
|
|
|
|
hb_map_t *gpos_lookups;
|
|
|
|
|
2021-01-29 00:21:26 +01:00
|
|
|
//active langsys we'd like to retain
|
|
|
|
hb_hashmap_t<unsigned, hb_set_t *, (unsigned)-1, nullptr> *gsub_langsys;
|
|
|
|
hb_hashmap_t<unsigned, hb_set_t *, (unsigned)-1, nullptr> *gpos_langsys;
|
|
|
|
|
|
|
|
//active features after removing redundant langsys and prune_features
|
2019-10-31 23:59:02 +01:00
|
|
|
hb_map_t *gsub_features;
|
|
|
|
hb_map_t *gpos_features;
|
|
|
|
|
2021-04-01 21:01:19 +02:00
|
|
|
//active layers/palettes we'd like to retain
|
|
|
|
hb_map_t *colrv1_layers;
|
2021-05-11 20:44:32 +02:00
|
|
|
hb_map_t *colr_palettes;
|
2021-04-01 21:01:19 +02:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
//The set of layout item variation store delta set indices to be retained
|
|
|
|
hb_set_t *layout_variation_indices;
|
|
|
|
//Old -> New layout item variation store delta set index mapping
|
|
|
|
hb_map_t *layout_variation_idx_map;
|
|
|
|
|
2019-01-26 03:03:47 +01:00
|
|
|
public:
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
return _glyphset;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
return _glyphset_gsub;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
return !_glyphset->has (gid);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
DEBUG_MSG(SUBSET, nullptr, "add table %c%c%c%c, dest %d bytes, source %d bytes",
|
|
|
|
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
|
|
|
|
|
|
|
typedef struct hb_subset_plan_t hb_subset_plan_t;
|
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL hb_subset_plan_t *
|
2018-02-07 19:07:46 +01:00
|
|
|
hb_subset_plan_create (hb_face_t *face,
|
2021-06-09 19:42:48 +02:00
|
|
|
const hb_subset_input_t *input);
|
2018-02-06 00:22:30 +01:00
|
|
|
|
2018-02-10 20:43:12 +01:00
|
|
|
HB_INTERNAL void
|
2018-02-06 00:22:30 +01:00
|
|
|
hb_subset_plan_destroy (hb_subset_plan_t *plan);
|
|
|
|
|
2018-02-08 01:30:07 +01:00
|
|
|
#endif /* HB_SUBSET_PLAN_HH */
|