blob: f576720c7aaef5a483ceb2c1f9d429dba086b206 [file] [log] [blame]
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -04001/*
Behdad Esfahbode9f28a32012-08-11 18:20:28 -04002 * Copyright © 2010,2012 Google, Inc.
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -04003 *
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 Esfahbod13403bc2010-10-12 17:23:54 -040027#include "hb-ot-shape-complex-private.hh"
Behdad Esfahbodd1deaa22012-05-09 15:04:13 +020028#include "hb-ot-shape-private.hh"
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040029
Behdad Esfahbod3a852ae2010-11-03 16:37:24 -040030
31/* buffer var allocations */
Behdad Esfahbodcd0c6e12012-08-09 21:48:55 -040032#define arabic_shaping_action() complex_var_u8_0() /* arabic shaping action */
Behdad Esfahbod3a852ae2010-11-03 16:37:24 -040033
34
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040035/*
36 * Bits used in the joining tables
37 */
38enum {
39 JOINING_TYPE_U = 0,
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050040 JOINING_TYPE_L = 1,
41 JOINING_TYPE_R = 2,
42 JOINING_TYPE_D = 3,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040043 JOINING_TYPE_C = JOINING_TYPE_D,
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050044 JOINING_GROUP_ALAPH = 4,
45 JOINING_GROUP_DALATH_RISH = 5,
46 NUM_STATE_MACHINE_COLS = 6,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040047
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050048 JOINING_TYPE_T = 7,
49 JOINING_TYPE_X = 8 /* means: use general-category to choose between U or T. */
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040050};
51
52/*
53 * Joining types:
54 */
55
Behdad Esfahbodc57d4542011-04-20 18:50:27 -040056#include "hb-ot-shape-complex-arabic-table.hh"
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040057
Behdad Esfahbod99b74762011-04-11 15:47:40 -040058static unsigned int get_joining_type (hb_codepoint_t u, hb_unicode_general_category_t gen_cat)
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040059{
Behdad Esfahbod8f0b64f2011-07-29 17:02:48 -040060 if (likely (hb_in_range<hb_codepoint_t> (u, JOINING_TABLE_FIRST, JOINING_TABLE_LAST))) {
Behdad Esfahbod14d78412010-11-17 16:52:58 -050061 unsigned int j_type = joining_table[u - JOINING_TABLE_FIRST];
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040062 if (likely (j_type != JOINING_TYPE_X))
63 return j_type;
64 }
65
Behdad Esfahbod3ba7bc12012-11-01 20:05:04 -070066 /* Mongolian joining data is not in ArabicJoining.txt yet. */
Behdad Esfahbod8f0b64f2011-07-29 17:02:48 -040067 if (unlikely (hb_in_range<hb_codepoint_t> (u, 0x1800, 0x18AF)))
Behdad Esfahbodd86a5b32010-12-21 18:36:25 -050068 {
Behdad Esfahbod22a68582012-11-05 15:20:10 -080069 if (unlikely (hb_in_range<hb_codepoint_t> (u, 0x1880, 0x1886)))
70 return JOINING_TYPE_U;
71
Behdad Esfahbodd86a5b32010-12-21 18:36:25 -050072 /* All letters, SIBE SYLLABLE BOUNDARY MARKER, and NIRUGU are D */
Behdad Esfahbod3ba7bc12012-11-01 20:05:04 -070073 if ((FLAG(gen_cat) & (FLAG (HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER) |
74 FLAG (HB_UNICODE_GENERAL_CATEGORY_MODIFIER_LETTER)))
75 || u == 0x1807 || u == 0x180A)
Behdad Esfahbodd86a5b32010-12-21 18:36:25 -050076 return JOINING_TYPE_D;
77 }
78
Behdad Esfahbod3ba7bc12012-11-01 20:05:04 -070079 /* 'Phags-pa joining data is not in ArabicJoining.txt yet. */
80 if (unlikely (hb_in_range<hb_codepoint_t> (u, 0xA840, 0xA872)))
81 {
Behdad Esfahbod48998012012-11-08 15:08:26 -080082 if (unlikely (u == 0xA872))
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050083 return JOINING_TYPE_L;
Behdad Esfahbod48998012012-11-08 15:08:26 -080084
Behdad Esfahbod3ba7bc12012-11-01 20:05:04 -070085 return JOINING_TYPE_D;
86 }
87
88 if (unlikely (hb_in_range<hb_codepoint_t> (u, 0x200C, 0x200D)))
89 {
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040090 return u == 0x200C ? JOINING_TYPE_U : JOINING_TYPE_C;
91 }
92
Behdad Esfahbod7b08b0a2011-07-20 23:59:07 -040093 return (FLAG(gen_cat) & (FLAG(HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) | FLAG(HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK) | FLAG(HB_UNICODE_GENERAL_CATEGORY_FORMAT))) ?
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040094 JOINING_TYPE_T : JOINING_TYPE_U;
95}
96
Behdad Esfahbode9f28a32012-08-11 18:20:28 -040097static const hb_tag_t arabic_features[] =
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040098{
99 HB_TAG('i','n','i','t'),
100 HB_TAG('m','e','d','i'),
101 HB_TAG('f','i','n','a'),
102 HB_TAG('i','s','o','l'),
103 /* Syriac */
104 HB_TAG('m','e','d','2'),
105 HB_TAG('f','i','n','2'),
106 HB_TAG('f','i','n','3'),
107 HB_TAG_NONE
108};
109
110
111/* Same order as the feature array */
112enum {
113 INIT,
114 MEDI,
115 FINA,
116 ISOL,
117
118 /* Syriac */
119 MED2,
120 FIN2,
121 FIN3,
122
123 NONE,
124
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400125 ARABIC_NUM_FEATURES = NONE
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400126};
127
128static const struct arabic_state_table_entry {
129 uint8_t prev_action;
130 uint8_t curr_action;
Behdad Esfahbod31f18ab2011-06-15 09:49:58 -0400131 uint16_t next_state;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400132} arabic_state_table[][NUM_STATE_MACHINE_COLS] =
133{
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500134 /* jt_U, jt_L, jt_R, jt_D, jg_ALAPH, jg_DALATH_RISH */
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400135
136 /* State 0: prev was U, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500137 { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400138
139 /* State 1: prev was R or ISOL/ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500140 { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN2,5}, {NONE,ISOL,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400141
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500142 /* State 2: prev was D/L in ISOL form, willing to join. */
143 { {NONE,NONE,0}, {NONE,ISOL,2}, {INIT,FINA,1}, {INIT,FINA,3}, {INIT,FINA,4}, {INIT,FINA,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400144
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500145 /* State 3: prev was D in FINA form, willing to join. */
146 { {NONE,NONE,0}, {NONE,ISOL,2}, {MEDI,FINA,1}, {MEDI,FINA,3}, {MEDI,FINA,4}, {MEDI,FINA,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400147
148 /* State 4: prev was FINA ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500149 { {NONE,NONE,0}, {NONE,ISOL,2}, {MED2,ISOL,1}, {MED2,ISOL,2}, {MED2,FIN2,5}, {MED2,ISOL,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400150
151 /* State 5: prev was FIN2/FIN3 ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500152 { {NONE,NONE,0}, {NONE,ISOL,2}, {ISOL,ISOL,1}, {ISOL,ISOL,2}, {ISOL,FIN2,5}, {ISOL,ISOL,6}, },
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400153
154 /* State 6: prev was DALATH/RISH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500155 { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN3,5}, {NONE,ISOL,6}, }
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400156};
157
158
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400159static void
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200160nuke_joiners (const hb_ot_shape_plan_t *plan,
161 hb_font_t *font,
162 hb_buffer_t *buffer);
163
164static void
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400165arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
166 hb_font_t *font,
167 hb_buffer_t *buffer);
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400168
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400169static void
Behdad Esfahbod16c6a272012-08-02 09:38:28 -0400170collect_features_arabic (hb_ot_shape_planner_t *plan)
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400171{
Behdad Esfahbod16c6a272012-08-02 09:38:28 -0400172 hb_ot_map_builder_t *map = &plan->map;
173
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400174 /* For Language forms (in ArabicOT speak), we do the iso/fina/medi/init together,
175 * then rlig and calt each in their own stage. This makes IranNastaliq's ALLAH
176 * ligature work correctly. It's unfortunate though...
177 *
178 * This also makes Arial Bold in Windows7 work. See:
179 * https://bugzilla.mozilla.org/show_bug.cgi?id=644184
Behdad Esfahbod71b4c992013-10-28 00:20:59 +0100180 *
181 * TODO: Add test cases for these two.
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400182 */
183
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200184 map->add_gsub_pause (nuke_joiners);
185
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500186 map->add_global_bool_feature (HB_TAG('c','c','m','p'));
187 map->add_global_bool_feature (HB_TAG('l','o','c','l'));
Behdad Esfahbodf6fd3782011-07-08 00:22:40 -0400188
Behdad Esfahbod3e38c0f2012-08-02 09:44:18 -0400189 map->add_gsub_pause (NULL);
Behdad Esfahboda71b9c82011-04-06 14:04:56 -0400190
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400191 for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++)
Behdad Esfahbodec544862013-02-14 11:25:10 -0500192 map->add_feature (arabic_features[i], 1, i < 4 ? F_HAS_FALLBACK : F_NONE); /* The first four features have fallback. */
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400193
Behdad Esfahbod3e38c0f2012-08-02 09:44:18 -0400194 map->add_gsub_pause (NULL);
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400195
Behdad Esfahbodec544862013-02-14 11:25:10 -0500196 map->add_feature (HB_TAG('r','l','i','g'), 1, F_GLOBAL|F_HAS_FALLBACK);
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400197 map->add_gsub_pause (arabic_fallback_shape);
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400198
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500199 map->add_global_bool_feature (HB_TAG('c','a','l','t'));
Behdad Esfahbod3e38c0f2012-08-02 09:44:18 -0400200 map->add_gsub_pause (NULL);
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400201
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500202 map->add_global_bool_feature (HB_TAG('c','s','w','h'));
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500203 map->add_global_bool_feature (HB_TAG('m','s','e','t'));
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400204}
205
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400206#include "hb-ot-shape-complex-arabic-fallback.hh"
207
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400208struct arabic_shape_plan_t
209{
210 ASSERT_POD ();
211
Behdad Esfahbod2f1747e2012-08-16 11:46:46 -0400212 /* The "+ 1" in the next array is to accommodate for the "NONE" command,
213 * which is not an OpenType feature, but this simplifies the code by not
214 * having to do a "if (... < NONE) ..." and just rely on the fact that
215 * mask_array[NONE] == 0. */
Behdad Esfahbodbd08d5d2012-08-16 11:35:50 -0400216 hb_mask_t mask_array[ARABIC_NUM_FEATURES + 1];
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400217
218 bool do_fallback;
219 arabic_fallback_plan_t *fallback_plan;
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400220};
221
222static void *
223data_create_arabic (const hb_ot_shape_plan_t *plan)
224{
225 arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) calloc (1, sizeof (arabic_shape_plan_t));
226 if (unlikely (!arabic_plan))
227 return NULL;
228
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400229 arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC;
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400230 for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++) {
231 arabic_plan->mask_array[i] = plan->map.get_1_mask (arabic_features[i]);
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400232 if (i < 4)
233 arabic_plan->do_fallback = arabic_plan->do_fallback && plan->map.needs_fallback (arabic_features[i]);
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400234 }
235
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400236 return arabic_plan;
237}
238
239static void
240data_destroy_arabic (void *data)
241{
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400242 arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) data;
243
244 arabic_fallback_plan_destroy (arabic_plan->fallback_plan);
245
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400246 free (data);
247}
Behdad Esfahbodb7d04eb2012-04-10 16:44:38 -0400248
249static void
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400250arabic_joining (hb_buffer_t *buffer)
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400251{
Behdad Esfahbod76f76812011-07-07 22:25:25 -0400252 unsigned int count = buffer->len;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400253 unsigned int prev = (unsigned int) -1, state = 0;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400254
Behdad Esfahbodb65c0602011-07-28 16:48:43 -0400255 HB_BUFFER_ALLOCATE_VAR (buffer, arabic_shaping_action);
256
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400257 /* Check pre-context */
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800258 if (!(buffer->flags & HB_BUFFER_FLAG_BOT))
259 for (unsigned int i = 0; i < buffer->context_len[0]; i++)
260 {
261 unsigned int this_type = get_joining_type (buffer->context[0][i], buffer->unicode->general_category (buffer->context[0][i]));
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400262
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800263 if (unlikely (this_type == JOINING_TYPE_T))
264 continue;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400265
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800266 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type];
267 state = entry->next_state;
268 break;
269 }
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400270
Behdad Esfahbod758f68b2010-10-12 17:37:44 -0400271 for (unsigned int i = 0; i < count; i++)
272 {
Behdad Esfahbodd1deaa22012-05-09 15:04:13 +0200273 unsigned int this_type = get_joining_type (buffer->info[i].codepoint, _hb_glyph_info_get_general_category (&buffer->info[i]));
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400274
Behdad Esfahbodaefdb642010-10-27 10:40:39 -0400275 if (unlikely (this_type == JOINING_TYPE_T)) {
Behdad Esfahbod76f76812011-07-07 22:25:25 -0400276 buffer->info[i].arabic_shaping_action() = NONE;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400277 continue;
Behdad Esfahbodaefdb642010-10-27 10:40:39 -0400278 }
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400279
Behdad Esfahbod758f68b2010-10-12 17:37:44 -0400280 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type];
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400281
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400282 if (entry->prev_action != NONE && prev != (unsigned int) -1)
Behdad Esfahbodbf029282013-10-18 16:20:13 +0200283 for (; prev < i; prev++)
284 buffer->info[prev].arabic_shaping_action() = entry->prev_action;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400285
Behdad Esfahbod76f76812011-07-07 22:25:25 -0400286 buffer->info[i].arabic_shaping_action() = entry->curr_action;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400287
288 prev = i;
289 state = entry->next_state;
290 }
291
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800292 if (!(buffer->flags & HB_BUFFER_FLAG_EOT))
293 for (unsigned int i = 0; i < buffer->context_len[1]; i++)
294 {
Behdad Esfahbod5669a6c2012-11-13 15:11:51 -0800295 unsigned int this_type = get_joining_type (buffer->context[1][i], buffer->unicode->general_category (buffer->context[1][i]));
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400296
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800297 if (unlikely (this_type == JOINING_TYPE_T))
298 continue;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400299
Behdad Esfahbod0c7df222012-11-13 14:42:35 -0800300 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type];
301 if (entry->prev_action != NONE && prev != (unsigned int) -1)
302 buffer->info[prev].arabic_shaping_action() = entry->prev_action;
303 break;
304 }
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400305
306
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400307 HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action);
308}
309
310static void
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400311setup_masks_arabic (const hb_ot_shape_plan_t *plan,
312 hb_buffer_t *buffer,
Behdad Esfahbod0beb66e2012-12-05 18:46:04 -0500313 hb_font_t *font HB_UNUSED)
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400314{
315 const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data;
316
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400317 arabic_joining (buffer);
318 unsigned int count = buffer->len;
319 for (unsigned int i = 0; i < count; i++)
320 buffer->info[i].mask |= arabic_plan->mask_array[buffer->info[i].arabic_shaping_action()];
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400321}
322
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400323
324static void
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200325nuke_joiners (const hb_ot_shape_plan_t *plan HB_UNUSED,
326 hb_font_t *font HB_UNUSED,
327 hb_buffer_t *buffer)
328{
329 unsigned int count = buffer->len;
330 for (unsigned int i = 0; i < count; i++)
331 if (_hb_glyph_info_is_zwj (&buffer->info[i]))
332 _hb_glyph_info_flip_joiners (&buffer->info[i]);
333}
334
335static void
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400336arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
337 hb_font_t *font,
338 hb_buffer_t *buffer)
339{
340 const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data;
341
342 if (!arabic_plan->do_fallback)
343 return;
344
345retry:
346 arabic_fallback_plan_t *fallback_plan = (arabic_fallback_plan_t *) hb_atomic_ptr_get (&arabic_plan->fallback_plan);
347 if (unlikely (!fallback_plan))
348 {
349 /* This sucks. We need a font to build the fallback plan... */
350 fallback_plan = arabic_fallback_plan_create (plan, font);
351 if (unlikely (!hb_atomic_ptr_cmpexch (&(const_cast<arabic_shape_plan_t *> (arabic_plan))->fallback_plan, NULL, fallback_plan))) {
352 arabic_fallback_plan_destroy (fallback_plan);
353 goto retry;
354 }
355 }
356
357 arabic_fallback_plan_shape (fallback_plan, font, buffer);
358}
359
360
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400361const hb_ot_complex_shaper_t _hb_ot_complex_shaper_arabic =
362{
363 "arabic",
364 collect_features_arabic,
365 NULL, /* override_features */
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400366 data_create_arabic,
367 data_destroy_arabic,
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400368 NULL, /* preprocess_text_arabic */
Behdad Esfahbod3d6ca0d2013-12-31 16:04:35 +0800369 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT,
Behdad Esfahbod07369152012-11-13 12:35:35 -0800370 NULL, /* decompose */
371 NULL, /* compose */
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400372 setup_masks_arabic,
Behdad Esfahbod71b4c992013-10-28 00:20:59 +0100373 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE,
Behdad Esfahbod865745b2012-11-14 13:48:26 -0800374 true, /* fallback_position */
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400375};