hb-ot-shape-normalize.cc 12.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
 */

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


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
 *
B
Behdad Esfahbod 已提交
65
 *   - When a font does not support a character but supports its decomposition,
66
 *     well, use the decomposition (preferring the canonical decomposition, but
67 68 69
 *     falling back to the compatibility decomposition if necessary).  The
 *     compatibility decomposition is really nice to have, for characters like
 *     ellipsis, or various-sized space characters.
B
Behdad Esfahbod 已提交
70
 *
71 72 73 74 75 76 77 78 79 80 81 82
 *   - 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.
 *
 *   - We try compatibility decomposition if decomposing through canonical
 *     decomposition alone failed to find a sequence that the font supports.
 *     We don't try compatibility decomposition recursively during the canonical
 *     decomposition phase.  This has minimal impact.  There are only a handful
 *     of Greek letter that have canonical decompositions that include characters
 *     with compatibility decomposition.  Those can be found using this command:
 *
 *     egrep  "`echo -n ';('; grep ';<' UnicodeData.txt | cut -d';' -f1 | tr '\n' '|'; echo ') '`" UnicodeData.txt
B
Behdad Esfahbod 已提交
83 84
 */

85 86
static bool
decompose_unicode (const hb_ot_shape_normalize_context_t *c,
87 88 89
		   hb_codepoint_t  ab,
		   hb_codepoint_t *a,
		   hb_codepoint_t *b)
B
Behdad Esfahbod 已提交
90
{
91
  return c->unicode->decompose (ab, a, b);
B
Behdad Esfahbod 已提交
92 93
}

94 95
static bool
compose_unicode (const hb_ot_shape_normalize_context_t *c,
96 97 98
		 hb_codepoint_t  a,
		 hb_codepoint_t  b,
		 hb_codepoint_t *ab)
B
Behdad Esfahbod 已提交
99
{
100
  return c->unicode->compose (a, b, ab);
B
Behdad Esfahbod 已提交
101 102
}

103 104 105
static inline void
set_glyph (hb_glyph_info_t &info, hb_font_t *font)
{
B
Minor  
Behdad Esfahbod 已提交
106
  font->get_glyph (info.codepoint, 0, &info.glyph_index());
107 108
}

B
Minor  
Behdad Esfahbod 已提交
109
static inline void
110
output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph)
111
{
112
  buffer->cur().glyph_index() = glyph;
B
Minor  
Behdad Esfahbod 已提交
113
  buffer->output_glyph (unichar);
114
  _hb_glyph_info_set_unicode_props (&buffer->prev(), buffer->unicode);
115
}
B
Behdad Esfahbod 已提交
116

B
Minor  
Behdad Esfahbod 已提交
117
static inline void
118
next_char (hb_buffer_t *buffer, hb_codepoint_t glyph)
B
Minor  
Behdad Esfahbod 已提交
119
{
120
  buffer->cur().glyph_index() = glyph;
B
Minor  
Behdad Esfahbod 已提交
121 122 123 124 125 126 127 128 129
  buffer->next_glyph ();
}

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

130 131
/* Returns 0 if didn't decompose, number of resulting characters otherwise. */
static inline unsigned int
132
decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab)
B
Behdad Esfahbod 已提交
133
{
134
  hb_codepoint_t a, b, a_glyph, b_glyph;
B
Behdad Esfahbod 已提交
135

136
  if (!c->decompose (c, ab, &a, &b) ||
137
      (b && !c->font->get_glyph (b, 0, &b_glyph)))
138
    return 0;
B
Behdad Esfahbod 已提交
139

140
  bool has_a = c->font->get_glyph (a, 0, &a_glyph);
B
Behdad Esfahbod 已提交
141 142
  if (shortest && has_a) {
    /* Output a and b */
143
    output_char (c->buffer, a, a_glyph);
144
    if (likely (b)) {
145
      output_char (c->buffer, b, b_glyph);
146 147 148
      return 2;
    }
    return 1;
B
Behdad Esfahbod 已提交
149
  }
B
Behdad Esfahbod 已提交
150

151
  unsigned int ret;
152
  if ((ret = decompose (c, shortest, a))) {
153
    if (b) {
154
      output_char (c->buffer, b, b_glyph);
155 156 157
      return ret + 1;
    }
    return ret;
B
Behdad Esfahbod 已提交
158
  }
B
Behdad Esfahbod 已提交
159

B
Behdad Esfahbod 已提交
160
  if (has_a) {
161
    output_char (c->buffer, a, a_glyph);
162
    if (likely (b)) {
163
      output_char (c->buffer, b, b_glyph);
164 165 166
      return 2;
    }
    return 1;
B
Behdad Esfahbod 已提交
167 168
  }

169
  return 0;
B
Behdad Esfahbod 已提交
170 171
}

