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 | 13403bc | 2010-10-12 17:23:54 -0400 | [diff] [blame] | 27 | #include "hb-ot-shape-complex-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 | |
| 31 | /* buffer var allocations */ |
Behdad Esfahbod | cd0c6e1 | 2012-08-09 21:48:55 -0400 | [diff] [blame] | 32 | #define arabic_shaping_action() complex_var_u8_0() /* arabic shaping action */ |
Behdad Esfahbod | 3a852ae | 2010-11-03 16:37:24 -0400 | [diff] [blame] | 33 | |
| 34 | |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 35 | /* |
| 36 | * Bits used in the joining tables |
| 37 | */ |
| 38 | enum { |
| 39 | JOINING_TYPE_U = 0, |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 40 | JOINING_TYPE_L = 1, |
| 41 | JOINING_TYPE_R = 2, |
| 42 | JOINING_TYPE_D = 3, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 43 | JOINING_TYPE_C = JOINING_TYPE_D, |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 44 | JOINING_GROUP_ALAPH = 4, |
| 45 | JOINING_GROUP_DALATH_RISH = 5, |
| 46 | NUM_STATE_MACHINE_COLS = 6, |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 47 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 48 | JOINING_TYPE_T = 7, |
| 49 | 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] | 50 | }; |
| 51 | |
| 52 | /* |
| 53 | * Joining types: |
| 54 | */ |
| 55 | |
Behdad Esfahbod | c57d454 | 2011-04-20 18:50:27 -0400 | [diff] [blame] | 56 | #include "hb-ot-shape-complex-arabic-table.hh" |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 57 | |
Behdad Esfahbod | 99b7476 | 2011-04-11 15:47:40 -0400 | [diff] [blame] | 58 | 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] | 59 | { |
Behdad Esfahbod | b900fa2 | 2014-06-20 17:59:43 -0400 | [diff] [blame] | 60 | unsigned int j_type = joining_type(u); |
| 61 | if (likely (j_type != JOINING_TYPE_X)) |
| 62 | return j_type; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 63 | |
Behdad Esfahbod | 5d4d738 | 2014-06-21 14:53:21 -0600 | [diff] [blame^] | 64 | return (FLAG(gen_cat) & |
| 65 | (FLAG(HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) | |
| 66 | FLAG(HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK) | |
| 67 | FLAG(HB_UNICODE_GENERAL_CATEGORY_FORMAT)) |
| 68 | ) ? JOINING_TYPE_T : JOINING_TYPE_U; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 69 | } |
| 70 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 71 | static const hb_tag_t arabic_features[] = |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 72 | { |
| 73 | HB_TAG('i','n','i','t'), |
| 74 | HB_TAG('m','e','d','i'), |
| 75 | HB_TAG('f','i','n','a'), |
| 76 | HB_TAG('i','s','o','l'), |
| 77 | /* Syriac */ |
| 78 | HB_TAG('m','e','d','2'), |
| 79 | HB_TAG('f','i','n','2'), |
| 80 | HB_TAG('f','i','n','3'), |
| 81 | HB_TAG_NONE |
| 82 | }; |
| 83 | |
| 84 | |
| 85 | /* Same order as the feature array */ |
| 86 | enum { |
| 87 | INIT, |
| 88 | MEDI, |
| 89 | FINA, |
| 90 | ISOL, |
| 91 | |
| 92 | /* Syriac */ |
| 93 | MED2, |
| 94 | FIN2, |
| 95 | FIN3, |
| 96 | |
| 97 | NONE, |
| 98 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 99 | ARABIC_NUM_FEATURES = NONE |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | static const struct arabic_state_table_entry { |
| 103 | uint8_t prev_action; |
| 104 | uint8_t curr_action; |
Behdad Esfahbod | 31f18ab | 2011-06-15 09:49:58 -0400 | [diff] [blame] | 105 | uint16_t next_state; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 106 | } arabic_state_table[][NUM_STATE_MACHINE_COLS] = |
| 107 | { |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 108 | /* 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] | 109 | |
| 110 | /* State 0: prev was U, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 111 | { {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] | 112 | |
| 113 | /* State 1: prev was R or ISOL/ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 114 | { {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] | 115 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 116 | /* State 2: prev was D/L in ISOL form, willing to join. */ |
| 117 | { {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] | 118 | |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 119 | /* State 3: prev was D in FINA form, willing to join. */ |
| 120 | { {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] | 121 | |
| 122 | /* State 4: prev was FINA ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 123 | { {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] | 124 | |
| 125 | /* State 5: prev was FIN2/FIN3 ALAPH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 126 | { {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] | 127 | |
| 128 | /* State 6: prev was DALATH/RISH, not willing to join. */ |
Behdad Esfahbod | c2a1cdc | 2013-02-15 09:27:02 -0500 | [diff] [blame] | 129 | { {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] | 130 | }; |
| 131 | |
| 132 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 133 | static void |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 134 | nuke_joiners (const hb_ot_shape_plan_t *plan, |
| 135 | hb_font_t *font, |
| 136 | hb_buffer_t *buffer); |
| 137 | |
| 138 | static void |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 139 | arabic_fallback_shape (const hb_ot_shape_plan_t *plan, |
| 140 | hb_font_t *font, |
| 141 | hb_buffer_t *buffer); |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 142 | |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 143 | static void |
Behdad Esfahbod | 16c6a27 | 2012-08-02 09:38:28 -0400 | [diff] [blame] | 144 | collect_features_arabic (hb_ot_shape_planner_t *plan) |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 145 | { |
Behdad Esfahbod | 16c6a27 | 2012-08-02 09:38:28 -0400 | [diff] [blame] | 146 | hb_ot_map_builder_t *map = &plan->map; |
| 147 | |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 148 | /* For Language forms (in ArabicOT speak), we do the iso/fina/medi/init together, |
| 149 | * then rlig and calt each in their own stage. This makes IranNastaliq's ALLAH |
| 150 | * ligature work correctly. It's unfortunate though... |
| 151 | * |
| 152 | * This also makes Arial Bold in Windows7 work. See: |
| 153 | * https://bugzilla.mozilla.org/show_bug.cgi?id=644184 |
Behdad Esfahbod | 71b4c99 | 2013-10-28 00:20:59 +0100 | [diff] [blame] | 154 | * |
| 155 | * TODO: Add test cases for these two. |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 156 | */ |
| 157 | |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 158 | map->add_gsub_pause (nuke_joiners); |
| 159 | |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 160 | map->add_global_bool_feature (HB_TAG('c','c','m','p')); |
| 161 | map->add_global_bool_feature (HB_TAG('l','o','c','l')); |
Behdad Esfahbod | f6fd378 | 2011-07-08 00:22:40 -0400 | [diff] [blame] | 162 | |
Behdad Esfahbod | 3e38c0f | 2012-08-02 09:44:18 -0400 | [diff] [blame] | 163 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | a71b9c8 | 2011-04-06 14:04:56 -0400 | [diff] [blame] | 164 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 165 | for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++) |
Behdad Esfahbod | ec54486 | 2013-02-14 11:25:10 -0500 | [diff] [blame] | 166 | map->add_feature (arabic_features[i], 1, i < 4 ? F_HAS_FALLBACK : F_NONE); /* The first four features have fallback. */ |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 167 | |
Behdad Esfahbod | 3e38c0f | 2012-08-02 09:44:18 -0400 | [diff] [blame] | 168 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 169 | |
Behdad Esfahbod | ec54486 | 2013-02-14 11:25:10 -0500 | [diff] [blame] | 170 | map->add_feature (HB_TAG('r','l','i','g'), 1, F_GLOBAL|F_HAS_FALLBACK); |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 171 | map->add_gsub_pause (arabic_fallback_shape); |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 172 | |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 173 | map->add_global_bool_feature (HB_TAG('c','a','l','t')); |
Behdad Esfahbod | 3e38c0f | 2012-08-02 09:44:18 -0400 | [diff] [blame] | 174 | map->add_gsub_pause (NULL); |
Behdad Esfahbod | b70c96d | 2011-07-07 21:07:41 -0400 | [diff] [blame] | 175 | |
Behdad Esfahbod | e7ffcfa | 2013-02-14 11:05:56 -0500 | [diff] [blame] | 176 | map->add_global_bool_feature (HB_TAG('m','s','e','t')); |
Behdad Esfahbod | 49baa1f | 2010-10-12 16:50:36 -0400 | [diff] [blame] | 177 | } |
| 178 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 179 | #include "hb-ot-shape-complex-arabic-fallback.hh" |
| 180 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 181 | struct arabic_shape_plan_t |
| 182 | { |
| 183 | ASSERT_POD (); |
| 184 | |
Behdad Esfahbod | 2f1747e | 2012-08-16 11:46:46 -0400 | [diff] [blame] | 185 | /* The "+ 1" in the next array is to accommodate for the "NONE" command, |
| 186 | * which is not an OpenType feature, but this simplifies the code by not |
| 187 | * having to do a "if (... < NONE) ..." and just rely on the fact that |
| 188 | * mask_array[NONE] == 0. */ |
Behdad Esfahbod | bd08d5d | 2012-08-16 11:35:50 -0400 | [diff] [blame] | 189 | hb_mask_t mask_array[ARABIC_NUM_FEATURES + 1]; |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 190 | |
| 191 | bool do_fallback; |
| 192 | arabic_fallback_plan_t *fallback_plan; |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | static void * |
| 196 | data_create_arabic (const hb_ot_shape_plan_t *plan) |
| 197 | { |
| 198 | arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) calloc (1, sizeof (arabic_shape_plan_t)); |
| 199 | if (unlikely (!arabic_plan)) |
| 200 | return NULL; |
| 201 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 202 | arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC; |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 203 | for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++) { |
| 204 | arabic_plan->mask_array[i] = plan->map.get_1_mask (arabic_features[i]); |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 205 | if (i < 4) |
| 206 | arabic_plan->do_fallback = arabic_plan->do_fallback && plan->map.needs_fallback (arabic_features[i]); |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 207 | } |
| 208 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 209 | return arabic_plan; |
| 210 | } |
| 211 | |
| 212 | static void |
| 213 | data_destroy_arabic (void *data) |
| 214 | { |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 215 | arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) data; |
| 216 | |
| 217 | arabic_fallback_plan_destroy (arabic_plan->fallback_plan); |
| 218 | |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 219 | free (data); |
| 220 | } |
Behdad Esfahbod | b7d04eb | 2012-04-10 16:44:38 -0400 | [diff] [blame] | 221 | |
| 222 | static void |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 223 | arabic_joining (hb_buffer_t *buffer) |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 224 | { |
Behdad Esfahbod | 76f7681 | 2011-07-07 22:25:25 -0400 | [diff] [blame] | 225 | unsigned int count = buffer->len; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 226 | unsigned int prev = (unsigned int) -1, state = 0; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 227 | |
Behdad Esfahbod | b65c060 | 2011-07-28 16:48:43 -0400 | [diff] [blame] | 228 | HB_BUFFER_ALLOCATE_VAR (buffer, arabic_shaping_action); |
| 229 | |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 230 | /* Check pre-context */ |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 231 | if (!(buffer->flags & HB_BUFFER_FLAG_BOT)) |
| 232 | for (unsigned int i = 0; i < buffer->context_len[0]; i++) |
| 233 | { |
| 234 | 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] | 235 | |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 236 | if (unlikely (this_type == JOINING_TYPE_T)) |
| 237 | continue; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 238 | |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 239 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
| 240 | state = entry->next_state; |
| 241 | break; |
| 242 | } |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 243 | |
Behdad Esfahbod | 758f68b | 2010-10-12 17:37:44 -0400 | [diff] [blame] | 244 | for (unsigned int i = 0; i < count; i++) |
| 245 | { |
Behdad Esfahbod | d1deaa2 | 2012-05-09 15:04:13 +0200 | [diff] [blame] | 246 | unsigned int this_type = get_joining_type (buffer->info[i].codepoint, _hb_glyph_info_get_general_category (&buffer->info[i])); |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 247 | |
Behdad Esfahbod | aefdb64 | 2010-10-27 10:40:39 -0400 | [diff] [blame] | 248 | if (unlikely (this_type == JOINING_TYPE_T)) { |
Behdad Esfahbod | 76f7681 | 2011-07-07 22:25:25 -0400 | [diff] [blame] | 249 | buffer->info[i].arabic_shaping_action() = NONE; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 250 | continue; |
Behdad Esfahbod | aefdb64 | 2010-10-27 10:40:39 -0400 | [diff] [blame] | 251 | } |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 252 | |
Behdad Esfahbod | 758f68b | 2010-10-12 17:37:44 -0400 | [diff] [blame] | 253 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 254 | |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 255 | if (entry->prev_action != NONE && prev != (unsigned int) -1) |
Behdad Esfahbod | bf02928 | 2013-10-18 16:20:13 +0200 | [diff] [blame] | 256 | for (; prev < i; prev++) |
| 257 | buffer->info[prev].arabic_shaping_action() = entry->prev_action; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 258 | |
Behdad Esfahbod | 76f7681 | 2011-07-07 22:25:25 -0400 | [diff] [blame] | 259 | buffer->info[i].arabic_shaping_action() = entry->curr_action; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 260 | |
| 261 | prev = i; |
| 262 | state = entry->next_state; |
| 263 | } |
| 264 | |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 265 | if (!(buffer->flags & HB_BUFFER_FLAG_EOT)) |
| 266 | for (unsigned int i = 0; i < buffer->context_len[1]; i++) |
| 267 | { |
Behdad Esfahbod | 5669a6c | 2012-11-13 15:11:51 -0800 | [diff] [blame] | 268 | 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] | 269 | |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 270 | if (unlikely (this_type == JOINING_TYPE_T)) |
| 271 | continue; |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 272 | |
Behdad Esfahbod | 0c7df22 | 2012-11-13 14:42:35 -0800 | [diff] [blame] | 273 | const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; |
| 274 | if (entry->prev_action != NONE && prev != (unsigned int) -1) |
| 275 | buffer->info[prev].arabic_shaping_action() = entry->prev_action; |
| 276 | break; |
| 277 | } |
Behdad Esfahbod | bdc2fc8 | 2012-09-25 21:32:35 -0400 | [diff] [blame] | 278 | |
| 279 | |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 280 | HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action); |
| 281 | } |
| 282 | |
| 283 | static void |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 284 | setup_masks_arabic (const hb_ot_shape_plan_t *plan, |
| 285 | hb_buffer_t *buffer, |
Behdad Esfahbod | 0beb66e | 2012-12-05 18:46:04 -0500 | [diff] [blame] | 286 | hb_font_t *font HB_UNUSED) |
Behdad Esfahbod | 9f9f04c | 2012-08-11 18:34:13 -0400 | [diff] [blame] | 287 | { |
| 288 | const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data; |
| 289 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 290 | arabic_joining (buffer); |
| 291 | unsigned int count = buffer->len; |
| 292 | for (unsigned int i = 0; i < count; i++) |
| 293 | buffer->info[i].mask |= arabic_plan->mask_array[buffer->info[i].arabic_shaping_action()]; |
Behdad Esfahbod | 3eb936f | 2010-10-05 18:36:58 -0400 | [diff] [blame] | 294 | } |
| 295 | |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 296 | |
| 297 | static void |
Behdad Esfahbod | c52ddab | 2013-10-16 13:42:38 +0200 | [diff] [blame] | 298 | nuke_joiners (const hb_ot_shape_plan_t *plan HB_UNUSED, |
| 299 | hb_font_t *font HB_UNUSED, |
| 300 | hb_buffer_t *buffer) |
| 301 | { |
| 302 | unsigned int count = buffer->len; |
| 303 | for (unsigned int i = 0; i < count; i++) |
| 304 | if (_hb_glyph_info_is_zwj (&buffer->info[i])) |
| 305 | _hb_glyph_info_flip_joiners (&buffer->info[i]); |
| 306 | } |
| 307 | |
| 308 | static void |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 309 | arabic_fallback_shape (const hb_ot_shape_plan_t *plan, |
| 310 | hb_font_t *font, |
| 311 | hb_buffer_t *buffer) |
| 312 | { |
| 313 | const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data; |
| 314 | |
| 315 | if (!arabic_plan->do_fallback) |
| 316 | return; |
| 317 | |
| 318 | retry: |
| 319 | arabic_fallback_plan_t *fallback_plan = (arabic_fallback_plan_t *) hb_atomic_ptr_get (&arabic_plan->fallback_plan); |
| 320 | if (unlikely (!fallback_plan)) |
| 321 | { |
| 322 | /* This sucks. We need a font to build the fallback plan... */ |
| 323 | fallback_plan = arabic_fallback_plan_create (plan, font); |
| 324 | if (unlikely (!hb_atomic_ptr_cmpexch (&(const_cast<arabic_shape_plan_t *> (arabic_plan))->fallback_plan, NULL, fallback_plan))) { |
| 325 | arabic_fallback_plan_destroy (fallback_plan); |
| 326 | goto retry; |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | arabic_fallback_plan_shape (fallback_plan, font, buffer); |
| 331 | } |
| 332 | |
| 333 | |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 334 | const hb_ot_complex_shaper_t _hb_ot_complex_shaper_arabic = |
| 335 | { |
| 336 | "arabic", |
| 337 | collect_features_arabic, |
| 338 | NULL, /* override_features */ |
Behdad Esfahbod | e9f28a3 | 2012-08-11 18:20:28 -0400 | [diff] [blame] | 339 | data_create_arabic, |
| 340 | data_destroy_arabic, |
Behdad Esfahbod | fabd311 | 2012-09-05 22:19:28 -0400 | [diff] [blame] | 341 | NULL, /* preprocess_text_arabic */ |
Behdad Esfahbod | 3d6ca0d | 2013-12-31 16:04:35 +0800 | [diff] [blame] | 342 | HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, |
Behdad Esfahbod | 0736915 | 2012-11-13 12:35:35 -0800 | [diff] [blame] | 343 | NULL, /* decompose */ |
| 344 | NULL, /* compose */ |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 345 | setup_masks_arabic, |
Behdad Esfahbod | 71b4c99 | 2013-10-28 00:20:59 +0100 | [diff] [blame] | 346 | HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE, |
Behdad Esfahbod | 865745b | 2012-11-14 13:48:26 -0800 | [diff] [blame] | 347 | true, /* fallback_position */ |
Behdad Esfahbod | 693918e | 2012-07-30 21:08:51 -0400 | [diff] [blame] | 348 | }; |