hb-ot-shape-normalize.cc 13.9 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2011,2012  Google, Inc.
B
Behdad Esfahbod 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Google Author(s): Behdad Esfahbod
 */

27 28 29
#include "hb-ot-shape-normalize.hh"
#include "hb-ot-shape-complex.hh"
#include "hb-ot-shape.hh"
B
Behdad Esfahbod 已提交
30 31


B
Behdad Esfahbod 已提交
32 33 34 35 36 37
/*
 * HIGHLEVEL DESIGN:
 *
 * This file exports one main function: _hb_ot_shape_normalize().
 *
 * This function closely reflects the Unicode Normalization Algorithm,
B
Behdad Esfahbod 已提交
38 39 40 41
 * yet it's different.
 *
 * Each shaper specifies whether it prefers decomposed (NFD) or composed (NFC).
 * The logic however tries to use whatever the font can support.
B
Behdad Esfahbod 已提交
42 43
 *
 * In general what happens is that: each grapheme is decomposed in a chain
B
Minor  
Behdad Esfahbod 已提交
44
 * of 1:2 decompositions, marks reordered, and then recomposed if desired,
B
Behdad Esfahbod 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57
 * so far it's like Unicode Normalization.  However, the decomposition and
 * recomposition only happens if the font supports the resulting characters.
 *
 * The goals are:
 *
 *   - Try to render all canonically equivalent strings similarly.  To really
 *     achieve this we have to always do the full decomposition and then
 *     selectively recompose from there.  It's kinda too expensive though, so
 *     we skip some cases.  For example, if composed is desired, we simply
 *     don't touch 1-character clusters that are supported by the font, even
 *     though their NFC may be different.
 *
 *   - When a font has a precomposed character for a sequence but the 'ccmp'
B
Minor  
Behdad Esfahbod 已提交
58
 *     feature in the font is not adequate, use the precomposed character
B
Behdad Esfahbod 已提交
59 60
 *     which typically has better mark positioning.
 *
B
Behdad Esfahbod 已提交
61
 *   - When a font does not support a combining mark, but supports it precomposed
B
Behdad Esfahbod 已提交
62
 *     with previous base, use that.  This needs the itemizer to have this
B
Typo  
Behdad Esfahbod 已提交
63
 *     knowledge too.  We need to provide assistance to the itemizer.
B
Behdad Esfahbod 已提交
64
 *
65 66
 *   - When a font does not support a character but supports its canonical
 *     decomposition, well, use the decomposition.
B
Behdad Esfahbod 已提交
67
 *
68 69 70
 *   - The complex shapers can customize the compose and decompose functions to
 *     offload some of their requirements to the normalizer.  For example, the
 *     Indic shaper may want to disallow recomposing of two matras.
B
Behdad Esfahbod 已提交
71 72
 */

73 74
static bool
decompose_unicode (const hb_ot_shape_normalize_context_t *c,
75 76 77
		   hb_codepoint_t  ab,
		   hb_codepoint_t *a,
		   hb_codepoint_t *b)
B
Behdad Esfahbod 已提交
78
{
79
  return (bool) c->unicode->decompose (ab, a, b);
B
Behdad Esfahbod 已提交
80 81
}

82 83
static bool
compose_unicode (const hb_ot_shape_normalize_context_t *c,
84 85 86
		 hb_codepoint_t  a,
		 hb_codepoint_t  b,
		 hb_codepoint_t *ab)
B
Behdad Esfahbod 已提交
87
{
88
  return (bool) c->unicode->compose (a, b, ab);
B
Behdad Esfahbod 已提交
89 90
}

91 92 93
static inline void
set_glyph (hb_glyph_info_t &info, hb_font_t *font)
{
B
Minor  
Behdad Esfahbod 已提交
94
  (void) font->get_nominal_glyph (info.codepoint, &info.glyph_index());
95 96
}

B
Minor  
Behdad Esfahbod 已提交
97
static inline void
98
output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph)
99
{
100
  buffer->cur().glyph_index() = glyph;
101
  buffer->output_glyph (unichar); /* This is very confusing indeed. */
102
  _hb_glyph_info_set_unicode_props (&buffer->prev(), buffer);
103
}
B
Behdad Esfahbod 已提交
104

B
Minor  
Behdad Esfahbod 已提交
105
static inline void
106
next_char (hb_buffer_t *buffer, hb_codepoint_t glyph)
B
Minor  
Behdad Esfahbod 已提交
107
{
108
  buffer->cur().glyph_index() = glyph;
B
Minor  
Behdad Esfahbod 已提交
109 110 111 112 113 114 115 116 117
  buffer->next_glyph ();
}

