More kicking
[apps/home/video-player.git] / src / hb-ot-shape-normalize.cc
1 /*
2  * Copyright © 2011  Google, Inc.
3  *
4  *  This is part of HarfBuzz, a text shaping library.
5  *
6  * Permission is hereby granted, without written agreement and without
7  * license or royalty fees, to use, copy, modify, and distribute this
8  * software and its documentation for any purpose, provided that the
9  * above copyright notice and the following two paragraphs appear in
10  * all copies of this software.
11  *
12  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16  * DAMAGE.
17  *
18  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23  *
24  * Google Author(s): Behdad Esfahbod
25  */
26
27 #include "hb-ot-shape-private.hh"
28
29 HB_BEGIN_DECLS
30
31 static bool
32 get_glyph (hb_ot_shape_context_t *c, unsigned int i)
33 {
34   hb_buffer_t *b = c->buffer;
35   hb_codepoint_t glyph;
36
37   return hb_font_get_glyph (c->font, b->info[i].codepoint, 0, &glyph);
38 }
39
40 static bool
41 decompose_single_char_cluster (hb_ot_shape_context_t *c,
42                                unsigned int i)
43 {
44   return FALSE;
45 }
46
47 static bool
48 handle_single_char_cluster (hb_ot_shape_context_t *c,
49                             unsigned int i)
50 {
51   /* If the single char is supported by the font, we're good. */
52   if (get_glyph (c, i))
53     return FALSE;
54
55   /* Decompose */
56   return decompose_single_char_cluster (c, i);
57 }
58
59 static bool
60 handle_multi_char_cluster (hb_ot_shape_context_t *c,
61                            unsigned int start,
62                            unsigned int end)
63 {
64   /* If there's a variation-selector, give-up, it's just too hard. */
65   for (unsigned int i = start; i < end; i++)
66     if (unlikely (is_variation_selector (c->buffer->info[i].codepoint)))
67       return FALSE;
68
69   return FALSE;
70 }
71
72 bool
73 _hb_normalize (hb_ot_shape_context_t *c)
74 {
75   hb_buffer_t *b = c->buffer;
76   bool changed = FALSE;
77
78   unsigned int count = b->len;
79   for (unsigned int i = 0; i < count;) {
80     unsigned int end;
81     for (end = i + 1; end < count; end++)
82       if (b->info[i].cluster != b->info[end].cluster)
83         break;
84     if (i + 1 == end)
85       changed |= handle_single_char_cluster (c, i);
86     else
87       changed |= handle_multi_char_cluster (c, i, end);
88     i = end;
89   }
90
91   return changed;
92 }
93
94 HB_END_DECLS