2 * Copyright © 2007,2008,2009 Red Hat, Inc.
3 * Copyright © 2012,2013 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 #ifndef HB_OT_LAYOUT_PRIVATE_HH
30 #define HB_OT_LAYOUT_PRIVATE_HH
32 #include "hb-private.hh"
34 #include "hb-font-private.hh"
35 #include "hb-buffer-private.hh"
36 #include "hb-set-private.hh"
39 /* Private API corresponding to hb-ot-layout.h: */
42 hb_ot_layout_table_find_feature (hb_face_t
*face
,
45 unsigned int *feature_index
);
54 /* The following three match LookupFlags::Ignore* numbers. */
55 HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH
= 0x02u
,
56 HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE
= 0x04u
,
57 HB_OT_LAYOUT_GLYPH_PROPS_MARK
= 0x08u
,
59 /* The following are used internally; not derived from GDEF. */
60 HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED
= 0x10u
,
61 HB_OT_LAYOUT_GLYPH_PROPS_LIGATED
= 0x20u
,
62 HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
= 0x40u
,
64 HB_OT_LAYOUT_GLYPH_PROPS_PRESERVE
= HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED
|
65 HB_OT_LAYOUT_GLYPH_PROPS_LIGATED
|
66 HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
67 } hb_ot_layout_glyph_class_mask_t
;
75 hb_ot_layout_lookup_would_substitute_fast (hb_face_t
*face
,
76 unsigned int lookup_index
,
77 const hb_codepoint_t
*glyphs
,
78 unsigned int glyphs_length
,
79 hb_bool_t zero_context
);
82 /* Should be called before all the substitute_lookup's are done. */
84 hb_ot_layout_substitute_start (hb_font_t
*font
,
88 struct hb_ot_layout_lookup_accelerator_t
;
91 struct hb_apply_context_t
;
96 hb_ot_layout_substitute_lookup (OT::hb_apply_context_t
*c
,
97 const OT::SubstLookup
&lookup
,
98 const hb_ot_layout_lookup_accelerator_t
&accel
);
101 /* Should be called after all the substitute_lookup's are done */
103 hb_ot_layout_substitute_finish (hb_font_t
*font
,
104 hb_buffer_t
*buffer
);
107 /* Should be called before all the position_lookup's are done. Resets positions to zero. */
109 hb_ot_layout_position_start (hb_font_t
*font
,
110 hb_buffer_t
*buffer
);
112 /* Should be called after all the position_lookup's are done */
114 hb_ot_layout_position_finish (hb_font_t
*font
,
115 hb_buffer_t
*buffer
);
129 struct hb_ot_layout_lookup_accelerator_t
131 template <typename TLookup
>
132 inline void init (const TLookup
&lookup
)
135 lookup
.add_coverage (&digest
);
138 inline void fini (void)
142 inline bool may_have (hb_codepoint_t g
) const {
143 return digest
.may_have (g
);
147 hb_set_digest_t digest
;
150 struct hb_ot_layout_t
152 hb_blob_t
*gdef_blob
;
153 hb_blob_t
*gsub_blob
;
154 hb_blob_t
*gpos_blob
;
156 const struct OT::GDEF
*gdef
;
157 const struct OT::GSUB
*gsub
;
158 const struct OT::GPOS
*gpos
;
160 unsigned int gsub_lookup_count
;
161 unsigned int gpos_lookup_count
;
163 hb_ot_layout_lookup_accelerator_t
*gsub_accels
;
164 hb_ot_layout_lookup_accelerator_t
*gpos_accels
;
168 HB_INTERNAL hb_ot_layout_t
*
169 _hb_ot_layout_create (hb_face_t
*face
);
172 _hb_ot_layout_destroy (hb_ot_layout_t
*layout
);
175 #define hb_ot_layout_from_face(face) ((hb_ot_layout_t *) face->shaper_data.ot)
179 * Buffer var routines.
182 /* buffer var allocations, used during the entire shaping process */
183 #define unicode_props0() var2.u8[0]
184 #define unicode_props1() var2.u8[1]
186 /* buffer var allocations, used during the GSUB/GPOS processing */
187 #define glyph_props() var1.u16[0] /* GDEF glyph properties */
188 #define lig_props() var1.u8[2] /* GSUB/GPOS ligature tracking */
189 #define syllable() var1.u8[3] /* GSUB/GPOS shaping boundaries */
192 /* loop over syllables */
194 #define foreach_syllable(buffer, start, end) \
196 _count = buffer->len, \
197 start = 0, end = _count ? _next_syllable (buffer, 0) : 0; \
199 start = end, end = _next_syllable (buffer, start))
201 static inline unsigned int
202 _next_syllable (hb_buffer_t
*buffer
, unsigned int start
)
204 hb_glyph_info_t
*info
= buffer
->info
;
205 unsigned int count
= buffer
->len
;
207 unsigned int syllable
= info
[start
].syllable();
208 while (++start
< count
&& syllable
== info
[start
].syllable())
220 MASK0_IGNORABLE
= 0x80u
,
221 MASK0_GEN_CAT
= 0x1Fu
225 _hb_glyph_info_set_unicode_props (hb_glyph_info_t
*info
, hb_unicode_funcs_t
*unicode
)
227 /* XXX This shouldn't be inlined, or at least not while is_default_ignorable() is inline. */
228 info
->unicode_props0() = ((unsigned int) unicode
->general_category (info
->codepoint
)) |
229 (unicode
->is_default_ignorable (info
->codepoint
) ? MASK0_IGNORABLE
: 0) |
230 (info
->codepoint
== 0x200Cu
? MASK0_ZWNJ
: 0) |
231 (info
->codepoint
== 0x200Du
? MASK0_ZWJ
: 0);
232 info
->unicode_props1() = unicode
->modified_combining_class (info
->codepoint
);
236 _hb_glyph_info_set_general_category (hb_glyph_info_t
*info
,
237 hb_unicode_general_category_t gen_cat
)
239 info
->unicode_props0() = (unsigned int) gen_cat
| ((info
->unicode_props0()) & ~MASK0_GEN_CAT
);
242 static inline hb_unicode_general_category_t
243 _hb_glyph_info_get_general_category (const hb_glyph_info_t
*info
)
245 return (hb_unicode_general_category_t
) (info
->unicode_props0() & MASK0_GEN_CAT
);
249 _hb_glyph_info_set_modified_combining_class (hb_glyph_info_t
*info
,
250 unsigned int modified_class
)
252 info
->unicode_props1() = modified_class
;
255 static inline unsigned int
256 _hb_glyph_info_get_modified_combining_class (const hb_glyph_info_t
*info
)
258 return info
->unicode_props1();
261 static inline bool _hb_glyph_info_ligated (const hb_glyph_info_t
*info
);
263 static inline hb_bool_t
264 _hb_glyph_info_is_default_ignorable (const hb_glyph_info_t
*info
)
266 return (info
->unicode_props0() & MASK0_IGNORABLE
) && !_hb_glyph_info_ligated (info
);
269 static inline hb_bool_t
270 _hb_glyph_info_is_zwnj (const hb_glyph_info_t
*info
)
272 return !!(info
->unicode_props0() & MASK0_ZWNJ
);
275 static inline hb_bool_t
276 _hb_glyph_info_is_zwj (const hb_glyph_info_t
*info
)
278 return !!(info
->unicode_props0() & MASK0_ZWJ
);
282 _hb_glyph_info_flip_joiners (hb_glyph_info_t
*info
)
284 info
->unicode_props0() ^= MASK0_ZWNJ
| MASK0_ZWJ
;
287 /* lig_props: aka lig_id / lig_comp
289 * When a ligature is formed:
291 * - The ligature glyph and any marks in between all the same newly allocated
293 * - The ligature glyph will get lig_num_comps set to the number of components
294 * - The marks get lig_comp > 0, reflecting which component of the ligature
295 * they were applied to.
296 * - This is used in GPOS to attach marks to the right component of a ligature
298 * - Note that when marks are ligated together, much of the above is skipped
299 * and the current lig_id reused.
301 * When a multiple-substitution is done:
303 * - All resulting glyphs will have lig_id = 0,
304 * - The resulting glyphs will have lig_comp = 0, 1, 2, ... respectively.
305 * - This is used in GPOS to attach marks to the first component of a
306 * multiple substitution in MarkBasePos.
308 * The numbers are also used in GPOS to do mark-to-mark positioning only
309 * to marks that belong to the same component of the same ligature.
313 _hb_glyph_info_clear_lig_props (hb_glyph_info_t
*info
)
315 info
->lig_props() = 0;
318 #define IS_LIG_BASE 0x10
321 _hb_glyph_info_set_lig_props_for_ligature (hb_glyph_info_t
*info
,
323 unsigned int lig_num_comps
)
325 info
->lig_props() = (lig_id
<< 5) | IS_LIG_BASE
| (lig_num_comps
& 0x0F);
329 _hb_glyph_info_set_lig_props_for_mark (hb_glyph_info_t
*info
,
331 unsigned int lig_comp
)
333 info
->lig_props() = (lig_id
<< 5) | (lig_comp
& 0x0F);
337 _hb_glyph_info_set_lig_props_for_component (hb_glyph_info_t
*info
, unsigned int comp
)
339 _hb_glyph_info_set_lig_props_for_mark (info
, 0, comp
);
342 static inline unsigned int
343 _hb_glyph_info_get_lig_id (const hb_glyph_info_t
*info
)
345 return info
->lig_props() >> 5;
349 _hb_glyph_info_ligated_internal (const hb_glyph_info_t
*info
)
351 return !!(info
->lig_props() & IS_LIG_BASE
);
354 static inline unsigned int
355 _hb_glyph_info_get_lig_comp (const hb_glyph_info_t
*info
)
357 if (_hb_glyph_info_ligated_internal (info
))
360 return info
->lig_props() & 0x0F;
363 static inline unsigned int
364 _hb_glyph_info_get_lig_num_comps (const hb_glyph_info_t
*info
)
366 if ((info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE
) &&
367 _hb_glyph_info_ligated_internal (info
))
368 return info
->lig_props() & 0x0F;
373 static inline uint8_t
374 _hb_allocate_lig_id (hb_buffer_t
*buffer
) {
375 uint8_t lig_id
= buffer
->next_serial () & 0x07;
376 if (unlikely (!lig_id
))
377 lig_id
= _hb_allocate_lig_id (buffer
); /* in case of overflow */
384 _hb_glyph_info_set_glyph_props (hb_glyph_info_t
*info
, unsigned int props
)
386 info
->glyph_props() = props
;
389 static inline unsigned int
390 _hb_glyph_info_get_glyph_props (const hb_glyph_info_t
*info
)
392 return info
->glyph_props();
396 _hb_glyph_info_is_base_glyph (const hb_glyph_info_t
*info
)
398 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH
);
402 _hb_glyph_info_is_ligature (const hb_glyph_info_t
*info
)
404 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE
);
408 _hb_glyph_info_is_mark (const hb_glyph_info_t
*info
)
410 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_MARK
);
414 _hb_glyph_info_substituted (const hb_glyph_info_t
*info
)
416 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED
);
420 _hb_glyph_info_ligated (const hb_glyph_info_t
*info
)
422 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATED
);
426 _hb_glyph_info_multiplied (const hb_glyph_info_t
*info
)
428 return !!(info
->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
);
432 _hb_glyph_info_ligated_and_didnt_multiply (const hb_glyph_info_t
*info
)
434 return _hb_glyph_info_ligated (info
) && !_hb_glyph_info_multiplied (info
);
438 _hb_glyph_info_clear_ligated_and_multiplied (hb_glyph_info_t
*info
)
440 info
->glyph_props() &= ~(HB_OT_LAYOUT_GLYPH_PROPS_LIGATED
|
441 HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
);
445 _hb_glyph_info_clear_substituted_and_ligated_and_multiplied (hb_glyph_info_t
*info
)
447 info
->glyph_props() &= ~(HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED
|
448 HB_OT_LAYOUT_GLYPH_PROPS_LIGATED
|
449 HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
);
453 /* Allocation / deallocation. */
456 _hb_buffer_allocate_unicode_vars (hb_buffer_t
*buffer
)
458 HB_BUFFER_ALLOCATE_VAR (buffer
, unicode_props0
);
459 HB_BUFFER_ALLOCATE_VAR (buffer
, unicode_props1
);
463 _hb_buffer_deallocate_unicode_vars (hb_buffer_t
*buffer
)
465 HB_BUFFER_DEALLOCATE_VAR (buffer
, unicode_props0
);
466 HB_BUFFER_DEALLOCATE_VAR (buffer
, unicode_props1
);
470 _hb_buffer_assert_unicode_vars (hb_buffer_t
*buffer
)
472 HB_BUFFER_ASSERT_VAR (buffer
, unicode_props0
);
473 HB_BUFFER_ASSERT_VAR (buffer
, unicode_props1
);
477 _hb_buffer_allocate_gsubgpos_vars (hb_buffer_t
*buffer
)
479 HB_BUFFER_ALLOCATE_VAR (buffer
, glyph_props
);
480 HB_BUFFER_ALLOCATE_VAR (buffer
, lig_props
);
481 HB_BUFFER_ALLOCATE_VAR (buffer
, syllable
);
485 _hb_buffer_deallocate_gsubgpos_vars (hb_buffer_t
*buffer
)
487 HB_BUFFER_DEALLOCATE_VAR (buffer
, syllable
);
488 HB_BUFFER_DEALLOCATE_VAR (buffer
, lig_props
);
489 HB_BUFFER_DEALLOCATE_VAR (buffer
, glyph_props
);
493 _hb_buffer_assert_gsubgpos_vars (hb_buffer_t
*buffer
)
495 HB_BUFFER_ASSERT_VAR (buffer
, glyph_props
);
496 HB_BUFFER_ASSERT_VAR (buffer
, lig_props
);
497 HB_BUFFER_ASSERT_VAR (buffer
, syllable
);
500 /* Make sure no one directly touches our props... */
501 #undef unicode_props0
502 #undef unicode_props1
507 #endif /* HB_OT_LAYOUT_PRIVATE_HH */