static inline void
skip_char (hb_buffer_t *buffer)
{
  buffer->skip_glyph ();
}

118 119
/* Returns 0 if didn't decompose, number of resulting characters otherwise. */
static inline unsigned int
120
decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab)
B
Behdad Esfahbod 已提交
121
{
122
  hb_codepoint_t a = 0, b = 0, a_glyph = 0, b_glyph = 0;
B
Behdad Esfahbod 已提交
123 124
  hb_buffer_t * const buffer = c->buffer;
  hb_font_t * const font = c->font;
B
Behdad Esfahbod 已提交
125

126
  if (!c->decompose (c, ab, &a, &b) ||
127
      (b && !font->get_nominal_glyph (b, &b_glyph)))
128
    return 0;
B
Behdad Esfahbod 已提交
129

130
  bool has_a = (bool) font->get_nominal_glyph (a, &a_glyph);
B
Behdad Esfahbod 已提交
131 132
  if (shortest && has_a) {
    /* Output a and b */
B
Behdad Esfahbod 已提交
133
    output_char (buffer, a, a_glyph);
134
    if (likely (b)) {
B
Behdad Esfahbod 已提交
135
      output_char (buffer, b, b_glyph);
136 137 138
      return 2;
    }
    return 1;
B
Behdad Esfahbod 已提交
139
  }
B
Behdad Esfahbod 已提交
140

141
  unsigned int ret;
142
  if ((ret = decompose (c, shortest, a))) {
143
    if (b) {
B
Behdad Esfahbod 已提交
144
      output_char (buffer, b, b_glyph);
145 146 147
      return ret + 1;
    }
    return ret;
B
Behdad Esfahbod 已提交
148
  }
B
Behdad Esfahbod 已提交
149

B
Behdad Esfahbod 已提交
150
  if (has_a) {
B
Behdad Esfahbod 已提交
151
    output_char (buffer, a, a_glyph);
152
    if (likely (b)) {
B
Behdad Esfahbod 已提交
153
      output_char (buffer, b, b_glyph);
154 155 156
      return 2;
    }
    return 1;
B
Behdad Esfahbod 已提交
157 158
  }

159
  return 0;
B
Behdad Esfahbod 已提交
160 161
}

162
static inline void
163
decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest)
B
Behdad Esfahbod 已提交
164
{
165
  hb_buffer_t * const buffer = c->buffer;
B
Behdad Esfahbod 已提交
166
  hb_codepoint_t u = buffer->cur().codepoint;
167
  hb_codepoint_t glyph = 0;
B
Behdad Esfahbod 已提交
168

169
  if (shortest && c->font->get_nominal_glyph (u, &glyph))
B
Behdad Esfahbod 已提交
170
  {
171
    next_char (buffer, glyph);
B
Behdad Esfahbod 已提交
172 173 174 175 176
    return;
  }

  if (decompose (c, shortest, u))
  {
B
Minor  
Behdad Esfahbod 已提交
177
    skip_char (buffer);
B
Behdad Esfahbod 已提交
178 179 180
    return;
  }

181
  if (!shortest && c->font->get_nominal_glyph (u, &glyph))
B
Behdad Esfahbod 已提交
182
  {
183
    next_char (buffer, glyph);
B
Behdad Esfahbod 已提交
184 185 186 187
    return;
  }

  if (_hb_glyph_info_is_unicode_space (&buffer->cur()))
188
  {
B
Behdad Esfahbod 已提交
189 190
    hb_codepoint_t space_glyph;
    hb_unicode_funcs_t::space_t space_type = buffer->unicode->space_fallback_type (u);
191
    if (space_type != hb_unicode_funcs_t::NOT_SPACE && c->font->get_nominal_glyph (0x0020u, &space_glyph))
B
Behdad Esfahbod 已提交
192 193 194 195 196 197
    {
      _hb_glyph_info_set_unicode_space_fallback_type (&buffer->cur(), space_type);
      next_char (buffer, space_glyph);
      buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_SPACE_FALLBACK;
      return;
    }
198
  }
B
Behdad Esfahbod 已提交
199

200 201
  if (u == 0x2011u)
  {
B
Minor  
Behdad Esfahbod 已提交
202 203
    /* U+2011 is the only sensible character that is a no-break version of another character
     * and not a space.  The space ones are handled already.  Handle this lone one. */
204
    hb_codepoint_t other_glyph;
205
    if (c->font->get_nominal_glyph (0x2010u, &other_glyph))
206 207 208 209 210 211
    {
      next_char (buffer, other_glyph);
      return;
    }
  }

B
Behdad Esfahbod 已提交
212
  next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
213 214 215
}

