Add git cl format presubmit warning for extension and apps.
[chromium-blink-merge.git] / third_party / harfbuzz-ng / src / hb-ot-shape-normalize.cc
blob6531e1b215caba8b2a45a82e22ec876ef7e88896
1 /*
2 * Copyright © 2011,2012 Google, Inc.
4 * This is part of HarfBuzz, a text shaping library.
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.
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.
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.
24 * Google Author(s): Behdad Esfahbod
27 #include "hb-ot-shape-normalize-private.hh"
28 #include "hb-ot-shape-complex-private.hh"
29 #include "hb-ot-shape-private.hh"
33 * HIGHLEVEL DESIGN:
35 * This file exports one main function: _hb_ot_shape_normalize().
37 * This function closely reflects the Unicode Normalization Algorithm,
38 * yet it's different.
40 * Each shaper specifies whether it prefers decomposed (NFD) or composed (NFC).
41 * The logic however tries to use whatever the font can support.
43 * In general what happens is that: each grapheme is decomposed in a chain
44 * of 1:2 decompositions, marks reordered, and then recomposed if desired,
45 * so far it's like Unicode Normalization. However, the decomposition and
46 * recomposition only happens if the font supports the resulting characters.
48 * The goals are:
50 * - Try to render all canonically equivalent strings similarly. To really
51 * achieve this we have to always do the full decomposition and then
52 * selectively recompose from there. It's kinda too expensive though, so
53 * we skip some cases. For example, if composed is desired, we simply
54 * don't touch 1-character clusters that are supported by the font, even
55 * though their NFC may be different.
57 * - When a font has a precomposed character for a sequence but the 'ccmp'
58 * feature in the font is not adequate, use the precomposed character
59 * which typically has better mark positioning.
61 * - When a font does not support a combining mark, but supports it precomposed
62 * with previous base, use that. This needs the itemizer to have this
63 * knowledge too. We need to provide assistance to the itemizer.
65 * - When a font does not support a character but supports its decomposition,
66 * well, use the decomposition (preferring the canonical decomposition, but
67 * falling back to the compatibility decomposition if necessary). The
68 * compatibility decomposition is really nice to have, for characters like
69 * ellipsis, or various-sized space characters.
71 * - The complex shapers can customize the compose and decompose functions to
72 * offload some of their requirements to the normalizer. For example, the
73 * Indic shaper may want to disallow recomposing of two matras.
75 * - We try compatibility decomposition if decomposing through canonical
76 * decomposition alone failed to find a sequence that the font supports.
77 * We don't try compatibility decomposition recursively during the canonical
78 * decomposition phase. This has minimal impact. There are only a handful
79 * of Greek letter that have canonical decompositions that include characters
80 * with compatibility decomposition. Those can be found using this command:
82 * egrep "`echo -n ';('; grep ';<' UnicodeData.txt | cut -d';' -f1 | tr '\n' '|'; echo ') '`" UnicodeData.txt
85 static bool
86 decompose_unicode (const hb_ot_shape_normalize_context_t *c,
87 hb_codepoint_t ab,
88 hb_codepoint_t *a,
89 hb_codepoint_t *b)
91 return c->unicode->decompose (ab, a, b);
94 static bool
95 compose_unicode (const hb_ot_shape_normalize_context_t *c,
96 hb_codepoint_t a,
97 hb_codepoint_t b,
98 hb_codepoint_t *ab)
100 return c->unicode->compose (a, b, ab);
103 static inline void
104 set_glyph (hb_glyph_info_t &info, hb_font_t *font)
106 font->get_glyph (info.codepoint, 0, &info.glyph_index());
109 static inline void
110 output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph)
112 buffer->cur().glyph_index() = glyph;
113 buffer->output_glyph (unichar);
114 _hb_glyph_info_set_unicode_props (&buffer->prev(), buffer->unicode);
117 static inline void
118 next_char (hb_buffer_t *buffer, hb_codepoint_t glyph)
120 buffer->cur().glyph_index() = glyph;
121 buffer->next_glyph ();
124 static inline void
125 skip_char (hb_buffer_t *buffer)
127 buffer->skip_glyph ();
130 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
131 static inline unsigned int
132 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab)
134 hb_codepoint_t a, b, a_glyph, b_glyph;
135 hb_buffer_t * const buffer = c->buffer;
136 hb_font_t * const font = c->font;
138 if (!c->decompose (c, ab, &a, &b) ||
139 (b && !font->get_glyph (b, 0, &b_glyph)))
140 return 0;
142 bool has_a = font->get_glyph (a, 0, &a_glyph);
143 if (shortest && has_a) {
144 /* Output a and b */
145 output_char (buffer, a, a_glyph);
146 if (likely (b)) {
147 output_char (buffer, b, b_glyph);
148 return 2;
150 return 1;
153 unsigned int ret;
154 if ((ret = decompose (c, shortest, a))) {
155 if (b) {
156 output_char (buffer, b, b_glyph);
157 return ret + 1;
159 return ret;
162 if (has_a) {
163 output_char (buffer, a, a_glyph);
164 if (likely (b)) {
165 output_char (buffer, b, b_glyph);
166 return 2;
168 return 1;
171 return 0;
174 /* Returns 0 if didn't decompose, number of resulting characters otherwise. */
175 static inline unsigned int
176 decompose_compatibility (const hb_ot_shape_normalize_context_t *c, hb_codepoint_t u)
178 unsigned int len, i;
179 hb_codepoint_t decomposed[HB_UNICODE_MAX_DECOMPOSITION_LEN];
180 hb_codepoint_t glyphs[HB_UNICODE_MAX_DECOMPOSITION_LEN];
182 len = c->buffer->unicode->decompose_compatibility (u, decomposed);
183 if (!len)
184 return 0;
186 for (i = 0; i < len; i++)
187 if (!c->font->get_glyph (decomposed[i], 0, &glyphs[i]))
188 return 0;
190 for (i = 0; i < len; i++)
191 output_char (c->buffer, decomposed[i], glyphs[i]);
193 return len;
196 static inline void
197 decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest)
199 hb_buffer_t * const buffer = c->buffer;
200 hb_codepoint_t glyph;
202 /* Kind of a cute waterfall here... */
203 if (shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
204 next_char (buffer, glyph);
205 else if (decompose (c, shortest, buffer->cur().codepoint))
206 skip_char (buffer);
207 else if (!shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
208 next_char (buffer, glyph);
209 else if (decompose_compatibility (c, buffer->cur().codepoint))
210 skip_char (buffer);
211 else
212 next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
215 static inline void
216 handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end)
218 hb_buffer_t * const buffer = c->buffer;
219 hb_font_t * const font = c->font;
220 for (; buffer->idx < end - 1;) {
221 if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
222 /* The next two lines are some ugly lines... But work. */
223 if (font->get_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index()))
225 buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
227 else
229 /* Just pass on the two characters separately, let GSUB do its magic. */
230 set_glyph (buffer->cur(), font);
231 buffer->next_glyph ();
232 set_glyph (buffer->cur(), font);
233 buffer->next_glyph ();
235 /* Skip any further variation selectors. */
236 while (buffer->idx < end && unlikely (buffer->unicode->is_variation_selector (buffer->cur().codepoint)))
238 set_glyph (buffer->cur(), font);
239 buffer->next_glyph ();
241 } else {
242 set_glyph (buffer->cur(), font);
243 buffer->next_glyph ();
246 if (likely (buffer->idx < end)) {
247 set_glyph (buffer->cur(), font);
248 buffer->next_glyph ();
252 static inline void
253 decompose_multi_char_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end)
255 hb_buffer_t * const buffer = c->buffer;
256 /* TODO Currently if there's a variation-selector we give-up, it's just too hard. */
257 for (unsigned int i = buffer->idx; i < end; i++)
258 if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
259 handle_variation_selector_cluster (c, end);
260 return;
263 while (buffer->idx < end)
264 decompose_current_character (c, false);
267 static inline void
268 decompose_cluster (const hb_ot_shape_normalize_context_t *c, bool short_circuit, unsigned int end)
270 if (likely (c->buffer->idx + 1 == end))
271 decompose_current_character (c, short_circuit);
272 else
273 decompose_multi_char_cluster (c, end);
277 static int
278 compare_combining_class (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
280 unsigned int a = _hb_glyph_info_get_modified_combining_class (pa);
281 unsigned int b = _hb_glyph_info_get_modified_combining_class (pb);
283 return a < b ? -1 : a == b ? 0 : +1;
287 void
288 _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
289 hb_buffer_t *buffer,
290 hb_font_t *font)
292 hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference ?
293 plan->shaper->normalization_preference (&buffer->props) :
294 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT;
295 const hb_ot_shape_normalize_context_t c = {
296 plan,
297 buffer,
298 font,
299 buffer->unicode,
300 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
301 plan->shaper->compose ? plan->shaper->compose : compose_unicode
304 bool short_circuit = mode != HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED &&
305 mode != HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT;
306 unsigned int count;
308 /* We do a fairly straightforward yet custom normalization process in three
309 * separate rounds: decompose, reorder, recompose (if desired). Currently
310 * this makes two buffer swaps. We can make it faster by moving the last
311 * two rounds into the inner loop for the first round, but it's more readable
312 * this way. */
315 /* First round, decompose */
317 buffer->clear_output ();
318 count = buffer->len;
319 for (buffer->idx = 0; buffer->idx < count;)
321 unsigned int end;
322 for (end = buffer->idx + 1; end < count; end++)
323 if (buffer->cur().cluster != buffer->info[end].cluster)
324 break;
326 decompose_cluster (&c, short_circuit, end);
328 buffer->swap_buffers ();
331 /* Second round, reorder (inplace) */
333 count = buffer->len;
334 for (unsigned int i = 0; i < count; i++)
336 if (_hb_glyph_info_get_modified_combining_class (&buffer->info[i]) == 0)
337 continue;
339 unsigned int end;
340 for (end = i + 1; end < count; end++)
341 if (_hb_glyph_info_get_modified_combining_class (&buffer->info[end]) == 0)
342 break;
344 /* We are going to do a bubble-sort. Only do this if the
345 * sequence is short. Doing it on long sequences can result
346 * in an O(n^2) DoS. */
347 if (end - i > 10) {
348 i = end;
349 continue;
352 hb_bubble_sort (buffer->info + i, end - i, compare_combining_class);
354 i = end;
358 if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED)
359 return;
361 /* Third round, recompose */
363 /* As noted in the comment earlier, we don't try to combine
364 * ccc=0 chars with their previous Starter. */
366 buffer->clear_output ();
367 count = buffer->len;
368 unsigned int starter = 0;
369 buffer->next_glyph ();
370 while (buffer->idx < count)
372 hb_codepoint_t composed, glyph;
373 if (/* We don't try to compose a non-mark character with it's preceding starter.
374 * This is both an optimization to avoid trying to compose every two neighboring
375 * glyphs in most scripts AND a desired feature for Hangul. Apparently Hangul
376 * fonts are not designed to mix-and-match pre-composed syllables and Jamo. */
377 HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->cur())) &&
378 /* If there's anything between the starter and this char, they should have CCC
379 * smaller than this character's. */
380 (starter == buffer->out_len - 1 ||
381 _hb_glyph_info_get_modified_combining_class (&buffer->prev()) < _hb_glyph_info_get_modified_combining_class (&buffer->cur())) &&
382 /* And compose. */
383 c.compose (&c,
384 buffer->out_info[starter].codepoint,
385 buffer->cur().codepoint,
386 &composed) &&
387 /* And the font has glyph for the composite. */
388 font->get_glyph (composed, 0, &glyph))
390 /* Composes. */
391 buffer->next_glyph (); /* Copy to out-buffer. */
392 if (unlikely (buffer->in_error))
393 return;
394 buffer->merge_out_clusters (starter, buffer->out_len);
395 buffer->out_len--; /* Remove the second composable. */
396 buffer->out_info[starter].codepoint = composed; /* Modify starter and carry on. */
397 set_glyph (buffer->out_info[starter], font);
398 _hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer->unicode);
400 continue;
403 /* Blocked, or doesn't compose. */
404 buffer->next_glyph ();
406 if (_hb_glyph_info_get_modified_combining_class (&buffer->prev()) == 0)
407 starter = buffer->out_len - 1;
409 buffer->swap_buffers ();