2 * Copyright © 2012 Google, Inc.
4 * This is part of HarfBuzz, a text shaping library.
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.
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
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.
24 * Google Author(s): Behdad Esfahbod
28 #include "hb-shape-plan.hh"
29 #include "hb-shaper.hh"
31 #include "hb-buffer.hh"
37 * SECTION:hb-shape-plan
38 * @title: hb-shape-plan
39 * @short_description: Object representing a shaping plan
42 * Shape plans are an internal mechanism. Each plan contains state
43 * describing how HarfBuzz will shape a particular text segment, based on
44 * the combination of segment properties and the capabilities in the
47 * Shape plans are not used for shaping directly, but can be queried to
48 * access certain information about how shaping will perform, given a set
49 * of specific input parameters (script, language, direction, features,
52 * Most client programs will not need to deal with shape plans directly.
61 hb_shape_plan_key_t::init (bool copy
,
63 const hb_segment_properties_t
*props
,
64 const hb_feature_t
*user_features
,
65 unsigned int num_user_features
,
67 unsigned int num_coords
,
68 const char * const *shaper_list
)
70 hb_feature_t
*features
= nullptr;
71 if (copy
&& num_user_features
&& !(features
= (hb_feature_t
*) hb_calloc (num_user_features
, sizeof (hb_feature_t
))))
75 this->num_user_features
= num_user_features
;
76 this->user_features
= copy
? features
: user_features
;
77 if (copy
&& num_user_features
)
79 hb_memcpy (features
, user_features
, num_user_features
* sizeof (hb_feature_t
));
80 /* Make start/end uniform to easier catch bugs. */
81 for (unsigned int i
= 0; i
< num_user_features
; i
++)
83 if (features
[0].start
!= HB_FEATURE_GLOBAL_START
)
84 features
[0].start
= 1;
85 if (features
[0].end
!= HB_FEATURE_GLOBAL_END
)
89 this->shaper_func
= nullptr;
90 this->shaper_name
= nullptr;
91 #ifndef HB_NO_OT_SHAPE
92 this->ot
.init (face
, coords
, num_coords
);
99 #define HB_SHAPER_PLAN(shaper) \
101 if (face->data.shaper) \
103 this->shaper_func = _hb_##shaper##_shape; \
104 this->shaper_name = #shaper; \
109 if (unlikely (shaper_list
))
111 for (; *shaper_list
; shaper_list
++)
114 #define HB_SHAPER_IMPLEMENT(shaper) \
115 else if (0 == strcmp (*shaper_list, #shaper)) \
116 HB_SHAPER_PLAN (shaper);
117 #include "hb-shaper-list.hh"
118 #undef HB_SHAPER_IMPLEMENT
122 const HB_UNUSED hb_shaper_entry_t
*shapers
= _hb_shapers_get ();
123 for (unsigned int i
= 0; i
< HB_SHAPERS_COUNT
; i
++)
126 #define HB_SHAPER_IMPLEMENT(shaper) \
127 else if (shapers[i].func == _hb_##shaper##_shape) \
128 HB_SHAPER_PLAN (shaper);
129 #include "hb-shaper-list.hh"
130 #undef HB_SHAPER_IMPLEMENT
132 #undef HB_SHAPER_PLAN
135 ::hb_free (features
);
140 hb_shape_plan_key_t::user_features_match (const hb_shape_plan_key_t
*other
)
142 if (this->num_user_features
!= other
->num_user_features
)
144 for (unsigned int i
= 0; i
< num_user_features
; i
++)
146 if (this->user_features
[i
].tag
!= other
->user_features
[i
].tag
||
147 this->user_features
[i
].value
!= other
->user_features
[i
].value
||
148 (this->user_features
[i
].start
== HB_FEATURE_GLOBAL_START
&&
149 this->user_features
[i
].end
== HB_FEATURE_GLOBAL_END
) !=
150 (other
->user_features
[i
].start
== HB_FEATURE_GLOBAL_START
&&
151 other
->user_features
[i
].end
== HB_FEATURE_GLOBAL_END
))
158 hb_shape_plan_key_t::equal (const hb_shape_plan_key_t
*other
)
160 return hb_segment_properties_equal (&this->props
, &other
->props
) &&
161 this->user_features_match (other
) &&
162 #ifndef HB_NO_OT_SHAPE
163 this->ot
.equal (&other
->ot
) &&
165 this->shaper_func
== other
->shaper_func
;
175 * hb_shape_plan_create:
176 * @face: #hb_face_t to use
177 * @props: The #hb_segment_properties_t of the segment
178 * @user_features: (array length=num_user_features): The list of user-selected features
179 * @num_user_features: The number of user-selected features
180 * @shaper_list: (array zero-terminated=1): List of shapers to try
182 * Constructs a shaping plan for a combination of @face, @user_features, @props,
185 * Return value: (transfer full): The shaping plan
190 hb_shape_plan_create (hb_face_t
*face
,
191 const hb_segment_properties_t
*props
,
192 const hb_feature_t
*user_features
,
193 unsigned int num_user_features
,
194 const char * const *shaper_list
)
196 return hb_shape_plan_create2 (face
, props
,
197 user_features
, num_user_features
,
203 * hb_shape_plan_create2:
204 * @face: #hb_face_t to use
205 * @props: The #hb_segment_properties_t of the segment
206 * @user_features: (array length=num_user_features): The list of user-selected features
207 * @num_user_features: The number of user-selected features
208 * @coords: (array length=num_coords): The list of variation-space coordinates
209 * @num_coords: The number of variation-space coordinates
210 * @shaper_list: (array zero-terminated=1): List of shapers to try
212 * The variable-font version of #hb_shape_plan_create.
213 * Constructs a shaping plan for a combination of @face, @user_features, @props,
214 * and @shaper_list, plus the variation-space coordinates @coords.
216 * Return value: (transfer full): The shaping plan
221 hb_shape_plan_create2 (hb_face_t
*face
,
222 const hb_segment_properties_t
*props
,
223 const hb_feature_t
*user_features
,
224 unsigned int num_user_features
,
226 unsigned int num_coords
,
227 const char * const *shaper_list
)
229 DEBUG_MSG_FUNC (SHAPE_PLAN
, nullptr,
230 "face=%p num_features=%u num_coords=%u shaper_list=%p",
236 if (unlikely (props
->direction
== HB_DIRECTION_INVALID
))
237 return hb_shape_plan_get_empty ();
239 hb_shape_plan_t
*shape_plan
;
241 if (unlikely (!props
))
243 if (!(shape_plan
= hb_object_create
<hb_shape_plan_t
> ()))
246 if (unlikely (!face
))
247 face
= hb_face_get_empty ();
248 hb_face_make_immutable (face
);
249 shape_plan
->face_unsafe
= face
;
251 if (unlikely (!shape_plan
->key
.init (true,
260 #ifndef HB_NO_OT_SHAPE
261 if (unlikely (!shape_plan
->ot
.init0 (face
, &shape_plan
->key
)))
267 #ifndef HB_NO_OT_SHAPE
270 shape_plan
->key
.fini ();
272 hb_free (shape_plan
);
274 return hb_shape_plan_get_empty ();
278 * hb_shape_plan_get_empty:
280 * Fetches the singleton empty shaping plan.
282 * Return value: (transfer full): The empty shaping plan
287 hb_shape_plan_get_empty ()
289 return const_cast<hb_shape_plan_t
*> (&Null (hb_shape_plan_t
));
293 * hb_shape_plan_reference: (skip)
294 * @shape_plan: A shaping plan
296 * Increases the reference count on the given shaping plan.
298 * Return value: (transfer full): @shape_plan
303 hb_shape_plan_reference (hb_shape_plan_t
*shape_plan
)
305 return hb_object_reference (shape_plan
);
309 * hb_shape_plan_destroy: (skip)
310 * @shape_plan: A shaping plan
312 * Decreases the reference count on the given shaping plan. When the
313 * reference count reaches zero, the shaping plan is destroyed,
314 * freeing all memory.
319 hb_shape_plan_destroy (hb_shape_plan_t
*shape_plan
)
321 if (!hb_object_destroy (shape_plan
)) return;
323 hb_free (shape_plan
);
327 * hb_shape_plan_set_user_data: (skip)
328 * @shape_plan: A shaping plan
329 * @key: The user-data key to set
330 * @data: A pointer to the user data
331 * @destroy: (nullable): A callback to call when @data is not needed anymore
332 * @replace: Whether to replace an existing data with the same key
334 * Attaches a user-data key/data pair to the given shaping plan.
336 * Return value: `true` if success, `false` otherwise.
341 hb_shape_plan_set_user_data (hb_shape_plan_t
*shape_plan
,
342 hb_user_data_key_t
*key
,
344 hb_destroy_func_t destroy
,
347 return hb_object_set_user_data (shape_plan
, key
, data
, destroy
, replace
);
351 * hb_shape_plan_get_user_data: (skip)
352 * @shape_plan: A shaping plan
353 * @key: The user-data key to query
355 * Fetches the user data associated with the specified key,
356 * attached to the specified shaping plan.
358 * Return value: (transfer none): A pointer to the user data
363 hb_shape_plan_get_user_data (const hb_shape_plan_t
*shape_plan
,
364 hb_user_data_key_t
*key
)
366 return hb_object_get_user_data (shape_plan
, key
);
370 * hb_shape_plan_get_shaper:
371 * @shape_plan: A shaping plan
373 * Fetches the shaper from a given shaping plan.
375 * Return value: (transfer none): The shaper
380 hb_shape_plan_get_shaper (hb_shape_plan_t
*shape_plan
)
382 return shape_plan
->key
.shaper_name
;
387 _hb_shape_plan_execute_internal (hb_shape_plan_t
*shape_plan
,
390 const hb_feature_t
*features
,
391 unsigned int num_features
)
393 DEBUG_MSG_FUNC (SHAPE_PLAN
, shape_plan
,
394 "num_features=%u shaper_func=%p, shaper_name=%s",
396 shape_plan
->key
.shaper_func
,
397 shape_plan
->key
.shaper_name
);
399 if (unlikely (!buffer
->len
))
402 assert (!hb_object_is_immutable (buffer
));
404 buffer
->assert_unicode ();
406 if (unlikely (!hb_object_is_valid (shape_plan
)))
409 assert (shape_plan
->face_unsafe
== font
->face
);
410 assert (hb_segment_properties_equal (&shape_plan
->key
.props
, &buffer
->props
));
412 #define HB_SHAPER_EXECUTE(shaper) \
414 return font->data.shaper && \
415 _hb_##shaper##_shape (shape_plan, font, buffer, features, num_features); \
420 #define HB_SHAPER_IMPLEMENT(shaper) \
421 else if (shape_plan->key.shaper_func == _hb_##shaper##_shape) \
422 HB_SHAPER_EXECUTE (shaper);
423 #include "hb-shaper-list.hh"
424 #undef HB_SHAPER_IMPLEMENT
426 #undef HB_SHAPER_EXECUTE
431 * hb_shape_plan_execute:
432 * @shape_plan: A shaping plan
433 * @font: The #hb_font_t to use
434 * @buffer: The #hb_buffer_t to work upon
435 * @features: (array length=num_features): Features to enable
436 * @num_features: The number of features to enable
438 * Executes the given shaping plan on the specified buffer, using
439 * the given @font and @features.
441 * Return value: `true` if success, `false` otherwise.
446 hb_shape_plan_execute (hb_shape_plan_t
*shape_plan
,
449 const hb_feature_t
*features
,
450 unsigned int num_features
)
452 bool ret
= _hb_shape_plan_execute_internal (shape_plan
, font
, buffer
,
453 features
, num_features
);
455 if (ret
&& buffer
->content_type
== HB_BUFFER_CONTENT_TYPE_UNICODE
)
456 buffer
->content_type
= HB_BUFFER_CONTENT_TYPE_GLYPHS
;
467 * hb_shape_plan_create_cached:
468 * @face: #hb_face_t to use
469 * @props: The #hb_segment_properties_t of the segment
470 * @user_features: (array length=num_user_features): The list of user-selected features
471 * @num_user_features: The number of user-selected features
472 * @shaper_list: (array zero-terminated=1): List of shapers to try
474 * Creates a cached shaping plan suitable for reuse, for a combination
475 * of @face, @user_features, @props, and @shaper_list.
477 * Return value: (transfer full): The shaping plan
482 hb_shape_plan_create_cached (hb_face_t
*face
,
483 const hb_segment_properties_t
*props
,
484 const hb_feature_t
*user_features
,
485 unsigned int num_user_features
,
486 const char * const *shaper_list
)
488 return hb_shape_plan_create_cached2 (face
, props
,
489 user_features
, num_user_features
,
495 * hb_shape_plan_create_cached2:
496 * @face: #hb_face_t to use
497 * @props: The #hb_segment_properties_t of the segment
498 * @user_features: (array length=num_user_features): The list of user-selected features
499 * @num_user_features: The number of user-selected features
500 * @coords: (array length=num_coords): The list of variation-space coordinates
501 * @num_coords: The number of variation-space coordinates
502 * @shaper_list: (array zero-terminated=1): List of shapers to try
504 * The variable-font version of #hb_shape_plan_create_cached.
505 * Creates a cached shaping plan suitable for reuse, for a combination
506 * of @face, @user_features, @props, and @shaper_list, plus the
507 * variation-space coordinates @coords.
509 * Return value: (transfer full): The shaping plan
514 hb_shape_plan_create_cached2 (hb_face_t
*face
,
515 const hb_segment_properties_t
*props
,
516 const hb_feature_t
*user_features
,
517 unsigned int num_user_features
,
519 unsigned int num_coords
,
520 const char * const *shaper_list
)
522 DEBUG_MSG_FUNC (SHAPE_PLAN
, nullptr,
523 "face=%p num_features=%u shaper_list=%p",
529 hb_face_t::plan_node_t
*cached_plan_nodes
= face
->shape_plans
;
531 bool dont_cache
= !hb_object_is_valid (face
);
533 if (likely (!dont_cache
))
535 hb_shape_plan_key_t key
;
536 if (!key
.init (false,
544 return hb_shape_plan_get_empty ();
546 for (hb_face_t::plan_node_t
*node
= cached_plan_nodes
; node
; node
= node
->next
)
547 if (node
->shape_plan
->key
.equal (&key
))
549 DEBUG_MSG_FUNC (SHAPE_PLAN
, node
->shape_plan
, "fulfilled from cache");
550 return hb_shape_plan_reference (node
->shape_plan
);
554 hb_shape_plan_t
*shape_plan
= hb_shape_plan_create2 (face
, props
,
555 user_features
, num_user_features
,
559 if (unlikely (dont_cache
))
562 hb_face_t::plan_node_t
*node
= (hb_face_t::plan_node_t
*) hb_calloc (1, sizeof (hb_face_t::plan_node_t
));
563 if (unlikely (!node
))
566 node
->shape_plan
= shape_plan
;
567 node
->next
= cached_plan_nodes
;
569 if (unlikely (!face
->shape_plans
.cmpexch (cached_plan_nodes
, node
)))
571 hb_shape_plan_destroy (shape_plan
);
575 DEBUG_MSG_FUNC (SHAPE_PLAN
, shape_plan
, "inserted into cache");
577 return hb_shape_plan_reference (shape_plan
);