static inline void
216
handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit)
217
{
218
  /* TODO Currently if there's a variation-selector we give-up, it's just too hard. */
219
  hb_buffer_t * const buffer = c->buffer;
B
Behdad Esfahbod 已提交
220
  hb_font_t * const font = c->font;
B
Behdad Esfahbod 已提交
221
  for (; buffer->idx < end - 1 && buffer->successful;) {
222 223
    if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
      /* The next two lines are some ugly lines... But work. */
224
      if (font->get_variation_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index()))
225 226 227 228 229 230
      {
	buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
      }
      else
      {
        /* Just pass on the two characters separately, let GSUB do its magic. */
B
Behdad Esfahbod 已提交
231
	set_glyph (buffer->cur(), font);
232
	buffer->next_glyph ();
B
Behdad Esfahbod 已提交
233
	set_glyph (buffer->cur(), font);
234 235
	buffer->next_glyph ();
      }
236 237 238
      /* Skip any further variation selectors. */
      while (buffer->idx < end && unlikely (buffer->unicode->is_variation_selector (buffer->cur().codepoint)))
      {
B
Behdad Esfahbod 已提交
239
	set_glyph (buffer->cur(), font);
240 241
	buffer->next_glyph ();
      }
242
    } else {
B
Behdad Esfahbod 已提交
243
      set_glyph (buffer->cur(), font);
244 245 246 247
      buffer->next_glyph ();
    }
  }
  if (likely (buffer->idx < end)) {
B
Behdad Esfahbod 已提交
248
    set_glyph (buffer->cur(), font);
249 250
    buffer->next_glyph ();
  }
B
Behdad Esfahbod 已提交
251 252
}

253
static inline void
254
decompose_multi_char_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit)
B
Behdad Esfahbod 已提交
255
{
256
  hb_buffer_t * const buffer = c->buffer;
B
Behdad Esfahbod 已提交
257
  for (unsigned int i = buffer->idx; i < end && buffer->successful; i++)
258
    if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
259
      handle_variation_selector_cluster (c, end, short_circuit);
260
      return;
261
    }
B
Behdad Esfahbod 已提交
262

B
Behdad Esfahbod 已提交
263
  while (buffer->idx < end && buffer->successful)
264
    decompose_current_character (c, short_circuit);
265 266
}

267
static inline void
268
decompose_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool might_short_circuit, bool always_short_circuit)
269
{
270
  if (likely (c->buffer->idx + 1 == end))
271
    decompose_current_character (c, might_short_circuit);
272
  else
273
    decompose_multi_char_cluster (c, end, always_short_circuit);
B
Behdad Esfahbod 已提交
274 275
}

276

B
Behdad Esfahbod 已提交
277 278 279
static int
compare_combining_class (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
{
280 281
  unsigned int a = _hb_glyph_info_get_modified_combining_class (pa);
  unsigned int b = _hb_glyph_info_get_modified_combining_class (pb);
B
Behdad Esfahbod 已提交
282 283 284 285

  return a < b ? -1 : a == b ? 0 : +1;
}

286

B
Behdad Esfahbod 已提交
287
void
288
_hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
289 290
			hb_buffer_t *buffer,
			hb_font_t *font)
B
Behdad Esfahbod 已提交
291
{
292 293
  if (unlikely (!buffer->len)) return;

294 295
  _hb_buffer_assert_unicode_vars (buffer);

296
  hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference;
297 298 299 300 301 302 303 304
  if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_AUTO)
  {
    if (plan->has_mark)
      mode = HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED;
    else
      mode = HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS;
  }

305 306
  const hb_ot_shape_normalize_context_t c = {
    plan,
307 308
    buffer,
    font,
309 310 311
    buffer->unicode,
    plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
    plan->shaper->compose   ? plan->shaper->compose   : compose_unicode
312 313
  };

314 315 316 317
  bool always_short_circuit = mode == HB_OT_SHAPE_NORMALIZATION_MODE_NONE;
  bool might_short_circuit = always_short_circuit ||
			     (mode != HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED &&
			      mode != HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT);
318
  unsigned int count;
B
Behdad Esfahbod 已提交
319

320
  /* We do a fairly straightforward yet custom normalization process in three
321 322 323 324
   * separate rounds: decompose, reorder, recompose (if desired).  Currently
   * this makes two buffer swaps.  We can make it faster by moving the last
   * two rounds into the inner loop for the first round, but it's more readable
   * this way. */
