blob: 28dd4e1fe2b4863dc923c7ffbfd5a3e8cd4f197a [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 Esfahbod9daf2df2015-07-22 10:32:30 +010027#include "hb-ot-shape-complex-arabic-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
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -080031#ifndef HB_DEBUG_ARABIC
32#define HB_DEBUG_ARABIC (HB_DEBUG+0)
33#endif
34
35
Behdad Esfahbod3a852ae2010-11-03 16:37:24 -040036/* buffer var allocations */
Behdad Esfahbodcd0c6e12012-08-09 21:48:55 -040037#define arabic_shaping_action() complex_var_u8_0() /* arabic shaping action */
Behdad Esfahbod3a852ae2010-11-03 16:37:24 -040038
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -080039#define HB_BUFFER_SCRATCH_FLAG_ARABIC_HAS_STCH HB_BUFFER_SCRATCH_FLAG_COMPLEX0
40
Behdad Esfahbod59821ab2015-11-06 16:27:44 -080041/* 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 Esfahbod3a852ae2010-11-03 16:37:24 -040063
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040064/*
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +010065 * Joining types:
66 */
67
68/*
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040069 * Bits used in the joining tables
70 */
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +010071enum hb_arabic_joining_type_t {
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040072 JOINING_TYPE_U = 0,
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050073 JOINING_TYPE_L = 1,
74 JOINING_TYPE_R = 2,
75 JOINING_TYPE_D = 3,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040076 JOINING_TYPE_C = JOINING_TYPE_D,
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050077 JOINING_GROUP_ALAPH = 4,
78 JOINING_GROUP_DALATH_RISH = 5,
79 NUM_STATE_MACHINE_COLS = 6,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040080
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -050081 JOINING_TYPE_T = 7,
82 JOINING_TYPE_X = 8 /* means: use general-category to choose between U or T. */
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040083};
84
Behdad Esfahbodc57d4542011-04-20 18:50:27 -040085#include "hb-ot-shape-complex-arabic-table.hh"
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040086
Behdad Esfahbod99b74762011-04-11 15:47:40 -040087static unsigned int get_joining_type (hb_codepoint_t u, hb_unicode_general_category_t gen_cat)
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040088{
Behdad Esfahbodb900fa22014-06-20 17:59:43 -040089 unsigned int j_type = joining_type(u);
90 if (likely (j_type != JOINING_TYPE_X))
91 return j_type;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -040092
Behdad Esfahbodf8160a42015-07-21 15:50:02 +010093 return (FLAG_SAFE(gen_cat) &
Behdad Esfahbod5d4d7382014-06-21 14:53:21 -060094 (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 Esfahbod3eb936f2010-10-05 18:36:58 -040098}
99
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400100#define FEATURE_IS_SYRIAC(tag) hb_in_range<unsigned char> ((unsigned char) (tag), '2', '3')
101
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400102static const hb_tag_t arabic_features[] =
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400103{
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400104 HB_TAG('i','s','o','l'),
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400105 HB_TAG('f','i','n','a'),
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400106 HB_TAG('f','i','n','2'),
107 HB_TAG('f','i','n','3'),
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400108 HB_TAG('m','e','d','i'),
109 HB_TAG('m','e','d','2'),
110 HB_TAG('i','n','i','t'),
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400111 HB_TAG_NONE
112};
113
114
115/* Same order as the feature array */
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800116enum arabic_action_t {
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400117 ISOL,
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400118 FINA,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400119 FIN2,
120 FIN3,
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400121 MEDI,
122 MED2,
123 INIT,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400124
125 NONE,
126
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800127 ARABIC_NUM_FEATURES = NONE,
128
129 /* We abuse the same byte for other things... */
130 STCH_FIXED,
131 STCH_REPEATING,
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400132};
133
134static const struct arabic_state_table_entry {
135 uint8_t prev_action;
136 uint8_t curr_action;
Behdad Esfahbod31f18ab2011-06-15 09:49:58 -0400137 uint16_t next_state;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400138} arabic_state_table[][NUM_STATE_MACHINE_COLS] =
139{
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500140 /* jt_U, jt_L, jt_R, jt_D, jg_ALAPH, jg_DALATH_RISH */
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400141
142 /* State 0: prev was U, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500143 { {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 -0400144
145 /* State 1: prev was R or ISOL/ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500146 { {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 -0400147
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500148 /* 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 Esfahbod3eb936f2010-10-05 18:36:58 -0400150
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500151 /* 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 Esfahbod3eb936f2010-10-05 18:36:58 -0400153
154 /* State 4: prev was FINA ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500155 { {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 -0400156
157 /* State 5: prev was FIN2/FIN3 ALAPH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500158 { {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 -0400159
160 /* State 6: prev was DALATH/RISH, not willing to join. */
Behdad Esfahbodc2a1cdc2013-02-15 09:27:02 -0500161 { {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 -0400162};
163
164
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400165static void
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200166nuke_joiners (const hb_ot_shape_plan_t *plan,
167 hb_font_t *font,
168 hb_buffer_t *buffer);
169
170static void
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400171arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
172 hb_font_t *font,
173 hb_buffer_t *buffer);
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400174
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400175static void
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800176record_stch (const hb_ot_shape_plan_t *plan,
177 hb_font_t *font,
178 hb_buffer_t *buffer);
179
180static void
Behdad Esfahbod16c6a272012-08-02 09:38:28 -0400181collect_features_arabic (hb_ot_shape_planner_t *plan)
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400182{
Behdad Esfahbod16c6a272012-08-02 09:38:28 -0400183 hb_ot_map_builder_t *map = &plan->map;
184
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400185 /* We apply features according to the Arabic spec, with pauses
186 * in between most.
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400187 *
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400188 * The pause between init/medi/... and rlig is required. See eg:
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400189 * https://bugzilla.mozilla.org/show_bug.cgi?id=644184
Behdad Esfahbod71b4c992013-10-28 00:20:59 +0100190 *
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400191 * 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 Esfahbodc1432bc2017-07-14 17:34:47 +0100202 *
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 Esfahbodb70c96d2011-07-07 21:07:41 -0400205 */
206
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200207 map->add_gsub_pause (nuke_joiners);
208
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800209 map->add_global_bool_feature (HB_TAG('s','t','c','h'));
210 map->add_gsub_pause (record_stch);
211
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500212 map->add_global_bool_feature (HB_TAG('c','c','m','p'));
213 map->add_global_bool_feature (HB_TAG('l','o','c','l'));
Behdad Esfahbodf6fd3782011-07-08 00:22:40 -0400214
Behdad Esfahbod3e38c0f2012-08-02 09:44:18 -0400215 map->add_gsub_pause (NULL);
Behdad Esfahboda71b9c82011-04-06 14:04:56 -0400216
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400217 for (unsigned int i = 0; i < ARABIC_NUM_FEATURES; i++)
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400218 {
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 Esfahbod7e2da032016-04-26 16:42:25 -0700221 map->add_gsub_pause (NULL);
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400222 }
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400223
Behdad Esfahbodec544862013-02-14 11:25:10 -0500224 map->add_feature (HB_TAG('r','l','i','g'), 1, F_GLOBAL|F_HAS_FALLBACK);
Behdad Esfahbod615d00e2014-07-17 13:36:09 -0400225 if (plan->props.script == HB_SCRIPT_ARABIC)
226 map->add_gsub_pause (arabic_fallback_shape);
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400227
Behdad Esfahbodc1432bc2017-07-14 17:34:47 +0100228 /* No pause after rclt. See 98460779bae19e4d64d29461ff154b3527bf8420. */
229 map->add_global_bool_feature (HB_TAG('r','c','l','t'));
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500230 map->add_global_bool_feature (HB_TAG('c','a','l','t'));
Behdad Esfahbodc1432bc2017-07-14 17:34:47 +0100231 map->add_gsub_pause (NULL);
Behdad Esfahbodb70c96d2011-07-07 21:07:41 -0400232
Behdad Esfahbod82f4d9d2014-07-17 15:57:37 -0400233 /* 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 Esfahbode3b42f12014-07-17 17:13:54 -0400241 //map->add_global_bool_feature (HB_TAG('c','s','w','h'));
Behdad Esfahbode7ffcfa2013-02-14 11:05:56 -0500242 map->add_global_bool_feature (HB_TAG('m','s','e','t'));
Behdad Esfahbod49baa1f2010-10-12 16:50:36 -0400243}
244
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400245#include "hb-ot-shape-complex-arabic-fallback.hh"
246
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400247struct arabic_shape_plan_t
248{
249 ASSERT_POD ();
250
Behdad Esfahbod2f1747e2012-08-16 11:46:46 -0400251 /* 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 Esfahbodbd08d5d2012-08-16 11:35:50 -0400255 hb_mask_t mask_array[ARABIC_NUM_FEATURES + 1];
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400256
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400257 arabic_fallback_plan_t *fallback_plan;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800258
259 unsigned int do_fallback : 1;
260 unsigned int has_stch : 1;
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400261};
262
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +0100263void *
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400264data_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 Esfahbodfabd3112012-09-05 22:19:28 -0400270 arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800271 arabic_plan->has_stch = !!plan->map.get_1_mask (HB_TAG ('s','t','c','h'));
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400272 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 Esfahbod615d00e2014-07-17 13:36:09 -0400274 arabic_plan->do_fallback = arabic_plan->do_fallback &&
Behdad Esfahbodd5e61472014-08-05 14:19:01 -0400275 (FEATURE_IS_SYRIAC (arabic_features[i]) ||
276 plan->map.needs_fallback (arabic_features[i]));
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400277 }
278
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400279 return arabic_plan;
280}
281
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +0100282void
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400283data_destroy_arabic (void *data)
284{
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400285 arabic_shape_plan_t *arabic_plan = (arabic_shape_plan_t *) data;
286
287 arabic_fallback_plan_destroy (arabic_plan->fallback_plan);
288
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400289 free (data);
290}
Behdad Esfahbodb7d04eb2012-04-10 16:44:38 -0400291
292static void
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400293arabic_joining (hb_buffer_t *buffer)
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400294{
Behdad Esfahbod76f76812011-07-07 22:25:25 -0400295 unsigned int count = buffer->len;
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400296 hb_glyph_info_t *info = buffer->info;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400297 unsigned int prev = (unsigned int) -1, state = 0;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400298
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400299 /* Check pre-context */
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400300 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 Esfahbodbdc2fc82012-09-25 21:32:35 -0400303
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400304 if (unlikely (this_type == JOINING_TYPE_T))
305 continue;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400306
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400307 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type];
308 state = entry->next_state;
309 break;
310 }
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400311
Behdad Esfahbod758f68b2010-10-12 17:37:44 -0400312 for (unsigned int i = 0; i < count; i++)
313 {
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400314 unsigned int this_type = get_joining_type (info[i].codepoint, _hb_glyph_info_get_general_category (&info[i]));
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400315
Behdad Esfahbodaefdb642010-10-27 10:40:39 -0400316 if (unlikely (this_type == JOINING_TYPE_T)) {
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400317 info[i].arabic_shaping_action() = NONE;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400318 continue;
Behdad Esfahbodaefdb642010-10-27 10:40:39 -0400319 }
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400320
Behdad Esfahbod758f68b2010-10-12 17:37:44 -0400321 const arabic_state_table_entry *entry = &arabic_state_table[state][this_type];
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400322
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400323 if (entry->prev_action != NONE && prev != (unsigned int) -1)
Behdad Esfahbod40bd7e92016-05-02 14:47:45 +0200324 {
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400325 info[prev].arabic_shaping_action() = entry->prev_action;
Behdad Esfahbod40bd7e92016-05-02 14:47:45 +0200326 buffer->unsafe_to_break (prev, i + 1);
327 }
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400328
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400329 info[i].arabic_shaping_action() = entry->curr_action;
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400330
331 prev = i;
332 state = entry->next_state;
333 }
334
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400335 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 Esfahbodbdc2fc82012-09-25 21:32:35 -0400338
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400339 if (unlikely (this_type == JOINING_TYPE_T))
340 continue;
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400341
Behdad Esfahbod763e5462014-08-02 16:17:44 -0400342 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 Esfahbod164c13d2014-07-17 14:16:38 -0400347}
Behdad Esfahbodbdc2fc82012-09-25 21:32:35 -0400348
Behdad Esfahbod164c13d2014-07-17 14:16:38 -0400349static void
350mongolian_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 Byagowi3b0e47c2017-06-19 14:47:09 +0430356 if (unlikely (hb_in_range<hb_codepoint_t> (info[i].codepoint, 0x180Bu, 0x180Du)))
Behdad Esfahbod164c13d2014-07-17 14:16:38 -0400357 info[i].arabic_shaping_action() = info[i - 1].arabic_shaping_action();
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400358}
359
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +0100360void
361setup_masks_arabic_plan (const arabic_shape_plan_t *arabic_plan,
362 hb_buffer_t *buffer,
363 hb_script_t script)
Behdad Esfahbod9f9f04c2012-08-11 18:34:13 -0400364{
Behdad Esfahbod164c13d2014-07-17 14:16:38 -0400365 HB_BUFFER_ALLOCATE_VAR (buffer, arabic_shaping_action);
366
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400367 arabic_joining (buffer);
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +0100368 if (script == HB_SCRIPT_MONGOLIAN)
Behdad Esfahbod164c13d2014-07-17 14:16:38 -0400369 mongolian_variation_selectors (buffer);
370
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400371 unsigned int count = buffer->len;
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400372 hb_glyph_info_t *info = buffer->info;
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400373 for (unsigned int i = 0; i < count; i++)
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400374 info[i].mask |= arabic_plan->mask_array[info[i].arabic_shaping_action()];
Behdad Esfahbod3eb936f2010-10-05 18:36:58 -0400375}
376
Behdad Esfahbod9daf2df2015-07-22 10:32:30 +0100377static void
378setup_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 Esfahbodfabd3112012-09-05 22:19:28 -0400386
387static void
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200388nuke_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 Esfahbod7cd33f22014-07-17 14:22:11 -0400393 hb_glyph_info_t *info = buffer->info;
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200394 for (unsigned int i = 0; i < count; i++)
Behdad Esfahbod7cd33f22014-07-17 14:22:11 -0400395 if (_hb_glyph_info_is_zwj (&info[i]))
396 _hb_glyph_info_flip_joiners (&info[i]);
Behdad Esfahbodc52ddab2013-10-16 13:42:38 +0200397}
398
399static void
Behdad Esfahbodfabd3112012-09-05 22:19:28 -0400400arabic_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
409retry:
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 Esfahbod6e6f82b2015-11-05 17:29:03 -0800424/*
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
432static void
433record_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
457static void
458apply_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 Esfahbod6e6f82b2015-11-05 17:29:03 -0800474 int sign = font->x_scale < 0 ? -1 : +1;
475 unsigned int extra_glyphs_needed = 0; // Set during MEASURE, used during CUT
Chun-wei Fan4d27bb82015-11-06 14:28:30 +0800476 typedef enum { MEASURE, CUT } step_t;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800477
Chun-wei Fan4d27bb82015-11-06 14:28:30 +0800478 for (step_t step = MEASURE; step <= CUT; step = (step_t) (step + 1))
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800479 {
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 Esfahbod86bcbd62015-12-17 11:04:33 +0000511 hb_position_t width = font->get_glyph_h_advance (info[i].codepoint);
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800512 if (info[i].arabic_shaping_action() == STCH_FIXED)
513 {
Behdad Esfahbod86bcbd62015-12-17 11:04:33 +0000514 w_fixed += width;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800515 n_fixed++;
516 }
517 else
518 {
Behdad Esfahbod86bcbd62015-12-17 11:04:33 +0000519 w_repeating += width;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800520 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 Esfahbod59821ab2015-11-06 16:27:44 -0800528 HB_ARABIC_GENERAL_CATEGORY_IS_WORD (_hb_glyph_info_get_general_category (&info[context - 1]))))
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800529 {
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 Esfahbod86bcbd62015-12-17 11:04:33 +0000544 hb_position_t w_remaining = w_total - w_fixed;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800545 if (sign * w_remaining > sign * w_repeating && sign * w_repeating > 0)
jfkthamea7ffe352015-12-05 17:47:37 +0000546 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 Esfahbod73c6dcb2017-02-07 16:53:21 -0800551 if (shortfall > 0 && n_repeating > 0)
jfkthamea7ffe352015-12-05 17:47:37 +0000552 {
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 Esfahbod6e6f82b2015-11-05 17:29:03 -0800558
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 Esfahbod86bcbd62015-12-17 11:04:33 +0000566 hb_position_t x_offset = 0;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800567 for (unsigned int k = end; k > start; k--)
568 {
Behdad Esfahbod86bcbd62015-12-17 11:04:33 +0000569 hb_position_t width = font->get_glyph_h_advance (info[k - 1].codepoint);
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800570
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 Esfahbod86bcbd62015-12-17 11:04:33 +0000579 x_offset -= width;
jfkthamea7ffe352015-12-05 17:47:37 +0000580 if (n > 0)
581 x_offset += extra_repeat_overlap;
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800582 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
606static void
607postprocess_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 Esfahbodfabd3112012-09-05 22:19:28 -0400615
Behdad Esfahbodab8d70e2017-10-04 14:47:10 +0200616/* http://www.unicode.org/reports/tr53/tr53-1.pdf */
617
618static hb_codepoint_t
619modifier_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
631static inline bool
632info_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
641static void
642reorder_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 Esfahbod693918e2012-07-30 21:08:51 -0400690const hb_ot_complex_shaper_t _hb_ot_complex_shaper_arabic =
691{
692 "arabic",
693 collect_features_arabic,
694 NULL, /* override_features */
Behdad Esfahbode9f28a32012-08-11 18:20:28 -0400695 data_create_arabic,
696 data_destroy_arabic,
Behdad Esfahbod13686332015-11-05 13:24:15 -0800697 NULL, /* preprocess_text */
Behdad Esfahbod6e6f82b2015-11-05 17:29:03 -0800698 postprocess_glyphs_arabic,
Behdad Esfahbod3d6ca0d2013-12-31 16:04:35 +0800699 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT,
Behdad Esfahbod07369152012-11-13 12:35:35 -0800700 NULL, /* decompose */
701 NULL, /* compose */
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400702 setup_masks_arabic,
Behdad Esfahbode2b87802016-12-22 14:40:19 -0600703 NULL, /* disable_otl */
Behdad Esfahbodab8d70e2017-10-04 14:47:10 +0200704 reorder_marks_arabic,
Behdad Esfahbod71b4c992013-10-28 00:20:59 +0100705 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE,
Behdad Esfahbod865745b2012-11-14 13:48:26 -0800706 true, /* fallback_position */
Behdad Esfahbod693918e2012-07-30 21:08:51 -0400707};