Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 1 | /* |
Behdad Esfahbod | bfa8716 | 2018-02-10 13:37:28 -0600 | [diff] [blame] | 2 | * Copyright © 2018 Google, Inc. |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
Rod Sheeter | 59c658c | 2018-02-08 19:22:47 -0800 | [diff] [blame] | 24 | * Google Author(s): Garret Rieger, Roderick Sheeter |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 25 | */ |
| 26 | |
Garret Rieger | 4223442 | 2018-02-08 15:11:15 -0800 | [diff] [blame] | 27 | #ifndef HB_SUBSET_PLAN_HH |
| 28 | #define HB_SUBSET_PLAN_HH |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 29 | |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 30 | #include "hb.hh" |
Garret Rieger | 4223442 | 2018-02-08 15:11:15 -0800 | [diff] [blame] | 31 | |
Behdad Esfahbod | 4fcbd22 | 2018-02-19 11:49:25 -0800 | [diff] [blame] | 32 | #include "hb-subset.h" |
Behdad Esfahbod | aba0a94 | 2018-08-31 13:25:19 -0700 | [diff] [blame] | 33 | #include "hb-subset-input.hh" |
Behdad Esfahbod | 4fcbd22 | 2018-02-19 11:49:25 -0800 | [diff] [blame] | 34 | |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 35 | #include "hb-map.hh" |
Garret Rieger | 25e9173 | 2018-02-05 17:26:25 -0800 | [diff] [blame] | 36 | |
Behdad Esfahbod | 58400a2 | 2018-06-02 20:30:09 -0700 | [diff] [blame] | 37 | struct hb_subset_plan_t |
| 38 | { |
Garret Rieger | 25e9173 | 2018-02-05 17:26:25 -0800 | [diff] [blame] | 39 | hb_object_header_t header; |
Garret Rieger | 25e9173 | 2018-02-05 17:26:25 -0800 | [diff] [blame] | 40 | |
Behdad Esfahbod | 93fe0fa | 2018-08-29 18:24:03 -0700 | [diff] [blame] | 41 | bool drop_hints : 1; |
| 42 | bool drop_layout : 1; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 43 | bool desubroutinize : 1; |
Rod Sheeter | 74e0c13 | 2018-02-21 11:19:18 -0800 | [diff] [blame] | 44 | |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 45 | // For each cp that we'd like to retain maps to the corresponding gid. |
| 46 | hb_set_t *unicodes; |
Garret Rieger | dcac9fe | 2018-02-16 11:27:03 -0700 | [diff] [blame] | 47 | |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 48 | hb_vector_t<hb_codepoint_t> glyphs; |
Behdad Esfahbod | 3f00d0b | 2018-09-03 18:54:32 -0700 | [diff] [blame] | 49 | hb_set_t *glyphset; |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 50 | |
| 51 | hb_map_t *codepoint_to_glyph; |
| 52 | hb_map_t *glyph_map; |
Rod Sheeter | fa87770 | 2018-02-14 14:16:25 -0800 | [diff] [blame] | 53 | |
| 54 | // Plan is only good for a specific source/dest so keep them with it |
| 55 | hb_face_t *source; |
| 56 | hb_face_t *dest; |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 57 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 58 | bool new_gid_for_codepoint (hb_codepoint_t codepoint, |
| 59 | hb_codepoint_t *new_gid) const |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 60 | { |
| 61 | hb_codepoint_t old_gid = codepoint_to_glyph->get (codepoint); |
| 62 | if (old_gid == HB_MAP_VALUE_INVALID) |
| 63 | return false; |
| 64 | |
| 65 | return new_gid_for_old_gid (old_gid, new_gid); |
| 66 | } |
| 67 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 68 | bool new_gid_for_old_gid (hb_codepoint_t old_gid, |
| 69 | hb_codepoint_t *new_gid) const |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 70 | { |
| 71 | hb_codepoint_t gid = glyph_map->get (old_gid); |
| 72 | if (gid == HB_MAP_VALUE_INVALID) |
| 73 | return false; |
| 74 | |
| 75 | *new_gid = gid; |
| 76 | return true; |
| 77 | } |
| 78 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 79 | bool |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 80 | add_table (hb_tag_t tag, |
Ebrahim Byagowi | 11aa046 | 2018-11-15 23:10:56 +0330 | [diff] [blame] | 81 | hb_blob_t *contents) |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 82 | { |
| 83 | hb_blob_t *source_blob = source->reference_table (tag); |
| 84 | DEBUG_MSG(SUBSET, nullptr, "add table %c%c%c%c, dest %d bytes, source %d bytes", |
Ebrahim Byagowi | 11aa046 | 2018-11-15 23:10:56 +0330 | [diff] [blame] | 85 | HB_UNTAG(tag), |
| 86 | hb_blob_get_length (contents), |
| 87 | hb_blob_get_length (source_blob)); |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 88 | hb_blob_destroy (source_blob); |
Behdad Esfahbod | aadb2a9 | 2018-08-25 08:18:53 -0700 | [diff] [blame] | 89 | return hb_face_builder_add_table (dest, tag, contents); |
Garret Rieger | 251cc97 | 2018-05-30 12:23:51 -0700 | [diff] [blame] | 90 | } |
Garret Rieger | 25e9173 | 2018-02-05 17:26:25 -0800 | [diff] [blame] | 91 | }; |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 92 | |
| 93 | typedef struct hb_subset_plan_t hb_subset_plan_t; |
| 94 | |
Ebrahim Byagowi | 844f48e | 2018-02-10 23:13:12 +0330 | [diff] [blame] | 95 | HB_INTERNAL hb_subset_plan_t * |
Behdad Esfahbod | af02812 | 2018-02-07 13:07:46 -0500 | [diff] [blame] | 96 | hb_subset_plan_create (hb_face_t *face, |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 97 | hb_subset_input_t *input); |
| 98 | |
Ebrahim Byagowi | 844f48e | 2018-02-10 23:13:12 +0330 | [diff] [blame] | 99 | HB_INTERNAL void |
Garret Rieger | 1cfe650 | 2018-02-05 15:22:30 -0800 | [diff] [blame] | 100 | hb_subset_plan_destroy (hb_subset_plan_t *plan); |
| 101 | |
Garret Rieger | 217ed5e | 2018-02-07 16:30:07 -0800 | [diff] [blame] | 102 | #endif /* HB_SUBSET_PLAN_HH */ |