2 * Copyright © 1998-2004 David Turner and Werner Lemberg
3 * Copyright © 2006 Behdad Esfahbod
4 * Copyright © 2007,2008,2009 Red Hat, Inc.
6 * This is part of HarfBuzz, a text shaping library.
8 * Permission is hereby granted, without written agreement and without
9 * license or royalty fees, to use, copy, modify, and distribute this
10 * software and its documentation for any purpose, provided that the
11 * above copyright notice and the following two paragraphs appear in
12 * all copies of this software.
14 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
20 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
23 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
26 * Red Hat Author(s): Behdad Esfahbod
29 #define HB_OT_LAYOUT_CC
31 #include "hb-ot-layout-private.hh"
33 #include "hb-ot-layout-gdef-private.hh"
34 #include "hb-ot-layout-gsub-private.hh"
35 #include "hb-ot-layout-gpos-private.hh"
45 _hb_ot_layout_new (hb_face_t *face)
47 /* Remove this object altogether */
48 hb_ot_layout_t *layout = (hb_ot_layout_t *) calloc (1, sizeof (hb_ot_layout_t));
50 layout->gdef_blob = Sanitizer<GDEF>::sanitize (hb_face_reference_table (face, HB_OT_TAG_GDEF));
51 layout->gdef = Sanitizer<GDEF>::lock_instance (layout->gdef_blob);
53 layout->gsub_blob = Sanitizer<GSUB>::sanitize (hb_face_reference_table (face, HB_OT_TAG_GSUB));
54 layout->gsub = Sanitizer<GSUB>::lock_instance (layout->gsub_blob);
56 layout->gpos_blob = Sanitizer<GPOS>::sanitize (hb_face_reference_table (face, HB_OT_TAG_GPOS));
57 layout->gpos = Sanitizer<GPOS>::lock_instance (layout->gpos_blob);
63 _hb_ot_layout_free (hb_ot_layout_t *layout)
65 hb_blob_unlock (layout->gdef_blob);
66 hb_blob_unlock (layout->gsub_blob);
67 hb_blob_unlock (layout->gpos_blob);
69 hb_blob_destroy (layout->gdef_blob);
70 hb_blob_destroy (layout->gsub_blob);
71 hb_blob_destroy (layout->gpos_blob);
76 static inline const GDEF&
77 _get_gdef (hb_face_t *face)
79 return likely (face->ot_layout && face->ot_layout->gdef) ? *face->ot_layout->gdef : Null(GDEF);
82 static inline const GSUB&
83 _get_gsub (hb_face_t *face)
85 return likely (face->ot_layout && face->ot_layout->gsub) ? *face->ot_layout->gsub : Null(GSUB);
88 static inline const GPOS&
89 _get_gpos (hb_face_t *face)
91 return likely (face->ot_layout && face->ot_layout->gpos) ? *face->ot_layout->gpos : Null(GPOS);
100 hb_ot_layout_has_glyph_classes (hb_face_t *face)
102 return _get_gdef (face).has_glyph_classes ();
106 _hb_ot_layout_get_glyph_property (hb_face_t *face,
107 hb_glyph_info_t *info)
109 if (!info->props_cache())
111 const GDEF &gdef = _get_gdef (face);
112 info->props_cache() = gdef.get_glyph_props (info->codepoint);
115 return info->props_cache();
119 _hb_ot_layout_match_properties (hb_face_t *face,
120 hb_codepoint_t codepoint,
121 unsigned int glyph_props,
122 unsigned int lookup_props)
124 /* Not covered, if, for example, glyph class is ligature and
125 * lookup_props includes LookupFlags::IgnoreLigatures
127 if (glyph_props & lookup_props & LookupFlag::IgnoreFlags)
130 if (glyph_props & HB_OT_LAYOUT_GLYPH_CLASS_MARK)
132 /* If using mark filtering sets, the high short of
133 * lookup_props has the set index.
135 if (lookup_props & LookupFlag::UseMarkFilteringSet)
136 return _get_gdef (face).mark_set_covers (lookup_props >> 16, codepoint);
138 /* The second byte of lookup_props has the meaning
139 * "ignore marks of attachment type different than
140 * the attachment type specified."
142 if (lookup_props & LookupFlag::MarkAttachmentType && glyph_props & LookupFlag::MarkAttachmentType)
143 return (lookup_props & LookupFlag::MarkAttachmentType) == (glyph_props & LookupFlag::MarkAttachmentType);
150 _hb_ot_layout_check_glyph_property (hb_face_t *face,
151 hb_glyph_info_t *ginfo,
152 unsigned int lookup_props,
153 unsigned int *property_out)
155 unsigned int property;
157 property = _hb_ot_layout_get_glyph_property (face, ginfo);
158 (void) (property_out && (*property_out = property));
160 return _hb_ot_layout_match_properties (face, ginfo->codepoint, property, lookup_props);
164 _hb_ot_layout_skip_mark (hb_face_t *face,
165 hb_glyph_info_t *ginfo,
166 unsigned int lookup_props,
167 unsigned int *property_out)
169 unsigned int property;
171 property = _hb_ot_layout_get_glyph_property (face, ginfo);
172 (void) (property_out && (*property_out = property));
174 /* If it's a mark, skip it we don't accept it. */
175 if (unlikely (property & HB_OT_LAYOUT_GLYPH_CLASS_MARK))
176 return !_hb_ot_layout_match_properties (face, ginfo->codepoint, property, lookup_props);
178 /* If not a mark, don't skip. */
185 hb_ot_layout_get_attach_points (hb_face_t *face,
186 hb_codepoint_t glyph,
187 unsigned int start_offset,
188 unsigned int *point_count /* IN/OUT */,
189 unsigned int *point_array /* OUT */)
191 return _get_gdef (face).get_attach_points (glyph, start_offset, point_count, point_array);
195 hb_ot_layout_get_ligature_carets (hb_font_t *font,
196 hb_direction_t direction,
197 hb_codepoint_t glyph,
198 unsigned int start_offset,
199 unsigned int *caret_count /* IN/OUT */,
200 int *caret_array /* OUT */)
202 hb_ot_layout_context_t c;
205 return _get_gdef (c.face).get_lig_carets (&c, direction, glyph, start_offset, caret_count, caret_array);
212 static const GSUBGPOS&
213 get_gsubgpos_table (hb_face_t *face,
217 case HB_OT_TAG_GSUB: return _get_gsub (face);
218 case HB_OT_TAG_GPOS: return _get_gpos (face);
219 default: return Null(GSUBGPOS);
225 hb_ot_layout_table_get_script_tags (hb_face_t *face,
227 unsigned int start_offset,
228 unsigned int *script_count /* IN/OUT */,
229 hb_tag_t *script_tags /* OUT */)
231 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
233 return g.get_script_tags (start_offset, script_count, script_tags);
237 hb_ot_layout_table_find_script (hb_face_t *face,
240 unsigned int *script_index)
242 ASSERT_STATIC (Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_SCRIPT_INDEX);
243 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
245 if (g.find_script_index (script_tag, script_index))
248 /* try finding 'DFLT' */
249 if (g.find_script_index (HB_OT_TAG_DEFAULT_SCRIPT, script_index))
252 /* try with 'dflt'; MS site has had typos and many fonts use it now :(.
253 * including many versions of DejaVu Sans Mono! */
254 if (g.find_script_index (HB_OT_TAG_DEFAULT_LANGUAGE, script_index))
257 if (script_index) *script_index = HB_OT_LAYOUT_NO_SCRIPT_INDEX;
262 hb_ot_layout_table_choose_script (hb_face_t *face,
264 const hb_tag_t *script_tags,
265 unsigned int *script_index)
267 ASSERT_STATIC (Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_SCRIPT_INDEX);
268 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
272 if (g.find_script_index (*script_tags, script_index))
277 /* try finding 'DFLT' */
278 if (g.find_script_index (HB_OT_TAG_DEFAULT_SCRIPT, script_index))
281 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
282 if (g.find_script_index (HB_OT_TAG_DEFAULT_LANGUAGE, script_index))
285 if (script_index) *script_index = HB_OT_LAYOUT_NO_SCRIPT_INDEX;
290 hb_ot_layout_table_get_feature_tags (hb_face_t *face,
292 unsigned int start_offset,
293 unsigned int *feature_count /* IN/OUT */,
294 hb_tag_t *feature_tags /* OUT */)
296 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
298 return g.get_feature_tags (start_offset, feature_count, feature_tags);
303 hb_ot_layout_script_get_language_tags (hb_face_t *face,
305 unsigned int script_index,
306 unsigned int start_offset,
307 unsigned int *language_count /* IN/OUT */,
308 hb_tag_t *language_tags /* OUT */)
310 const Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
312 return s.get_lang_sys_tags (start_offset, language_count, language_tags);
316 hb_ot_layout_script_find_language (hb_face_t *face,
318 unsigned int script_index,
319 hb_tag_t language_tag,
320 unsigned int *language_index)
322 ASSERT_STATIC (Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX);
323 const Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
325 if (s.find_lang_sys_index (language_tag, language_index))
328 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
329 if (s.find_lang_sys_index (HB_OT_TAG_DEFAULT_LANGUAGE, language_index))
332 if (language_index) *language_index = HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX;
337 hb_ot_layout_language_get_required_feature_index (hb_face_t *face,
339 unsigned int script_index,
340 unsigned int language_index,
341 unsigned int *feature_index)
343 const LangSys &l = get_gsubgpos_table (face, table_tag).get_script (script_index).get_lang_sys (language_index);
345 if (feature_index) *feature_index = l.get_required_feature_index ();
347 return l.has_required_feature ();
351 hb_ot_layout_language_get_feature_indexes (hb_face_t *face,
353 unsigned int script_index,
354 unsigned int language_index,
355 unsigned int start_offset,
356 unsigned int *feature_count /* IN/OUT */,
357 unsigned int *feature_indexes /* OUT */)
359 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
360 const LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
362 return l.get_feature_indexes (start_offset, feature_count, feature_indexes);
366 hb_ot_layout_language_get_feature_tags (hb_face_t *face,
368 unsigned int script_index,
369 unsigned int language_index,
370 unsigned int start_offset,
371 unsigned int *feature_count /* IN/OUT */,
372 hb_tag_t *feature_tags /* OUT */)
374 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
375 const LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
377 ASSERT_STATIC (sizeof (unsigned int) == sizeof (hb_tag_t));
378 unsigned int ret = l.get_feature_indexes (start_offset, feature_count, (unsigned int *) feature_tags);
381 unsigned int count = *feature_count;
382 for (unsigned int i = 0; i < count; i++)
383 feature_tags[i] = g.get_feature_tag ((unsigned int) feature_tags[i]);
391 hb_ot_layout_language_find_feature (hb_face_t *face,
393 unsigned int script_index,
394 unsigned int language_index,
395 hb_tag_t feature_tag,
396 unsigned int *feature_index)
398 ASSERT_STATIC (Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_FEATURE_INDEX);
399 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
400 const LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
402 unsigned int num_features = l.get_feature_count ();
403 for (unsigned int i = 0; i < num_features; i++) {
404 unsigned int f_index = l.get_feature_index (i);
406 if (feature_tag == g.get_feature_tag (f_index)) {
407 if (feature_index) *feature_index = f_index;
412 if (feature_index) *feature_index = HB_OT_LAYOUT_NO_FEATURE_INDEX;
417 hb_ot_layout_feature_get_lookup_indexes (hb_face_t *face,
419 unsigned int feature_index,
420 unsigned int start_offset,
421 unsigned int *lookup_count /* IN/OUT */,
422 unsigned int *lookup_indexes /* OUT */)
424 const GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
425 const Feature &f = g.get_feature (feature_index);
427 return f.get_lookup_indexes (start_offset, lookup_count, lookup_indexes);
436 hb_ot_layout_has_substitution (hb_face_t *face)
438 return &_get_gsub (face) != &Null(GSUB);
442 hb_ot_layout_substitute_lookup (hb_face_t *face,
444 unsigned int lookup_index,
447 hb_ot_layout_context_t c;
450 return _get_gsub (face).substitute_lookup (&c, buffer, lookup_index, mask);
459 hb_ot_layout_has_positioning (hb_face_t *face)
461 return &_get_gpos (face) != &Null(GPOS);
465 hb_ot_layout_position_start (hb_buffer_t *buffer)
467 buffer->clear_positions ();
471 hb_ot_layout_position_lookup (hb_font_t *font,
473 unsigned int lookup_index,
476 hb_ot_layout_context_t c;
479 return _get_gpos (c.face).position_lookup (&c, buffer, lookup_index, mask);
483 hb_ot_layout_position_finish (hb_buffer_t *buffer)
485 GPOS::position_finish (buffer);