172 173
/* Returns 0 if didn't decompose, number of resulting characters otherwise. */
static inline bool
174
decompose_compatibility (const hb_ot_shape_normalize_context_t *c, hb_codepoint_t u)
B
Behdad Esfahbod 已提交
175
{
176 177
  unsigned int len, i;
  hb_codepoint_t decomposed[HB_UNICODE_MAX_DECOMPOSITION_LEN];
178
  hb_codepoint_t glyphs[HB_UNICODE_MAX_DECOMPOSITION_LEN];
179

180
  len = c->buffer->unicode->decompose_compatibility (u, decomposed);
181
  if (!len)
182
    return 0;
183 184

  for (i = 0; i < len; i++)
185
    if (!c->font->get_glyph (decomposed[i], 0, &glyphs[i]))
186
      return 0;
187 188

  for (i = 0; i < len; i++)
189
    output_char (c->buffer, decomposed[i], glyphs[i]);
190

191
  return len;
B
Behdad Esfahbod 已提交
192 193
}

194
/* Returns true if recomposition may be benefitial. */
195
static inline void
196
decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest)
B
Behdad Esfahbod 已提交
197
{
198
  hb_buffer_t * const buffer = c->buffer;
B
Behdad Esfahbod 已提交
199 200
  hb_codepoint_t glyph;

201
  /* Kind of a cute waterfall here... */
202
  if (shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
203
    next_char (buffer, glyph);
204
  else if (decompose (c, shortest, buffer->cur().codepoint))
B
Minor  
Behdad Esfahbod 已提交
205
    skip_char (buffer);
206
  else if (!shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
207
    next_char (buffer, glyph);
208
  else if (decompose_compatibility (c, buffer->cur().codepoint))
B
Minor  
Behdad Esfahbod 已提交
209
    skip_char (buffer);
B
Minor  
Behdad Esfahbod 已提交
210 211
  else
    next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
212 213 214
}

static inline void
215
handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end)
216
{
217
  hb_buffer_t * const buffer = c->buffer;
218 219 220
  for (; buffer->idx < end - 1;) {
    if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
      /* The next two lines are some ugly lines... But work. */
221
      c->font->get_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index());
222 223
      buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
    } else {
224
      set_glyph (buffer->cur(), c->font);
225 226 227 228
      buffer->next_glyph ();
    }
  }
  if (likely (buffer->idx < end)) {
229
    set_glyph (buffer->cur(), c->font);
230 231
    buffer->next_glyph ();
  }
B
Behdad Esfahbod 已提交
232 233
}

234
/* Returns true if recomposition may be benefitial. */
235
static inline void
236
decompose_multi_char_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end)
B
Behdad Esfahbod 已提交
237
{
238
  hb_buffer_t * const buffer = c->buffer;
B
Behdad Esfahbod 已提交
239
  /* TODO Currently if there's a variation-selector we give-up, it's just too hard. */
B
Behdad Esfahbod 已提交
240
  for (unsigned int i = buffer->idx; i < end; i++)
241
    if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
242
      handle_variation_selector_cluster (c, end);
243
      return;
244
    }
B
Behdad Esfahbod 已提交
245

B
Behdad Esfahbod 已提交
246
  while (buffer->idx < end)
247
    decompose_current_character (c, false);
248 249
}

250
static inline void
251
decompose_cluster (const hb_ot_shape_normalize_context_t *c, bool short_circuit, unsigned int end)
252
{
253
  if (likely (c->buffer->idx + 1 == end))
254
    decompose_current_character (c, short_circuit);
255
  else
256
    decompose_multi_char_cluster (c, end);
B
Behdad Esfahbod 已提交
257 258
}

259

