Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 1 | /* |
Michiharu Ariza | 0dfa584 | 2018-11-12 08:47:07 -0800 | [diff] [blame] | 2 | * Copyright © 2018 Adobe Inc. |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [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 | * |
| 24 | * Adobe Author(s): Michiharu Ariza |
| 25 | */ |
| 26 | |
Behdad Esfahbod | 737436d | 2019-06-18 13:07:44 -0700 | [diff] [blame] | 27 | #include "hb.hh" |
| 28 | |
| 29 | #ifndef HB_NO_SUBSET_CFF |
| 30 | |
Michiharu Ariza | 8af9690 | 2018-08-29 13:26:17 -0700 | [diff] [blame] | 31 | #include "hb-ot-cff-common.hh" |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 32 | #include "hb-ot-cff2-table.hh" |
Michiharu Ariza | 8af9690 | 2018-08-29 13:26:17 -0700 | [diff] [blame] | 33 | #include "hb-subset-cff-common.hh" |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 34 | |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 35 | /* Disable FDSelect format 0 for compatibility with fonttools which doesn't seem choose it. |
| 36 | * Rarely any/much smaller than format 3 anyway. */ |
| 37 | #define CFF_SERIALIZE_FDSELECT_0 0 |
| 38 | |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 39 | using namespace CFF; |
| 40 | |
Khaled Hosny | 3e2734c | 2021-07-26 02:12:21 +0200 | [diff] [blame] | 41 | |
| 42 | /* Determine an optimal FDSelect format according to a provided plan. |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 43 | * |
| 44 | * Return value: FDSelect format, size, and ranges for the most compact subset FDSelect |
| 45 | * along with a font index remapping table |
Khaled Hosny | 3e2734c | 2021-07-26 02:12:21 +0200 | [diff] [blame] | 46 | */ |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 47 | |
| 48 | bool |
Michiharu Ariza | f2908b4 | 2019-01-31 14:16:37 -0800 | [diff] [blame] | 49 | hb_plan_subset_cff_fdselect (const hb_subset_plan_t *plan, |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 50 | unsigned int fdCount, |
| 51 | const FDSelect &src, /* IN */ |
| 52 | unsigned int &subset_fd_count /* OUT */, |
| 53 | unsigned int &subset_fdselect_size /* OUT */, |
| 54 | unsigned int &subset_fdselect_format /* OUT */, |
| 55 | hb_vector_t<code_pair_t> &fdselect_ranges /* OUT */, |
Michiharu Ariza | 0949669 | 2019-06-17 22:12:40 -0700 | [diff] [blame] | 56 | hb_inc_bimap_t &fdmap /* OUT */) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 57 | { |
| 58 | subset_fd_count = 0; |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 59 | subset_fdselect_size = 0; |
| 60 | subset_fdselect_format = 0; |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 61 | unsigned int num_ranges = 0; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 62 | |
Michiharu Ariza | f2908b4 | 2019-01-31 14:16:37 -0800 | [diff] [blame] | 63 | unsigned int subset_num_glyphs = plan->num_output_glyphs (); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 64 | if (subset_num_glyphs == 0) |
| 65 | return true; |
| 66 | |
| 67 | { |
| 68 | /* use hb_set to determine the subset of font dicts */ |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 69 | hb_set_t *set = hb_set_create (); |
Ebrahim Byagowi | 0527fda | 2019-10-08 16:19:39 +0330 | [diff] [blame] | 70 | if (unlikely (set == &Null (hb_set_t))) return false; |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 71 | hb_codepoint_t prev_fd = CFF_UNDEF_CODE; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 72 | for (hb_codepoint_t i = 0; i < subset_num_glyphs; i++) |
| 73 | { |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 74 | hb_codepoint_t glyph; |
| 75 | hb_codepoint_t fd; |
Michiharu Ariza | f2908b4 | 2019-01-31 14:16:37 -0800 | [diff] [blame] | 76 | if (!plan->old_gid_for_new_gid (i, &glyph)) |
| 77 | { |
Michiharu Ariza | e2856c2 | 2019-02-07 15:32:32 -0800 | [diff] [blame] | 78 | /* fonttools retains FDSelect & font dicts for missing glyphs. do the same */ |
| 79 | glyph = i; |
Michiharu Ariza | f2908b4 | 2019-01-31 14:16:37 -0800 | [diff] [blame] | 80 | } |
Michiharu Ariza | e2856c2 | 2019-02-07 15:32:32 -0800 | [diff] [blame] | 81 | fd = src.get_fd (glyph); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 82 | set->add (fd); |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 83 | |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 84 | if (fd != prev_fd) |
| 85 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 86 | num_ranges++; |
| 87 | prev_fd = fd; |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 88 | code_pair_t pair = { fd, i }; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 89 | fdselect_ranges.push (pair); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | |
Michiharu Ariza | 9fae33b | 2018-08-06 10:44:12 -0700 | [diff] [blame] | 93 | subset_fd_count = set->get_population (); |
| 94 | if (subset_fd_count == fdCount) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 95 | { |
| 96 | /* all font dicts belong to the subset. no need to subset FDSelect & FDArray */ |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 97 | fdmap.identity (fdCount); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 98 | hb_set_destroy (set); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 99 | } |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 100 | else |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 101 | { |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 102 | /* create a fdmap */ |
Michiharu Ariza | 0949669 | 2019-06-17 22:12:40 -0700 | [diff] [blame] | 103 | fdmap.reset (); |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 104 | |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 105 | hb_codepoint_t fd = CFF_UNDEF_CODE; |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 106 | while (set->next (&fd)) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 107 | fdmap.add (fd); |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 108 | hb_set_destroy (set); |
Michiharu Ariza | 0949669 | 2019-06-17 22:12:40 -0700 | [diff] [blame] | 109 | if (unlikely (fdmap.get_population () != subset_fd_count)) |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 110 | return false; |
Michiharu Ariza | 9d0231c | 2018-11-15 15:39:43 -0800 | [diff] [blame] | 111 | } |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 112 | |
| 113 | /* update each font dict index stored as "code" in fdselect_ranges */ |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 114 | for (unsigned int i = 0; i < fdselect_ranges.length; i++) |
Michiharu Ariza | f3ee2bd | 2019-06-20 14:33:09 -0700 | [diff] [blame] | 115 | fdselect_ranges[i].code = fdmap[fdselect_ranges[i].code]; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* determine which FDSelect format is most compact */ |
| 119 | if (subset_fd_count > 0xFF) |
| 120 | { |
Michiharu Ariza | 3335862 | 2018-12-11 12:20:20 -0800 | [diff] [blame] | 121 | if (unlikely (src.format != 4)) |
| 122 | return false; |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 123 | subset_fdselect_format = 4; |
Michiharu Ariza | 34b06d9 | 2018-11-02 16:40:20 -0700 | [diff] [blame] | 124 | subset_fdselect_size = FDSelect::min_size + FDSelect4::min_size + FDSelect4_Range::static_size * num_ranges + HBUINT32::static_size; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 125 | } |
| 126 | else |
| 127 | { |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 128 | #if CFF_SERIALIZE_FDSELECT_0 |
Michiharu Ariza | 34b06d9 | 2018-11-02 16:40:20 -0700 | [diff] [blame] | 129 | unsigned int format0_size = FDSelect::min_size + FDSelect0::min_size + HBUINT8::static_size * subset_num_glyphs; |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 130 | #endif |
Michiharu Ariza | 34b06d9 | 2018-11-02 16:40:20 -0700 | [diff] [blame] | 131 | unsigned int format3_size = FDSelect::min_size + FDSelect3::min_size + FDSelect3_Range::static_size * num_ranges + HBUINT16::static_size; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 132 | |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 133 | #if CFF_SERIALIZE_FDSELECT_0 |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 134 | if (format0_size <= format3_size) |
| 135 | { |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 136 | // subset_fdselect_format = 0; |
| 137 | subset_fdselect_size = format0_size; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 138 | } |
| 139 | else |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 140 | #endif |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 141 | { |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 142 | subset_fdselect_format = 3; |
| 143 | subset_fdselect_size = format3_size; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
| 147 | return true; |
| 148 | } |
| 149 | |
| 150 | template <typename FDSELECT3_4> |
| 151 | static inline bool |
| 152 | serialize_fdselect_3_4 (hb_serialize_context_t *c, |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 153 | const unsigned int num_glyphs, |
| 154 | const FDSelect &src, |
| 155 | unsigned int size, |
| 156 | const hb_vector_t<code_pair_t> &fdselect_ranges) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 157 | { |
| 158 | TRACE_SERIALIZE (this); |
| 159 | FDSELECT3_4 *p = c->allocate_size<FDSELECT3_4> (size); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 160 | if (unlikely (!p)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 161 | p->nRanges () = fdselect_ranges.length; |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 162 | for (unsigned int i = 0; i < fdselect_ranges.length; i++) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 163 | { |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 164 | p->ranges[i].first = fdselect_ranges[i].glyph; |
| 165 | p->ranges[i].fd = fdselect_ranges[i].code; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 166 | } |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 167 | p->sentinel () = num_glyphs; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 168 | return_trace (true); |
| 169 | } |
| 170 | |
Khaled Hosny | 3e2734c | 2021-07-26 02:12:21 +0200 | [diff] [blame] | 171 | /* Serialize a subset FDSelect format planned above. */ |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 172 | bool |
| 173 | hb_serialize_cff_fdselect (hb_serialize_context_t *c, |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 174 | const unsigned int num_glyphs, |
| 175 | const FDSelect &src, |
| 176 | unsigned int fd_count, |
| 177 | unsigned int fdselect_format, |
| 178 | unsigned int size, |
| 179 | const hb_vector_t<code_pair_t> &fdselect_ranges) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 180 | { |
| 181 | TRACE_SERIALIZE (this); |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 182 | FDSelect *p = c->allocate_min<FDSelect> (); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 183 | if (unlikely (!p)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 184 | p->format = fdselect_format; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 185 | size -= FDSelect::min_size; |
| 186 | |
| 187 | switch (fdselect_format) |
| 188 | { |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 189 | #if CFF_SERIALIZE_FDSELECT_0 |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 190 | case 0: |
| 191 | { |
| 192 | FDSelect0 *p = c->allocate_size<FDSelect0> (size); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 193 | if (unlikely (!p)) return_trace (false); |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 194 | unsigned int range_index = 0; |
| 195 | unsigned int fd = fdselect_ranges[range_index++].code; |
| 196 | for (unsigned int i = 0; i < num_glyphs; i++) |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 197 | { |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 198 | if ((range_index < fdselect_ranges.len) && |
| 199 | (i >= fdselect_ranges[range_index].glyph)) |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 200 | { |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 201 | fd = fdselect_ranges[range_index++].code; |
Michiharu Ariza | 0f159a3 | 2018-09-12 16:08:54 -0700 | [diff] [blame] | 202 | } |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 203 | p->fds[i] = fd; |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 204 | } |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 205 | return_trace (true); |
| 206 | } |
Michiharu Ariza | 1377adc | 2018-09-19 17:00:10 -0700 | [diff] [blame] | 207 | #endif /* CFF_SERIALIZE_FDSELECT_0 */ |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 208 | |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 209 | case 3: |
| 210 | return serialize_fdselect_3_4<FDSelect3> (c, num_glyphs, src, |
| 211 | size, fdselect_ranges); |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 212 | |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 213 | case 4: |
| 214 | return serialize_fdselect_3_4<FDSelect4> (c, num_glyphs, src, |
| 215 | size, fdselect_ranges); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 216 | |
Ebrahim Byagowi | 6bcbe49 | 2019-06-13 15:04:51 +0430 | [diff] [blame] | 217 | default: |
| 218 | return_trace (false); |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 219 | } |
Michiharu Ariza | 5561b81 | 2018-08-06 10:04:53 -0700 | [diff] [blame] | 220 | } |
Behdad Esfahbod | 737436d | 2019-06-18 13:07:44 -0700 | [diff] [blame] | 221 | |
| 222 | |
| 223 | #endif |