Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1 | /* |
Michiharu Ariza | 0dfa584 | 2018-11-12 08:47:07 -0800 | [diff] [blame] | 2 | * Copyright © 2018 Adobe Inc. |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -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 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 27 | #ifndef HB_OT_CFF1_TABLE_HH |
| 28 | #define HB_OT_CFF1_TABLE_HH |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 29 | |
Michiharu Ariza | 8af9690 | 2018-08-29 13:26:17 -0700 | [diff] [blame] | 30 | #include "hb-ot-cff-common.hh" |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 31 | #include "hb-subset-cff1.hh" |
Ebrahim Byagowi | 9fe0dc3 | 2020-02-26 17:40:44 +0330 | [diff] [blame] | 32 | #include "hb-draw.hh" |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 33 | |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 34 | #define HB_STRING_ARRAY_NAME cff1_std_strings |
| 35 | #define HB_STRING_ARRAY_LIST "hb-ot-cff1-std-str.hh" |
| 36 | #include "hb-string-array.hh" |
| 37 | #undef HB_STRING_ARRAY_LIST |
| 38 | #undef HB_STRING_ARRAY_NAME |
| 39 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 40 | namespace CFF { |
| 41 | |
| 42 | /* |
| 43 | * CFF -- Compact Font Format (CFF) |
Ebrahim Byagowi | 8c652f7 | 2020-02-19 16:32:44 +0330 | [diff] [blame] | 44 | * https://www.adobe.com/content/dam/acom/en/devnet/font/pdfs/5176.CFF.pdf |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 45 | */ |
Michiharu Ariza | e67bb3f | 2018-08-16 00:25:57 -0700 | [diff] [blame] | 46 | #define HB_OT_TAG_cff1 HB_TAG('C','F','F',' ') |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 47 | |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 48 | #define CFF_UNDEF_SID CFF_UNDEF_CODE |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 49 | |
| 50 | enum EncodingID { StandardEncoding = 0, ExpertEncoding = 1 }; |
| 51 | enum CharsetID { ISOAdobeCharset = 0, ExpertCharset = 1, ExpertSubsetCharset = 2 }; |
| 52 | |
Michiharu Ariza | f57d6bc | 2018-08-16 08:03:46 -0700 | [diff] [blame] | 53 | typedef CFFIndex<HBUINT16> CFF1Index; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 54 | template <typename Type> struct CFF1IndexOf : CFFIndexOf<HBUINT16, Type> {}; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 55 | |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 56 | typedef CFFIndex<HBUINT16> CFF1Index; |
| 57 | typedef CFF1Index CFF1CharStrings; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 58 | typedef Subrs<HBUINT16> CFF1Subrs; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 59 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 60 | struct CFF1FDSelect : FDSelect {}; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 61 | |
| 62 | /* Encoding */ |
| 63 | struct Encoding0 { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 64 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 65 | { |
| 66 | TRACE_SANITIZE (this); |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 67 | return_trace (codes.sanitize (c)); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 70 | hb_codepoint_t get_code (hb_codepoint_t glyph) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 71 | { |
Michiharu Ariza | 7fed7d8 | 2018-11-07 09:09:13 -0800 | [diff] [blame] | 72 | assert (glyph > 0); |
| 73 | glyph--; |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 74 | if (glyph < nCodes ()) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 75 | { |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 76 | return (hb_codepoint_t)codes[glyph]; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 77 | } |
| 78 | else |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 79 | return CFF_UNDEF_CODE; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 82 | HBUINT8 &nCodes () { return codes.len; } |
| 83 | HBUINT8 nCodes () const { return codes.len; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 84 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 85 | ArrayOf<HBUINT8, HBUINT8> codes; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 86 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 87 | DEFINE_SIZE_ARRAY_SIZED (1, codes); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | struct Encoding1_Range { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 91 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 92 | { |
| 93 | TRACE_SANITIZE (this); |
| 94 | return_trace (c->check_struct (this)); |
| 95 | } |
| 96 | |
| 97 | HBUINT8 first; |
| 98 | HBUINT8 nLeft; |
| 99 | |
| 100 | DEFINE_SIZE_STATIC (2); |
| 101 | }; |
| 102 | |
| 103 | struct Encoding1 { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 104 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 105 | { |
| 106 | TRACE_SANITIZE (this); |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 107 | return_trace (ranges.sanitize (c)); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 110 | hb_codepoint_t get_code (hb_codepoint_t glyph) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 111 | { |
Michiharu Ariza | 7fed7d8 | 2018-11-07 09:09:13 -0800 | [diff] [blame] | 112 | assert (glyph > 0); |
| 113 | glyph--; |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 114 | for (unsigned int i = 0; i < nRanges (); i++) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 115 | { |
| 116 | if (glyph <= ranges[i].nLeft) |
| 117 | { |
Michiharu Ariza | 267fb9c | 2019-04-18 15:17:10 -0700 | [diff] [blame] | 118 | hb_codepoint_t code = (hb_codepoint_t) ranges[i].first + glyph; |
| 119 | return (likely (code < 0x100) ? code: CFF_UNDEF_CODE); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 120 | } |
| 121 | glyph -= (ranges[i].nLeft + 1); |
| 122 | } |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 123 | return CFF_UNDEF_CODE; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 126 | HBUINT8 &nRanges () { return ranges.len; } |
| 127 | HBUINT8 nRanges () const { return ranges.len; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 128 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 129 | ArrayOf<Encoding1_Range, HBUINT8> ranges; |
| 130 | |
| 131 | DEFINE_SIZE_ARRAY_SIZED (1, ranges); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 132 | }; |
| 133 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 134 | struct SuppEncoding { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 135 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 136 | { |
| 137 | TRACE_SANITIZE (this); |
| 138 | return_trace (c->check_struct (this)); |
| 139 | } |
| 140 | |
| 141 | HBUINT8 code; |
| 142 | HBUINT16 glyph; |
| 143 | |
| 144 | DEFINE_SIZE_STATIC (3); |
| 145 | }; |
| 146 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 147 | struct CFF1SuppEncData { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 148 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 149 | { |
| 150 | TRACE_SANITIZE (this); |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 151 | return_trace (supps.sanitize (c)); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 154 | void get_codes (hb_codepoint_t sid, hb_vector_t<hb_codepoint_t> &codes) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 155 | { |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 156 | for (unsigned int i = 0; i < nSups (); i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 157 | if (sid == supps[i].glyph) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 158 | codes.push (supps[i].code); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 161 | HBUINT8 &nSups () { return supps.len; } |
| 162 | HBUINT8 nSups () const { return supps.len; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 163 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 164 | ArrayOf<SuppEncoding, HBUINT8> supps; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 165 | |
Michiharu Ariza | 261a742 | 2019-01-23 14:04:29 -0800 | [diff] [blame] | 166 | DEFINE_SIZE_ARRAY_SIZED (1, supps); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 167 | }; |
| 168 | |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 169 | struct Encoding |
| 170 | { |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 171 | /* serialize a fullset Encoding */ |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 172 | bool serialize (hb_serialize_context_t *c, const Encoding &src) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 173 | { |
| 174 | TRACE_SERIALIZE (this); |
| 175 | unsigned int size = src.get_size (); |
| 176 | Encoding *dest = c->allocate_size<Encoding> (size); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 177 | if (unlikely (!dest)) return_trace (false); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 178 | memcpy (dest, &src, size); |
| 179 | return_trace (true); |
| 180 | } |
| 181 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 182 | /* serialize a subset Encoding */ |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 183 | bool serialize (hb_serialize_context_t *c, |
| 184 | uint8_t format, |
| 185 | unsigned int enc_count, |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 186 | const hb_vector_t<code_pair_t>& code_ranges, |
| 187 | const hb_vector_t<code_pair_t>& supp_codes) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 188 | { |
| 189 | TRACE_SERIALIZE (this); |
Behdad Esfahbod | f0a1892 | 2021-07-28 17:36:22 -0600 | [diff] [blame] | 190 | Encoding *dest = c->extend_min (this); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 191 | if (unlikely (!dest)) return_trace (false); |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 192 | dest->format = format | ((supp_codes.length > 0) ? 0x80 : 0); |
| 193 | switch (format) { |
| 194 | case 0: |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 195 | { |
| 196 | Encoding0 *fmt0 = c->allocate_size<Encoding0> (Encoding0::min_size + HBUINT8::static_size * enc_count); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 197 | if (unlikely (!fmt0)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 198 | fmt0->nCodes () = enc_count; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 199 | unsigned int glyph = 0; |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 200 | for (unsigned int i = 0; i < code_ranges.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 201 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 202 | hb_codepoint_t code = code_ranges[i].code; |
| 203 | for (int left = (int)code_ranges[i].glyph; left >= 0; left--) |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 204 | fmt0->codes[glyph++] = code++; |
Michiharu Ariza | 3335862 | 2018-12-11 12:20:20 -0800 | [diff] [blame] | 205 | if (unlikely (!((glyph <= 0x100) && (code <= 0x100)))) |
| 206 | return_trace (false); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 207 | } |
| 208 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 209 | break; |
| 210 | |
| 211 | case 1: |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 212 | { |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 213 | Encoding1 *fmt1 = c->allocate_size<Encoding1> (Encoding1::min_size + Encoding1_Range::static_size * code_ranges.length); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 214 | if (unlikely (!fmt1)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 215 | fmt1->nRanges () = code_ranges.length; |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 216 | for (unsigned int i = 0; i < code_ranges.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 217 | { |
Michiharu Ariza | 3335862 | 2018-12-11 12:20:20 -0800 | [diff] [blame] | 218 | if (unlikely (!((code_ranges[i].code <= 0xFF) && (code_ranges[i].glyph <= 0xFF)))) |
| 219 | return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 220 | fmt1->ranges[i].first = code_ranges[i].code; |
| 221 | fmt1->ranges[i].nLeft = code_ranges[i].glyph; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 222 | } |
| 223 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 224 | break; |
| 225 | |
| 226 | } |
| 227 | |
| 228 | if (supp_codes.length) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 229 | { |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 230 | CFF1SuppEncData *suppData = c->allocate_size<CFF1SuppEncData> (CFF1SuppEncData::min_size + SuppEncoding::static_size * supp_codes.length); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 231 | if (unlikely (!suppData)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 232 | suppData->nSups () = supp_codes.length; |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 233 | for (unsigned int i = 0; i < supp_codes.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 234 | { |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 235 | suppData->supps[i].code = supp_codes[i].code; |
| 236 | suppData->supps[i].glyph = supp_codes[i].glyph; /* actually SID */ |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 237 | } |
| 238 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 239 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 240 | return_trace (true); |
| 241 | } |
| 242 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 243 | unsigned int get_size () const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 244 | { |
| 245 | unsigned int size = min_size; |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 246 | switch (table_format ()) |
| 247 | { |
| 248 | case 0: size += u.format0.get_size (); break; |
| 249 | case 1: size += u.format1.get_size (); break; |
| 250 | } |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 251 | if (has_supplement ()) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 252 | size += suppEncData ().get_size (); |
| 253 | return size; |
| 254 | } |
| 255 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 256 | hb_codepoint_t get_code (hb_codepoint_t glyph) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 257 | { |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 258 | switch (table_format ()) |
| 259 | { |
| 260 | case 0: return u.format0.get_code (glyph); |
| 261 | case 1: return u.format1.get_code (glyph); |
| 262 | default:return 0; |
| 263 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 266 | uint8_t table_format () const { return format & 0x7F; } |
| 267 | bool has_supplement () const { return format & 0x80; } |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 268 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 269 | void get_supplement_codes (hb_codepoint_t sid, hb_vector_t<hb_codepoint_t> &codes) const |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 270 | { |
| 271 | codes.resize (0); |
| 272 | if (has_supplement ()) |
| 273 | suppEncData().get_codes (sid, codes); |
| 274 | } |
| 275 | |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 276 | bool sanitize (hb_sanitize_context_t *c) const |
| 277 | { |
| 278 | TRACE_SANITIZE (this); |
| 279 | if (unlikely (!c->check_struct (this))) |
| 280 | return_trace (false); |
| 281 | |
| 282 | switch (table_format ()) |
| 283 | { |
| 284 | case 0: if (unlikely (!u.format0.sanitize (c))) { return_trace (false); } break; |
| 285 | case 1: if (unlikely (!u.format1.sanitize (c))) { return_trace (false); } break; |
| 286 | default:return_trace (false); |
| 287 | } |
| 288 | return_trace (likely (!has_supplement () || suppEncData ().sanitize (c))); |
| 289 | } |
| 290 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 291 | protected: |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 292 | const CFF1SuppEncData &suppEncData () const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 293 | { |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 294 | switch (table_format ()) |
| 295 | { |
| 296 | case 0: return StructAfter<CFF1SuppEncData> (u.format0.codes[u.format0.nCodes ()-1]); |
| 297 | case 1: return StructAfter<CFF1SuppEncData> (u.format1.ranges[u.format1.nRanges ()-1]); |
| 298 | default:return Null (CFF1SuppEncData); |
| 299 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 302 | public: |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 303 | HBUINT8 format; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 304 | union { |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 305 | Encoding0 format0; |
| 306 | Encoding1 format1; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 307 | } u; |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 308 | /* CFF1SuppEncData suppEncData; */ |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 309 | |
| 310 | DEFINE_SIZE_MIN (1); |
| 311 | }; |
| 312 | |
| 313 | /* Charset */ |
| 314 | struct Charset0 { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 315 | bool sanitize (hb_sanitize_context_t *c, unsigned int num_glyphs) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 316 | { |
| 317 | TRACE_SANITIZE (this); |
| 318 | return_trace (c->check_struct (this) && sids[num_glyphs - 1].sanitize (c)); |
| 319 | } |
| 320 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 321 | hb_codepoint_t get_sid (hb_codepoint_t glyph) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 322 | { |
| 323 | if (glyph == 0) |
| 324 | return 0; |
| 325 | else |
| 326 | return sids[glyph - 1]; |
| 327 | } |
| 328 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 329 | hb_codepoint_t get_glyph (hb_codepoint_t sid, unsigned int num_glyphs) const |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 330 | { |
| 331 | if (sid == 0) |
| 332 | return 0; |
| 333 | |
| 334 | for (unsigned int glyph = 1; glyph < num_glyphs; glyph++) |
| 335 | { |
| 336 | if (sids[glyph-1] == sid) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 337 | return glyph; |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 338 | } |
| 339 | return 0; |
| 340 | } |
| 341 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 342 | unsigned int get_size (unsigned int num_glyphs) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 343 | { |
| 344 | assert (num_glyphs > 0); |
| 345 | return HBUINT16::static_size * (num_glyphs - 1); |
| 346 | } |
| 347 | |
Behdad Esfahbod | 0e294c4 | 2019-09-06 16:54:27 -0400 | [diff] [blame] | 348 | HBUINT16 sids[HB_VAR_ARRAY]; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 349 | |
| 350 | DEFINE_SIZE_ARRAY(0, sids); |
| 351 | }; |
| 352 | |
| 353 | template <typename TYPE> |
| 354 | struct Charset_Range { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 355 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 356 | { |
| 357 | TRACE_SANITIZE (this); |
| 358 | return_trace (c->check_struct (this)); |
| 359 | } |
| 360 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 361 | HBUINT16 first; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 362 | TYPE nLeft; |
| 363 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 364 | DEFINE_SIZE_STATIC (HBUINT16::static_size + TYPE::static_size); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 365 | }; |
| 366 | |
| 367 | template <typename TYPE> |
| 368 | struct Charset1_2 { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 369 | bool sanitize (hb_sanitize_context_t *c, unsigned int num_glyphs) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 370 | { |
| 371 | TRACE_SANITIZE (this); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 372 | if (unlikely (!c->check_struct (this))) |
| 373 | return_trace (false); |
| 374 | num_glyphs--; |
| 375 | for (unsigned int i = 0; num_glyphs > 0; i++) |
| 376 | { |
| 377 | if (unlikely (!ranges[i].sanitize (c) || (num_glyphs < ranges[i].nLeft + 1))) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 378 | return_trace (false); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 379 | num_glyphs -= (ranges[i].nLeft + 1); |
| 380 | } |
| 381 | return_trace (true); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 384 | hb_codepoint_t get_sid (hb_codepoint_t glyph) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 385 | { |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 386 | if (glyph == 0) return 0; |
| 387 | glyph--; |
| 388 | for (unsigned int i = 0;; i++) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 389 | { |
| 390 | if (glyph <= ranges[i].nLeft) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 391 | return (hb_codepoint_t)ranges[i].first + glyph; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 392 | glyph -= (ranges[i].nLeft + 1); |
| 393 | } |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 394 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 395 | return 0; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 398 | hb_codepoint_t get_glyph (hb_codepoint_t sid, unsigned int num_glyphs) const |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 399 | { |
| 400 | if (sid == 0) return 0; |
| 401 | hb_codepoint_t glyph = 1; |
| 402 | for (unsigned int i = 0;; i++) |
| 403 | { |
Michiharu Ariza | d3d2f32 | 2018-12-04 13:51:26 -0800 | [diff] [blame] | 404 | if (glyph >= num_glyphs) |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 405 | return 0; |
Michiharu Ariza | d3d2f32 | 2018-12-04 13:51:26 -0800 | [diff] [blame] | 406 | if ((ranges[i].first <= sid) && (sid <= ranges[i].first + ranges[i].nLeft)) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 407 | return glyph + (sid - ranges[i].first); |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 408 | glyph += (ranges[i].nLeft + 1); |
| 409 | } |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 410 | |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 411 | return 0; |
| 412 | } |
| 413 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 414 | unsigned int get_size (unsigned int num_glyphs) const |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 415 | { |
| 416 | unsigned int size = HBUINT8::static_size; |
| 417 | int glyph = (int)num_glyphs; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 418 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 419 | assert (glyph > 0); |
| 420 | glyph--; |
| 421 | for (unsigned int i = 0; glyph > 0; i++) |
| 422 | { |
| 423 | glyph -= (ranges[i].nLeft + 1); |
| 424 | size += Charset_Range<TYPE>::static_size; |
| 425 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 426 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 427 | return size; |
| 428 | } |
| 429 | |
Behdad Esfahbod | 0e294c4 | 2019-09-06 16:54:27 -0400 | [diff] [blame] | 430 | Charset_Range<TYPE> ranges[HB_VAR_ARRAY]; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 431 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 432 | DEFINE_SIZE_ARRAY (0, ranges); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 433 | }; |
| 434 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 435 | typedef Charset1_2<HBUINT8> Charset1; |
| 436 | typedef Charset1_2<HBUINT16> Charset2; |
| 437 | typedef Charset_Range<HBUINT8> Charset1_Range; |
| 438 | typedef Charset_Range<HBUINT16> Charset2_Range; |
| 439 | |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 440 | struct Charset |
| 441 | { |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 442 | /* serialize a fullset Charset */ |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 443 | bool serialize (hb_serialize_context_t *c, const Charset &src, unsigned int num_glyphs) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 444 | { |
| 445 | TRACE_SERIALIZE (this); |
| 446 | unsigned int size = src.get_size (num_glyphs); |
| 447 | Charset *dest = c->allocate_size<Charset> (size); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 448 | if (unlikely (!dest)) return_trace (false); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 449 | memcpy (dest, &src, size); |
| 450 | return_trace (true); |
| 451 | } |
| 452 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 453 | /* serialize a subset Charset */ |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 454 | bool serialize (hb_serialize_context_t *c, |
| 455 | uint8_t format, |
| 456 | unsigned int num_glyphs, |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 457 | const hb_vector_t<code_pair_t>& sid_ranges) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 458 | { |
| 459 | TRACE_SERIALIZE (this); |
Behdad Esfahbod | f0a1892 | 2021-07-28 17:36:22 -0600 | [diff] [blame] | 460 | Charset *dest = c->extend_min (this); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 461 | if (unlikely (!dest)) return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 462 | dest->format = format; |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 463 | switch (format) |
| 464 | { |
| 465 | case 0: |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 466 | { |
Michiharu Ariza | 1608481 | 2018-09-12 13:22:19 -0700 | [diff] [blame] | 467 | Charset0 *fmt0 = c->allocate_size<Charset0> (Charset0::min_size + HBUINT16::static_size * (num_glyphs - 1)); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 468 | if (unlikely (!fmt0)) return_trace (false); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 469 | unsigned int glyph = 0; |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 470 | for (unsigned int i = 0; i < sid_ranges.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 471 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 472 | hb_codepoint_t sid = sid_ranges[i].code; |
| 473 | for (int left = (int)sid_ranges[i].glyph; left >= 0; left--) |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 474 | fmt0->sids[glyph++] = sid++; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 475 | } |
| 476 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 477 | break; |
| 478 | |
| 479 | case 1: |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 480 | { |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 481 | Charset1 *fmt1 = c->allocate_size<Charset1> (Charset1::min_size + Charset1_Range::static_size * sid_ranges.length); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 482 | if (unlikely (!fmt1)) return_trace (false); |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 483 | for (unsigned int i = 0; i < sid_ranges.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 484 | { |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 485 | if (unlikely (!(sid_ranges[i].glyph <= 0xFF))) |
Michiharu Ariza | 3335862 | 2018-12-11 12:20:20 -0800 | [diff] [blame] | 486 | return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 487 | fmt1->ranges[i].first = sid_ranges[i].code; |
| 488 | fmt1->ranges[i].nLeft = sid_ranges[i].glyph; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 489 | } |
| 490 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 491 | break; |
| 492 | |
| 493 | case 2: |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 494 | { |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 495 | Charset2 *fmt2 = c->allocate_size<Charset2> (Charset2::min_size + Charset2_Range::static_size * sid_ranges.length); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 496 | if (unlikely (!fmt2)) return_trace (false); |
Behdad Esfahbod | 474a120 | 2018-12-21 18:46:51 -0500 | [diff] [blame] | 497 | for (unsigned int i = 0; i < sid_ranges.length; i++) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 498 | { |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 499 | if (unlikely (!(sid_ranges[i].glyph <= 0xFFFF))) |
Michiharu Ariza | 3335862 | 2018-12-11 12:20:20 -0800 | [diff] [blame] | 500 | return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 501 | fmt2->ranges[i].first = sid_ranges[i].code; |
| 502 | fmt2->ranges[i].nLeft = sid_ranges[i].glyph; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 503 | } |
| 504 | } |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 505 | break; |
| 506 | |
| 507 | } |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 508 | return_trace (true); |
| 509 | } |
| 510 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 511 | unsigned int get_size (unsigned int num_glyphs) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 512 | { |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 513 | switch (format) |
| 514 | { |
| 515 | case 0: return min_size + u.format0.get_size (num_glyphs); |
| 516 | case 1: return min_size + u.format1.get_size (num_glyphs); |
| 517 | case 2: return min_size + u.format2.get_size (num_glyphs); |
| 518 | default:return 0; |
| 519 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 520 | } |
| 521 | |
blueshade7 | 59fe379 | 2019-11-16 19:47:31 -0800 | [diff] [blame] | 522 | hb_codepoint_t get_sid (hb_codepoint_t glyph, unsigned int num_glyphs) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 523 | { |
blueshade7 | 59fe379 | 2019-11-16 19:47:31 -0800 | [diff] [blame] | 524 | if (unlikely (glyph >= num_glyphs)) return 0; |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 525 | switch (format) |
| 526 | { |
| 527 | case 0: return u.format0.get_sid (glyph); |
| 528 | case 1: return u.format1.get_sid (glyph); |
| 529 | case 2: return u.format2.get_sid (glyph); |
| 530 | default:return 0; |
| 531 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 534 | hb_codepoint_t get_glyph (hb_codepoint_t sid, unsigned int num_glyphs) const |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 535 | { |
Ebrahim Byagowi | 9b853f7 | 2019-06-09 11:49:25 +0430 | [diff] [blame] | 536 | switch (format) |
| 537 | { |
| 538 | case 0: return u.format0.get_glyph (sid, num_glyphs); |
| 539 | case 1: return u.format1.get_glyph (sid, num_glyphs); |
| 540 | case 2: return u.format2.get_glyph (sid, num_glyphs); |
| 541 | default:return 0; |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | bool sanitize (hb_sanitize_context_t *c) const |
| 546 | { |
| 547 | TRACE_SANITIZE (this); |
| 548 | if (unlikely (!c->check_struct (this))) |
| 549 | return_trace (false); |
| 550 | |
| 551 | switch (format) |
| 552 | { |
| 553 | case 0: return_trace (u.format0.sanitize (c, c->get_num_glyphs ())); |
| 554 | case 1: return_trace (u.format1.sanitize (c, c->get_num_glyphs ())); |
| 555 | case 2: return_trace (u.format2.sanitize (c, c->get_num_glyphs ())); |
| 556 | default:return_trace (false); |
| 557 | } |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 558 | } |
| 559 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 560 | HBUINT8 format; |
| 561 | union { |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 562 | Charset0 format0; |
| 563 | Charset1 format1; |
| 564 | Charset2 format2; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 565 | } u; |
| 566 | |
| 567 | DEFINE_SIZE_MIN (1); |
| 568 | }; |
| 569 | |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 570 | struct CFF1StringIndex : CFF1Index |
| 571 | { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 572 | bool serialize (hb_serialize_context_t *c, const CFF1StringIndex &strings, |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 573 | const hb_inc_bimap_t &sidmap) |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 574 | { |
| 575 | TRACE_SERIALIZE (this); |
Michiharu Ariza | 0949669 | 2019-06-17 22:12:40 -0700 | [diff] [blame] | 576 | if (unlikely ((strings.count == 0) || (sidmap.get_population () == 0))) |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 577 | { |
Behdad Esfahbod | 0ca7ad4 | 2019-05-20 11:39:07 -0400 | [diff] [blame] | 578 | if (unlikely (!c->extend_min (this->count))) |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 579 | return_trace (false); |
Behdad Esfahbod | b986c6a | 2019-03-29 20:17:46 -0700 | [diff] [blame] | 580 | count = 0; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 581 | return_trace (true); |
| 582 | } |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 583 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 584 | byte_str_array_t bytesArray; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 585 | bytesArray.init (); |
Michiharu Ariza | 0949669 | 2019-06-17 22:12:40 -0700 | [diff] [blame] | 586 | if (!bytesArray.resize (sidmap.get_population ())) |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 587 | return_trace (false); |
| 588 | for (unsigned int i = 0; i < strings.count; i++) |
| 589 | { |
Michiharu Ariza | f3ee2bd | 2019-06-20 14:33:09 -0700 | [diff] [blame] | 590 | hb_codepoint_t j = sidmap[i]; |
Michiharu Ariza | c842010 | 2019-02-20 15:48:29 -0800 | [diff] [blame] | 591 | if (j != HB_MAP_VALUE_INVALID) |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 592 | bytesArray[j] = strings[i]; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 593 | } |
| 594 | |
ariza | c05458e | 2020-03-02 16:51:19 -0800 | [diff] [blame] | 595 | bool result = CFF1Index::serialize (c, bytesArray); |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 596 | bytesArray.fini (); |
| 597 | return_trace (result); |
| 598 | } |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 599 | }; |
| 600 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 601 | struct cff1_top_dict_interp_env_t : num_interp_env_t |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 602 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 603 | cff1_top_dict_interp_env_t () |
| 604 | : num_interp_env_t(), prev_offset(0), last_offset(0) {} |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 605 | |
| 606 | unsigned int prev_offset; |
| 607 | unsigned int last_offset; |
| 608 | }; |
| 609 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 610 | struct name_dict_values_t |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 611 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 612 | enum name_dict_val_index_t |
Michiharu Ariza | c6f75c3 | 2018-09-10 17:02:31 -0700 | [diff] [blame] | 613 | { |
| 614 | version, |
| 615 | notice, |
| 616 | copyright, |
| 617 | fullName, |
| 618 | familyName, |
| 619 | weight, |
| 620 | postscript, |
| 621 | fontName, |
| 622 | baseFontName, |
| 623 | registry, |
| 624 | ordering, |
| 625 | |
| 626 | ValCount |
| 627 | }; |
| 628 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 629 | void init () |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 630 | { |
Michiharu Ariza | c6f75c3 | 2018-09-10 17:02:31 -0700 | [diff] [blame] | 631 | for (unsigned int i = 0; i < ValCount; i++) |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 632 | values[i] = CFF_UNDEF_SID; |
| 633 | } |
| 634 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 635 | unsigned int& operator[] (unsigned int i) |
Michiharu Ariza | c6f75c3 | 2018-09-10 17:02:31 -0700 | [diff] [blame] | 636 | { assert (i < ValCount); return values[i]; } |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 637 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 638 | unsigned int operator[] (unsigned int i) const |
Michiharu Ariza | c6f75c3 | 2018-09-10 17:02:31 -0700 | [diff] [blame] | 639 | { assert (i < ValCount); return values[i]; } |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 640 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 641 | static enum name_dict_val_index_t name_op_to_index (op_code_t op) |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 642 | { |
| 643 | switch (op) { |
Michiharu Ariza | 4d80969 | 2018-12-07 20:49:39 -0800 | [diff] [blame] | 644 | default: // can't happen - just make some compiler happy |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 645 | case OpCode_version: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 646 | return version; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 647 | case OpCode_Notice: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 648 | return notice; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 649 | case OpCode_Copyright: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 650 | return copyright; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 651 | case OpCode_FullName: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 652 | return fullName; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 653 | case OpCode_FamilyName: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 654 | return familyName; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 655 | case OpCode_Weight: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 656 | return weight; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 657 | case OpCode_PostScript: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 658 | return postscript; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 659 | case OpCode_FontName: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 660 | return fontName; |
Michiharu Ariza | 4d80969 | 2018-12-07 20:49:39 -0800 | [diff] [blame] | 661 | case OpCode_BaseFontName: |
| 662 | return baseFontName; |
| 663 | } |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 664 | } |
| 665 | |
Michiharu Ariza | c6f75c3 | 2018-09-10 17:02:31 -0700 | [diff] [blame] | 666 | unsigned int values[ValCount]; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 667 | }; |
| 668 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 669 | struct cff1_top_dict_val_t : op_str_t |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 670 | { |
| 671 | unsigned int last_arg_offset; |
| 672 | }; |
| 673 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 674 | struct cff1_top_dict_values_t : top_dict_values_t<cff1_top_dict_val_t> |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 675 | { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 676 | void init () |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 677 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 678 | top_dict_values_t<cff1_top_dict_val_t>::init (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 679 | |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 680 | nameSIDs.init (); |
| 681 | ros_supplement = 0; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 682 | cidCount = 8720; |
| 683 | EncodingOffset = 0; |
| 684 | CharsetOffset = 0; |
| 685 | FDSelectOffset = 0; |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 686 | privateDictInfo.init (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 687 | } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 688 | void fini () { top_dict_values_t<cff1_top_dict_val_t>::fini (); } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 689 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 690 | bool is_CID () const |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 691 | { return nameSIDs[name_dict_values_t::registry] != CFF_UNDEF_SID; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 692 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 693 | name_dict_values_t nameSIDs; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 694 | unsigned int ros_supplement_offset; |
| 695 | unsigned int ros_supplement; |
| 696 | unsigned int cidCount; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 697 | |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 698 | unsigned int EncodingOffset; |
| 699 | unsigned int CharsetOffset; |
| 700 | unsigned int FDSelectOffset; |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 701 | table_info_t privateDictInfo; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 702 | }; |
| 703 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 704 | struct cff1_top_dict_opset_t : top_dict_opset_t<cff1_top_dict_val_t> |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 705 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 706 | static void process_op (op_code_t op, cff1_top_dict_interp_env_t& env, cff1_top_dict_values_t& dictval) |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 707 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 708 | cff1_top_dict_val_t val; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 709 | val.last_arg_offset = (env.last_offset-1) - dictval.opStart; /* offset to the last argument */ |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 710 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 711 | switch (op) { |
| 712 | case OpCode_version: |
| 713 | case OpCode_Notice: |
| 714 | case OpCode_Copyright: |
| 715 | case OpCode_FullName: |
Garret Rieger | deee24f | 2021-07-14 13:46:36 -0700 | [diff] [blame] | 716 | case OpCode_FontName: |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 717 | case OpCode_FamilyName: |
| 718 | case OpCode_Weight: |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 719 | case OpCode_PostScript: |
| 720 | case OpCode_BaseFontName: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 721 | dictval.nameSIDs[name_dict_values_t::name_op_to_index (op)] = env.argStack.pop_uint (); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 722 | env.clear_args (); |
| 723 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 724 | case OpCode_isFixedPitch: |
| 725 | case OpCode_ItalicAngle: |
| 726 | case OpCode_UnderlinePosition: |
| 727 | case OpCode_UnderlineThickness: |
| 728 | case OpCode_PaintType: |
| 729 | case OpCode_CharstringType: |
| 730 | case OpCode_UniqueID: |
| 731 | case OpCode_StrokeWidth: |
| 732 | case OpCode_SyntheticBase: |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 733 | case OpCode_CIDFontVersion: |
| 734 | case OpCode_CIDFontRevision: |
| 735 | case OpCode_CIDFontType: |
| 736 | case OpCode_UIDBase: |
| 737 | case OpCode_FontBBox: |
| 738 | case OpCode_XUID: |
| 739 | case OpCode_BaseFontBlend: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 740 | env.clear_args (); |
| 741 | break; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 742 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 743 | case OpCode_CIDCount: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 744 | dictval.cidCount = env.argStack.pop_uint (); |
| 745 | env.clear_args (); |
| 746 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 747 | |
| 748 | case OpCode_ROS: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 749 | dictval.ros_supplement = env.argStack.pop_uint (); |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 750 | dictval.nameSIDs[name_dict_values_t::ordering] = env.argStack.pop_uint (); |
| 751 | dictval.nameSIDs[name_dict_values_t::registry] = env.argStack.pop_uint (); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 752 | env.clear_args (); |
| 753 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 754 | |
| 755 | case OpCode_Encoding: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 756 | dictval.EncodingOffset = env.argStack.pop_uint (); |
| 757 | env.clear_args (); |
| 758 | if (unlikely (dictval.EncodingOffset == 0)) return; |
| 759 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 760 | |
| 761 | case OpCode_charset: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 762 | dictval.CharsetOffset = env.argStack.pop_uint (); |
| 763 | env.clear_args (); |
| 764 | if (unlikely (dictval.CharsetOffset == 0)) return; |
| 765 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 766 | |
| 767 | case OpCode_FDSelect: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 768 | dictval.FDSelectOffset = env.argStack.pop_uint (); |
| 769 | env.clear_args (); |
| 770 | break; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 771 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 772 | case OpCode_Private: |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 773 | dictval.privateDictInfo.offset = env.argStack.pop_uint (); |
| 774 | dictval.privateDictInfo.size = env.argStack.pop_uint (); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 775 | env.clear_args (); |
| 776 | break; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 777 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 778 | default: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 779 | env.last_offset = env.str_ref.offset; |
| 780 | top_dict_opset_t<cff1_top_dict_val_t>::process_op (op, env, dictval); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 781 | /* Record this operand below if stack is empty, otherwise done */ |
| 782 | if (!env.argStack.is_empty ()) return; |
| 783 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Michiharu Ariza | 7d99a6c | 2018-10-12 02:16:07 -0700 | [diff] [blame] | 786 | if (unlikely (env.in_error ())) return; |
| 787 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 788 | dictval.add_op (op, env.str_ref, val); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 789 | } |
| 790 | }; |
| 791 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 792 | struct cff1_font_dict_values_t : dict_values_t<op_str_t> |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 793 | { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 794 | void init () |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 795 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 796 | dict_values_t<op_str_t>::init (); |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 797 | privateDictInfo.init (); |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 798 | fontName = CFF_UNDEF_SID; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 799 | } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 800 | void fini () { dict_values_t<op_str_t>::fini (); } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 801 | |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 802 | table_info_t privateDictInfo; |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 803 | unsigned int fontName; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 804 | }; |
| 805 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 806 | struct cff1_font_dict_opset_t : dict_opset_t |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 807 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 808 | static void process_op (op_code_t op, num_interp_env_t& env, cff1_font_dict_values_t& dictval) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 809 | { |
| 810 | switch (op) { |
| 811 | case OpCode_FontName: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 812 | dictval.fontName = env.argStack.pop_uint (); |
| 813 | env.clear_args (); |
| 814 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 815 | case OpCode_FontMatrix: |
| 816 | case OpCode_PaintType: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 817 | env.clear_args (); |
| 818 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 819 | case OpCode_Private: |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 820 | dictval.privateDictInfo.offset = env.argStack.pop_uint (); |
| 821 | dictval.privateDictInfo.size = env.argStack.pop_uint (); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 822 | env.clear_args (); |
| 823 | break; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 824 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 825 | default: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 826 | dict_opset_t::process_op (op, env); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 827 | if (!env.argStack.is_empty ()) return; |
| 828 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Michiharu Ariza | 7d99a6c | 2018-10-12 02:16:07 -0700 | [diff] [blame] | 831 | if (unlikely (env.in_error ())) return; |
| 832 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 833 | dictval.add_op (op, env.str_ref); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 834 | } |
| 835 | }; |
| 836 | |
| 837 | template <typename VAL> |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 838 | struct cff1_private_dict_values_base_t : dict_values_t<VAL> |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 839 | { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 840 | void init () |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 841 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 842 | dict_values_t<VAL>::init (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 843 | subrsOffset = 0; |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 844 | localSubrs = &Null (CFF1Subrs); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 845 | } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 846 | void fini () { dict_values_t<VAL>::fini (); } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 847 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 848 | unsigned int subrsOffset; |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 849 | const CFF1Subrs *localSubrs; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 850 | }; |
| 851 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 852 | typedef cff1_private_dict_values_base_t<op_str_t> cff1_private_dict_values_subset_t; |
| 853 | typedef cff1_private_dict_values_base_t<num_dict_val_t> cff1_private_dict_values_t; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 854 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 855 | struct cff1_private_dict_opset_t : dict_opset_t |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 856 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 857 | static void process_op (op_code_t op, num_interp_env_t& env, cff1_private_dict_values_t& dictval) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 858 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 859 | num_dict_val_t val; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 860 | val.init (); |
| 861 | |
| 862 | switch (op) { |
| 863 | case OpCode_BlueValues: |
| 864 | case OpCode_OtherBlues: |
| 865 | case OpCode_FamilyBlues: |
| 866 | case OpCode_FamilyOtherBlues: |
| 867 | case OpCode_StemSnapH: |
| 868 | case OpCode_StemSnapV: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 869 | env.clear_args (); |
| 870 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 871 | case OpCode_StdHW: |
| 872 | case OpCode_StdVW: |
| 873 | case OpCode_BlueScale: |
| 874 | case OpCode_BlueShift: |
| 875 | case OpCode_BlueFuzz: |
| 876 | case OpCode_ForceBold: |
| 877 | case OpCode_LanguageGroup: |
| 878 | case OpCode_ExpansionFactor: |
| 879 | case OpCode_initialRandomSeed: |
| 880 | case OpCode_defaultWidthX: |
| 881 | case OpCode_nominalWidthX: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 882 | val.single_val = env.argStack.pop_num (); |
| 883 | env.clear_args (); |
| 884 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 885 | case OpCode_Subrs: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 886 | dictval.subrsOffset = env.argStack.pop_uint (); |
| 887 | env.clear_args (); |
| 888 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 889 | |
| 890 | default: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 891 | dict_opset_t::process_op (op, env); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 892 | if (!env.argStack.is_empty ()) return; |
| 893 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Michiharu Ariza | 7d99a6c | 2018-10-12 02:16:07 -0700 | [diff] [blame] | 896 | if (unlikely (env.in_error ())) return; |
| 897 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 898 | dictval.add_op (op, env.str_ref, val); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 899 | } |
| 900 | }; |
| 901 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 902 | struct cff1_private_dict_opset_subset : dict_opset_t |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 903 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 904 | static void process_op (op_code_t op, num_interp_env_t& env, cff1_private_dict_values_subset_t& dictval) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 905 | { |
| 906 | switch (op) { |
| 907 | case OpCode_BlueValues: |
| 908 | case OpCode_OtherBlues: |
| 909 | case OpCode_FamilyBlues: |
| 910 | case OpCode_FamilyOtherBlues: |
| 911 | case OpCode_StemSnapH: |
| 912 | case OpCode_StemSnapV: |
| 913 | case OpCode_StdHW: |
| 914 | case OpCode_StdVW: |
| 915 | case OpCode_BlueScale: |
| 916 | case OpCode_BlueShift: |
| 917 | case OpCode_BlueFuzz: |
| 918 | case OpCode_ForceBold: |
| 919 | case OpCode_LanguageGroup: |
| 920 | case OpCode_ExpansionFactor: |
| 921 | case OpCode_initialRandomSeed: |
| 922 | case OpCode_defaultWidthX: |
| 923 | case OpCode_nominalWidthX: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 924 | env.clear_args (); |
| 925 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 926 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 927 | case OpCode_Subrs: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 928 | dictval.subrsOffset = env.argStack.pop_uint (); |
| 929 | env.clear_args (); |
| 930 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 931 | |
| 932 | default: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 933 | dict_opset_t::process_op (op, env); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 934 | if (!env.argStack.is_empty ()) return; |
| 935 | break; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 936 | } |
| 937 | |
Michiharu Ariza | 7d99a6c | 2018-10-12 02:16:07 -0700 | [diff] [blame] | 938 | if (unlikely (env.in_error ())) return; |
| 939 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 940 | dictval.add_op (op, env.str_ref); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 941 | } |
| 942 | }; |
| 943 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 944 | typedef dict_interpreter_t<cff1_top_dict_opset_t, cff1_top_dict_values_t, cff1_top_dict_interp_env_t> cff1_top_dict_interpreter_t; |
| 945 | typedef dict_interpreter_t<cff1_font_dict_opset_t, cff1_font_dict_values_t> cff1_font_dict_interpreter_t; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 946 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 947 | typedef CFF1Index CFF1NameIndex; |
| 948 | typedef CFF1IndexOf<TopDict> CFF1TopDictIndex; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 949 | |
ariza | c05458e | 2020-03-02 16:51:19 -0800 | [diff] [blame] | 950 | struct cff1_font_dict_values_mod_t |
| 951 | { |
| 952 | cff1_font_dict_values_mod_t() { init (); } |
| 953 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 954 | void init () { init ( &Null (cff1_font_dict_values_t), CFF_UNDEF_SID ); } |
ariza | c05458e | 2020-03-02 16:51:19 -0800 | [diff] [blame] | 955 | |
| 956 | void init (const cff1_font_dict_values_t *base_, |
| 957 | unsigned int fontName_) |
| 958 | { |
| 959 | base = base_; |
| 960 | fontName = fontName_; |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 961 | privateDictInfo.init (); |
ariza | c05458e | 2020-03-02 16:51:19 -0800 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | unsigned get_count () const { return base->get_count (); } |
| 965 | |
| 966 | const op_str_t &operator [] (unsigned int i) const { return (*base)[i]; } |
| 967 | |
| 968 | const cff1_font_dict_values_t *base; |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 969 | table_info_t privateDictInfo; |
ariza | c05458e | 2020-03-02 16:51:19 -0800 | [diff] [blame] | 970 | unsigned int fontName; |
| 971 | }; |
| 972 | |
| 973 | struct CFF1FDArray : FDArray<HBUINT16> |
| 974 | { |
| 975 | /* FDArray::serialize() requires this partial specialization to compile */ |
| 976 | template <typename ITER, typename OP_SERIALIZER> |
| 977 | bool serialize (hb_serialize_context_t *c, ITER it, OP_SERIALIZER& opszr) |
| 978 | { return FDArray<HBUINT16>::serialize<cff1_font_dict_values_mod_t, cff1_font_dict_values_mod_t> (c, it, opszr); } |
| 979 | }; |
| 980 | |
Behdad Esfahbod | d25a2f1 | 2018-12-23 20:19:52 -0500 | [diff] [blame] | 981 | } /* namespace CFF */ |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 982 | |
| 983 | namespace OT { |
| 984 | |
| 985 | using namespace CFF; |
| 986 | |
Michiharu Ariza | e67bb3f | 2018-08-16 00:25:57 -0700 | [diff] [blame] | 987 | struct cff1 |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 988 | { |
Behdad Esfahbod | ef00654 | 2019-01-22 12:08:57 +0100 | [diff] [blame] | 989 | static constexpr hb_tag_t tableTag = HB_OT_TAG_cff1; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 990 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 991 | bool sanitize (hb_sanitize_context_t *c) const |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 992 | { |
| 993 | TRACE_SANITIZE (this); |
| 994 | return_trace (c->check_struct (this) && |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 995 | likely (version.major == 1)); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Michiharu Ariza | fcf1778 | 2018-08-31 16:28:47 -0700 | [diff] [blame] | 998 | template <typename PRIVOPSET, typename PRIVDICTVAL> |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 999 | struct accelerator_templ_t |
| 1000 | { |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 1001 | void init (hb_face_t *face) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1002 | { |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 1003 | topDict.init (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1004 | fontDicts.init (); |
| 1005 | privateDicts.init (); |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 1006 | |
Michiharu Ariza | e67bb3f | 2018-08-16 00:25:57 -0700 | [diff] [blame] | 1007 | this->blob = sc.reference_table<cff1> (face); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1008 | |
| 1009 | /* setup for run-time santization */ |
| 1010 | sc.init (this->blob); |
| 1011 | sc.start_processing (); |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 1012 | |
Michiharu Ariza | e67bb3f | 2018-08-16 00:25:57 -0700 | [diff] [blame] | 1013 | const OT::cff1 *cff = this->blob->template as<OT::cff1> (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1014 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1015 | if (cff == &Null (OT::cff1)) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1016 | { fini (); return; } |
| 1017 | |
| 1018 | nameIndex = &cff->nameIndex (cff); |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 1019 | if ((nameIndex == &Null (CFF1NameIndex)) || !nameIndex->sanitize (&sc)) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1020 | { fini (); return; } |
| 1021 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 1022 | topDictIndex = &StructAtOffset<CFF1TopDictIndex> (nameIndex, nameIndex->get_size ()); |
| 1023 | if ((topDictIndex == &Null (CFF1TopDictIndex)) || !topDictIndex->sanitize (&sc) || (topDictIndex->count == 0)) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1024 | { fini (); return; } |
| 1025 | |
| 1026 | { /* parse top dict */ |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1027 | const byte_str_t topDictStr = (*topDictIndex)[0]; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1028 | if (unlikely (!topDictStr.sanitize (&sc))) { fini (); return; } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1029 | cff1_top_dict_interpreter_t top_interp; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1030 | top_interp.env.init (topDictStr); |
| 1031 | topDict.init (); |
| 1032 | if (unlikely (!top_interp.interpret (topDict))) { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1033 | } |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 1034 | |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1035 | if (is_predef_charset ()) |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1036 | charset = &Null (Charset); |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1037 | else |
| 1038 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1039 | charset = &StructAtOffsetOrNull<Charset> (cff, topDict.CharsetOffset); |
| 1040 | if (unlikely ((charset == &Null (Charset)) || !charset->sanitize (&sc))) { fini (); return; } |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1041 | } |
| 1042 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1043 | fdCount = 1; |
| 1044 | if (is_CID ()) |
| 1045 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1046 | fdArray = &StructAtOffsetOrNull<CFF1FDArray> (cff, topDict.FDArrayOffset); |
| 1047 | fdSelect = &StructAtOffsetOrNull<CFF1FDSelect> (cff, topDict.FDSelectOffset); |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1048 | if (unlikely ((fdArray == &Null (CFF1FDArray)) || !fdArray->sanitize (&sc) || |
| 1049 | (fdSelect == &Null (CFF1FDSelect)) || !fdSelect->sanitize (&sc, fdArray->count))) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1050 | { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1051 | |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1052 | fdCount = fdArray->count; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1053 | } |
| 1054 | else |
| 1055 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1056 | fdArray = &Null (CFF1FDArray); |
| 1057 | fdSelect = &Null (CFF1FDSelect); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1060 | encoding = &Null (Encoding); |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1061 | if (is_CID ()) |
| 1062 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1063 | if (unlikely (charset == &Null (Charset))) { fini (); return; } |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1064 | } |
| 1065 | else |
| 1066 | { |
| 1067 | if (!is_predef_encoding ()) |
| 1068 | { |
| 1069 | encoding = &StructAtOffsetOrNull<Encoding> (cff, topDict.EncodingOffset); |
| 1070 | if (unlikely ((encoding == &Null (Encoding)) || !encoding->sanitize (&sc))) { fini (); return; } |
| 1071 | } |
| 1072 | } |
| 1073 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 1074 | stringIndex = &StructAtOffset<CFF1StringIndex> (topDictIndex, topDictIndex->get_size ()); |
| 1075 | if ((stringIndex == &Null (CFF1StringIndex)) || !stringIndex->sanitize (&sc)) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1076 | { fini (); return; } |
| 1077 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 1078 | globalSubrs = &StructAtOffset<CFF1Subrs> (stringIndex, stringIndex->get_size ()); |
Michiharu Ariza | 6dcfda9 | 2018-12-05 15:07:46 -0800 | [diff] [blame] | 1079 | if ((globalSubrs != &Null (CFF1Subrs)) && !globalSubrs->sanitize (&sc)) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1080 | { fini (); return; } |
| 1081 | |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 1082 | charStrings = &StructAtOffsetOrNull<CFF1CharStrings> (cff, topDict.charStringsOffset); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1083 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1084 | if ((charStrings == &Null (CFF1CharStrings)) || unlikely (!charStrings->sanitize (&sc))) |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1085 | { fini (); return; } |
| 1086 | |
| 1087 | num_glyphs = charStrings->count; |
| 1088 | if (num_glyphs != sc.get_num_glyphs ()) |
| 1089 | { fini (); return; } |
| 1090 | |
Garret Rieger | d307c24 | 2020-07-29 12:23:37 -0700 | [diff] [blame] | 1091 | if (unlikely (!privateDicts.resize (fdCount))) |
| 1092 | { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1093 | for (unsigned int i = 0; i < fdCount; i++) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1094 | privateDicts[i].init (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1095 | |
| 1096 | // parse CID font dicts and gather private dicts |
| 1097 | if (is_CID ()) |
| 1098 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1099 | for (unsigned int i = 0; i < fdCount; i++) |
| 1100 | { |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1101 | byte_str_t fontDictStr = (*fdArray)[i]; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1102 | if (unlikely (!fontDictStr.sanitize (&sc))) { fini (); return; } |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1103 | cff1_font_dict_values_t *font; |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1104 | cff1_font_dict_interpreter_t font_interp; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1105 | font_interp.env.init (fontDictStr); |
| 1106 | font = fontDicts.push (); |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1107 | if (unlikely (font == &Crap (cff1_font_dict_values_t))) { fini (); return; } |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1108 | font->init (); |
| 1109 | if (unlikely (!font_interp.interpret (*font))) { fini (); return; } |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1110 | PRIVDICTVAL *priv = &privateDicts[i]; |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 1111 | const byte_str_t privDictStr (StructAtOffset<UnsizedByteStr> (cff, font->privateDictInfo.offset), font->privateDictInfo.size); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1112 | if (unlikely (!privDictStr.sanitize (&sc))) { fini (); return; } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1113 | dict_interpreter_t<PRIVOPSET, PRIVDICTVAL> priv_interp; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1114 | priv_interp.env.init (privDictStr); |
| 1115 | priv->init (); |
| 1116 | if (unlikely (!priv_interp.interpret (*priv))) { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1117 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1118 | priv->localSubrs = &StructAtOffsetOrNull<CFF1Subrs> (&privDictStr, priv->subrsOffset); |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1119 | if (priv->localSubrs != &Null (CFF1Subrs) && |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1120 | unlikely (!priv->localSubrs->sanitize (&sc))) |
| 1121 | { fini (); return; } |
| 1122 | } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1123 | } |
| 1124 | else /* non-CID */ |
| 1125 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1126 | cff1_top_dict_values_t *font = &topDict; |
| 1127 | PRIVDICTVAL *priv = &privateDicts[0]; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 1128 | |
ariza | 0b29053 | 2020-03-04 22:31:21 -0800 | [diff] [blame] | 1129 | const byte_str_t privDictStr (StructAtOffset<UnsizedByteStr> (cff, font->privateDictInfo.offset), font->privateDictInfo.size); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1130 | if (unlikely (!privDictStr.sanitize (&sc))) { fini (); return; } |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1131 | dict_interpreter_t<PRIVOPSET, PRIVDICTVAL> priv_interp; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1132 | priv_interp.env.init (privDictStr); |
| 1133 | priv->init (); |
| 1134 | if (unlikely (!priv_interp.interpret (*priv))) { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1135 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 1136 | priv->localSubrs = &StructAtOffsetOrNull<CFF1Subrs> (&privDictStr, priv->subrsOffset); |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1137 | if (priv->localSubrs != &Null (CFF1Subrs) && |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1138 | unlikely (!priv->localSubrs->sanitize (&sc))) |
| 1139 | { fini (); return; } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1140 | } |
| 1141 | } |
| 1142 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 1143 | void fini () |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1144 | { |
| 1145 | sc.end_processing (); |
Michiharu Ariza | 1666b89 | 2018-09-10 16:00:20 -0700 | [diff] [blame] | 1146 | topDict.fini (); |
Michiharu Ariza | 0b952e6 | 2018-12-04 10:22:35 -0800 | [diff] [blame] | 1147 | fontDicts.fini_deep (); |
Michiharu Ariza | b51418f | 2018-10-08 15:05:36 -0700 | [diff] [blame] | 1148 | privateDicts.fini_deep (); |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1149 | hb_blob_destroy (blob); |
| 1150 | blob = nullptr; |
| 1151 | } |
| 1152 | |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 1153 | bool is_valid () const { return blob; } |
Ebrahim Byagowi | 0558413 | 2019-10-01 13:49:55 +0330 | [diff] [blame] | 1154 | bool is_CID () const { return topDict.is_CID (); } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1155 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 1156 | bool is_predef_charset () const { return topDict.CharsetOffset <= ExpertSubsetCharset; } |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1157 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 1158 | unsigned int std_code_to_glyph (hb_codepoint_t code) const |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1159 | { |
| 1160 | hb_codepoint_t sid = lookup_standard_encoding_for_sid (code); |
| 1161 | if (unlikely (sid == CFF_UNDEF_SID)) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1162 | return 0; |
Behdad Esfahbod | 592f39b | 2018-11-30 22:54:57 -0500 | [diff] [blame] | 1163 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1164 | if (charset != &Null (Charset)) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1165 | return charset->get_glyph (sid, num_glyphs); |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1166 | else if ((topDict.CharsetOffset == ISOAdobeCharset) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1167 | && (code <= 228 /*zcaron*/)) return sid; |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1168 | return 0; |
| 1169 | } |
| 1170 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 1171 | bool is_predef_encoding () const { return topDict.EncodingOffset <= ExpertEncoding; } |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1172 | |
Ebrahim Byagowi | 0558413 | 2019-10-01 13:49:55 +0330 | [diff] [blame] | 1173 | hb_codepoint_t glyph_to_code (hb_codepoint_t glyph) const |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1174 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1175 | if (encoding != &Null (Encoding)) |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1176 | return encoding->get_code (glyph); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1177 | else |
| 1178 | { |
Ebrahim Byagowi | 0558413 | 2019-10-01 13:49:55 +0330 | [diff] [blame] | 1179 | hb_codepoint_t sid = glyph_to_sid (glyph); |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1180 | if (sid == 0) return 0; |
Ebrahim Byagowi | 0558413 | 2019-10-01 13:49:55 +0330 | [diff] [blame] | 1181 | hb_codepoint_t code = 0; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1182 | switch (topDict.EncodingOffset) |
| 1183 | { |
Ebrahim Byagowi | 0558413 | 2019-10-01 13:49:55 +0330 | [diff] [blame] | 1184 | case StandardEncoding: |
| 1185 | code = lookup_standard_encoding_for_code (sid); |
| 1186 | break; |
| 1187 | case ExpertEncoding: |
| 1188 | code = lookup_expert_encoding_for_code (sid); |
| 1189 | break; |
| 1190 | default: |
| 1191 | break; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1192 | } |
| 1193 | return code; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1194 | } |
| 1195 | } |
| 1196 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 1197 | hb_codepoint_t glyph_to_sid (hb_codepoint_t glyph) const |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1198 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1199 | if (charset != &Null (Charset)) |
blueshade7 | 59fe379 | 2019-11-16 19:47:31 -0800 | [diff] [blame] | 1200 | return charset->get_sid (glyph, num_glyphs); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1201 | else |
| 1202 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1203 | hb_codepoint_t sid = 0; |
| 1204 | switch (topDict.CharsetOffset) |
| 1205 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1206 | case ISOAdobeCharset: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1207 | if (glyph <= 228 /*zcaron*/) sid = glyph; |
| 1208 | break; |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1209 | case ExpertCharset: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1210 | sid = lookup_expert_charset_for_sid (glyph); |
| 1211 | break; |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1212 | case ExpertSubsetCharset: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1213 | sid = lookup_expert_subset_charset_for_sid (glyph); |
| 1214 | break; |
| 1215 | default: |
| 1216 | break; |
| 1217 | } |
| 1218 | return sid; |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1219 | } |
| 1220 | } |
| 1221 | |
ariza | 22f7c61 | 2020-04-17 23:49:51 -0700 | [diff] [blame] | 1222 | hb_codepoint_t sid_to_glyph (hb_codepoint_t sid) const |
| 1223 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1224 | if (charset != &Null (Charset)) |
| 1225 | return charset->get_glyph (sid, num_glyphs); |
ariza | 22f7c61 | 2020-04-17 23:49:51 -0700 | [diff] [blame] | 1226 | else |
| 1227 | { |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1228 | hb_codepoint_t glyph = 0; |
| 1229 | switch (topDict.CharsetOffset) |
| 1230 | { |
| 1231 | case ISOAdobeCharset: |
| 1232 | if (sid <= 228 /*zcaron*/) glyph = sid; |
| 1233 | break; |
| 1234 | case ExpertCharset: |
| 1235 | glyph = lookup_expert_charset_for_glyph (sid); |
| 1236 | break; |
| 1237 | case ExpertSubsetCharset: |
| 1238 | glyph = lookup_expert_subset_charset_for_glyph (sid); |
| 1239 | break; |
| 1240 | default: |
| 1241 | break; |
| 1242 | } |
| 1243 | return glyph; |
ariza | 22f7c61 | 2020-04-17 23:49:51 -0700 | [diff] [blame] | 1244 | } |
| 1245 | } |
| 1246 | |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1247 | protected: |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1248 | hb_blob_t *blob; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1249 | hb_sanitize_context_t sc; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1250 | |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1251 | public: |
| 1252 | const Encoding *encoding; |
| 1253 | const Charset *charset; |
| 1254 | const CFF1NameIndex *nameIndex; |
| 1255 | const CFF1TopDictIndex *topDictIndex; |
| 1256 | const CFF1StringIndex *stringIndex; |
| 1257 | const CFF1Subrs *globalSubrs; |
| 1258 | const CFF1CharStrings *charStrings; |
| 1259 | const CFF1FDArray *fdArray; |
| 1260 | const CFF1FDSelect *fdSelect; |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1261 | unsigned int fdCount; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1262 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1263 | cff1_top_dict_values_t topDict; |
| 1264 | hb_vector_t<cff1_font_dict_values_t> |
| 1265 | fontDicts; |
| 1266 | hb_vector_t<PRIVDICTVAL> privateDicts; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1267 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1268 | unsigned int num_glyphs; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1269 | }; |
| 1270 | |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1271 | struct accelerator_t : accelerator_templ_t<cff1_private_dict_opset_t, cff1_private_dict_values_t> |
| 1272 | { |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1273 | void init (hb_face_t *face) |
| 1274 | { |
| 1275 | SUPER::init (face); |
| 1276 | |
| 1277 | if (!is_valid ()) return; |
| 1278 | if (is_CID ()) return; |
| 1279 | |
| 1280 | /* fill glyph_names */ |
| 1281 | for (hb_codepoint_t gid = 0; gid < num_glyphs; gid++) |
| 1282 | { |
blueshade7 | 6170726 | 2019-11-19 17:09:12 -0800 | [diff] [blame] | 1283 | hb_codepoint_t sid = glyph_to_sid (gid); |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1284 | gname_t gname; |
| 1285 | gname.sid = sid; |
| 1286 | if (sid < cff1_std_strings_length) |
| 1287 | gname.name = cff1_std_strings (sid); |
| 1288 | else |
| 1289 | { |
| 1290 | byte_str_t ustr = (*stringIndex)[sid - cff1_std_strings_length]; |
| 1291 | gname.name = hb_bytes_t ((const char*)ustr.arrayZ, ustr.length); |
| 1292 | } |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 1293 | if (unlikely (!gname.name.arrayZ)) { fini (); return; } |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1294 | glyph_names.push (gname); |
| 1295 | } |
| 1296 | glyph_names.qsort (); |
| 1297 | } |
| 1298 | |
blueshade7 | 4c4e08a | 2019-11-19 16:50:28 -0800 | [diff] [blame] | 1299 | void fini () |
| 1300 | { |
| 1301 | glyph_names.fini (); |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 1302 | |
blueshade7 | 4c4e08a | 2019-11-19 16:50:28 -0800 | [diff] [blame] | 1303 | SUPER::fini (); |
| 1304 | } |
| 1305 | |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1306 | bool get_glyph_name (hb_codepoint_t glyph, |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1307 | char *buf, unsigned int buf_len) const |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1308 | { |
| 1309 | if (!buf) return true; |
blueshade7 | e26df43 | 2019-11-16 19:12:34 -0800 | [diff] [blame] | 1310 | if (unlikely (!is_valid ())) return false; |
blueshade7 | 6d9eb9c | 2019-11-17 02:20:22 -0800 | [diff] [blame] | 1311 | if (is_CID()) return false; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1312 | hb_codepoint_t sid = glyph_to_sid (glyph); |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1313 | const char *str; |
| 1314 | size_t str_len; |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1315 | if (sid < cff1_std_strings_length) |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1316 | { |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1317 | hb_bytes_t byte_str = cff1_std_strings (sid); |
| 1318 | str = byte_str.arrayZ; |
| 1319 | str_len = byte_str.length; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1320 | } |
| 1321 | else |
| 1322 | { |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1323 | byte_str_t ubyte_str = (*stringIndex)[sid - cff1_std_strings_length]; |
| 1324 | str = (const char *)ubyte_str.arrayZ; |
| 1325 | str_len = ubyte_str.length; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1326 | } |
| 1327 | if (!str_len) return false; |
| 1328 | unsigned int len = hb_min (buf_len - 1, str_len); |
| 1329 | strncpy (buf, (const char*)str, len); |
| 1330 | buf[len] = '\0'; |
| 1331 | return true; |
| 1332 | } |
| 1333 | |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1334 | bool get_glyph_from_name (const char *name, int len, |
| 1335 | hb_codepoint_t *glyph) const |
| 1336 | { |
| 1337 | if (len < 0) len = strlen (name); |
| 1338 | if (unlikely (!len)) return false; |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 1339 | |
Ebrahim Byagowi | 2dda6dd | 2020-04-20 14:12:45 +0430 | [diff] [blame] | 1340 | gname_t key = { hb_bytes_t (name, len), 0 }; |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1341 | const gname_t *gname = glyph_names.bsearch (key); |
Ebrahim Byagowi | 2be859d | 2020-04-20 23:48:23 +0430 | [diff] [blame] | 1342 | if (!gname) return false; |
ariza | 22f7c61 | 2020-04-17 23:49:51 -0700 | [diff] [blame] | 1343 | hb_codepoint_t gid = sid_to_glyph (gname->sid); |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1344 | if (!gid && gname->sid) return false; |
| 1345 | *glyph = gid; |
| 1346 | return true; |
| 1347 | } |
| 1348 | |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1349 | HB_INTERNAL bool get_extents (hb_font_t *font, hb_codepoint_t glyph, hb_glyph_extents_t *extents) const; |
| 1350 | HB_INTERNAL bool get_seac_components (hb_codepoint_t glyph, hb_codepoint_t *base, hb_codepoint_t *accent) const; |
Ebrahim Byagowi | 755a77d | 2020-01-29 22:26:04 +0330 | [diff] [blame] | 1351 | #ifdef HB_EXPERIMENTAL_API |
Ebrahim Byagowi | 9fe0dc3 | 2020-02-26 17:40:44 +0330 | [diff] [blame] | 1352 | HB_INTERNAL bool get_path (hb_font_t *font, hb_codepoint_t glyph, draw_helper_t &draw_helper) const; |
Ebrahim Byagowi | 755a77d | 2020-01-29 22:26:04 +0330 | [diff] [blame] | 1353 | #endif |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1354 | |
| 1355 | private: |
| 1356 | struct gname_t |
| 1357 | { |
| 1358 | hb_bytes_t name; |
| 1359 | uint16_t sid; |
| 1360 | |
| 1361 | static int cmp (const void *a_, const void *b_) |
| 1362 | { |
| 1363 | const gname_t *a = (const gname_t *)a_; |
| 1364 | const gname_t *b = (const gname_t *)b_; |
| 1365 | int minlen = hb_min (a->name.length, b->name.length); |
| 1366 | int ret = strncmp (a->name.arrayZ, b->name.arrayZ, minlen); |
| 1367 | if (ret) return ret; |
| 1368 | return a->name.length - b->name.length; |
| 1369 | } |
| 1370 | |
| 1371 | int cmp (const gname_t &a) const { return cmp (&a, this); } |
| 1372 | }; |
Ebrahim Byagowi | ce114d6 | 2019-12-31 15:53:02 +0330 | [diff] [blame] | 1373 | |
blueshade7 | ff87465 | 2019-11-19 16:18:33 -0800 | [diff] [blame] | 1374 | hb_sorted_vector_t<gname_t> glyph_names; |
| 1375 | |
| 1376 | typedef accelerator_templ_t<cff1_private_dict_opset_t, cff1_private_dict_values_t> SUPER; |
blueshade7 | 7b49042 | 2019-11-16 18:20:16 -0800 | [diff] [blame] | 1377 | }; |
| 1378 | |
| 1379 | struct accelerator_subset_t : accelerator_templ_t<cff1_private_dict_opset_subset, cff1_private_dict_values_subset_t> {}; |
| 1380 | |
Ebrahim Byagowi | 25707e3 | 2020-02-05 00:27:28 +0330 | [diff] [blame] | 1381 | bool subset (hb_subset_context_t *c) const { return hb_subset_cff1 (c); } |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1382 | |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1383 | protected: |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1384 | HB_INTERNAL static hb_codepoint_t lookup_standard_encoding_for_code (hb_codepoint_t sid); |
| 1385 | HB_INTERNAL static hb_codepoint_t lookup_expert_encoding_for_code (hb_codepoint_t sid); |
| 1386 | HB_INTERNAL static hb_codepoint_t lookup_expert_charset_for_sid (hb_codepoint_t glyph); |
| 1387 | HB_INTERNAL static hb_codepoint_t lookup_expert_subset_charset_for_sid (hb_codepoint_t glyph); |
ariza | 22f7c61 | 2020-04-17 23:49:51 -0700 | [diff] [blame] | 1388 | HB_INTERNAL static hb_codepoint_t lookup_expert_charset_for_glyph (hb_codepoint_t sid); |
| 1389 | HB_INTERNAL static hb_codepoint_t lookup_expert_subset_charset_for_glyph (hb_codepoint_t sid); |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 1390 | HB_INTERNAL static hb_codepoint_t lookup_standard_encoding_for_sid (hb_codepoint_t code); |
Michiharu Ariza | aca73c9 | 2018-09-06 17:28:15 -0700 | [diff] [blame] | 1391 | |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1392 | public: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1393 | FixedVersion<HBUINT8> version; /* Version of CFF table. set to 0x0100u */ |
Behdad Esfahbod | c539afb | 2021-03-31 13:28:25 -0600 | [diff] [blame] | 1394 | NNOffsetTo<CFF1NameIndex, HBUINT8> nameIndex; /* headerSize = Offset to Name INDEX. */ |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 1395 | HBUINT8 offSize; /* offset size (unused?) */ |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1396 | |
| 1397 | public: |
| 1398 | DEFINE_SIZE_STATIC (4); |
| 1399 | }; |
| 1400 | |
Michiharu Ariza | c0c85b8 | 2018-09-17 11:14:56 -0700 | [diff] [blame] | 1401 | struct cff1_accelerator_t : cff1::accelerator_t {}; |
Michiharu Ariza | 64c5412 | 2018-08-10 11:07:07 -0700 | [diff] [blame] | 1402 | } /* namespace OT */ |
| 1403 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 1404 | #endif /* HB_OT_CFF1_TABLE_HH */ |