harfbuzz/src/hb-ot-shape-normalize.cc

288 lines
8.8 KiB
C++
Raw Normal View History

2011-07-21 06:51:18 +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
*/
#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,
* well, use the decomposition.
*
* - The Indic shaper requests decomposed output. This will handle splitting
* matra for the Indic shaper.
*/
2012-04-15 02:47:14 +02:00
static inline void
set_unicode_props (hb_glyph_info_t *info, hb_unicode_funcs_t *unicode)
{
info->general_category() = hb_unicode_general_category (unicode, info->codepoint);
info->combining_class() = _hb_unicode_modified_combining_class (unicode, info->codepoint);
}
static void
output_glyph (hb_font_t *font, hb_buffer_t *buffer,
hb_codepoint_t glyph)
{
buffer->output_glyph (glyph);
2012-04-15 02:47:14 +02:00
set_unicode_props (&buffer->out_info[buffer->out_len - 1], buffer->unicode);
}
2011-07-22 17:07:05 +02:00
2011-07-21 17:31:08 +02:00
static bool
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;
if (!hb_unicode_decompose (buffer->unicode, ab, &a, &b) ||
(b && !hb_font_get_glyph (font, b, 0, &glyph)))
2011-07-22 22:15:32 +02:00
return FALSE;
2011-07-22 17:07:05 +02:00
bool has_a = hb_font_get_glyph (font, a, 0, &glyph);
2011-07-22 22:15:32 +02:00
if (shortest && has_a) {
/* Output a and b */
output_glyph (font, buffer, a);
2011-07-22 23:14:46 +02:00
if (b)
output_glyph (font, buffer, b);
2011-07-22 22:15:32 +02:00
return TRUE;
}
2011-07-21 06:51:18 +02:00
if (decompose (font, buffer, shortest, a)) {
2011-07-22 23:14:46 +02:00
if (b)
output_glyph (font, buffer, b);
2011-07-22 22:15:32 +02:00
return TRUE;
}
2011-07-22 17:07:05 +02:00
2011-07-22 22:15:32 +02:00
if (has_a) {
output_glyph (font, buffer, a);
2011-07-22 23:14:46 +02:00
if (b)
output_glyph (font, buffer, b);
2011-07-22 17:07:05 +02:00
return TRUE;
}
2011-07-22 22:15:32 +02:00
return FALSE;
2011-07-21 17:31:08 +02:00
}
static void
decompose_current_glyph (hb_font_t *font, hb_buffer_t *buffer,
2011-07-22 22:15:32 +02:00
bool shortest)
2011-07-21 18:16:45 +02:00
{
if (decompose (font, buffer, shortest, buffer->info[buffer->idx].codepoint))
buffer->skip_glyph ();
else
buffer->next_glyph ();
2011-07-21 18:16:45 +02:00
}
static void
decompose_single_char_cluster (hb_font_t *font, hb_buffer_t *buffer,
2011-07-22 22:15:32 +02:00
bool will_recompose)
2011-07-21 17:31:08 +02:00
{
2011-07-22 22:15:32 +02:00
hb_codepoint_t glyph;
/* If recomposing and font supports this, we're good to go */
if (will_recompose && hb_font_get_glyph (font, buffer->info[buffer->idx].codepoint, 0, &glyph)) {
buffer->next_glyph ();
return;
2011-07-22 22:15:32 +02:00
}
decompose_current_glyph (font, buffer, will_recompose);
2011-07-21 06:51:18 +02:00
}
static void
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. */
for (unsigned int i = buffer->idx; i < end; i++)
if (unlikely (_hb_unicode_is_variation_selector (buffer->info[i].codepoint))) {
while (buffer->idx < end)
buffer->next_glyph ();
return;
}
2011-07-21 18:16:45 +02:00
while (buffer->idx < end)
decompose_current_glyph (font, buffer, FALSE);
2011-07-21 06:51:18 +02:00
}
static int
compare_combining_class (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
{
unsigned int a = pa->combining_class();
unsigned int b = pb->combining_class();
return a < b ? -1 : a == b ? 0 : +1;
}
2011-07-22 17:07:05 +02:00
void
_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
{
bool recompose = mode != HB_OT_SHAPE_NORMALIZATION_MODE_DECOMPOSED;
2011-07-22 22:15:32 +02:00
bool has_multichar_clusters = FALSE;
unsigned int count;
2011-07-21 21:25:01 +02:00
/* We do a fairly straightforward yet custom normalization process in three
* 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 22:15:32 +02:00
/* First round, decompose */
buffer->clear_output ();
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++)
if (buffer->info[buffer->idx].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)
decompose_single_char_cluster (font, buffer, recompose);
2011-07-22 22:15:32 +02:00
else {
decompose_multi_char_cluster (font, buffer, end);
2011-07-22 22:15:32 +02:00
has_multichar_clusters = TRUE;
}
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
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 22:15:32 +02:00
/* Second round, reorder (inplace) */
count = buffer->len;
for (unsigned int i = 0; i < count; i++)
{
if (buffer->info[i].combining_class() == 0)
continue;
unsigned int end;
for (end = i + 1; end < count; end++)
if (buffer->info[end].combining_class() == 0)
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;
}
hb_bubble_sort (buffer->info + i, end - i, compare_combining_class);
i = end;
}
2011-07-22 22:15:32 +02:00
if (!recompose)
return;
2011-07-22 22:15:32 +02:00
/* Third round, recompose */
/* 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
buffer->clear_output ();
count = buffer->len;
unsigned int starter = 0;
buffer->next_glyph ();
while (buffer->idx < count)
{
hb_codepoint_t composed, glyph;
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 ||
buffer->info[buffer->idx].combining_class() != 0) &&
/* If there's anything between the starter and this char, they should have CCC
* smaller than this character's. */
(starter == buffer->out_len - 1 ||
buffer->out_info[buffer->out_len - 1].combining_class() < buffer->info[buffer->idx].combining_class()) &&
/* And compose. */
2012-04-07 20:49:13 +02:00
hb_unicode_compose (buffer->unicode,
buffer->out_info[starter].codepoint,
buffer->info[buffer->idx].codepoint,
&composed) &&
/* And the font has glyph for the composite. */
2012-04-07 20:49:13 +02:00
hb_font_get_glyph (font, composed, 0, &glyph))
{
2012-04-07 20:49:13 +02:00
/* Composes. Modify starter and carry on. */
buffer->out_info[starter].codepoint = composed;
2012-04-24 22:01:30 +02:00
/* XXX update cluster */
2012-04-15 02:47:14 +02:00
set_unicode_props (&buffer->out_info[starter], buffer->unicode);
2012-04-07 20:49:13 +02:00
buffer->skip_glyph ();
continue;
}
2012-04-07 20:49:13 +02:00
/* Blocked, or doesn't compose. */
buffer->next_glyph ();
if (buffer->out_info[buffer->out_len - 1].combining_class() == 0)
starter = buffer->out_len - 1;
2011-07-22 22:15:32 +02:00
}
buffer->swap_buffers ();
2011-07-21 06:51:18 +02:00
}