Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 1 | /* |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 2 | * Copyright © 2010,2012 Google, Inc. |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [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 | * Google Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 27 | #include "hb-ot-shape-complex-arabic-private.hh" |
Behdad Esfahbod | d1deaa2 | 2012-05-09 15:04:13 +0200 | [diff] [blame] | 28 | #include "hb-ot-shape-private.hh" |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 29 | |
Behdad Esfahbod | 3a852ae | 2010-11-03 16:37:24 -0400 | [diff] [blame] | 30 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 31 | #ifndef HB_DEBUG_ARABIC |
| 32 | #define HB_DEBUG_ARABIC (HB_DEBUG+0) |
| 33 | #endif |
| 34 | |
| 35 | |
Behdad Esfahbod | 3a852ae | 2010-11-03 16:37:24 -0400 | [diff] [blame] | 36 | /* buffer var allocations */ |
Behdad Esfahbod | cd0c6e1 | 2012-08-09 21:48:55 -0400 | [diff] [blame] | 37 | #define arabic_shaping_action() complex_var_u8_0() /* arabic shaping action */ |
Behdad Esfahbod | 3a852ae | 2010-11-03 16:37:24 -0400 | [diff] [blame] | 38 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 39 | #define HB_BUFFER_SCRATCH_FLAG_ARABIC_HAS_STCH HB_BUFFER_SCRATCH_FLAG_COMPLEX0 |
| 40 | |
Behdad Esfahbod | 59821ab | 2015-11-06 16:27:44 -0800 | [diff] [blame] | 41 | /* See: |
| 42 | * https://github.com/behdad/harfbuzz/commit/6e6f82b6f3dde0fc6c3c7d991d9ec6cfff57823d#commitcomment-14248516 */ |
| 43 | #define HB_ARABIC_GENERAL_CATEGORY_IS_WORD(gen_cat) \ |
| 44 | (FLAG_SAFE (gen_cat) & \ |
| 45 | (FLAG (HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED) | \ |
| 46 | FLAG (HB_UNICODE_GENERAL_CATEGORY_PRIVATE_USE) | \ |
| 47 | /*FLAG (HB_UNICODE_GENERAL_CATEGORY_LOWERCASE_LETTER) |*/ \ |
| 48 | FLAG (HB_UNICODE_GENERAL_CATEGORY_MODIFIER_LETTER) | \ |
| 49 | FLAG (HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER) | \ |
| 50 | /*FLAG (HB_UNICODE_GENERAL_CATEGORY_TITLECASE_LETTER) |*/ \ |
| 51 | /*FLAG (HB_UNICODE_GENERAL_CATEGORY_UPPERCASE_LETTER) |*/ \ |
| 52 | FLAG (HB_UNICODE_GENERAL_CATEGORY_SPACING_MARK) | \ |
| 53 | FLAG (HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK) | \ |
| 54 | FLAG (HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) | \ |
| 55 | FLAG (HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER) | \ |
| 56 | FLAG (HB_UNICODE_GENERAL_CATEGORY_LETTER_NUMBER) | \ |
| 57 | FLAG (HB_UNICODE_GENERAL_CATEGORY_OTHER_NUMBER) | \ |
| 58 | FLAG (HB_UNICODE_GENERAL_CATEGORY_CURRENCY_SYMBOL) | \ |
| 59 | FLAG (HB_UNICODE_GENERAL_CATEGORY_MODIFIER_SYMBOL) | \ |
| 60 | FLAG (HB_UNICODE_GENERAL_CATEGORY_MATH_SYMBOL) | \ |
| 61 | FLAG (HB_UNICODE_GENERAL_CATEGORY_OTHER_SYMBOL))) |
| 62 | |
Behdad Esfahbod | 3a852ae | 2010-11-03 16:37:24 -0400 | [diff] [blame] | 63 | |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 64 | /* |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 65 | * Joining types: |
| 66 | */ |
| 67 | |
| 68 | /* |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 69 | * Bits used in the joining tables |
| 70 | */ |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 71 | enum hb_arabic_joining_type_t { |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 72 | JOINING_TYPE_U = 0, |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 73 | JOINING_TYPE_L = 1, |
| 74 | JOINING_TYPE_R = 2, |
| 75 | JOINING_TYPE_D = 3, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 76 | JOINING_TYPE_C = JOINING_TYPE_D, |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 77 | JOINING_GROUP_ALAPH = 4, |
| 78 | JOINING_GROUP_DALATH_RISH = 5, |
| 79 | NUM_STATE_MACHINE_COLS = 6, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 80 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 81 | JOINING_TYPE_T = 7, |
| 82 | JOINING_TYPE_X = 8 /* means: use general-category to choose between U or T. */ |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 83 | }; |
| 84 | |
Behdad Esfahbod | c57d454 | 2011-04-20 18:50:27 -0400 | [diff] [blame] | 85 | #include "hb-ot-shape-complex-arabic-table.hh" |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 86 | |
Behdad Esfahbod | 99b7476 | 2011-04-11 15:47:40 -0400 | [diff] [blame] | 87 | static unsigned int get_joining_type (hb_codepoint_t u, hb_unicode_general_category_t gen_cat) |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 88 | { |
Behdad Esfahbod | b900fa2 | 2014-06-20 17:59:43 -0400 | [diff] [blame] | 89 | unsigned int j_type = joining_type(u); |
| 90 | if (likely (j_type != JOINING_TYPE_X)) |
| 91 | return j_type; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 92 | |
Behdad Esfahbod | f8160a4 | 2015-07-21 15:50:02 +0100 | [diff] [blame] | 93 | return (FLAG_SAFE(gen_cat) & |
Behdad Esfahbod | 5d4d738 | 2014-06-21 14:53:21 -0600 | [diff] [blame] | 94 | (FLAG(HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) | |
| 95 | FLAG(HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK) | |
| 96 | FLAG(HB_UNICODE_GENERAL_CATEGORY_FORMAT)) |
| 97 | ) ? JOINING_TYPE_T : JOINING_TYPE_U; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 98 | } |
| 99 | |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 100 | #define FEATURE_IS_SYRIAC(tag) hb_in_range<unsigned char> ((unsigned char) (tag), '2', '3') |
| 101 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 102 | static const hb_tag_t arabic_features[] = |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 103 | { |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 104 | HB_TAG('i','s','o','l'), |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 105 | HB_TAG('f','i','n','a'), |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 106 | HB_TAG('f','i','n','2'), |
| 107 | HB_TAG('f','i','n','3'), |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 108 | HB_TAG('m','e','d','i'), |
| 109 | HB_TAG('m','e','d','2'), |
| 110 | HB_TAG('i','n','i','t'), |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 111 | HB_TAG_NONE |
| 112 | }; |
| 113 | |
| 114 | |
| 115 | /* Same order as the feature array */ |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 116 | enum arabic_action_t { |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 117 | ISOL, |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 118 | FINA, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 119 | FIN2, |
| 120 | FIN3, |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 121 | MEDI, |
| 122 | MED2, |
| 123 | INIT, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 124 | |
| 125 | NONE, |
| 126 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 127 | ARABIC_NUM_FEATURES = NONE, |
| 128 | |
| 129 | /* We abuse the same byte for other things... */ |
| 130 | STCH_FIXED, |
| 131 | STCH_REPEATING, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 132 | }; |
| 133 | |
| 134 | static const struct arabic_state_table_entry { |
| 135 | uint8_t prev_action; |
| 136 | uint8_t curr_action; |
Behdad Esfahbod | 31f18ab | 2011-06-15 09:49:58 -0400 | [diff] [blame] | 137 | uint16_t next_state; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 138 | } arabic_state_table[][NUM_STATE_MACHINE_COLS] = |
| 139 | { |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 140 | /* jt_U, jt_L, jt_R, jt_D, jg_ALAPH, jg_DALATH_RISH */ |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 141 | |
| 142 | /* State 0: prev was U, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 143 | { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 144 | |
| 145 | /* State 1: prev was R or ISOL/ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 146 | { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN2,5}, {NONE,ISOL,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 147 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 148 | /* State 2: prev was D/L in ISOL form, willing to join. */ |
| 149 | { {NONE,NONE,0}, {NONE,ISOL,2}, {INIT,FINA,1}, {INIT,FINA,3}, {INIT,FINA,4}, {INIT,FINA,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 150 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 151 | /* State 3: prev was D in FINA form, willing to join. */ |
| 152 | { {NONE,NONE,0}, {NONE,ISOL,2}, {MEDI,FINA,1}, {MEDI,FINA,3}, {MEDI,FINA,4}, {MEDI,FINA,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 153 | |
| 154 | /* State 4: prev was FINA ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 155 | { {NONE,NONE,0}, {NONE,ISOL,2}, {MED2,ISOL,1}, {MED2,ISOL,2}, {MED2,FIN2,5}, {MED2,ISOL,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 156 | |
| 157 | /* State 5: prev was FIN2/FIN3 ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 158 | { {NONE,NONE,0}, {NONE,ISOL,2}, {ISOL,ISOL,1}, {ISOL,ISOL,2}, {ISOL,FIN2,5}, {ISOL,ISOL,6}, }, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 159 | |
| 160 | /* State 6: prev was DALATH/RISH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 161 | { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN3,5}, {NONE,ISOL,6}, } |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 165 | static void |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 166 | nuke_joiners (const hb_ot_shape_plan_t *plan, |
| 167 | hb_font_t *font, |
| 168 | hb_buffer_t *buffer); |
| 169 | |
| 170 | static void |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 171 | arabic_fallback_shape (const hb_ot_shape_plan_t *plan, |
| 172 | hb_font_t *font, |
| 173 | hb_buffer_t *buffer); |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 174 | |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 175 | static void |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 176 | record_stch (const hb_ot_shape_plan_t *plan, |
| 177 | hb_font_t *font, |
| 178 | hb_buffer_t *buffer); |
| 179 | |
| 180 | static void |
Behdad Esfahbod | 16c6a27 | 2012-08-02 09:38:28 -0400 | [diff] [blame] | 181 | collect_features_arabic (hb_ot_shape_planner_t *plan) |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 182 | { |
Behdad Esfahbod | 16c6a27 | 2012-08-02 09:38:28 -0400 | [diff] [blame] | 183 | hb_ot_map_builder_t *map = &plan->map; |
| 184 | |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 185 | /* We apply features according to the Arabic spec, with pauses |
| 186 | * in between most. |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 187 | * |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 188 | * The pause between init/medi/... and rlig is required. See eg: |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 189 | * https://bugzilla.mozilla.org/show_bug.cgi?id=644184 |
Behdad Esfahbod | 71b4c99 | 2013-10-28 00:20:59 +0100 | [diff] [blame] | 190 | * |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 191 | * The pauses between init/medi/... themselves are not necessarily |
| 192 | * needed as only one of those features is applied to any character. |
| 193 | * The only difference it makes is when fonts have contextual |
| 194 | * substitutions. We now follow the order of the spec, which makes |
| 195 | * for better experience if that's what Uniscribe is doing. |
| 196 | * |
| 197 | * At least for Arabic, looks like Uniscribe has a pause between |
| 198 | * rlig and calt. Otherwise the IranNastaliq's ALLAH ligature won't |
| 199 | * work. However, testing shows that rlig and calt are applied |
| 200 | * together for Mongolian in Uniscribe. As such, we only add a |
| 201 | * pause for Arabic, not other scripts. |
Behdad Esfahbod | c1432bc | 2017-07-14 17:34:47 +0100 | [diff] [blame] | 202 | * |
| 203 | * A pause after calt is required to make KFGQPC Uthmanic Script HAFS |
| 204 | * work correctly. See https://github.com/behdad/harfbuzz/issues/505 |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 205 | */ |
| 206 | |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 207 | map->add_gsub_pause (nuke_joiners); |
| 208 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 209 | map->add_global_bool_feature (HB_TAG('s','t','c','h')); |
| 210 | map->add_gsub_pause (record_stch); |
| 211 | |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 212 | map->add_global_bool_feature (HB_TAG('c','c','m','p')); |
| 213 | map->add_global_bool_feature (HB_TAG('l','o','c','l')); |
Behdad Esfahbod | f6fd378 | 2011-07-08 00:22:40 -0400 | [diff] [blame] | 214 | |
Behdad Esfahbod | 3e38c0f | 2012-08-02 09:44:18 -0400 | [diff] [blame] | 215 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | a71b9c8 | 2011-04-06 14:04:56 -0400 | [diff] [blame] | 216 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 217 | for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++) |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 218 | { |
| 219 | bool has_fallback = plan->props.script == HB_SCRIPT_ARABIC && !FEATURE_IS_SYRIAC (arabic_features[i]); |
| 220 | map->add_feature (arabic_features[i], 1, has_fallback ? F_HAS_FALLBACK : F_NONE); |
Behdad Esfahbod | 7e2da03 | 2016-04-26 16:42:25 -0700 | [diff] [blame] | 221 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 222 | } |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 223 | |
Behdad Esfahbod | ec54486 | 2013-02-14 11:25:10 -0500 | [diff] [blame] | 224 | map->add_feature (HB_TAG('r','l','i','g'), 1, F_GLOBAL|F_HAS_FALLBACK); |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 225 | if (plan->props.script == HB_SCRIPT_ARABIC) |
| 226 | map->add_gsub_pause (arabic_fallback_shape); |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 227 | |
Behdad Esfahbod | c1432bc | 2017-07-14 17:34:47 +0100 | [diff] [blame] | 228 | /* No pause after rclt. See 98460779bae19e4d64d29461ff154b3527bf8420. */ |
| 229 | map->add_global_bool_feature (HB_TAG('r','c','l','t')); |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 230 | map->add_global_bool_feature (HB_TAG('c','a','l','t')); |
Behdad Esfahbod | c1432bc | 2017-07-14 17:34:47 +0100 | [diff] [blame] | 231 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 232 | |
Behdad Esfahbod | 82f4d9d | 2014-07-17 15:57:37 -0400 | [diff] [blame] | 233 | /* The spec includes 'cswh'. Earlier versions of Windows |
| 234 | * used to enable this by default, but testing suggests |
| 235 | * that Windows 8 and later do not enable it by default, |
| 236 | * and spec now says 'Off by default'. |
| 237 | * We disabled this in ae23c24c32. |
| 238 | * Note that IranNastaliq uses this feature extensively |
| 239 | * to fixup broken glyph sequences. Oh well... |
| 240 | * Test case: U+0643,U+0640,U+0631. */ |
Behdad Esfahbod | e3b42f1 | 2014-07-17 17:13:54 -0400 | [diff] [blame] | 241 | //map->add_global_bool_feature (HB_TAG('c','s','w','h')); |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 242 | map->add_global_bool_feature (HB_TAG('m','s','e','t')); |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 243 | } |
| 244 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 245 | #include "hb-ot-shape-complex-arabic-fallback.hh" |
| 246 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 247 | struct arabic_shape_plan_t |
| 248 | { |
| 249 | ASSERT_POD (); |
| 250 | |
Behdad Esfahbod | 2f1747e | 2012-08-16 11:46:46 -0400 | [diff] [blame] | 251 | /* The "+ 1" in the next array is to accommodate for the "NONE" command, |
| 252 | * which is not an OpenType feature, but this simplifies the code by not |
| 253 | * having to do a "if (... < NONE) ..." and just rely on the fact that |
| 254 | * mask_array[NONE] == 0. */ |
Behdad Esfahbod | bd08d5d | 2012-08-16 11:35:50 -0400 | [diff] [blame] | 255 | hb_mask_t mask_array[ARABIC_NUM_FEATURES + 1]; |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 256 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 257 | arabic_fallback_plan_t *fallback_plan; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 258 | |
| 259 | unsigned int do_fallback : 1; |
| 260 | unsigned int has_stch : 1; |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 261 | }; |
| 262 | |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 263 | void * |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 264 | data_create_arabic (const hb_ot_shape_plan_t *plan) |
| 265 | { |
| 266 | arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) calloc (1, sizeof (arabic_shape_plan_t)); |
| 267 | if (unlikely (!arabic_plan)) |
| 268 | return NULL; |
| 269 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 270 | arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 271 | arabic_plan->has_stch = !!plan->map.get_1_mask (HB_TAG ('s','t','c','h')); |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 272 | for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++) { |
| 273 | arabic_plan->mask_array[i] = plan->map.get_1_mask (arabic_features[i]); |
Behdad Esfahbod | 615d00e | 2014-07-17 13:36:09 -0400 | [diff] [blame] | 274 | arabic_plan->do_fallback = arabic_plan->do_fallback && |
Behdad Esfahbod | d5e6147 | 2014-08-05 14:19:01 -0400 | [diff] [blame] | 275 | (FEATURE_IS_SYRIAC (arabic_features[i]) || |
| 276 | plan->map.needs_fallback (arabic_features[i])); |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 277 | } |
| 278 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 279 | return arabic_plan; |
| 280 | } |
| 281 | |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 282 | void |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 283 | data_destroy_arabic (void *data) |
| 284 | { |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 285 | arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) data; |
| 286 | |
| 287 | arabic_fallback_plan_destroy (arabic_plan->fallback_plan); |
| 288 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 289 | free (data); |
| 290 | } |
Behdad Esfahbod | b7d04eb | 2012-04-10 16:44:38 -0400 | [diff] [blame] | 291 | |
| 292 | static void |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 293 | arabic_joining (hb_buffer_t *buffer) |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 294 | { |
Behdad Esfahbod | 76f7681 | 2011-07-07 22:25:25 -0400 | [diff] [blame] | 295 | unsigned int count = buffer->len; |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 296 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 297 | unsigned int prev = (unsigned int) -1, state = 0; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 298 | |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 299 | /* Check pre-context */ |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 300 | for (unsigned int i = 0; i < buffer->context_len[0]; i++) |
| 301 | { |
| 302 | unsigned int this_type = get_joining_type (buffer->context[0][i], buffer->unicode->general_category (buffer->context[0][i])); |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 303 | |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 304 | if (unlikely (this_type == JOINING_TYPE_T)) |
| 305 | continue; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 306 | |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 307 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
| 308 | state = entry->next_state; |
| 309 | break; |
| 310 | } |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 311 | |
Behdad Esfahbod | 758f68b | 2010-10-12 17:37:44 -0400 | [diff] [blame] | 312 | for (unsigned int i = 0; i < count; i++) |
| 313 | { |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 314 | unsigned int this_type = get_joining_type (info[i].codepoint, _hb_glyph_info_get_general_category (&info[i])); |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 315 | |
Behdad Esfahbod | aefdb64 | 2010-10-27 10:40:39 -0400 | [diff] [blame] | 316 | if (unlikely (this_type == JOINING_TYPE_T)) { |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 317 | info[i].arabic_shaping_action() = NONE; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 318 | continue; |
Behdad Esfahbod | aefdb64 | 2010-10-27 10:40:39 -0400 | [diff] [blame] | 319 | } |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 320 | |
Behdad Esfahbod | 758f68b | 2010-10-12 17:37:44 -0400 | [diff] [blame] | 321 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 322 | |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 323 | if (entry->prev_action != NONE && prev != (unsigned int) -1) |
Behdad Esfahbod | 40bd7e9 | 2016-05-02 14:47:45 +0200 | [diff] [blame] | 324 | { |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 325 | info[prev].arabic_shaping_action() = entry->prev_action; |
Behdad Esfahbod | 40bd7e9 | 2016-05-02 14:47:45 +0200 | [diff] [blame] | 326 | buffer->unsafe_to_break (prev, i + 1); |
| 327 | } |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 328 | |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 329 | info[i].arabic_shaping_action() = entry->curr_action; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 330 | |
| 331 | prev = i; |
| 332 | state = entry->next_state; |
| 333 | } |
| 334 | |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 335 | for (unsigned int i = 0; i < buffer->context_len[1]; i++) |
| 336 | { |
| 337 | unsigned int this_type = get_joining_type (buffer->context[1][i], buffer->unicode->general_category (buffer->context[1][i])); |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 338 | |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 339 | if (unlikely (this_type == JOINING_TYPE_T)) |
| 340 | continue; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 341 | |
Behdad Esfahbod | 763e546 | 2014-08-02 16:17:44 -0400 | [diff] [blame] | 342 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
| 343 | if (entry->prev_action != NONE && prev != (unsigned int) -1) |
| 344 | info[prev].arabic_shaping_action() = entry->prev_action; |
| 345 | break; |
| 346 | } |
Behdad Esfahbod | 164c13d | 2014-07-17 14:16:38 -0400 | [diff] [blame] | 347 | } |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 348 | |
Behdad Esfahbod | 164c13d | 2014-07-17 14:16:38 -0400 | [diff] [blame] | 349 | static void |
| 350 | mongolian_variation_selectors (hb_buffer_t *buffer) |
| 351 | { |
| 352 | /* Copy arabic_shaping_action() from base to Mongolian variation selectors. */ |
| 353 | unsigned int count = buffer->len; |
| 354 | hb_glyph_info_t *info = buffer->info; |
| 355 | for (unsigned int i = 1; i < count; i++) |
Ebrahim Byagowi | 3b0e47c | 2017-06-19 14:47:09 +0430 | [diff] [blame] | 356 | if (unlikely (hb_in_range<hb_codepoint_t> (info[i].codepoint, 0x180Bu, 0x180Du))) |
Behdad Esfahbod | 164c13d | 2014-07-17 14:16:38 -0400 | [diff] [blame] | 357 | info[i].arabic_shaping_action() = info[i - 1].arabic_shaping_action(); |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 358 | } |
| 359 | |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 360 | void |
| 361 | setup_masks_arabic_plan (const arabic_shape_plan_t *arabic_plan, |
| 362 | hb_buffer_t *buffer, |
| 363 | hb_script_t script) |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 364 | { |
Behdad Esfahbod | 164c13d | 2014-07-17 14:16:38 -0400 | [diff] [blame] | 365 | HB_BUFFER_ALLOCATE_VAR (buffer, arabic_shaping_action); |
| 366 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 367 | arabic_joining (buffer); |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 368 | if (script == HB_SCRIPT_MONGOLIAN) |
Behdad Esfahbod | 164c13d | 2014-07-17 14:16:38 -0400 | [diff] [blame] | 369 | mongolian_variation_selectors (buffer); |
| 370 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 371 | unsigned int count = buffer->len; |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 372 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 373 | for (unsigned int i = 0; i < count; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 374 | info[i].mask |= arabic_plan->mask_array[info[i].arabic_shaping_action()]; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 375 | } |
| 376 | |
Behdad Esfahbod | 9daf2df | 2015-07-22 10:32:30 +0100 | [diff] [blame] | 377 | static void |
| 378 | setup_masks_arabic (const hb_ot_shape_plan_t *plan, |
| 379 | hb_buffer_t *buffer, |
| 380 | hb_font_t *font HB_UNUSED) |
| 381 | { |
| 382 | const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data; |
| 383 | setup_masks_arabic_plan (arabic_plan, buffer, plan->props.script); |
| 384 | } |
| 385 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 386 | |
| 387 | static void |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 388 | nuke_joiners (const hb_ot_shape_plan_t *plan HB_UNUSED, |
| 389 | hb_font_t *font HB_UNUSED, |
| 390 | hb_buffer_t *buffer) |
| 391 | { |
| 392 | unsigned int count = buffer->len; |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 393 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 394 | for (unsigned int i = 0; i < count; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame] | 395 | if (_hb_glyph_info_is_zwj (&info[i])) |
| 396 | _hb_glyph_info_flip_joiners (&info[i]); |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | static void |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 400 | arabic_fallback_shape (const hb_ot_shape_plan_t *plan, |
| 401 | hb_font_t *font, |
| 402 | hb_buffer_t *buffer) |
| 403 | { |
| 404 | const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data; |
| 405 | |
| 406 | if (!arabic_plan->do_fallback) |
| 407 | return; |
| 408 | |
| 409 | retry: |
| 410 | arabic_fallback_plan_t *fallback_plan = (arabic_fallback_plan_t *) hb_atomic_ptr_get (&arabic_plan->fallback_plan); |
| 411 | if (unlikely (!fallback_plan)) |
| 412 | { |
| 413 | /* This sucks. We need a font to build the fallback plan... */ |
| 414 | fallback_plan = arabic_fallback_plan_create (plan, font); |
| 415 | if (unlikely (!hb_atomic_ptr_cmpexch (&(const_cast<arabic_shape_plan_t *> (arabic_plan))->fallback_plan, NULL, fallback_plan))) { |
| 416 | arabic_fallback_plan_destroy (fallback_plan); |
| 417 | goto retry; |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | arabic_fallback_plan_shape (fallback_plan, font, buffer); |
| 422 | } |
| 423 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 424 | /* |
| 425 | * Stretch feature: "stch". |
| 426 | * See example here: |
| 427 | * https://www.microsoft.com/typography/OpenTypeDev/syriac/intro.htm |
| 428 | * We implement this in a generic way, such that the Arabic subtending |
| 429 | * marks can use it as well. |
| 430 | */ |
| 431 | |
| 432 | static void |
| 433 | record_stch (const hb_ot_shape_plan_t *plan, |
| 434 | hb_font_t *font, |
| 435 | hb_buffer_t *buffer) |
| 436 | { |
| 437 | const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data; |
| 438 | if (!arabic_plan->has_stch) |
| 439 | return; |
| 440 | |
| 441 | /* 'stch' feature was just applied. Look for anything that multiplied, |
| 442 | * and record it for stch treatment later. Note that rtlm, frac, etc |
| 443 | * are applied before stch, but we assume that they didn't result in |
| 444 | * anything multiplying into 5 pieces, so it's safe-ish... */ |
| 445 | |
| 446 | unsigned int count = buffer->len; |
| 447 | hb_glyph_info_t *info = buffer->info; |
| 448 | for (unsigned int i = 0; i < count; i++) |
| 449 | if (unlikely (_hb_glyph_info_multiplied (&info[i]))) |
| 450 | { |
| 451 | unsigned int comp = _hb_glyph_info_get_lig_comp (&info[i]); |
| 452 | info[i].arabic_shaping_action() = comp % 2 ? STCH_REPEATING : STCH_FIXED; |
| 453 | buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_ARABIC_HAS_STCH; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | static void |
| 458 | apply_stch (const hb_ot_shape_plan_t *plan, |
| 459 | hb_buffer_t *buffer, |
| 460 | hb_font_t *font) |
| 461 | { |
| 462 | if (likely (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_ARABIC_HAS_STCH))) |
| 463 | return; |
| 464 | |
| 465 | /* The Arabic shaper currently always processes in RTL mode, so we should |
| 466 | * stretch / position the stretched pieces to the left / preceding glyphs. */ |
| 467 | |
| 468 | /* We do a two pass implementation: |
| 469 | * First pass calculates the exact number of extra glyphs we need, |
| 470 | * We then enlarge buffer to have that much room, |
| 471 | * Second pass applies the stretch, copying things to the end of buffer. |
| 472 | */ |
| 473 | |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 474 | int sign = font->x_scale < 0 ? -1 : +1; |
| 475 | unsigned int extra_glyphs_needed = 0; // Set during MEASURE, used during CUT |
Chun-wei Fan | 4d27bb8 | 2015-11-06 14:28:30 +0800 | [diff] [blame] | 476 | typedef enum { MEASURE, CUT } step_t; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 477 | |
Chun-wei Fan | 4d27bb8 | 2015-11-06 14:28:30 +0800 | [diff] [blame] | 478 | for (step_t step = MEASURE; step <= CUT; step = (step_t) (step + 1)) |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 479 | { |
| 480 | unsigned int count = buffer->len; |
| 481 | hb_glyph_info_t *info = buffer->info; |
| 482 | hb_glyph_position_t *pos = buffer->pos; |
| 483 | unsigned int new_len = count + extra_glyphs_needed; // write head during CUT |
| 484 | unsigned int j = new_len; |
| 485 | for (unsigned int i = count; i; i--) |
| 486 | { |
| 487 | if (!hb_in_range<unsigned> (info[i - 1].arabic_shaping_action(), STCH_FIXED, STCH_REPEATING)) |
| 488 | { |
| 489 | if (step == CUT) |
| 490 | { |
| 491 | --j; |
| 492 | info[j] = info[i - 1]; |
| 493 | pos[j] = pos[i - 1]; |
| 494 | } |
| 495 | continue; |
| 496 | } |
| 497 | |
| 498 | /* Yay, justification! */ |
| 499 | |
| 500 | hb_position_t w_total = 0; // Total to be filled |
| 501 | hb_position_t w_fixed = 0; // Sum of fixed tiles |
| 502 | hb_position_t w_repeating = 0; // Sum of repeating tiles |
| 503 | int n_fixed = 0; |
| 504 | int n_repeating = 0; |
| 505 | |
| 506 | unsigned int end = i; |
| 507 | while (i && |
| 508 | hb_in_range<unsigned> (info[i - 1].arabic_shaping_action(), STCH_FIXED, STCH_REPEATING)) |
| 509 | { |
| 510 | i--; |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 511 | hb_position_t width = font->get_glyph_h_advance (info[i].codepoint); |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 512 | if (info[i].arabic_shaping_action() == STCH_FIXED) |
| 513 | { |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 514 | w_fixed += width; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 515 | n_fixed++; |
| 516 | } |
| 517 | else |
| 518 | { |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 519 | w_repeating += width; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 520 | n_repeating++; |
| 521 | } |
| 522 | } |
| 523 | unsigned int start = i; |
| 524 | unsigned int context = i; |
| 525 | while (context && |
| 526 | !hb_in_range<unsigned> (info[context - 1].arabic_shaping_action(), STCH_FIXED, STCH_REPEATING) && |
| 527 | (_hb_glyph_info_is_default_ignorable (&info[context - 1]) || |
Behdad Esfahbod | 59821ab | 2015-11-06 16:27:44 -0800 | [diff] [blame] | 528 | HB_ARABIC_GENERAL_CATEGORY_IS_WORD (_hb_glyph_info_get_general_category (&info[context - 1])))) |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 529 | { |
| 530 | context--; |
| 531 | w_total += pos[context].x_advance; |
| 532 | } |
| 533 | i++; // Don't touch i again. |
| 534 | |
| 535 | DEBUG_MSG (ARABIC, NULL, "%s stretch at (%d,%d,%d)", |
| 536 | step == MEASURE ? "measuring" : "cutting", context, start, end); |
| 537 | DEBUG_MSG (ARABIC, NULL, "rest of word: count=%d width %d", start - context, w_total); |
| 538 | DEBUG_MSG (ARABIC, NULL, "fixed tiles: count=%d width=%d", n_fixed, w_fixed); |
| 539 | DEBUG_MSG (ARABIC, NULL, "repeating tiles: count=%d width=%d", n_repeating, w_repeating); |
| 540 | |
| 541 | /* Number of additional times to repeat each repeating tile. */ |
| 542 | int n_copies = 0; |
| 543 | |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 544 | hb_position_t w_remaining = w_total - w_fixed; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 545 | if (sign * w_remaining > sign * w_repeating && sign * w_repeating > 0) |
jfkthame | a7ffe35 | 2015-12-05 17:47:37 +0000 | [diff] [blame] | 546 | n_copies = (sign * w_remaining) / (sign * w_repeating) - 1; |
| 547 | |
| 548 | /* See if we can improve the fit by adding an extra repeat and squeezing them together a bit. */ |
| 549 | hb_position_t extra_repeat_overlap = 0; |
| 550 | hb_position_t shortfall = sign * w_remaining - sign * w_repeating * (n_copies + 1); |
Behdad Esfahbod | 73c6dcb | 2017-02-07 16:53:21 -0800 | [diff] [blame] | 551 | if (shortfall > 0 && n_repeating > 0) |
jfkthame | a7ffe35 | 2015-12-05 17:47:37 +0000 | [diff] [blame] | 552 | { |
| 553 | ++n_copies; |
| 554 | hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; |
| 555 | if (excess > 0) |
| 556 | extra_repeat_overlap = excess / (n_copies * n_repeating); |
| 557 | } |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 558 | |
| 559 | if (step == MEASURE) |
| 560 | { |
| 561 | extra_glyphs_needed += n_copies * n_repeating; |
| 562 | DEBUG_MSG (ARABIC, NULL, "will add extra %d copies of repeating tiles", n_copies); |
| 563 | } |
| 564 | else |
| 565 | { |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 566 | hb_position_t x_offset = 0; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 567 | for (unsigned int k = end; k > start; k--) |
| 568 | { |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 569 | hb_position_t width = font->get_glyph_h_advance (info[k - 1].codepoint); |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 570 | |
| 571 | unsigned int repeat = 1; |
| 572 | if (info[k - 1].arabic_shaping_action() == STCH_REPEATING) |
| 573 | repeat += n_copies; |
| 574 | |
| 575 | DEBUG_MSG (ARABIC, NULL, "appending %d copies of glyph %d; j=%d", |
| 576 | repeat, info[k - 1].codepoint, j); |
| 577 | for (unsigned int n = 0; n < repeat; n++) |
| 578 | { |
Behdad Esfahbod | 86bcbd6 | 2015-12-17 11:04:33 +0000 | [diff] [blame] | 579 | x_offset -= width; |
jfkthame | a7ffe35 | 2015-12-05 17:47:37 +0000 | [diff] [blame] | 580 | if (n > 0) |
| 581 | x_offset += extra_repeat_overlap; |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 582 | pos[k - 1].x_offset = x_offset; |
| 583 | /* Append copy. */ |
| 584 | --j; |
| 585 | info[j] = info[k - 1]; |
| 586 | pos[j] = pos[k - 1]; |
| 587 | } |
| 588 | } |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | if (step == MEASURE) |
| 593 | { |
| 594 | if (unlikely (!buffer->ensure (count + extra_glyphs_needed))) |
| 595 | break; |
| 596 | } |
| 597 | else |
| 598 | { |
| 599 | assert (j == 0); |
| 600 | buffer->len = new_len; |
| 601 | } |
| 602 | } |
| 603 | } |
| 604 | |
| 605 | |
| 606 | static void |
| 607 | postprocess_glyphs_arabic (const hb_ot_shape_plan_t *plan, |
| 608 | hb_buffer_t *buffer, |
| 609 | hb_font_t *font) |
| 610 | { |
| 611 | apply_stch (plan, buffer, font); |
| 612 | |
| 613 | HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action); |
| 614 | } |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 615 | |
Behdad Esfahbod | ab8d70e | 2017-10-04 14:47:10 +0200 | [diff] [blame^] | 616 | /* http://www.unicode.org/reports/tr53/tr53-1.pdf */ |
| 617 | |
| 618 | static hb_codepoint_t |
| 619 | modifier_combining_marks[] = |
| 620 | { |
| 621 | 0x0654u, /* ARABIC HAMZA ABOVE */ |
| 622 | 0x0655u, /* ARABIC HAMZA BELOW */ |
| 623 | 0x0658u, /* ARABIC MARK NOON GHUNNA */ |
| 624 | 0x06DCu, /* ARABIC SMALL HIGH SEEN */ |
| 625 | 0x06E3u, /* ARABIC SMALL LOW SEEN */ |
| 626 | 0x06E7u, /* ARABIC SMALL HIGH YEH */ |
| 627 | 0x06E8u, /* ARABIC SMALL HIGH NOON */ |
| 628 | 0x08F3u, /* ARABIC SMALL HIGH WAW */ |
| 629 | }; |
| 630 | |
| 631 | static inline bool |
| 632 | info_is_mcm (const hb_glyph_info_t &info) |
| 633 | { |
| 634 | hb_codepoint_t u = info.codepoint; |
| 635 | for (unsigned int i = 0; i < ARRAY_LENGTH (modifier_combining_marks); i++) |
| 636 | if (u == modifier_combining_marks[i]) |
| 637 | return true; |
| 638 | return false; |
| 639 | } |
| 640 | |
| 641 | static void |
| 642 | reorder_marks_arabic (const hb_ot_shape_plan_t *plan, |
| 643 | hb_buffer_t *buffer, |
| 644 | unsigned int start, |
| 645 | unsigned int end) |
| 646 | { |
| 647 | hb_glyph_info_t *info = buffer->info; |
| 648 | |
| 649 | unsigned int i = start; |
| 650 | for (unsigned int cc = 220; cc <= 230; cc += 10) |
| 651 | { |
| 652 | DEBUG_MSG (ARABIC, buffer, "Looking for %d's starting at %d\n", cc, i); |
| 653 | while (i < end && info_cc(info[i]) < cc) |
| 654 | i++; |
| 655 | DEBUG_MSG (ARABIC, buffer, "Looking for %d's stopped at %d\n", cc, i); |
| 656 | |
| 657 | if (i == end) |
| 658 | break; |
| 659 | |
| 660 | if (info_cc(info[i]) > cc) |
| 661 | continue; |
| 662 | |
| 663 | /* Technically we should also check "info_cc(info[j]) == cc" |
| 664 | * in the following loop. But not doing it is safe; we might |
| 665 | * end up moving all the 220 MCMs and 230 MCMs together in one |
| 666 | * move and be done. */ |
| 667 | unsigned int j = i; |
| 668 | while (j < end && info_is_mcm (info[j])) |
| 669 | j++; |
| 670 | DEBUG_MSG (ARABIC, buffer, "Found %d's from %d to %d\n", cc, i, j); |
| 671 | |
| 672 | if (i == j) |
| 673 | continue; |
| 674 | |
| 675 | /* Shift it! */ |
| 676 | DEBUG_MSG (ARABIC, buffer, "Shifting %d's: %d %d\n", cc, i, j); |
| 677 | hb_glyph_info_t temp[HB_OT_SHAPE_COMPLEX_MAX_COMBINING_MARKS]; |
| 678 | assert (j - i <= ARRAY_LENGTH (temp)); |
| 679 | buffer->merge_out_clusters (start, j); |
| 680 | memmove (temp, &info[i], (j - i) * sizeof (hb_glyph_info_t)); |
| 681 | memmove (&info[start + j - i], &info[start], (i - start) * sizeof (hb_glyph_info_t)); |
| 682 | memmove (&info[start], temp, (j - i) * sizeof (hb_glyph_info_t)); |
| 683 | |
| 684 | start += j - i; |
| 685 | |
| 686 | i = j; |
| 687 | } |
| 688 | } |
| 689 | |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 690 | const hb_ot_complex_shaper_t _hb_ot_complex_shaper_arabic = |
| 691 | { |
| 692 | "arabic", |
| 693 | collect_features_arabic, |
| 694 | NULL, /* override_features */ |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 695 | data_create_arabic, |
| 696 | data_destroy_arabic, |
Behdad Esfahbod | 1368633 | 2015-11-05 13:24:15 -0800 | [diff] [blame] | 697 | NULL, /* preprocess_text */ |
Behdad Esfahbod | 6e6f82b | 2015-11-05 17:29:03 -0800 | [diff] [blame] | 698 | postprocess_glyphs_arabic, |
Behdad Esfahbod | 3d6ca0d | 2013-12-31 16:04:35 +0800 | [diff] [blame] | 699 | HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, |
Behdad Esfahbod | 0736915 | 2012-11-13 12:35:35 -0800 | [diff] [blame] | 700 | NULL, /* decompose */ |
| 701 | NULL, /* compose */ |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 702 | setup_masks_arabic, |
Behdad Esfahbod | e2b8780 | 2016-12-22 14:40:19 -0600 | [diff] [blame] | 703 | NULL, /* disable_otl */ |
Behdad Esfahbod | ab8d70e | 2017-10-04 14:47:10 +0200 | [diff] [blame^] | 704 | reorder_marks_arabic, |
Behdad Esfahbod | 71b4c99 | 2013-10-28 00:20:59 +0100 | [diff] [blame] | 705 | HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, |
Behdad Esfahbod | 865745b | 2012-11-14 13:48:26 -0800 | [diff] [blame] | 706 | true, /* fallback_position */ |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 707 | }; |