2011-07-21 06:51:18 +02:00
|
|
|
/*
|
2012-04-05 23:25:19 +02:00
|
|
|
* Copyright © 2011,2012 Google, Inc.
|
2011-07-21 06:51:18 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-04-05 23:25:19 +02:00
|
|
|
#include "hb-ot-shape-normalize-private.hh"
|
2011-07-21 06:51:18 +02:00
|
|
|
#include "hb-ot-shape-private.hh"
|
|
|
|
|
|
|
|
|
2011-07-21 21:25:01 +02:00
|
|
|
/*
|
|
|
|
* HIGHLEVEL DESIGN:
|
|
|
|
*
|
|
|
|
* This file exports one main function: _hb_ot_shape_normalize().
|
|
|
|
*
|
|
|
|
* This function closely reflects the Unicode Normalization Algorithm,
|
2012-03-07 02:47:50 +01:00
|
|
|
* 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.
|
2011-07-21 21:25:01 +02:00
|
|
|
*
|
|
|
|
* In general what happens is that: each grapheme is decomposed in a chain
|
2011-09-16 22:33:18 +02:00
|
|
|
* of 1:2 decompositions, marks reordered, and then recomposed if desired,
|
2011-07-21 21:25:01 +02:00
|
|
|
* 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'
|
2011-09-16 22:33:18 +02:00
|
|
|
* feature in the font is not adequate, use the precomposed character
|
2011-07-21 21:25:01 +02:00
|
|
|
* which typically has better mark positioning.
|
|
|
|
*
|
2011-09-28 22:20:09 +02:00
|
|
|
* - When a font does not support a combining mark, but supports it precomposed
|
2012-03-07 02:47:50 +01:00
|
|
|
* with previous base, use that. This needs the itemizer to have this
|
2012-03-07 16:21:24 +01:00
|
|
|
* knowledge too. We need to provide assistance to the itemizer.
|
2011-09-28 22:20:09 +02:00
|
|
|
*
|
2011-07-21 21:25:01 +02:00
|
|
|
* - When a font does not support a character but supports its decomposition,
|
2012-08-01 03:36:16 +02:00
|
|
|
* well, use the decomposition (preferring the canonical decomposition, but
|
2012-08-01 19:32:39 +02:00
|
|
|
* 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.
|
2011-07-21 21:25:01 +02:00
|
|
|
*
|
2012-08-01 19:32:39 +02:00
|
|
|
* - 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
|
2011-07-21 21:25:01 +02:00
|
|
|
*/
|
|
|
|
|
2012-08-07 22:51:48 +02:00
|
|
|
static hb_bool_t
|
|
|
|
decompose_func (hb_unicode_funcs_t *unicode,
|
|
|
|
hb_codepoint_t ab,
|
|
|
|
hb_codepoint_t *a,
|
|
|
|
hb_codepoint_t *b)
|
|
|
|
{
|
2012-08-07 22:57:02 +02:00
|
|
|
/* XXX FIXME, move these to complex shapers and propagage to normalizer.*/
|
|
|
|
switch (ab) {
|
|
|
|
case 0x0AC9 : return false;
|
|
|
|
|
|
|
|
case 0x0931 : return false;
|
|
|
|
case 0x0B94 : return false;
|
|
|
|
|
|
|
|
/* These ones have Unicode decompositions, but we do it
|
|
|
|
* this way to be close to what Uniscribe does. */
|
|
|
|
case 0x0DDA : *a = 0x0DD9; *b= 0x0DDA; return true;
|
|
|
|
case 0x0DDC : *a = 0x0DD9; *b= 0x0DDC; return true;
|
|
|
|
case 0x0DDD : *a = 0x0DD9; *b= 0x0DDD; return true;
|
|
|
|
case 0x0DDE : *a = 0x0DD9; *b= 0x0DDE; return true;
|
|
|
|
|
|
|
|
case 0x0F77 : *a = 0x0FB2; *b= 0x0F81; return true;
|
|
|
|
case 0x0F79 : *a = 0x0FB3; *b= 0x0F81; return true;
|
|
|
|
case 0x17BE : *a = 0x17C1; *b= 0x17BE; return true;
|
|
|
|
case 0x17BF : *a = 0x17C1; *b= 0x17BF; return true;
|
|
|
|
case 0x17C0 : *a = 0x17C1; *b= 0x17C0; return true;
|
|
|
|
case 0x17C4 : *a = 0x17C1; *b= 0x17C4; return true;
|
|
|
|
case 0x17C5 : *a = 0x17C1; *b= 0x17C5; return true;
|
|
|
|
case 0x1925 : *a = 0x1920; *b= 0x1923; return true;
|
|
|
|
case 0x1926 : *a = 0x1920; *b= 0x1924; return true;
|
|
|
|
case 0x1B3C : *a = 0x1B42; *b= 0x1B3C; return true;
|
|
|
|
case 0x1112E : *a = 0x11127; *b= 0x11131; return true;
|
|
|
|
case 0x1112F : *a = 0x11127; *b= 0x11132; return true;
|
|
|
|
#if 0
|
|
|
|
case 0x0B57 : *a = 0xno decomp, -> RIGHT; return true;
|
|
|
|
case 0x1C29 : *a = 0xno decomp, -> LEFT; return true;
|
|
|
|
case 0xA9C0 : *a = 0xno decomp, -> RIGHT; return true;
|
|
|
|
case 0x111BF : *a = 0xno decomp, -> ABOVE; return true;
|
|
|
|
#endif
|
|
|
|
}
|
2012-08-07 22:51:48 +02:00
|
|
|
return unicode->decompose (ab, a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static hb_bool_t
|
|
|
|
compose_func (hb_unicode_funcs_t *unicode,
|
|
|
|
hb_codepoint_t a,
|
|
|
|
hb_codepoint_t b,
|
|
|
|
hb_codepoint_t *ab)
|
|
|
|
{
|
2012-08-07 22:57:02 +02:00
|
|
|
/* XXX, this belongs to indic normalizer. */
|
|
|
|
if ((FLAG (unicode->general_category (a)) &
|
|
|
|
(FLAG (HB_UNICODE_GENERAL_CATEGORY_SPACING_MARK) |
|
|
|
|
FLAG (HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK) |
|
|
|
|
FLAG (HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK))))
|
|
|
|
return false;
|
|
|
|
/* XXX, add composition-exclusion exceptions to Indic shaper. */
|
|
|
|
if (a == 0x09AF && b == 0x09BC) { *ab = 0x09DF; return true; }
|
|
|
|
|
|
|
|
/* XXX, these belong to the hebew / default shaper. */
|
|
|
|
/* Hebrew presentation-form shaping.
|
|
|
|
* https://bugzilla.mozilla.org/show_bug.cgi?id=728866 */
|
|
|
|
// Hebrew presentation forms with dagesh, for characters 0x05D0..0x05EA;
|
|
|
|
// note that some letters do not have a dagesh presForm encoded
|
|
|
|
static const hb_codepoint_t sDageshForms[0x05EA - 0x05D0 + 1] = {
|
|
|
|
0xFB30, // ALEF
|
|
|
|
0xFB31, // BET
|
|
|
|
0xFB32, // GIMEL
|
|
|
|
0xFB33, // DALET
|
|
|
|
0xFB34, // HE
|
|
|
|
0xFB35, // VAV
|
|
|
|
0xFB36, // ZAYIN
|
|
|
|
0, // HET
|
|
|
|
0xFB38, // TET
|
|
|
|
0xFB39, // YOD
|
|
|
|
0xFB3A, // FINAL KAF
|
|
|
|
0xFB3B, // KAF
|
|
|
|
0xFB3C, // LAMED
|
|
|
|
0, // FINAL MEM
|
|
|
|
0xFB3E, // MEM
|
|
|
|
0, // FINAL NUN
|
|
|
|
0xFB40, // NUN
|
|
|
|
0xFB41, // SAMEKH
|
|
|
|
0, // AYIN
|
|
|
|
0xFB43, // FINAL PE
|
|
|
|
0xFB44, // PE
|
|
|
|
0, // FINAL TSADI
|
|
|
|
0xFB46, // TSADI
|
|
|
|
0xFB47, // QOF
|
|
|
|
0xFB48, // RESH
|
|
|
|
0xFB49, // SHIN
|
|
|
|
0xFB4A // TAV
|
|
|
|
};
|
|
|
|
|
|
|
|
hb_bool_t found = unicode->compose (a, b, ab);
|
|
|
|
|
|
|
|
if (!found && (b & ~0x7F) == 0x0580) {
|
|
|
|
// special-case Hebrew presentation forms that are excluded from
|
|
|
|
// standard normalization, but wanted for old fonts
|
|
|
|
switch (b) {
|
|
|
|
case 0x05B4: // HIRIQ
|
|
|
|
if (a == 0x05D9) { // YOD
|
|
|
|
*ab = 0xFB1D;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05B7: // patah
|
|
|
|
if (a == 0x05F2) { // YIDDISH YOD YOD
|
|
|
|
*ab = 0xFB1F;
|
|
|
|
found = true;
|
|
|
|
} else if (a == 0x05D0) { // ALEF
|
|
|
|
*ab = 0xFB2E;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05B8: // QAMATS
|
|
|
|
if (a == 0x05D0) { // ALEF
|
|
|
|
*ab = 0xFB2F;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05B9: // HOLAM
|
|
|
|
if (a == 0x05D5) { // VAV
|
|
|
|
*ab = 0xFB4B;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05BC: // DAGESH
|
|
|
|
if (a >= 0x05D0 && a <= 0x05EA) {
|
|
|
|
*ab = sDageshForms[a - 0x05D0];
|
|
|
|
found = (*ab != 0);
|
|
|
|
} else if (a == 0xFB2A) { // SHIN WITH SHIN DOT
|
|
|
|
*ab = 0xFB2C;
|
|
|
|
found = true;
|
|
|
|
} else if (a == 0xFB2B) { // SHIN WITH SIN DOT
|
|
|
|
*ab = 0xFB2D;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05BF: // RAFE
|
|
|
|
switch (a) {
|
|
|
|
case 0x05D1: // BET
|
|
|
|
*ab = 0xFB4C;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
case 0x05DB: // KAF
|
|
|
|
*ab = 0xFB4D;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
case 0x05E4: // PE
|
|
|
|
*ab = 0xFB4E;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05C1: // SHIN DOT
|
|
|
|
if (a == 0x05E9) { // SHIN
|
|
|
|
*ab = 0xFB2A;
|
|
|
|
found = true;
|
|
|
|
} else if (a == 0xFB49) { // SHIN WITH DAGESH
|
|
|
|
*ab = 0xFB2C;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x05C2: // SIN DOT
|
|
|
|
if (a == 0x05E9) { // SHIN
|
|
|
|
*ab = 0xFB2B;
|
|
|
|
found = true;
|
|
|
|
} else if (a == 0xFB49) { // SHIN WITH DAGESH
|
|
|
|
*ab = 0xFB2D;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
2012-08-07 22:51:48 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 03:31:52 +02:00
|
|
|
static inline void
|
|
|
|
output_char (hb_buffer_t *buffer, hb_codepoint_t unichar)
|
2011-07-24 05:43:54 +02:00
|
|
|
{
|
2012-08-10 03:31:52 +02:00
|
|
|
buffer->output_glyph (unichar);
|
2012-05-13 15:45:18 +02:00
|
|
|
_hb_glyph_info_set_unicode_props (&buffer->prev(), buffer->unicode);
|
2011-07-24 05:43:54 +02:00
|
|
|
}
|
2011-07-22 17:07:05 +02:00
|
|
|
|
2012-08-10 03:31:52 +02:00
|
|
|
static inline void
|
|
|
|
next_char (hb_buffer_t *buffer)
|
|
|
|
{
|
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
skip_char (hb_buffer_t *buffer)
|
|
|
|
{
|
|
|
|
buffer->skip_glyph ();
|
|
|
|
}
|
|
|
|
|
2011-07-21 17:31:08 +02:00
|
|
|
static bool
|
2012-04-05 23:25:19 +02:00
|
|
|
decompose (hb_font_t *font, hb_buffer_t *buffer,
|
2011-07-22 22:15:32 +02:00
|
|
|
bool shortest,
|
2011-07-22 17:07:05 +02:00
|
|
|
hb_codepoint_t ab)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2011-07-22 17:07:05 +02:00
|
|
|
hb_codepoint_t a, b, glyph;
|
|
|
|
|
2012-08-07 22:51:48 +02:00
|
|
|
if (!decompose_func (buffer->unicode, ab, &a, &b) ||
|
2012-08-02 01:03:46 +02:00
|
|
|
(b && !font->get_glyph (b, 0, &glyph)))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2011-07-22 17:07:05 +02:00
|
|
|
|
2012-08-02 01:03:46 +02:00
|
|
|
bool has_a = font->get_glyph (a, 0, &glyph);
|
2011-07-22 22:15:32 +02:00
|
|
|
if (shortest && has_a) {
|
|
|
|
/* Output a and b */
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, a);
|
2011-07-22 23:14:46 +02:00
|
|
|
if (b)
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, b);
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2011-07-22 22:15:32 +02:00
|
|
|
}
|
2011-07-21 06:51:18 +02:00
|
|
|
|
2012-04-05 23:25:19 +02:00
|
|
|
if (decompose (font, buffer, shortest, a)) {
|
2011-07-22 23:14:46 +02:00
|
|
|
if (b)
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, b);
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2011-07-22 22:15:32 +02:00
|
|
|
}
|
2011-07-22 17:07:05 +02:00
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
if (has_a) {
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, a);
|
2011-07-22 23:14:46 +02:00
|
|
|
if (b)
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, b);
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2011-07-22 17:07:05 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2011-07-21 17:31:08 +02:00
|
|
|
}
|
|
|
|
|
2012-08-01 03:36:16 +02:00
|
|
|
static bool
|
|
|
|
decompose_compatibility (hb_font_t *font, hb_buffer_t *buffer,
|
|
|
|
hb_codepoint_t u)
|
2011-07-21 18:16:45 +02:00
|
|
|
{
|
2012-08-01 03:36:16 +02:00
|
|
|
unsigned int len, i;
|
|
|
|
hb_codepoint_t decomposed[HB_UNICODE_MAX_DECOMPOSITION_LEN];
|
|
|
|
|
2012-08-01 23:13:10 +02:00
|
|
|
len = buffer->unicode->decompose_compatibility (u, decomposed);
|
2012-08-01 03:36:16 +02:00
|
|
|
if (!len)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hb_codepoint_t glyph;
|
|
|
|
for (i = 0; i < len; i++)
|
2012-08-02 01:03:46 +02:00
|
|
|
if (!font->get_glyph (decomposed[i], 0, &glyph))
|
2012-08-01 03:36:16 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
2012-08-10 03:31:52 +02:00
|
|
|
output_char (buffer, decomposed[i]);
|
2012-08-01 03:36:16 +02:00
|
|
|
|
|
|
|
return true;
|
2011-07-21 18:16:45 +02:00
|
|
|
}
|
|
|
|
|
2011-07-24 05:43:54 +02:00
|
|
|
static void
|
2012-08-01 03:36:16 +02:00
|
|
|
decompose_current_character (hb_font_t *font, hb_buffer_t *buffer,
|
|
|
|
bool shortest)
|
2011-07-21 17:31:08 +02:00
|
|
|
{
|
2011-07-22 22:15:32 +02:00
|
|
|
hb_codepoint_t glyph;
|
|
|
|
|
2012-08-01 03:36:16 +02:00
|
|
|
/* Kind of a cute waterfall here... */
|
2012-08-02 01:03:46 +02:00
|
|
|
if (shortest && font->get_glyph (buffer->cur().codepoint, 0, &glyph))
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2012-08-01 03:36:16 +02:00
|
|
|
else if (decompose (font, buffer, shortest, buffer->cur().codepoint))
|
2012-08-10 03:31:52 +02:00
|
|
|
skip_char (buffer);
|
2012-08-02 01:03:46 +02:00
|
|
|
else if (!shortest && font->get_glyph (buffer->cur().codepoint, 0, &glyph))
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2012-08-01 03:36:16 +02:00
|
|
|
else if (decompose_compatibility (font, buffer, buffer->cur().codepoint))
|
2012-08-10 03:31:52 +02:00
|
|
|
skip_char (buffer);
|
2012-08-01 03:36:16 +02:00
|
|
|
else
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|
|
|
|
|
2011-07-24 05:43:54 +02:00
|
|
|
static void
|
2012-04-05 23:25:19 +02:00
|
|
|
decompose_multi_char_cluster (hb_font_t *font, hb_buffer_t *buffer,
|
2011-07-22 22:15:32 +02:00
|
|
|
unsigned int end)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2011-07-21 21:25:01 +02:00
|
|
|
/* TODO Currently if there's a variation-selector we give-up, it's just too hard. */
|
2012-04-05 23:25:19 +02:00
|
|
|
for (unsigned int i = buffer->idx; i < end; i++)
|
2012-08-01 23:13:10 +02:00
|
|
|
if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
|
2012-04-05 23:25:19 +02:00
|
|
|
while (buffer->idx < end)
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2011-07-24 05:43:54 +02:00
|
|
|
return;
|
2011-10-17 20:39:28 +02:00
|
|
|
}
|
2011-07-21 18:16:45 +02:00
|
|
|
|
2012-04-05 23:25:19 +02:00
|
|
|
while (buffer->idx < end)
|
2012-08-01 03:36:16 +02:00
|
|
|
decompose_current_character (font, buffer, false);
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|
|
|
|
|
2011-07-30 20:44:30 +02:00
|
|
|
static int
|
|
|
|
compare_combining_class (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
|
|
|
|
{
|
2012-05-09 15:04:13 +02:00
|
|
|
unsigned int a = _hb_glyph_info_get_modified_combining_class (pa);
|
|
|
|
unsigned int b = _hb_glyph_info_get_modified_combining_class (pb);
|
2011-07-30 20:44:30 +02:00
|
|
|
|
|
|
|
return a < b ? -1 : a == b ? 0 : +1;
|
|
|
|
}
|
|
|
|
|
2011-07-22 17:07:05 +02:00
|
|
|
void
|
2012-04-05 23:25:19 +02:00
|
|
|
_hb_ot_shape_normalize (hb_font_t *font, hb_buffer_t *buffer,
|
|
|
|
hb_ot_shape_normalization_mode_t mode)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2012-04-05 23:25:19 +02:00
|
|
|
bool recompose = mode != HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED;
|
2012-06-06 02:35:40 +02:00
|
|
|
bool has_multichar_clusters = false;
|
2011-07-22 23:04:20 +02:00
|
|
|
unsigned int count;
|
2011-07-21 21:25:01 +02:00
|
|
|
|
2011-07-24 05:43:54 +02:00
|
|
|
/* We do a fairly straightforward yet custom normalization process in three
|
2011-07-23 02:22:49 +02:00
|
|
|
* 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. */
|
2011-07-21 21:25:01 +02:00
|
|
|
|
2011-07-22 23:04:20 +02:00
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
/* First round, decompose */
|
|
|
|
|
2011-07-23 02:22:49 +02:00
|
|
|
buffer->clear_output ();
|
2011-07-22 23:04:20 +02:00
|
|
|
count = buffer->len;
|
2011-07-22 17:28:07 +02:00
|
|
|
for (buffer->idx = 0; buffer->idx < count;)
|
2011-07-21 21:25:01 +02:00
|
|
|
{
|
2011-07-21 06:51:18 +02:00
|
|
|
unsigned int end;
|
2011-07-22 17:28:07 +02:00
|
|
|
for (end = buffer->idx + 1; end < count; end++)
|
2012-05-13 15:45:18 +02:00
|
|
|
if (buffer->cur().cluster != buffer->info[end].cluster)
|
2011-07-21 06:51:18 +02:00
|
|
|
break;
|
2011-07-21 21:25:01 +02:00
|
|
|
|
2011-07-22 17:28:07 +02:00
|
|
|
if (buffer->idx + 1 == end)
|
2012-08-01 03:36:16 +02:00
|
|
|
decompose_current_character (font, buffer, recompose);
|
2011-07-22 22:15:32 +02:00
|
|
|
else {
|
2012-04-05 23:25:19 +02:00
|
|
|
decompose_multi_char_cluster (font, buffer, end);
|
2012-06-06 02:35:40 +02:00
|
|
|
has_multichar_clusters = true;
|
2011-07-22 22:15:32 +02:00
|
|
|
}
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|
2011-07-22 17:28:07 +02:00
|
|
|
buffer->swap_buffers ();
|
2011-07-22 22:15:32 +02:00
|
|
|
|
2011-07-22 23:04:20 +02:00
|
|
|
|
2012-04-07 20:57:21 +02:00
|
|
|
if (mode != HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_FULL && !has_multichar_clusters)
|
2011-07-22 22:15:32 +02:00
|
|
|
return; /* Done! */
|
|
|
|
|
2011-07-22 23:04:20 +02:00
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
/* Second round, reorder (inplace) */
|
|
|
|
|
2011-07-22 23:04:20 +02:00
|
|
|
count = buffer->len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
{
|
2012-05-09 15:04:13 +02:00
|
|
|
if (_hb_glyph_info_get_modified_combining_class (&buffer->info[i]) == 0)
|
2011-07-22 23:04:20 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
unsigned int end;
|
|
|
|
for (end = i + 1; end < count; end++)
|
2012-05-09 15:04:13 +02:00
|
|
|
if (_hb_glyph_info_get_modified_combining_class (&buffer->info[end]) == 0)
|
2011-07-22 23:04:20 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-07-30 20:44:30 +02:00
|
|
|
hb_bubble_sort (buffer->info + i, end - i, compare_combining_class);
|
2011-07-22 23:04:20 +02:00
|
|
|
|
|
|
|
i = end;
|
|
|
|
}
|
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
|
2011-07-23 02:22:49 +02:00
|
|
|
if (!recompose)
|
|
|
|
return;
|
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
/* Third round, recompose */
|
2011-07-22 23:04:20 +02:00
|
|
|
|
2011-07-23 02:22:49 +02:00
|
|
|
/* As noted in the comment earlier, we don't try to combine
|
|
|
|
* ccc=0 chars with their previous Starter. */
|
2011-07-22 22:15:32 +02:00
|
|
|
|
2011-07-23 02:22:49 +02:00
|
|
|
buffer->clear_output ();
|
|
|
|
count = buffer->len;
|
|
|
|
unsigned int starter = 0;
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2011-07-23 02:22:49 +02:00
|
|
|
while (buffer->idx < count)
|
|
|
|
{
|
|
|
|
hb_codepoint_t composed, glyph;
|
2012-04-07 20:57:21 +02:00
|
|
|
if (/* If mode is NOT COMPOSED_FULL (ie. it's COMPOSED_DIACRITICS), we don't try to
|
|
|
|
* compose a CCC=0 character with it's preceding starter. */
|
|
|
|
(mode == HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_FULL ||
|
2012-05-13 15:45:18 +02:00
|
|
|
_hb_glyph_info_get_modified_combining_class (&buffer->cur()) != 0) &&
|
2012-04-07 20:57:21 +02:00
|
|
|
/* If there's anything between the starter and this char, they should have CCC
|
|
|
|
* smaller than this character's. */
|
|
|
|
(starter == buffer->out_len - 1 ||
|
2012-05-13 15:45:18 +02:00
|
|
|
_hb_glyph_info_get_modified_combining_class (&buffer->prev()) < _hb_glyph_info_get_modified_combining_class (&buffer->cur())) &&
|
2012-04-07 20:57:21 +02:00
|
|
|
/* And compose. */
|
2012-08-07 22:51:48 +02:00
|
|
|
compose_func (buffer->unicode,
|
|
|
|
buffer->out_info[starter].codepoint,
|
|
|
|
buffer->cur().codepoint,
|
|
|
|
&composed) &&
|
2012-04-07 20:57:21 +02:00
|
|
|
/* And the font has glyph for the composite. */
|
2012-08-02 01:03:46 +02:00
|
|
|
font->get_glyph (composed, 0, &glyph))
|
2011-07-23 02:22:49 +02:00
|
|
|
{
|
2012-06-09 03:01:20 +02:00
|
|
|
/* Composes. */
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer); /* Copy to out-buffer. */
|
2012-06-09 03:01:20 +02:00
|
|
|
if (unlikely (buffer->in_error))
|
|
|
|
return;
|
|
|
|
buffer->merge_out_clusters (starter, buffer->out_len);
|
2012-08-10 03:31:52 +02:00
|
|
|
buffer->out_len--; /* Remove the second composable. */
|
2012-06-09 03:01:20 +02:00
|
|
|
buffer->out_info[starter].codepoint = composed; /* Modify starter and carry on. */
|
2012-05-09 15:04:13 +02:00
|
|
|
_hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer->unicode);
|
2012-04-07 20:49:13 +02:00
|
|
|
|
2011-07-23 02:22:49 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-04-07 20:49:13 +02:00
|
|
|
/* Blocked, or doesn't compose. */
|
2012-08-10 03:31:52 +02:00
|
|
|
next_char (buffer);
|
2012-04-07 20:57:21 +02:00
|
|
|
|
2012-05-13 15:45:18 +02:00
|
|
|
if (_hb_glyph_info_get_modified_combining_class (&buffer->prev()) == 0)
|
2012-04-07 20:57:21 +02:00
|
|
|
starter = buffer->out_len - 1;
|
2011-07-22 22:15:32 +02:00
|
|
|
}
|
2011-07-23 02:22:49 +02:00
|
|
|
buffer->swap_buffers ();
|
2011-07-22 23:04:20 +02:00
|
|
|
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|