Towards normalization
[profile/ivi/org.tizen.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 void
32 handle_single_char_cluster (hb_ot_shape_context_t *c,
33                             unsigned int i)
34 {
35   hb_buffer_t *b = c->buffer;
36   hb_codepoint_t glyph;
37
38   if (hb_font_get_glyph (c->font, b->info[i].codepoint, 0, &glyph))
39     return;
40
41   /* Decompose */
42 }
43
44 static void
45 handle_multi_char_cluster (hb_ot_shape_context_t *c,
46                            unsigned int i,
47                            unsigned int end)
48 {
49   /* If there's a variation-selector, give-up, it's just too hard. */
50 }
51
52 void
53 _hb_normalize (hb_ot_shape_context_t *c)
54 {
55   hb_buffer_t *b = c->buffer;
56   
57   unsigned int count = b->len;
58   for (unsigned int i = 0; i < count;) {
59     unsigned int end;
60     for (end = i + 1; end < count; end++)
61       if (b->info[i].cluster != b->info[end].cluster)
62         break;
63     if (i + 1 == end)
64       handle_single_char_cluster (c, i);
65     else
66       handle_multi_char_cluster (c, i, end);
67     i = end;
68   }
69 }
70
71 HB_END_DECLS