2 * Copyright © 2009,2010 Red Hat, Inc.
3 * Copyright © 2010 Google, Inc.
5 * This is part of HarfBuzz, a text shaping library.
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.
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
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.
25 * Red Hat Author(s): Behdad Esfahbod
26 * Google Author(s): Behdad Esfahbod
29 #include "hb-ot-map-private.hh"
31 #include "hb-ot-shape-private.hh"
37 hb_ot_map_t::add_lookups (hb_face_t *face,
38 unsigned int table_index,
39 unsigned int feature_index,
42 unsigned int i = MAX_LOOKUPS - lookup_count[table_index];
43 lookup_map_t *lookups = lookup_maps[table_index] + lookup_count[table_index];
45 unsigned int *lookup_indices = (unsigned int *) lookups;
47 hb_ot_layout_feature_get_lookup_indexes (face,
48 table_tags[table_index],
53 lookup_count[table_index] += i;
56 lookups[i].mask = mask;
57 lookups[i].index = lookup_indices[i];
63 hb_ot_map_t::compile (hb_face_t *face,
64 const hb_segment_properties_t *props)
67 lookup_count[0] = lookup_count[1] = 0;
69 if (!feature_infos.len)
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. */
76 hb_tag_t script_tags[3] = {HB_TAG_NONE};
77 hb_tag_t language_tag;
79 hb_ot_tags_from_script (props->script, &script_tags[0], &script_tags[1]);
80 language_tag = hb_ot_tag_from_language (props->language);
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]);
90 /* Sort features and merge duplicates */
91 feature_infos.sort ();
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];
97 if (feature_infos[i].global)
98 feature_infos[j] = feature_infos[i];
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 */
105 feature_infos.shrink (j + 1);
108 /* Allocate bits now */
109 feature_count = feature_infos.len;
110 unsigned int next_bit = 1;
112 for (unsigned int i = 0; i < feature_count; i++) {
113 const feature_info_t *info = &feature_infos[i];
115 unsigned int bits_needed;
117 if (info->global && info->max_value == 1)
118 /* Uses the global bit */
121 bits_needed = _hb_bit_storage (info->max_value);
123 if (!info->max_value || next_bit + bits_needed > 8 * sizeof (hb_mask_t))
124 continue; /* Feature disabled, or not enough bits. */
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],
135 &feature_index[table_index]);
140 feature_map_t *map = &feature_maps[j++];
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 */
150 map->shift = next_bit;
151 map->mask = (1 << (next_bit + bits_needed)) - (1 << next_bit);
152 next_bit += bits_needed;
154 global_mask |= (info->default_value << map->shift) & map->mask;
156 map->_1_mask = (1 << map->shift) & map->mask;
162 for (unsigned int table_index = 0; table_index < 2; table_index++) {
163 hb_tag_t table_tag = table_tags[table_index];
165 /* Collect lookup indices for features */
167 unsigned int required_feature_index;
168 if (hb_ot_layout_language_get_required_feature_index (face,
170 script_index[table_index],
171 language_index[table_index],
172 &required_feature_index))
173 add_lookups (face, table_index, required_feature_index, 1);
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);
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])
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];
187 lookup_maps[table_index][j].mask |= lookup_maps[table_index][i].mask;
189 lookup_count[table_index] = j;