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"
|
2012-11-13 21:35:35 +01:00
|
|
|
#include "hb-ot-shape-complex-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
|
|
|
*
|
2015-10-21 22:51:40 +02:00
|
|
|
* - When a font does not support a character but supports its canonical
|
|
|
|
* decomposition, well, use the decomposition.
|
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.
|
2011-07-21 21:25:01 +02:00
|
|
|
*/
|
|
|
|
|
2012-11-16 21:39:23 +01:00
|
|
|
static bool
|
|
|
|
decompose_unicode (const hb_ot_shape_normalize_context_t *c,
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_codepoint_t ab,
|
|
|
|
hb_codepoint_t *a,
|
|
|
|
hb_codepoint_t *b)
|
2012-08-07 22:51:48 +02:00
|
|
|
{
|
2012-11-16 21:39:23 +01:00
|
|
|
return c->unicode->decompose (ab, a, b);
|
2012-08-07 22:51:48 +02:00
|
|
|
}
|
|
|
|
|
2012-11-16 21:39:23 +01:00
|
|
|
static bool
|
|
|
|
compose_unicode (const hb_ot_shape_normalize_context_t *c,
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_codepoint_t a,
|
|
|
|
hb_codepoint_t b,
|
|
|
|
hb_codepoint_t *ab)
|
2012-08-07 22:51:48 +02:00
|
|
|
{
|
2012-11-16 21:39:23 +01:00
|
|
|
return c->unicode->compose (a, b, ab);
|
2012-08-07 22:51:48 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 04:33:32 +02:00
|
|
|
static inline void
|
|
|
|
set_glyph (hb_glyph_info_t &info, hb_font_t *font)
|
|
|
|
{
|
2012-08-10 09:28:50 +02:00
|
|
|
font->get_glyph (info.codepoint, 0, &info.glyph_index());
|
2012-08-10 04:33:32 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 03:31:52 +02:00
|
|
|
static inline void
|
2012-08-10 04:33:32 +02:00
|
|
|
output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph)
|
2011-07-24 05:43:54 +02:00
|
|
|
{
|
2012-08-10 04:33:32 +02:00
|
|
|
buffer->cur().glyph_index() = glyph;
|
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
|
2012-08-10 04:33:32 +02:00
|
|
|
next_char (hb_buffer_t *buffer, hb_codepoint_t glyph)
|
2012-08-10 03:31:52 +02:00
|
|
|
{
|
2012-08-10 04:33:32 +02:00
|
|
|
buffer->cur().glyph_index() = glyph;
|
2012-08-10 03:31:52 +02:00
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
skip_char (hb_buffer_t *buffer)
|
|
|
|
{
|
|
|
|
buffer->skip_glyph ();
|
|
|
|
}
|
|
|
|
|
2012-08-10 09:51:44 +02:00
|
|
|
/* Returns 0 if didn't decompose, number of resulting characters otherwise. */
|
|
|
|
static inline unsigned int
|
2012-11-16 21:39:23 +01:00
|
|
|
decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2012-08-10 04:33:32 +02:00
|
|
|
hb_codepoint_t a, b, a_glyph, b_glyph;
|
2013-10-18 19:33:09 +02:00
|
|
|
hb_buffer_t * const buffer = c->buffer;
|
|
|
|
hb_font_t * const font = c->font;
|
2011-07-22 17:07:05 +02:00
|
|
|
|
2012-11-16 21:39:23 +01:00
|
|
|
if (!c->decompose (c, ab, &a, &b) ||
|
2013-10-18 19:33:09 +02:00
|
|
|
(b && !font->get_glyph (b, 0, &b_glyph)))
|
2012-08-10 09:51:44 +02:00
|
|
|
return 0;
|
2011-07-22 17:07:05 +02:00
|
|
|
|
2013-10-18 19:33:09 +02:00
|
|
|
bool has_a = font->get_glyph (a, 0, &a_glyph);
|
2011-07-22 22:15:32 +02:00
|
|
|
if (shortest && has_a) {
|
|
|
|
/* Output a and b */
|
2013-10-18 19:33:09 +02:00
|
|
|
output_char (buffer, a, a_glyph);
|
2012-08-10 09:51:44 +02:00
|
|
|
if (likely (b)) {
|
2013-10-18 19:33:09 +02:00
|
|
|
output_char (buffer, b, b_glyph);
|
2012-08-10 09:51:44 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 1;
|
2011-07-22 22:15:32 +02:00
|
|
|
}
|
2011-07-21 06:51:18 +02:00
|
|
|
|
2012-08-10 09:51:44 +02:00
|
|
|
unsigned int ret;
|
2012-11-13 21:35:35 +01:00
|
|
|
if ((ret = decompose (c, shortest, a))) {
|
2012-08-10 09:51:44 +02:00
|
|
|
if (b) {
|
2013-10-18 19:33:09 +02:00
|
|
|
output_char (buffer, b, b_glyph);
|
2012-08-10 09:51:44 +02:00
|
|
|
return ret + 1;
|
|
|
|
}
|
|
|
|
return ret;
|
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) {
|
2013-10-18 19:33:09 +02:00
|
|
|
output_char (buffer, a, a_glyph);
|
2012-08-10 09:51:44 +02:00
|
|
|
if (likely (b)) {
|
2013-10-18 19:33:09 +02:00
|
|
|
output_char (buffer, b, b_glyph);
|
2012-08-10 09:51:44 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 1;
|
2011-07-22 17:07:05 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 09:51:44 +02:00
|
|
|
return 0;
|
2011-07-21 17:31:08 +02:00
|
|
|
}
|
|
|
|
|
2013-02-11 12:50:17 +01:00
|
|
|
static inline void
|
2012-11-16 21:39:23 +01:00
|
|
|
decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest)
|
2011-07-21 17:31:08 +02:00
|
|
|
{
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_buffer_t * const buffer = c->buffer;
|
2015-01-27 21:26:04 +01:00
|
|
|
hb_codepoint_t u = buffer->cur().codepoint;
|
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... */
|
2015-01-27 21:26:04 +01:00
|
|
|
if (shortest && c->font->get_glyph (u, 0, &glyph))
|
2012-08-10 04:33:32 +02:00
|
|
|
next_char (buffer, glyph);
|
2015-01-27 21:26:04 +01:00
|
|
|
else if (decompose (c, shortest, u))
|
2012-08-10 03:31:52 +02:00
|
|
|
skip_char (buffer);
|
2015-01-27 21:26:04 +01:00
|
|
|
else if (!shortest && c->font->get_glyph (u, 0, &glyph))
|
2012-08-10 04:33:32 +02:00
|
|
|
next_char (buffer, glyph);
|
2012-08-10 09:28:50 +02:00
|
|
|
else
|
|
|
|
next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
|
2012-08-10 04:33:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2014-01-02 10:04:04 +01:00
|
|
|
handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit)
|
2012-08-10 04:33:32 +02:00
|
|
|
{
|
2014-01-02 10:04:04 +01:00
|
|
|
/* TODO Currently if there's a variation-selector we give-up, it's just too hard. */
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_buffer_t * const buffer = c->buffer;
|
2013-10-18 19:33:09 +02:00
|
|
|
hb_font_t * const font = c->font;
|
2012-08-10 04:33:32 +02:00
|
|
|
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. */
|
2013-10-18 19:33:09 +02:00
|
|
|
if (font->get_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index()))
|
2013-06-14 01:01:07 +02:00
|
|
|
{
|
|
|
|
buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Just pass on the two characters separately, let GSUB do its magic. */
|
2013-10-18 19:33:09 +02:00
|
|
|
set_glyph (buffer->cur(), font);
|
2013-06-14 01:01:07 +02:00
|
|
|
buffer->next_glyph ();
|
2013-10-18 19:33:09 +02:00
|
|
|
set_glyph (buffer->cur(), font);
|
2013-06-14 01:01:07 +02:00
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
2013-06-07 02:17:32 +02:00
|
|
|
/* Skip any further variation selectors. */
|
|
|
|
while (buffer->idx < end && unlikely (buffer->unicode->is_variation_selector (buffer->cur().codepoint)))
|
|
|
|
{
|
2013-10-18 19:33:09 +02:00
|
|
|
set_glyph (buffer->cur(), font);
|
2013-06-07 02:17:32 +02:00
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
2012-08-10 04:33:32 +02:00
|
|
|
} else {
|
2013-10-18 19:33:09 +02:00
|
|
|
set_glyph (buffer->cur(), font);
|
2012-08-10 04:33:32 +02:00
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (likely (buffer->idx < end)) {
|
2013-10-18 19:33:09 +02:00
|
|
|
set_glyph (buffer->cur(), font);
|
2012-08-10 04:33:32 +02:00
|
|
|
buffer->next_glyph ();
|
|
|
|
}
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|
|
|
|
|
2013-02-11 12:50:17 +01:00
|
|
|
static inline void
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_multi_char_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_buffer_t * const buffer = c->buffer;
|
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))) {
|
2014-01-02 10:04:04 +01:00
|
|
|
handle_variation_selector_cluster (c, end, short_circuit);
|
2013-02-11 12:50:17 +01: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)
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_current_character (c, short_circuit);
|
2012-08-10 09:51:44 +02:00
|
|
|
}
|
|
|
|
|
2013-02-11 12:50:17 +01:00
|
|
|
static inline void
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool might_short_circuit, bool always_short_circuit)
|
2012-08-10 09:51:44 +02:00
|
|
|
{
|
2012-11-13 21:35:35 +01:00
|
|
|
if (likely (c->buffer->idx + 1 == end))
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_current_character (c, might_short_circuit);
|
2012-08-10 09:51:44 +02:00
|
|
|
else
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_multi_char_cluster (c, end, always_short_circuit);
|
2011-07-21 06:51:18 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 09:51:44 +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;
|
|
|
|
}
|
|
|
|
|
2012-08-10 09:51:44 +02:00
|
|
|
|
2011-07-22 17:07:05 +02:00
|
|
|
void
|
2012-11-16 21:39:23 +01:00
|
|
|
_hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
|
2012-11-13 21:35:35 +01:00
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_font_t *font)
|
2011-07-21 06:51:18 +02:00
|
|
|
{
|
2015-10-02 09:21:12 +02:00
|
|
|
if (unlikely (!buffer->len)) return;
|
|
|
|
|
2014-08-02 23:18:46 +02:00
|
|
|
_hb_buffer_assert_unicode_vars (buffer);
|
|
|
|
|
2013-12-31 09:04:35 +01:00
|
|
|
hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference;
|
2012-11-16 21:39:23 +01:00
|
|
|
const hb_ot_shape_normalize_context_t c = {
|
|
|
|
plan,
|
2012-11-13 21:35:35 +01:00
|
|
|
buffer,
|
|
|
|
font,
|
2012-11-16 21:39:23 +01:00
|
|
|
buffer->unicode,
|
|
|
|
plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
|
|
|
|
plan->shaper->compose ? plan->shaper->compose : compose_unicode
|
2012-11-13 21:35:35 +01:00
|
|
|
};
|
|
|
|
|
2014-01-02 10:04:04 +01:00
|
|
|
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);
|
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++)
|
2015-08-07 18:55:03 +02:00
|
|
|
if (likely (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->info[end]))))
|
2011-07-21 06:51:18 +02:00
|
|
|
break;
|
2011-07-21 21:25:01 +02:00
|
|
|
|
2014-01-02 10:04:04 +01:00
|
|
|
decompose_cluster (&c, end, might_short_circuit, always_short_circuit);
|
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
|
|
|
|
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;
|
|
|
|
|
2015-09-01 16:07:52 +02:00
|
|
|
/* We are going to do a O(n^2). Only do this if the sequence is short. */
|
2011-07-22 23:04:20 +02:00
|
|
|
if (end - i > 10) {
|
|
|
|
i = end;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-09-01 17:13:32 +02:00
|
|
|
buffer->sort (i, end, compare_combining_class);
|
2011-07-22 23:04:20 +02:00
|
|
|
|
|
|
|
i = end;
|
|
|
|
}
|
|
|
|
|
2011-07-22 22:15:32 +02:00
|
|
|
|
2014-01-22 13:53:55 +01:00
|
|
|
if (mode == HB_OT_SHAPE_NORMALIZATION_MODE_NONE ||
|
|
|
|
mode == HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED)
|
2011-07-23 02:22:49 +02:00
|
|
|
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 04:33:32 +02:00
|
|
|
buffer->next_glyph ();
|
2011-07-23 02:22:49 +02:00
|
|
|
while (buffer->idx < count)
|
|
|
|
{
|
|
|
|
hb_codepoint_t composed, glyph;
|
2013-04-05 05:06:54 +02:00
|
|
|
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())) &&
|
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-11-16 21:39:23 +01:00
|
|
|
c.compose (&c,
|
2012-11-13 21:35:35 +01:00
|
|
|
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 04:33:32 +02:00
|
|
|
buffer->next_glyph (); /* 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. */
|
2014-01-02 07:33:10 +01:00
|
|
|
/* Modify starter and carry on. */
|
|
|
|
buffer->out_info[starter].codepoint = composed;
|
|
|
|
buffer->out_info[starter].glyph_index() = glyph;
|
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 04:33:32 +02:00
|
|
|
buffer->next_glyph ();
|
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
|
|
|
}
|