B
Behdad Esfahbod 已提交
325

326

B
Behdad Esfahbod 已提交
327 328
  /* First round, decompose */

329
  buffer->clear_output ();
330
  count = buffer->len;
B
Behdad Esfahbod 已提交
331
  for (buffer->idx = 0; buffer->idx < count && buffer->successful;)
B
Behdad Esfahbod 已提交
332
  {
B
Behdad Esfahbod 已提交
333
    unsigned int end;
334
    for (end = buffer->idx + 1; end < count; end++)
335
      if (likely (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->info[end]))))
B
Behdad Esfahbod 已提交
336
        break;
B
Behdad Esfahbod 已提交
337

338
    decompose_cluster (&c, end, might_short_circuit, always_short_circuit);
B
Behdad Esfahbod 已提交
339
  }
340
  buffer->swap_buffers ();
B
Behdad Esfahbod 已提交
341

342

B
Behdad Esfahbod 已提交
343 344
  /* Second round, reorder (inplace) */

345 346 347
  count = buffer->len;
  for (unsigned int i = 0; i < count; i++)
  {
348
    if (_hb_glyph_info_get_modified_combining_class (&buffer->info[i]) == 0)
349 350 351 352
      continue;

    unsigned int end;
    for (end = i + 1; end < count; end++)
353
      if (_hb_glyph_info_get_modified_combining_class (&buffer->info[end]) == 0)
354 355
        break;

B
Behdad Esfahbod 已提交
356 357
    /* We are going to do a O(n^2).  Only do this if the sequence is short. */
    if (end - i > HB_OT_SHAPE_COMPLEX_MAX_COMBINING_MARKS) {
358 359 360 361
      i = end;
      continue;
    }

362
    buffer->sort (i, end, compare_combining_class);
363

364 365 366
    if (plan->shaper->reorder_marks)
      plan->shaper->reorder_marks (plan, buffer, i, end);

367 368
    i = end;
  }
B
Behdad Esfahbod 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381
  if (buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_CGJ)
  {
    /* For all CGJ, check if it prevented any reordering at all.
     * If it did NOT, then make it skippable.
     * https://github.com/harfbuzz/harfbuzz/issues/554
     */
    for (unsigned int i = 1; i + 1 < buffer->len; i++)
      if (buffer->info[i].codepoint == 0x034Fu/*CGJ*/ &&
	  info_cc(buffer->info[i-1]) <= info_cc(buffer->info[i+1]))
      {
	_hb_glyph_info_unhide (&buffer->info[i]);
      }
  }
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439


  /* Third round, recompose */

  if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS ||
      mode == HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT)
  {
    /* As noted in the comment earlier, we don't try to combine
     * ccc=0 chars with their previous Starter. */

    buffer->clear_output ();
    count = buffer->len;
    unsigned int starter = 0;
    buffer->next_glyph ();
    while (buffer->idx < count && buffer->successful)
    {
      hb_codepoint_t composed, glyph;
      if (/* We don't try to compose a non-mark character with it's preceding starter.
	   * This is both an optimization to avoid trying to compose every two neighboring
	   * glyphs in most scripts AND a desired feature for Hangul.  Apparently Hangul
	   * fonts are not designed to mix-and-match pre-composed syllables and Jamo. */
	  HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->cur())))
      {
	if (/* If there's anything between the starter and this char, they should have CCC
	     * smaller than this character's. */
	    (starter == buffer->out_len - 1 ||
	     info_cc (buffer->prev()) < info_cc (buffer->cur())) &&
	    /* And compose. */
	    c.compose (&c,
		       buffer->out_info[starter].codepoint,
		       buffer->cur().codepoint,
		       &composed) &&
	    /* And the font has glyph for the composite. */
	    font->get_nominal_glyph (composed, &glyph))
	{
	  /* Composes. */
	  buffer->next_glyph (); /* Copy to out-buffer. */
	  if (unlikely (!buffer->successful))
	    return;
	  buffer->merge_out_clusters (starter, buffer->out_len);
	  buffer->out_len--; /* Remove the second composable. */
	  /* Modify starter and carry on. */
	  buffer->out_info[starter].codepoint = composed;
	  buffer->out_info[starter].glyph_index() = glyph;
	  _hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer);

	  continue;
	}
      }

      /* Blocked, or doesn't compose. */
      buffer->next_glyph ();

      if (info_cc (buffer->prev()) == 0)
	starter = buffer->out_len - 1;
    }
    buffer->swap_buffers ();
  }
B
Behdad Esfahbod 已提交
440
}