B
Behdad Esfahbod 已提交
260 261 262
static int
compare_combining_class (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
{
263 264
  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 已提交
265 266 267 268

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

269

B
Behdad Esfahbod 已提交
270
void
271
_hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
272 273
			hb_buffer_t *buffer,
			hb_font_t *font)
B
Behdad Esfahbod 已提交
274
{
275 276
  hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference ?
					  plan->shaper->normalization_preference (&buffer->props) :
277
					  HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT;
278 279
  const hb_ot_shape_normalize_context_t c = {
    plan,
280 281
    buffer,
    font,
282 283 284
    buffer->unicode,
    plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
    plan->shaper->compose   ? plan->shaper->compose   : compose_unicode
285 286
  };

287 288
  bool short_circuit = mode != HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED &&
		       mode != HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT;
289
  unsigned int count;
B
Behdad Esfahbod 已提交
290

291
  /* We do a fairly straightforward yet custom normalization process in three
292 293 294 295
   * 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 已提交
296

297

B
Behdad Esfahbod 已提交
298 299
  /* First round, decompose */

300
  buffer->clear_output ();
301
  count = buffer->len;
302
  for (buffer->idx = 0; buffer->idx < count;)
B
Behdad Esfahbod 已提交
303
  {
B
Behdad Esfahbod 已提交
304
    unsigned int end;
305
    for (end = buffer->idx + 1; end < count; end++)
306
      if (buffer->cur().cluster != buffer->info[end].cluster)
B
Behdad Esfahbod 已提交
307
        break;
B
Behdad Esfahbod 已提交
308

309
    decompose_cluster (&c, short_circuit, end);
B
Behdad Esfahbod 已提交
310
  }
311
  buffer->swap_buffers ();
B
Behdad Esfahbod 已提交
312

313

B
Behdad Esfahbod 已提交
314 315
  /* Second round, reorder (inplace) */

316 317 318
  count = buffer->len;
  for (unsigned int i = 0; i < count; i++)
  {
319
    if (_hb_glyph_info_get_modified_combining_class (&buffer->info[i]) == 0)
320 321 322 323
      continue;

    unsigned int end;
    for (end = i + 1; end < count; end++)
324
      if (_hb_glyph_info_get_modified_combining_class (&buffer->info[end]) == 0)
325 326 327 328 329 330 331 332 333 334
        break;

    /* We are going to do a bubble-sort.  Only do this if the
     * sequence is short.  Doing it on long sequences can result
     * in an O(n^2) DoS. */
    if (end - i > 10) {
      i = end;
      continue;
    }

B
Behdad Esfahbod 已提交
335
    hb_bubble_sort (buffer->info + i, end - i, compare_combining_class);
336 337 338 339

    i = end;
  }

B
Behdad Esfahbod 已提交
340

341
  if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED)
342 343
    return;

B
Behdad Esfahbod 已提交
344
  /* Third round, recompose */
345

346 347
  /* As noted in the comment earlier, we don't try to combine
   * ccc=0 chars with their previous Starter. */
B
Behdad Esfahbod 已提交
348

349 350 351
  buffer->clear_output ();
  count = buffer->len;
  unsigned int starter = 0;
352
  buffer->next_glyph ();
353 354 355
  while (buffer->idx < count)
  {
    hb_codepoint_t composed, glyph;
356
    if (/* If mode is NOT COMPOSED_FULL (ie. it's COMPOSED_DIACRITICS), we don't try to
357 358 359
	 * compose a non-mark character with it's preceding starter.  This is just an
	 * optimization to avoid trying to compose every two neighboring glyphs in most
	 * scripts. */
360
	(mode == HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_FULL ||
361
	 HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->cur()))) &&
362 363 364
	/* If there's anything between the starter and this char, they should have CCC
	 * smaller than this character's. */
	(starter == buffer->out_len - 1 ||
365
	 _hb_glyph_info_get_modified_combining_class (&buffer->prev()) < _hb_glyph_info_get_modified_combining_class (&buffer->cur())) &&
366
	/* And compose. */
367
	c.compose (&c,
368 369 370
		   buffer->out_info[starter].codepoint,
		   buffer->cur().codepoint,
		   &composed) &&
371
	/* And the font has glyph for the composite. */
B
Behdad Esfahbod 已提交
372
	font->get_glyph (composed, 0, &glyph))
373
    {
374
      /* Composes. */
375
      buffer->next_glyph (); /* Copy to out-buffer. */
376 377 378
      if (unlikely (buffer->in_error))
        return;
      buffer->merge_out_clusters (starter, buffer->out_len);
B
Minor  
Behdad Esfahbod 已提交
379
      buffer->out_len--; /* Remove the second composable. */
380
      buffer->out_info[starter].codepoint = composed; /* Modify starter and carry on. */
381
      set_glyph (buffer->out_info[starter], font);
382
      _hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer->unicode);
B
Behdad Esfahbod 已提交
383

384 385 386
      continue;
    }

B
Behdad Esfahbod 已提交
387
    /* Blocked, or doesn't compose. */
388
    buffer->next_glyph ();
389

390
    if (_hb_glyph_info_get_modified_combining_class (&buffer->prev()) == 0)
391
      starter = buffer->out_len - 1;
B
Behdad Esfahbod 已提交
392
  }
393
  buffer->swap_buffers ();
394

B
Behdad Esfahbod 已提交
395
}