Mailbox support for texture layers.
[chromium-blink-merge.git] / third_party / harfbuzz-ng / src / hb-ot-shape.cc
blob9a6260a3035986f8e2e09f6fc681307ef38643ed
1 /*
2 * Copyright © 2009,2010 Red Hat, Inc.
3 * Copyright © 2010,2011,2012 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
17 * DAMAGE.
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 #define HB_SHAPER ot
30 #define hb_ot_shaper_face_data_t hb_ot_layout_t
31 #define hb_ot_shaper_shape_plan_data_t hb_ot_shape_plan_t
32 #include "hb-shaper-impl-private.hh"
34 #include "hb-ot-shape-private.hh"
35 #include "hb-ot-shape-complex-private.hh"
36 #include "hb-ot-shape-fallback-private.hh"
37 #include "hb-ot-shape-normalize-private.hh"
39 #include "hb-ot-layout-private.hh"
40 #include "hb-set-private.hh"
43 static hb_tag_t common_features[] = {
44 HB_TAG('c','c','m','p'),
45 HB_TAG('l','i','g','a'),
46 HB_TAG('l','o','c','l'),
47 HB_TAG('m','a','r','k'),
48 HB_TAG('m','k','m','k'),
49 HB_TAG('r','l','i','g'),
53 static hb_tag_t horizontal_features[] = {
54 HB_TAG('c','a','l','t'),
55 HB_TAG('c','l','i','g'),
56 HB_TAG('c','u','r','s'),
57 HB_TAG('k','e','r','n'),
58 HB_TAG('r','c','l','t'),
61 /* Note:
62 * Technically speaking, vrt2 and vert are mutually exclusive.
63 * According to the spec, valt and vpal are also mutually exclusive.
64 * But we apply them all for now.
66 static hb_tag_t vertical_features[] = {
67 HB_TAG('v','a','l','t'),
68 HB_TAG('v','e','r','t'),
69 HB_TAG('v','k','r','n'),
70 HB_TAG('v','p','a','l'),
71 HB_TAG('v','r','t','2'),
76 static void
77 hb_ot_shape_collect_features (hb_ot_shape_planner_t *planner,
78 const hb_segment_properties_t *props,
79 const hb_feature_t *user_features,
80 unsigned int num_user_features)
82 hb_ot_map_builder_t *map = &planner->map;
84 switch (props->direction) {
85 case HB_DIRECTION_LTR:
86 map->add_bool_feature (HB_TAG ('l','t','r','a'));
87 map->add_bool_feature (HB_TAG ('l','t','r','m'));
88 break;
89 case HB_DIRECTION_RTL:
90 map->add_bool_feature (HB_TAG ('r','t','l','a'));
91 map->add_bool_feature (HB_TAG ('r','t','l','m'), false);
92 break;
93 case HB_DIRECTION_TTB:
94 case HB_DIRECTION_BTT:
95 case HB_DIRECTION_INVALID:
96 default:
97 break;
100 #define ADD_FEATURES(array) \
101 HB_STMT_START { \
102 for (unsigned int i = 0; i < ARRAY_LENGTH (array); i++) \
103 map->add_bool_feature (array[i]); \
104 } HB_STMT_END
106 if (planner->shaper->collect_features)
107 planner->shaper->collect_features (planner);
109 ADD_FEATURES (common_features);
111 if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
112 ADD_FEATURES (horizontal_features);
113 else
114 ADD_FEATURES (vertical_features);
116 if (planner->shaper->override_features)
117 planner->shaper->override_features (planner);
119 #undef ADD_FEATURES
121 for (unsigned int i = 0; i < num_user_features; i++) {
122 const hb_feature_t *feature = &user_features[i];
123 map->add_feature (feature->tag, feature->value, (feature->start == 0 && feature->end == (unsigned int) -1));
129 * shaper face data
132 hb_ot_shaper_face_data_t *
133 _hb_ot_shaper_face_data_create (hb_face_t *face)
135 return _hb_ot_layout_create (face);
138 void
139 _hb_ot_shaper_face_data_destroy (hb_ot_shaper_face_data_t *data)
141 _hb_ot_layout_destroy (data);
146 * shaper font data
149 struct hb_ot_shaper_font_data_t {};
151 hb_ot_shaper_font_data_t *
152 _hb_ot_shaper_font_data_create (hb_font_t *font)
154 return (hb_ot_shaper_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;
157 void
158 _hb_ot_shaper_font_data_destroy (hb_ot_shaper_font_data_t *data)
164 * shaper shape_plan data
167 hb_ot_shaper_shape_plan_data_t *
168 _hb_ot_shaper_shape_plan_data_create (hb_shape_plan_t *shape_plan,
169 const hb_feature_t *user_features,
170 unsigned int num_user_features)
172 hb_ot_shape_plan_t *plan = (hb_ot_shape_plan_t *) calloc (1, sizeof (hb_ot_shape_plan_t));
173 if (unlikely (!plan))
174 return NULL;
176 hb_ot_shape_planner_t planner (shape_plan);
178 planner.shaper = hb_ot_shape_complex_categorize (&shape_plan->props);
180 hb_ot_shape_collect_features (&planner, &shape_plan->props, user_features, num_user_features);
182 planner.compile (*plan);
184 if (plan->shaper->data_create) {
185 plan->data = plan->shaper->data_create (plan);
186 if (unlikely (!plan->data))
187 return NULL;
190 return plan;
193 void
194 _hb_ot_shaper_shape_plan_data_destroy (hb_ot_shaper_shape_plan_data_t *plan)
196 if (plan->shaper->data_destroy)
197 plan->shaper->data_destroy (const_cast<void *> (plan->data));
199 plan->finish ();
201 free (plan);
206 * shaper
209 struct hb_ot_shape_context_t
211 hb_ot_shape_plan_t *plan;
212 hb_font_t *font;
213 hb_face_t *face;
214 hb_buffer_t *buffer;
215 const hb_feature_t *user_features;
216 unsigned int num_user_features;
218 /* Transient stuff */
219 hb_direction_t target_direction;
224 /* Main shaper */
227 /* Prepare */
229 static void
230 hb_set_unicode_props (hb_buffer_t *buffer)
232 unsigned int count = buffer->len;
233 for (unsigned int i = 0; i < count; i++)
234 _hb_glyph_info_set_unicode_props (&buffer->info[i], buffer->unicode);
237 static void
238 hb_insert_dotted_circle (hb_buffer_t *buffer, hb_font_t *font)
240 if (buffer->context_len[0] ||
241 _hb_glyph_info_get_general_category (&buffer->info[0]) !=
242 HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
243 return;
245 hb_codepoint_t dottedcircle_glyph;
246 if (!font->get_glyph (0x25CC, 0, &dottedcircle_glyph))
247 return;
249 hb_glyph_info_t dottedcircle;
250 dottedcircle.codepoint = 0x25CC;
251 _hb_glyph_info_set_unicode_props (&dottedcircle, buffer->unicode);
253 buffer->clear_output ();
255 buffer->idx = 0;
256 hb_glyph_info_t info = dottedcircle;
257 info.cluster = buffer->cur().cluster;
258 info.mask = buffer->cur().mask;
259 buffer->output_info (info);
260 while (buffer->idx < buffer->len)
261 buffer->next_glyph ();
263 buffer->swap_buffers ();
266 static void
267 hb_form_clusters (hb_buffer_t *buffer)
269 unsigned int count = buffer->len;
270 for (unsigned int i = 1; i < count; i++)
271 if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->info[i])))
272 buffer->merge_clusters (i - 1, i + 1);
275 static void
276 hb_ensure_native_direction (hb_buffer_t *buffer)
278 hb_direction_t direction = buffer->props.direction;
280 /* TODO vertical:
281 * The only BTT vertical script is Ogham, but it's not clear to me whether OpenType
282 * Ogham fonts are supposed to be implemented BTT or not. Need to research that
283 * first. */
284 if ((HB_DIRECTION_IS_HORIZONTAL (direction) && direction != hb_script_get_horizontal_direction (buffer->props.script)) ||
285 (HB_DIRECTION_IS_VERTICAL (direction) && direction != HB_DIRECTION_TTB))
287 hb_buffer_reverse_clusters (buffer);
288 buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
293 /* Substitute */
295 static inline void
296 hb_ot_mirror_chars (hb_ot_shape_context_t *c)
298 if (HB_DIRECTION_IS_FORWARD (c->target_direction))
299 return;
301 hb_unicode_funcs_t *unicode = c->buffer->unicode;
302 hb_mask_t rtlm_mask = c->plan->map.get_1_mask (HB_TAG ('r','t','l','m'));
304 unsigned int count = c->buffer->len;
305 for (unsigned int i = 0; i < count; i++) {
306 hb_codepoint_t codepoint = unicode->mirroring (c->buffer->info[i].codepoint);
307 if (likely (codepoint == c->buffer->info[i].codepoint))
308 c->buffer->info[i].mask |= rtlm_mask;
309 else
310 c->buffer->info[i].codepoint = codepoint;
314 static inline void
315 hb_ot_shape_setup_masks (hb_ot_shape_context_t *c)
317 hb_ot_map_t *map = &c->plan->map;
319 hb_mask_t global_mask = map->get_global_mask ();
320 c->buffer->reset_masks (global_mask);
322 if (c->plan->shaper->setup_masks)
323 c->plan->shaper->setup_masks (c->plan, c->buffer, c->font);
325 for (unsigned int i = 0; i < c->num_user_features; i++)
327 const hb_feature_t *feature = &c->user_features[i];
328 if (!(feature->start == 0 && feature->end == (unsigned int)-1)) {
329 unsigned int shift;
330 hb_mask_t mask = map->get_mask (feature->tag, &shift);
331 c->buffer->set_masks (feature->value << shift, mask, feature->start, feature->end);
336 static inline void
337 hb_ot_map_glyphs_fast (hb_buffer_t *buffer)
339 /* Normalization process sets up glyph_index(), we just copy it. */
340 unsigned int count = buffer->len;
341 for (unsigned int i = 0; i < count; i++)
342 buffer->info[i].codepoint = buffer->info[i].glyph_index();
345 static inline void
346 hb_synthesize_glyph_classes (hb_ot_shape_context_t *c)
348 unsigned int count = c->buffer->len;
349 for (unsigned int i = 0; i < count; i++)
350 c->buffer->info[i].glyph_props() = _hb_glyph_info_get_general_category (&c->buffer->info[i]) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK ?
351 HB_OT_LAYOUT_GLYPH_CLASS_MARK :
352 HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH;
355 static inline void
356 hb_ot_substitute_default (hb_ot_shape_context_t *c)
358 if (c->plan->shaper->preprocess_text)
359 c->plan->shaper->preprocess_text (c->plan, c->buffer, c->font);
361 hb_ot_mirror_chars (c);
363 HB_BUFFER_ALLOCATE_VAR (c->buffer, glyph_index);
365 _hb_ot_shape_normalize (c->font, c->buffer,
366 c->plan->shaper->normalization_preference ?
367 c->plan->shaper->normalization_preference (c->plan) :
368 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT);
370 hb_ot_shape_setup_masks (c);
372 /* This is unfortunate to go here, but necessary... */
373 if (!hb_ot_layout_has_positioning (c->face))
374 _hb_ot_shape_fallback_position_recategorize_marks (c->plan, c->font, c->buffer);
376 hb_ot_map_glyphs_fast (c->buffer);
378 HB_BUFFER_DEALLOCATE_VAR (c->buffer, glyph_index);
381 static inline void
382 hb_ot_substitute_complex (hb_ot_shape_context_t *c)
384 hb_ot_layout_substitute_start (c->font, c->buffer);
386 if (!hb_ot_layout_has_glyph_classes (c->face))
387 hb_synthesize_glyph_classes (c);
389 c->plan->substitute (c->font, c->buffer);
391 hb_ot_layout_substitute_finish (c->font, c->buffer);
393 return;
396 static inline void
397 hb_ot_substitute (hb_ot_shape_context_t *c)
399 hb_ot_substitute_default (c);
400 hb_ot_substitute_complex (c);
403 /* Position */
405 static inline void
406 hb_ot_position_default (hb_ot_shape_context_t *c)
408 hb_ot_layout_position_start (c->font, c->buffer);
410 unsigned int count = c->buffer->len;
411 for (unsigned int i = 0; i < count; i++) {
412 c->font->get_glyph_advance_for_direction (c->buffer->info[i].codepoint,
413 c->buffer->props.direction,
414 &c->buffer->pos[i].x_advance,
415 &c->buffer->pos[i].y_advance);
416 c->font->subtract_glyph_origin_for_direction (c->buffer->info[i].codepoint,
417 c->buffer->props.direction,
418 &c->buffer->pos[i].x_offset,
419 &c->buffer->pos[i].y_offset);
423 static inline bool
424 hb_ot_position_complex (hb_ot_shape_context_t *c)
426 bool ret = false;
428 if (hb_ot_layout_has_positioning (c->face))
430 /* Change glyph origin to what GPOS expects, apply GPOS, change it back. */
432 unsigned int count = c->buffer->len;
433 for (unsigned int i = 0; i < count; i++) {
434 c->font->add_glyph_origin_for_direction (c->buffer->info[i].codepoint,
435 HB_DIRECTION_LTR,
436 &c->buffer->pos[i].x_offset,
437 &c->buffer->pos[i].y_offset);
440 c->plan->position (c->font, c->buffer);
442 for (unsigned int i = 0; i < count; i++) {
443 c->font->subtract_glyph_origin_for_direction (c->buffer->info[i].codepoint,
444 HB_DIRECTION_LTR,
445 &c->buffer->pos[i].x_offset,
446 &c->buffer->pos[i].y_offset);
449 ret = true;
452 hb_ot_layout_position_finish (c->font, c->buffer, c->plan->shaper->zero_width_attached_marks);
454 return ret;
457 static inline void
458 hb_ot_position_complex_fallback (hb_ot_shape_context_t *c)
460 _hb_ot_shape_fallback_position (c->plan, c->font, c->buffer);
463 static inline void
464 hb_ot_truetype_kern (hb_ot_shape_context_t *c)
466 /* TODO Check for kern=0 */
467 unsigned int count = c->buffer->len;
468 for (unsigned int i = 1; i < count; i++) {
469 hb_position_t x_kern, y_kern, kern1, kern2;
470 c->font->get_glyph_kerning_for_direction (c->buffer->info[i - 1].codepoint, c->buffer->info[i].codepoint,
471 c->buffer->props.direction,
472 &x_kern, &y_kern);
474 kern1 = x_kern >> 1;
475 kern2 = x_kern - kern1;
476 c->buffer->pos[i - 1].x_advance += kern1;
477 c->buffer->pos[i].x_advance += kern2;
478 c->buffer->pos[i].x_offset += kern2;
480 kern1 = y_kern >> 1;
481 kern2 = y_kern - kern1;
482 c->buffer->pos[i - 1].y_advance += kern1;
483 c->buffer->pos[i].y_advance += kern2;
484 c->buffer->pos[i].y_offset += kern2;
488 static inline void
489 hb_position_complex_fallback_visual (hb_ot_shape_context_t *c)
491 hb_ot_truetype_kern (c);
494 static inline void
495 hb_ot_position (hb_ot_shape_context_t *c)
497 hb_ot_position_default (c);
499 hb_bool_t fallback = !hb_ot_position_complex (c);
501 if (fallback)
502 hb_ot_position_complex_fallback (c);
504 if (HB_DIRECTION_IS_BACKWARD (c->buffer->props.direction))
505 hb_buffer_reverse (c->buffer);
507 if (fallback)
508 hb_position_complex_fallback_visual (c);
512 /* Post-process */
514 static void
515 hb_ot_hide_zerowidth (hb_ot_shape_context_t *c)
517 hb_codepoint_t space = 0;
519 unsigned int count = c->buffer->len;
520 for (unsigned int i = 0; i < count; i++)
521 if (unlikely (!is_a_ligature (c->buffer->info[i]) &&
522 _hb_glyph_info_is_default_ignorable (&c->buffer->info[i])))
524 if (!space) {
525 /* We assume that the space glyph is not gid0. */
526 if (unlikely (!c->font->get_glyph (' ', 0, &space)) || !space)
527 return; /* No point! */
529 c->buffer->info[i].codepoint = space;
530 c->buffer->pos[i].x_advance = 0;
531 c->buffer->pos[i].y_advance = 0;
536 /* Pull it all together! */
538 static void
539 hb_ot_shape_internal (hb_ot_shape_context_t *c)
541 c->buffer->deallocate_var_all ();
543 /* Save the original direction, we use it later. */
544 c->target_direction = c->buffer->props.direction;
546 HB_BUFFER_ALLOCATE_VAR (c->buffer, unicode_props0);
547 HB_BUFFER_ALLOCATE_VAR (c->buffer, unicode_props1);
549 c->buffer->clear_output ();
551 hb_set_unicode_props (c->buffer);
552 hb_insert_dotted_circle (c->buffer, c->font);
553 hb_form_clusters (c->buffer);
555 hb_ensure_native_direction (c->buffer);
557 hb_ot_substitute (c);
558 hb_ot_position (c);
560 hb_ot_hide_zerowidth (c);
562 HB_BUFFER_DEALLOCATE_VAR (c->buffer, unicode_props1);
563 HB_BUFFER_DEALLOCATE_VAR (c->buffer, unicode_props0);
565 c->buffer->props.direction = c->target_direction;
567 c->buffer->deallocate_var_all ();
571 hb_bool_t
572 _hb_ot_shape (hb_shape_plan_t *shape_plan,
573 hb_font_t *font,
574 hb_buffer_t *buffer,
575 const hb_feature_t *features,
576 unsigned int num_features)
578 hb_ot_shape_context_t c = {HB_SHAPER_DATA_GET (shape_plan), font, font->face, buffer, features, num_features};
579 hb_ot_shape_internal (&c);
581 return true;
586 static inline void
587 hb_ot_map_glyphs_dumb (hb_font_t *font,
588 hb_buffer_t *buffer)
590 unsigned int count = buffer->len;
591 for (unsigned int i = 0; i < count; i++)
592 font->get_glyph (buffer->info[i].codepoint, 0, &buffer->info[i].codepoint);
595 void
596 hb_ot_shape_glyphs_closure (hb_font_t *font,
597 hb_buffer_t *buffer,
598 const hb_feature_t *features,
599 unsigned int num_features,
600 hb_set_t *glyphs)
602 hb_ot_shape_plan_t plan;
604 buffer->guess_properties ();
606 /* TODO cache / ensure correct backend, etc. */
607 hb_shape_plan_t *shape_plan = hb_shape_plan_create (font->face, &buffer->props, features, num_features, NULL);
609 /* TODO: normalization? have shapers do closure()? */
610 /* TODO: Deal with mirrored chars? */
611 hb_ot_map_glyphs_dumb (font, buffer);
613 /* Seed it. It's user's responsibility to have cleard glyphs
614 * if that's what they desire. */
615 unsigned int count = buffer->len;
616 for (unsigned int i = 0; i < count; i++)
617 glyphs->add (buffer->info[i].codepoint);
619 /* And find transitive closure. */
620 hb_set_t copy;
621 copy.init ();
623 do {
624 copy.set (glyphs);
625 HB_SHAPER_DATA_GET (shape_plan)->substitute_closure (font->face, glyphs);
626 } while (!copy.equal (glyphs));
628 hb_shape_plan_destroy (shape_plan);