Replace fixed-size feature_infos array with hb_array_t
[apps/core/preloaded/video-player.git] / src / hb-ot-map.cc
1 /*
2  * Copyright © 2009,2010  Red Hat, Inc.
3  * Copyright © 2010  Google, Inc.
4  *
5  *  This is part of HarfBuzz, a text shaping library.
6  *
7  * Permission is hereby granted, without written agreement and without
8  * license or royalty fees, to use, copy, modify, and distribute this
9  * software and its documentation for any purpose, provided that the
10  * above copyright notice and the following two paragraphs appear in
11  * all copies of this software.
12  *
13  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
17  * DAMAGE.
18  *
19  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
22  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24  *
25  * Red Hat Author(s): Behdad Esfahbod
26  * Google Author(s): Behdad Esfahbod
27  */
28
29 #include "hb-ot-map-private.hh"
30
31 #include "hb-ot-shape-private.hh"
32
33 HB_BEGIN_DECLS
34
35
36 void
37 hb_ot_map_t::add_lookups (hb_face_t    *face,
38                           unsigned int  table_index,
39                           unsigned int  feature_index,
40                           hb_mask_t     mask)
41 {
42   unsigned int i = MAX_LOOKUPS - lookup_count[table_index];
43   lookup_map_t *lookups = lookup_maps[table_index] + lookup_count[table_index];
44
45   unsigned int *lookup_indices = (unsigned int *) lookups;
46
47   hb_ot_layout_feature_get_lookup_indexes (face,
48                                            table_tags[table_index],
49                                            feature_index,
50                                            0, &i,
51                                            lookup_indices);
52
53   lookup_count[table_index] += i;
54
55   while (i--) {
56     lookups[i].mask = mask;
57     lookups[i].index = lookup_indices[i];
58   }
59 }
60
61
62 void
63 hb_ot_map_t::compile (hb_face_t *face,
64                       const hb_segment_properties_t *props)
65 {
66  global_mask = 1;
67  lookup_count[0] = lookup_count[1] = 0;
68
69   if (!feature_infos.len)
70     return;
71
72
73   /* Fetch script/language indices for GSUB/GPOS.  We need these later to skip
74    * features not available in either table and not waste precious bits for them. */
75
76   hb_tag_t script_tags[3] = {HB_TAG_NONE};
77   hb_tag_t language_tag;
78
79   hb_ot_tags_from_script (props->script, &script_tags[0], &script_tags[1]);
80   language_tag = hb_ot_tag_from_language (props->language);
81
82   unsigned int script_index[2], language_index[2];
83   for (unsigned int table_index = 0; table_index < 2; table_index++) {
84     hb_tag_t table_tag = table_tags[table_index];
85     hb_ot_layout_table_choose_script (face, table_tag, script_tags, &script_index[table_index]);
86     hb_ot_layout_script_find_language (face, table_tag, script_index[table_index], language_tag, &language_index[table_index]);
87   }
88
89
90   /* Sort features and merge duplicates */
91   feature_infos.sort ();
92   unsigned int j = 0;
93   for (unsigned int i = 1; i < feature_infos.len; i++)
94     if (feature_infos[i].tag != feature_infos[j].tag)
95       feature_infos[++j] = feature_infos[i];
96     else {
97       if (feature_infos[i].global)
98         feature_infos[j] = feature_infos[i];
99       else {
100         feature_infos[j].global = false;
101         feature_infos[j].max_value = MAX (feature_infos[j].max_value, feature_infos[i].max_value);
102         /* Inherit default_value from j */
103       }
104     }
105   feature_infos.shrink (j + 1);
106
107
108   /* Allocate bits now */
109   feature_count = feature_infos.len;
110   unsigned int next_bit = 1;
111   j = 0;
112   for (unsigned int i = 0; i < feature_count; i++) {
113     const feature_info_t *info = &feature_infos[i];
114
115     unsigned int bits_needed;
116
117     if (info->global && info->max_value == 1)
118       /* Uses the global bit */
119       bits_needed = 0;
120     else
121       bits_needed = _hb_bit_storage (info->max_value);
122
123     if (!info->max_value || next_bit + bits_needed > 8 * sizeof (hb_mask_t))
124       continue; /* Feature disabled, or not enough bits. */
125
126
127     bool found = false;
128     unsigned int feature_index[2];
129     for (unsigned int table_index = 0; table_index < 2; table_index++)
130       found |= hb_ot_layout_language_find_feature (face,
131                                                    table_tags[table_index],
132                                                    script_index[table_index],
133                                                    language_index[table_index],
134                                                    info->tag,
135                                                    &feature_index[table_index]);
136     if (!found)
137       continue;
138
139
140     feature_map_t *map = &feature_maps[j++];
141
142     map->tag = info->tag;
143     map->index[0] = feature_index[0];
144     map->index[1] = feature_index[1];
145     if (info->global && info->max_value == 1) {
146       /* Uses the global bit */
147       map->shift = 0;
148       map->mask = 1;
149     } else {
150       map->shift = next_bit;
151       map->mask = (1 << (next_bit + bits_needed)) - (1 << next_bit);
152       next_bit += bits_needed;
153       if (info->global)
154         global_mask |= (info->default_value << map->shift) & map->mask;
155     }
156     map->_1_mask = (1 << map->shift) & map->mask;
157
158   }
159   feature_count = j;
160
161
162   for (unsigned int table_index = 0; table_index < 2; table_index++) {
163     hb_tag_t table_tag = table_tags[table_index];
164
165     /* Collect lookup indices for features */
166
167     unsigned int required_feature_index;
168     if (hb_ot_layout_language_get_required_feature_index (face,
169                                                           table_tag,
170                                                           script_index[table_index],
171                                                           language_index[table_index],
172                                                           &required_feature_index))
173       add_lookups (face, table_index, required_feature_index, 1);
174
175     for (unsigned i = 0; i < feature_count; i++)
176       add_lookups (face, table_index, feature_maps[i].index[table_index], feature_maps[i].mask);
177
178     /* Sort lookups and merge duplicates */
179     qsort (lookup_maps[table_index], lookup_count[table_index], sizeof (lookup_maps[table_index][0]), (hb_compare_func_t) lookup_map_t::cmp);
180     if (lookup_count[table_index])
181     {
182       unsigned int j = 0;
183       for (unsigned int i = 1; i < lookup_count[table_index]; i++)
184         if (lookup_maps[table_index][i].index != lookup_maps[table_index][j].index)
185           lookup_maps[table_index][++j] = lookup_maps[table_index][i];
186         else
187           lookup_maps[table_index][j].mask |= lookup_maps[table_index][i].mask;
188       j++;
189       lookup_count[table_index] = j;
190     }
191   }
192 }
193
194
195 HB_END_DECLS