hb-ot-shape.cc 26.9 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2009,2010  Red Hat, Inc.
B
Minor  
Behdad Esfahbod 已提交
3
 * Copyright © 2010,2011,2012  Google, Inc.
B
Behdad Esfahbod 已提交
4
 *
B
Behdad Esfahbod 已提交
5
 *  This is part of HarfBuzz, a text shaping library.
B
Behdad Esfahbod 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
B
Rename  
Behdad Esfahbod 已提交
26
 * Google Author(s): Behdad Esfahbod
B
Behdad Esfahbod 已提交
27 28
 */

29
#define HB_SHAPER ot
B
Rename  
Behdad Esfahbod 已提交
30
#define hb_ot_shape_plan_data_t hb_ot_shape_plan_t
31
#include "hb-shaper-impl.hh"
32

33 34 35 36
#include "hb-ot-shape.hh"
#include "hb-ot-shape-complex.hh"
#include "hb-ot-shape-fallback.hh"
#include "hb-ot-shape-normalize.hh"
B
Behdad Esfahbod 已提交
37

38
#include "hb-ot-face.hh"
39 40 41
#include "hb-ot-layout.hh"
#include "hb-unicode.hh"
#include "hb-set.hh"
42

43 44
#include "hb-ot-layout-gsubgpos.hh"
#include "hb-aat-layout.hh"
B
Behdad Esfahbod 已提交
45

B
Behdad Esfahbod 已提交
46
static hb_tag_t common_features[] = {
B
Behdad Esfahbod 已提交
47
  HB_TAG('c','c','m','p'),
48 49 50 51 52 53
  HB_TAG('l','o','c','l'),
  HB_TAG('m','a','r','k'),
  HB_TAG('m','k','m','k'),
  HB_TAG('r','l','i','g'),
};

54

B
Behdad Esfahbod 已提交
55
static hb_tag_t horizontal_features[] = {
56
  HB_TAG('c','a','l','t'),
B
Behdad Esfahbod 已提交
57
  HB_TAG('c','l','i','g'),
58
  HB_TAG('c','u','r','s'),
B
Behdad Esfahbod 已提交
59
  HB_TAG('k','e','r','n'),
60
  HB_TAG('l','i','g','a'),
61
  HB_TAG('r','c','l','t'),
62 63
};

B
Behdad Esfahbod 已提交
64 65


B
Behdad Esfahbod 已提交
66
static void
67
hb_ot_shape_collect_features (hb_ot_shape_planner_t          *planner,
68
			      const hb_segment_properties_t  *props,
69 70
			      const hb_feature_t             *user_features,
			      unsigned int                    num_user_features)
B
Behdad Esfahbod 已提交
71
{
72 73
  hb_ot_map_builder_t *map = &planner->map;

B
Behdad Esfahbod 已提交
74
  map->enable_feature (HB_TAG('r','v','r','n'));
B
Behdad Esfahbod 已提交
75
  map->add_gsub_pause (nullptr);
76

77
  switch (props->direction) {
B
Behdad Esfahbod 已提交
78
    case HB_DIRECTION_LTR:
B
Behdad Esfahbod 已提交
79 80
      map->enable_feature (HB_TAG ('l','t','r','a'));
      map->enable_feature (HB_TAG ('l','t','r','m'));
B
Behdad Esfahbod 已提交
81 82
      break;
    case HB_DIRECTION_RTL:
B
Behdad Esfahbod 已提交
83 84
      map->enable_feature (HB_TAG ('r','t','l','a'));
      map->add_feature (HB_TAG ('r','t','l','m'));
B
Behdad Esfahbod 已提交
85 86 87
      break;
    case HB_DIRECTION_TTB:
    case HB_DIRECTION_BTT:
88
    case HB_DIRECTION_INVALID:
B
Behdad Esfahbod 已提交
89 90 91 92
    default:
      break;
  }

93
  /* Automatic fractions. */
B
Behdad Esfahbod 已提交
94 95 96
  map->add_feature (HB_TAG ('f','r','a','c'));
  map->add_feature (HB_TAG ('n','u','m','r'));
  map->add_feature (HB_TAG ('d','n','o','m'));
97

98
  /* Random! */
B
Behdad Esfahbod 已提交
99
  map->add_feature (HB_TAG ('r','a','n','d'), F_GLOBAL | F_RANDOM, HB_OT_MAP_MAX_VALUE);
100

101
  if (planner->shaper->collect_features)
102
    planner->shaper->collect_features (planner);
B
Behdad Esfahbod 已提交
103

B
Behdad Esfahbod 已提交
104
  for (unsigned int i = 0; i < ARRAY_LENGTH (common_features); i++)
B
Behdad Esfahbod 已提交
105
    map->enable_feature (common_features[i]);
106 107

  if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
B
Behdad Esfahbod 已提交
108
    for (unsigned int i = 0; i < ARRAY_LENGTH (horizontal_features); i++)
B
Behdad Esfahbod 已提交
109
      map->add_feature (horizontal_features[i], F_GLOBAL |
110 111
			(horizontal_features[i] == HB_TAG('k','e','r','n') ?
			 F_HAS_FALLBACK : F_NONE));
112
  else
B
Behdad Esfahbod 已提交
113
  {
114 115 116
    /* We really want to find a 'vert' feature if there's any in the font, no
     * matter which script/langsys it is listed (or not) under.
     * See various bugs referenced from:
117
     * https://github.com/harfbuzz/harfbuzz/issues/63 */
B
Behdad Esfahbod 已提交
118
    map->add_feature (HB_TAG ('v','e','r','t'), F_GLOBAL | F_GLOBAL_SEARCH);
B
Behdad Esfahbod 已提交
119
  }
120

121
  if (planner->shaper->override_features)
122
    planner->shaper->override_features (planner);
123

124 125
  for (unsigned int i = 0; i < num_user_features; i++)
  {
126
    const hb_feature_t *feature = &user_features[i];
B
Behdad Esfahbod 已提交
127 128 129
    map->add_feature (feature->tag,
		      (feature->start == 0 && feature->end == (unsigned int) -1) ?  F_GLOBAL : F_NONE,
		      feature->value);
B
Behdad Esfahbod 已提交
130
  }
131 132 133
}


134 135 136 137
/*
 * shaper face data
 */

B
Behdad Esfahbod 已提交
138 139
HB_SHAPER_DATA_ENSURE_DEFINE(ot, face)

B
Rename  
Behdad Esfahbod 已提交
140
hb_ot_face_data_t *
141 142
_hb_ot_shaper_face_data_create (hb_face_t *face)
{
143
  return _hb_ot_face_data_create (face);
144 145 146
}

void
B
Rename  
Behdad Esfahbod 已提交
147
_hb_ot_shaper_face_data_destroy (hb_ot_face_data_t *data)
148
{
149
  _hb_ot_face_data_destroy (data);
150 151 152 153 154 155 156
}


/*
 * shaper font data
 */

B
Behdad Esfahbod 已提交
157 158
HB_SHAPER_DATA_ENSURE_DEFINE(ot, font)

B
Rename  
Behdad Esfahbod 已提交
159
struct hb_ot_font_data_t {};
160

B
Rename  
Behdad Esfahbod 已提交
161
hb_ot_font_data_t *
B
Minor  
Behdad Esfahbod 已提交
162
_hb_ot_shaper_font_data_create (hb_font_t *font HB_UNUSED)
163
{
B
Rename  
Behdad Esfahbod 已提交
164
  return (hb_ot_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;
165 166 167
}

void
B
Rename  
Behdad Esfahbod 已提交
168
_hb_ot_shaper_font_data_destroy (hb_ot_font_data_t *data)
169 170 171 172 173 174 175 176
{
}


/*
 * shaper shape_plan data
 */

B
Rename  
Behdad Esfahbod 已提交
177
hb_ot_shape_plan_data_t *
178 179
_hb_ot_shaper_shape_plan_data_create (hb_shape_plan_t    *shape_plan,
				      const hb_feature_t *user_features,
B
Behdad Esfahbod 已提交
180 181 182
				      unsigned int        num_user_features,
				      const int          *coords,
				      unsigned int        num_coords)
183
{
184 185
  hb_ot_shape_plan_t *plan = (hb_ot_shape_plan_t *) calloc (1, sizeof (hb_ot_shape_plan_t));
  if (unlikely (!plan))
B
Behdad Esfahbod 已提交
186
    return nullptr;
187

188 189
  plan->init ();

B
Behdad Esfahbod 已提交
190
  hb_ot_shape_planner_t planner (shape_plan);
191

192
  planner.shaper = hb_ot_shape_complex_categorize (&planner);
193

B
Behdad Esfahbod 已提交
194 195
  hb_ot_shape_collect_features (&planner, &shape_plan->props,
				user_features, num_user_features);
196

B
Behdad Esfahbod 已提交
197
  planner.compile (*plan, coords, num_coords);
198

199 200
  if (plan->shaper->data_create) {
    plan->data = plan->shaper->data_create (plan);
B
Minor  
Behdad Esfahbod 已提交
201 202 203
    if (unlikely (!plan->data))
    {
      free (plan);
B
Behdad Esfahbod 已提交
204
      return nullptr;
P
prrace 已提交
205
    }
206 207 208
  }

  return plan;
209 210 211
}

void
B
Rename  
Behdad Esfahbod 已提交
212
_hb_ot_shaper_shape_plan_data_destroy (hb_ot_shape_plan_data_t *plan)
213
{
214 215 216
  if (plan->shaper->data_destroy)
    plan->shaper->data_destroy (const_cast<void *> (plan->data));

B
Behdad Esfahbod 已提交
217
  plan->fini ();
B
Behdad Esfahbod 已提交
218

219
  free (plan);
220 221 222 223 224 225 226
}


/*
 * shaper
 */

B
Behdad Esfahbod 已提交
227 228 229 230 231 232 233 234 235 236
struct hb_ot_shape_context_t
{
  hb_ot_shape_plan_t *plan;
  hb_font_t *font;
  hb_face_t *face;
  hb_buffer_t  *buffer;
  const hb_feature_t *user_features;
  unsigned int        num_user_features;

  /* Transient stuff */
237 238
  bool fallback_positioning;
  bool fallback_glyph_classes;
B
Behdad Esfahbod 已提交
239 240 241
  hb_direction_t target_direction;
};

B
Behdad Esfahbod 已提交
242 243


244 245
/* Main shaper */

246

247 248
/* Prepare */

B
Behdad Esfahbod 已提交
249 250
static void
hb_set_unicode_props (hb_buffer_t *buffer)
251
{
252
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
253
  hb_glyph_info_t *info = buffer->info;
254
  for (unsigned int i = 0; i < count; i++)
255
    _hb_glyph_info_set_unicode_props (&info[i], buffer);
256 257
}

258 259 260
static void
hb_insert_dotted_circle (hb_buffer_t *buffer, hb_font_t *font)
{
B
Behdad Esfahbod 已提交
261
  if (!(buffer->flags & HB_BUFFER_FLAG_BOT) ||
262
      buffer->context_len[0] ||
263
      _hb_glyph_info_get_general_category (&buffer->info[0]) !=
264 265 266
      HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
    return;

267
  if (!font->has_glyph (0x25CCu))
268 269
    return;

B
Minor  
Behdad Esfahbod 已提交
270
  hb_glyph_info_t dottedcircle = {0};
271
  dottedcircle.codepoint = 0x25CCu;
272
  _hb_glyph_info_set_unicode_props (&dottedcircle, buffer);
273 274 275 276 277 278 279 280

  buffer->clear_output ();

  buffer->idx = 0;
  hb_glyph_info_t info = dottedcircle;
  info.cluster = buffer->cur().cluster;
  info.mask = buffer->cur().mask;
  buffer->output_info (info);
B
Behdad Esfahbod 已提交
281
  while (buffer->idx < buffer->len && buffer->successful)
282 283 284 285 286
    buffer->next_glyph ();

  buffer->swap_buffers ();
}

287
static void
288
hb_form_clusters (hb_buffer_t *buffer)
289
{
290
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII))
291 292
    return;

293
  /* Loop duplicated in hb_ensure_native_direction(), and in _hb-coretext.cc */
B
Behdad Esfahbod 已提交
294
  unsigned int base = 0;
295
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
296
  hb_glyph_info_t *info = buffer->info;
297
  for (unsigned int i = 1; i < count; i++)
B
Behdad Esfahbod 已提交
298
  {
299 300
    if (likely (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&info[i])) &&
		!_hb_glyph_info_is_joiner (&info[i])))
B
Behdad Esfahbod 已提交
301
    {
302 303 304 305
      if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES)
	buffer->merge_clusters (base, i);
      else
	buffer->unsafe_to_break (base, i);
B
Behdad Esfahbod 已提交
306 307 308
      base = i;
    }
  }
309 310 311 312
  if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES)
    buffer->merge_clusters (base, count);
  else
    buffer->unsafe_to_break (base, count);
313 314
}

315
static void
316
hb_ensure_native_direction (hb_buffer_t *buffer)
317
{
318
  hb_direction_t direction = buffer->props.direction;
319
  hb_direction_t horiz_dir = hb_script_get_horizontal_direction (buffer->props.script);
320

B
Behdad Esfahbod 已提交
321 322 323 324
  /* TODO vertical:
   * The only BTT vertical script is Ogham, but it's not clear to me whether OpenType
   * Ogham fonts are supposed to be implemented BTT or not.  Need to research that
   * first. */
325 326 327 328
  if ((HB_DIRECTION_IS_HORIZONTAL (direction) &&
       direction != horiz_dir && horiz_dir != HB_DIRECTION_INVALID) ||
      (HB_DIRECTION_IS_VERTICAL   (direction) &&
       direction != HB_DIRECTION_TTB))
329
  {
330 331 332 333 334 335 336 337 338
    /* Same loop as hb_form_clusters().
     * Since form_clusters() merged clusters already, we don't merge. */
    unsigned int base = 0;
    unsigned int count = buffer->len;
    hb_glyph_info_t *info = buffer->info;
    for (unsigned int i = 1; i < count; i++)
    {
      if (likely (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&info[i]))))
      {
339 340
	if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS)
	  buffer->merge_clusters (base, i);
B
Behdad Esfahbod 已提交
341 342
	buffer->reverse_range (base, i);

343 344 345
	base = i;
      }
    }
346 347
    if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS)
      buffer->merge_clusters (base, count);
B
Behdad Esfahbod 已提交
348
    buffer->reverse_range (base, count);
349 350 351

    buffer->reverse ();

352
    buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
353 354 355 356 357 358
  }
}


/* Substitute */

359 360
static inline void
hb_ot_mirror_chars (hb_ot_shape_context_t *c)
361
{
362
  if (HB_DIRECTION_IS_FORWARD (c->target_direction))
363 364
    return;

B
Behdad Esfahbod 已提交
365 366
  hb_buffer_t *buffer = c->buffer;
  hb_unicode_funcs_t *unicode = buffer->unicode;
367
  hb_mask_t rtlm_mask = c->plan->rtlm_mask;
368

B
Behdad Esfahbod 已提交
369 370
  unsigned int count = buffer->len;
  hb_glyph_info_t *info = buffer->info;
371
  for (unsigned int i = 0; i < count; i++) {
B
Behdad Esfahbod 已提交
372
    hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint);
373
    if (likely (codepoint == info[i].codepoint || !c->font->has_glyph (codepoint)))
B
Behdad Esfahbod 已提交
374
      info[i].mask |= rtlm_mask;
B
Behdad Esfahbod 已提交
375
    else
B
Behdad Esfahbod 已提交
376
      info[i].codepoint = codepoint;
377 378 379
  }
}

380 381 382
static inline void
hb_ot_shape_setup_masks_fraction (hb_ot_shape_context_t *c)
{
383 384
  if (!(c->buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII) ||
      !c->plan->has_frac)
385 386
    return;

387 388
  hb_buffer_t *buffer = c->buffer;

389 390 391 392 393 394 395 396 397 398 399 400
  hb_mask_t pre_mask, post_mask;
  if (HB_DIRECTION_IS_FORWARD (buffer->props.direction))
  {
    pre_mask = c->plan->numr_mask | c->plan->frac_mask;
    post_mask = c->plan->frac_mask | c->plan->dnom_mask;
  }
  else
  {
    pre_mask = c->plan->frac_mask | c->plan->dnom_mask;
    post_mask = c->plan->numr_mask | c->plan->frac_mask;
  }

401 402 403 404
  unsigned int count = buffer->len;
  hb_glyph_info_t *info = buffer->info;
  for (unsigned int i = 0; i < count; i++)
  {
405
    if (info[i].codepoint == 0x2044u) /* FRACTION SLASH */
406 407 408 409 410 411 412 413 414 415 416
    {
      unsigned int start = i, end = i + 1;
      while (start &&
	     _hb_glyph_info_get_general_category (&info[start - 1]) ==
	     HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER)
        start--;
      while (end < count &&
	     _hb_glyph_info_get_general_category (&info[end]) ==
	     HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER)
        end++;

417 418
      buffer->unsafe_to_break (start, end);

419
      for (unsigned int j = start; j < i; j++)
420
        info[j].mask |= pre_mask;
421
      info[i].mask |= c->plan->frac_mask;
422
      for (unsigned int j = i + 1; j < end; j++)
423
        info[j].mask |= post_mask;
424 425 426 427 428 429

      i = end - 1;
    }
  }
}

430
static inline void
431
hb_ot_shape_initialize_masks (hb_ot_shape_context_t *c)
432 433
{
  hb_ot_map_t *map = &c->plan->map;
B
Behdad Esfahbod 已提交
434
  hb_buffer_t *buffer = c->buffer;
435 436

  hb_mask_t global_mask = map->get_global_mask ();
B
Behdad Esfahbod 已提交
437
  buffer->reset_masks (global_mask);
438 439 440 441 442 443 444
}

static inline void
hb_ot_shape_setup_masks (hb_ot_shape_context_t *c)
{
  hb_ot_map_t *map = &c->plan->map;
  hb_buffer_t *buffer = c->buffer;
445

446 447
  hb_ot_shape_setup_masks_fraction (c);

448
  if (c->plan->shaper->setup_masks)
B
Behdad Esfahbod 已提交
449
    c->plan->shaper->setup_masks (c->plan, buffer, c->font);
450 451 452 453 454 455 456

  for (unsigned int i = 0; i < c->num_user_features; i++)
  {
    const hb_feature_t *feature = &c->user_features[i];
    if (!(feature->start == 0 && feature->end == (unsigned int)-1)) {
      unsigned int shift;
      hb_mask_t mask = map->get_mask (feature->tag, &shift);
B
Behdad Esfahbod 已提交
457
      buffer->set_masks (feature->value << shift, mask, feature->start, feature->end);
458 459 460 461
    }
  }
}

462 463 464 465 466
static void
hb_ot_zero_width_default_ignorables (hb_ot_shape_context_t *c)
{
  hb_buffer_t *buffer = c->buffer;

467
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES) ||
468 469
      (buffer->flags & HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES) ||
      (buffer->flags & HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES))
470 471 472 473 474 475 476 477 478 479
    return;

  unsigned int count = buffer->len;
  hb_glyph_info_t *info = buffer->info;
  hb_glyph_position_t *pos = buffer->pos;
  unsigned int i = 0;
  for (i = 0; i < count; i++)
    if (unlikely (_hb_glyph_info_is_default_ignorable (&info[i])))
      pos[i].x_advance = pos[i].y_advance = pos[i].x_offset = pos[i].y_offset = 0;
}
480 481 482 483 484 485

static void
hb_ot_hide_default_ignorables (hb_ot_shape_context_t *c)
{
  hb_buffer_t *buffer = c->buffer;

486 487
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES) ||
      (buffer->flags & HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES))
488 489 490 491 492 493 494 495
    return;

  unsigned int count = buffer->len;
  hb_glyph_info_t *info = buffer->info;
  hb_glyph_position_t *pos = buffer->pos;
  unsigned int i = 0;
  for (i = 0; i < count; i++)
  {
496
    if (unlikely (_hb_glyph_info_is_default_ignorable (&info[i])))
497 498 499 500 501 502 503 504
      break;
  }

  /* No default-ignorables found; return. */
  if (i == count)
    return;

  hb_codepoint_t space;
505 506
  if (!(buffer->flags & HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES) &&
      c->font->get_nominal_glyph (' ', &space))
507 508 509 510
  {
    /* Replace default-ignorables with a zero-advance space glyph. */
    for (/*continue*/; i < count; i++)
    {
511
      if (_hb_glyph_info_is_default_ignorable (&info[i]))
512 513 514 515 516
	info[i].codepoint = space;
    }
  }
  else
  {
517 518 519 520
    /* Merge clusters and delete default-ignorables.
     * NOTE! We can't use out-buffer as we have positioning data. */
    unsigned int j = i;
    for (; i < count; i++)
521
    {
522
      if (_hb_glyph_info_is_default_ignorable (&info[i]))
523
      {
524 525 526 527 528 529 530 531 532 533 534 535
	/* Merge clusters.
	 * Same logic as buffer->delete_glyph(), but for in-place removal. */

	unsigned int cluster = info[i].cluster;
	if (i + 1 < count && cluster == info[i + 1].cluster)
	  continue; /* Cluster survives; do nothing. */

	if (j)
	{
	  /* Merge cluster backward. */
	  if (cluster < info[j - 1].cluster)
	  {
536
	    unsigned int mask = info[i].mask;
537 538
	    unsigned int old_cluster = info[j - 1].cluster;
	    for (unsigned k = j; k && info[k - 1].cluster == old_cluster; k--)
539
	      buffer->set_cluster (info[k - 1], cluster, mask);
540 541 542 543 544 545 546
	  }
	  continue;
	}

	if (i + 1 < count)
	  buffer->merge_clusters (i, i + 2); /* Merge cluster forward. */

547 548
	continue;
      }
549 550 551 552 553 554 555

      if (j != i)
      {
	info[j] = info[i];
	pos[j] = pos[i];
      }
      j++;
556
    }
557
    buffer->len = j;
558 559 560 561
  }
}


562
static inline void
563
hb_ot_map_glyphs_fast (hb_buffer_t  *buffer)
564
{
565 566
  /* Normalization process sets up glyph_index(), we just copy it. */
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
567
  hb_glyph_info_t *info = buffer->info;
568
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
569
    info[i].codepoint = info[i].glyph_index();
570 571

  buffer->content_type = HB_BUFFER_CONTENT_TYPE_GLYPHS;
572 573
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
static inline void
hb_synthesize_glyph_classes (hb_ot_shape_context_t *c)
{
  unsigned int count = c->buffer->len;
  hb_glyph_info_t *info = c->buffer->info;
  for (unsigned int i = 0; i < count; i++)
  {
    hb_ot_layout_glyph_props_flags_t klass;

    /* Never mark default-ignorables as marks.
     * They won't get in the way of lookups anyway,
     * but having them as mark will cause them to be skipped
     * over if the lookup-flag says so, but at least for the
     * Mongolian variation selectors, looks like Uniscribe
     * marks them as non-mark.  Some Mongolian fonts without
     * GDEF rely on this.  Another notable character that
     * this applies to is COMBINING GRAPHEME JOINER. */
    klass = (_hb_glyph_info_get_general_category (&info[i]) !=
	     HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK ||
	     _hb_glyph_info_is_default_ignorable (&info[i])) ?
	    HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH :
	    HB_OT_LAYOUT_GLYPH_PROPS_MARK;
    _hb_glyph_info_set_glyph_props (&info[i], klass);
  }
}

600 601
static inline void
hb_ot_substitute_default (hb_ot_shape_context_t *c)
602
{
B
Behdad Esfahbod 已提交
603 604
  hb_buffer_t *buffer = c->buffer;

605 606
  hb_ot_mirror_chars (c);

B
Behdad Esfahbod 已提交
607
  HB_BUFFER_ALLOCATE_VAR (buffer, glyph_index);
608

B
Behdad Esfahbod 已提交
609
  _hb_ot_shape_normalize (c->plan, buffer, c->font);
610 611

  hb_ot_shape_setup_masks (c);
612

B
Behdad Esfahbod 已提交
613
  /* This is unfortunate to go here, but necessary... */
614
  if (c->fallback_positioning)
B
Behdad Esfahbod 已提交
615
    _hb_ot_shape_fallback_position_recategorize_marks (c->plan, c->font, buffer);
B
Behdad Esfahbod 已提交
616

B
Behdad Esfahbod 已提交
617
  hb_ot_map_glyphs_fast (buffer);
618

B
Behdad Esfahbod 已提交
619
  HB_BUFFER_DEALLOCATE_VAR (buffer, glyph_index);
620 621
}

622
static inline void
B
Behdad Esfahbod 已提交
623 624
hb_ot_substitute_complex (hb_ot_shape_context_t *c)
{
B
Behdad Esfahbod 已提交
625 626 627
  hb_buffer_t *buffer = c->buffer;

  hb_ot_layout_substitute_start (c->font, buffer);
628

629 630 631
  if (!hb_ot_layout_has_glyph_classes (c->face))
    hb_synthesize_glyph_classes (c);

B
Behdad Esfahbod 已提交
632
  c->plan->substitute (c->font, buffer);
633

B
Behdad Esfahbod 已提交
634 635
  if (0) /* XXX Call morx instead. */
    hb_aat_layout_substitute (c->font, c->buffer);
B
Behdad Esfahbod 已提交
636 637
}

638 639 640 641
static inline void
hb_ot_substitute (hb_ot_shape_context_t *c)
{
  hb_ot_substitute_default (c);
B
Minor  
Behdad Esfahbod 已提交
642 643 644

  _hb_buffer_allocate_gsubgpos_vars (c->buffer);

645 646
  hb_ot_substitute_complex (c);
}
647 648 649

/* Position */

B
Behdad Esfahbod 已提交
650
static inline void
651 652 653 654 655 656 657 658 659 660 661 662 663
adjust_mark_offsets (hb_glyph_position_t *pos)
{
  pos->x_offset -= pos->x_advance;
  pos->y_offset -= pos->y_advance;
}

static inline void
zero_mark_width (hb_glyph_position_t *pos)
{
  pos->x_advance = 0;
  pos->y_advance = 0;
}

B
Behdad Esfahbod 已提交
664
static inline void
665
zero_mark_widths_by_gdef (hb_buffer_t *buffer, bool adjust_offsets)
B
Behdad Esfahbod 已提交
666 667
{
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
668
  hb_glyph_info_t *info = buffer->info;
B
Behdad Esfahbod 已提交
669
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
670
    if (_hb_glyph_info_is_mark (&info[i]))
B
Behdad Esfahbod 已提交
671
    {
672 673 674
      if (adjust_offsets)
        adjust_mark_offsets (&buffer->pos[i]);
      zero_mark_width (&buffer->pos[i]);
B
Behdad Esfahbod 已提交
675 676 677
    }
}

678 679
static inline void
hb_ot_position_default (hb_ot_shape_context_t *c)
680
{
B
Behdad Esfahbod 已提交
681
  hb_direction_t direction = c->buffer->props.direction;
682
  unsigned int count = c->buffer->len;
B
Behdad Esfahbod 已提交
683 684
  hb_glyph_info_t *info = c->buffer->info;
  hb_glyph_position_t *pos = c->buffer->pos;
685

686 687
  if (HB_DIRECTION_IS_HORIZONTAL (direction))
  {
K
Koji Ishii 已提交
688 689
    c->font->get_glyph_h_advances (count, &info[0].codepoint, sizeof(info[0]),
                                   &pos[0].x_advance, sizeof(pos[0]));
B
Behdad Esfahbod 已提交
690
    /* The nil glyph_h_origin() func returns 0, so no need to apply it. */
691 692 693 694 695
    if (c->font->has_glyph_h_origin_func ())
      for (unsigned int i = 0; i < count; i++)
	c->font->subtract_glyph_h_origin (info[i].codepoint,
					  &pos[i].x_offset,
					  &pos[i].y_offset);
696 697 698
  }
  else
  {
699 700
    c->font->get_glyph_v_advances (count, &info[0].codepoint, sizeof(info[0]),
                                   &pos[0].y_advance, sizeof(pos[0]));
701
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
702 703 704 705 706
    {
      c->font->subtract_glyph_v_origin (info[i].codepoint,
					&pos[i].x_offset,
					&pos[i].y_offset);
    }
707
  }
708 709
  if (c->buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_SPACE_FALLBACK)
    _hb_ot_shape_fallback_spaces (c->plan, c->font, c->buffer);
B
Behdad Esfahbod 已提交
710 711
}

712
static inline void
B
Behdad Esfahbod 已提交
713 714 715
hb_ot_position_complex (hb_ot_shape_context_t *c)
{
  unsigned int count = c->buffer->len;
B
Behdad Esfahbod 已提交
716 717
  hb_glyph_info_t *info = c->buffer->info;
  hb_glyph_position_t *pos = c->buffer->pos;
718

719 720 721 722 723 724 725 726 727
  /* If the font has no GPOS, AND, no fallback positioning will
   * happen, AND, direction is forward, then when zeroing mark
   * widths, we shift the mark with it, such that the mark
   * is positioned hanging over the previous glyph.  When
   * direction is backward we don't shift and it will end up
   * hanging over the next glyph after the final reordering.
   * If fallback positinoing happens or GPOS is present, we don't
   * care.
   */
728 729 730
  bool adjust_offsets_when_zeroing = c->fallback_positioning &&
				     !c->plan->shaper->fallback_position &&
				     HB_DIRECTION_IS_FORWARD (c->buffer->props.direction);
731

B
Behdad Esfahbod 已提交
732 733 734 735 736 737 738 739 740 741 742
  /* We change glyph origin to what GPOS expects (horizontal), apply GPOS, change it back. */

  /* The nil glyph_h_origin() func returns 0, so no need to apply it. */
  if (c->font->has_glyph_h_origin_func ())
    for (unsigned int i = 0; i < count; i++)
      c->font->add_glyph_h_origin (info[i].codepoint,
				   &pos[i].x_offset,
				   &pos[i].y_offset);

  hb_ot_layout_position_start (c->font, c->buffer);

743
  switch (c->plan->shaper->zero_width_marks)
744
  {
745
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY:
746
      zero_mark_widths_by_gdef (c->buffer, adjust_offsets_when_zeroing);
747 748 749 750
      break;

    default:
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_NONE:
751
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE:
752
      break;
753
  }
B
Behdad Esfahbod 已提交
754

755
  if (likely (!c->fallback_positioning))
756
    c->plan->position (c->font, c->buffer);
B
Behdad Esfahbod 已提交
757

758
  switch (c->plan->shaper->zero_width_marks)
759
  {
760
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE:
761
      zero_mark_widths_by_gdef (c->buffer, adjust_offsets_when_zeroing);
762 763
      break;

764 765
    default:
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_NONE:
766
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY:
767 768 769
      break;
  }

770 771
  /* Finishing off GPOS has to follow a certain order. */
  hb_ot_layout_position_finish_advances (c->font, c->buffer);
772
  hb_ot_zero_width_default_ignorables (c);
773
  hb_ot_layout_position_finish_offsets (c->font, c->buffer);
B
Behdad Esfahbod 已提交
774 775 776 777 778 779 780

  /* The nil glyph_h_origin() func returns 0, so no need to apply it. */
  if (c->font->has_glyph_h_origin_func ())
    for (unsigned int i = 0; i < count; i++)
      c->font->subtract_glyph_h_origin (info[i].codepoint,
					&pos[i].x_offset,
					&pos[i].y_offset);
B
Behdad Esfahbod 已提交
781 782
}

783 784 785
static inline void
hb_ot_position (hb_ot_shape_context_t *c)
{
786
  c->buffer->clear_positions ();
B
Behdad Esfahbod 已提交
787

788 789
  hb_ot_position_default (c);

790
  hb_ot_position_complex (c);
791

792
  if (c->fallback_positioning && c->plan->shaper->fallback_position)
793
    _hb_ot_shape_fallback_position (c->plan, c->font, c->buffer);
794 795 796 797

  if (HB_DIRECTION_IS_BACKWARD (c->buffer->props.direction))
    hb_buffer_reverse (c->buffer);

798 799
  /* Visual fallback goes here. */

800
  if (c->fallback_positioning)
B
Behdad Esfahbod 已提交
801
    _hb_ot_shape_fallback_kern (c->plan, c->font, c->buffer);
802 803

  _hb_buffer_deallocate_gsubgpos_vars (c->buffer);
804 805

  //hb_aat_layout_position (c->font, c->buffer);
806 807
}

808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
static inline void
hb_propagate_flags (hb_buffer_t *buffer)
{
  /* Propagate cluster-level glyph flags to be the same on all cluster glyphs.
   * Simplifies using them. */

  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_UNSAFE_TO_BREAK))
    return;

  hb_glyph_info_t *info = buffer->info;

  foreach_cluster (buffer, start, end)
  {
    unsigned int mask = 0;
    for (unsigned int i = start; i < end; i++)
      if (info[i].mask & HB_GLYPH_FLAG_UNSAFE_TO_BREAK)
      {
	 mask = HB_GLYPH_FLAG_UNSAFE_TO_BREAK;
	 break;
      }
    if (mask)
      for (unsigned int i = start; i < end; i++)
	info[i].mask |= mask;
  }
}
833 834

/* Pull it all together! */
835

836
static void
837
hb_ot_shape_internal (hb_ot_shape_context_t *c)
838
{
839
  c->buffer->deallocate_var_all ();
840
  c->buffer->scratch_flags = HB_BUFFER_SCRATCH_FLAG_DEFAULT;
841
  if (likely (!hb_unsigned_mul_overflows (c->buffer->len, HB_BUFFER_MAX_LEN_FACTOR)))
B
Behdad Esfahbod 已提交
842
  {
843
    c->buffer->max_len = MAX (c->buffer->len * HB_BUFFER_MAX_LEN_FACTOR,
B
Behdad Esfahbod 已提交
844 845
			      (unsigned) HB_BUFFER_MAX_LEN_MIN);
  }
846
  if (likely (!hb_unsigned_mul_overflows (c->buffer->len, HB_BUFFER_MAX_OPS_FACTOR)))
847 848 849 850
  {
    c->buffer->max_ops = MAX (c->buffer->len * HB_BUFFER_MAX_OPS_FACTOR,
			      (unsigned) HB_BUFFER_MAX_OPS_MIN);
  }
851

852 853 854 855 856
  bool disable_otl = c->plan->shaper->disable_otl && c->plan->shaper->disable_otl (c->plan);
  //c->fallback_substitute     = disable_otl || !hb_ot_layout_has_substitution (c->face);
  c->fallback_positioning    = disable_otl || !hb_ot_layout_has_positioning (c->face);
  c->fallback_glyph_classes  = disable_otl || !hb_ot_layout_has_glyph_classes (c->face);

B
Behdad Esfahbod 已提交
857
  /* Save the original direction, we use it later. */
858
  c->target_direction = c->buffer->props.direction;
B
Behdad Esfahbod 已提交
859

B
Behdad Esfahbod 已提交
860
  _hb_buffer_allocate_unicode_vars (c->buffer);
861

862 863
  c->buffer->clear_output ();

864
  hb_ot_shape_initialize_masks (c);
865
  hb_set_unicode_props (c->buffer);
866
  hb_insert_dotted_circle (c->buffer, c->font);
867

B
Behdad Esfahbod 已提交
868 869
  hb_form_clusters (c->buffer);

870
  hb_ensure_native_direction (c->buffer);
871

872 873 874
  if (c->plan->shaper->preprocess_text)
    c->plan->shaper->preprocess_text (c->plan, c->buffer, c->font);

875 876
  hb_ot_substitute (c);
  hb_ot_position (c);
877

878 879
  hb_ot_hide_default_ignorables (c);

880 881 882
  if (c->plan->shaper->postprocess_glyphs)
    c->plan->shaper->postprocess_glyphs (c->plan, c->buffer, c->font);

883 884
  hb_propagate_flags (c->buffer);

B
Behdad Esfahbod 已提交
885
  _hb_buffer_deallocate_unicode_vars (c->buffer);
886

887
  c->buffer->props.direction = c->target_direction;
888

B
Behdad Esfahbod 已提交
889
  c->buffer->max_len = HB_BUFFER_MAX_LEN_DEFAULT;
890
  c->buffer->max_ops = HB_BUFFER_MAX_OPS_DEFAULT;
891
  c->buffer->deallocate_var_all ();
892 893
}

B
Behdad Esfahbod 已提交
894

895
hb_bool_t
B
Minor  
Behdad Esfahbod 已提交
896 897
_hb_ot_shape (hb_shape_plan_t    *shape_plan,
	      hb_font_t          *font,
898 899 900
	      hb_buffer_t        *buffer,
	      const hb_feature_t *features,
	      unsigned int        num_features)
901
{
902 903
  hb_ot_shape_context_t c = {HB_SHAPER_DATA_GET (shape_plan), font, font->face, buffer, features, num_features};
  hb_ot_shape_internal (&c);
904

905
  return true;
906
}
907 908


S
Sascha Brawer 已提交
909
/**
B
Behdad Esfahbod 已提交
910 911
 * hb_ot_shape_plan_collect_lookups:
 *
S
Sascha Brawer 已提交
912 913
 * Since: 0.9.7
 **/
914 915 916 917 918
void
hb_ot_shape_plan_collect_lookups (hb_shape_plan_t *shape_plan,
				  hb_tag_t         table_tag,
				  hb_set_t        *lookup_indexes /* OUT */)
{
B
Minor  
Behdad Esfahbod 已提交
919
  /* XXX Does the first part always succeed? */
920 921
  HB_SHAPER_DATA_GET (shape_plan)->collect_lookups (table_tag, lookup_indexes);
}
922

923 924 925 926 927 928 929 930

/* TODO Move this to hb-ot-shape-normalize, make it do decompose, and make it public. */
static void
add_char (hb_font_t          *font,
	  hb_unicode_funcs_t *unicode,
	  hb_bool_t           mirror,
	  hb_codepoint_t      u,
	  hb_set_t           *glyphs)
931
{
932
  hb_codepoint_t glyph;
933
  if (font->get_nominal_glyph (u, &glyph))
934 935 936 937
    glyphs->add (glyph);
  if (mirror)
  {
    hb_codepoint_t m = unicode->mirroring (u);
938
    if (m != u && font->get_nominal_glyph (m, &glyph))
939 940
      glyphs->add (glyph);
  }
941 942
}

943

S
Sascha Brawer 已提交
944
/**
B
Behdad Esfahbod 已提交
945 946
 * hb_ot_shape_glyphs_closure:
 *
S
Sascha Brawer 已提交
947 948
 * Since: 0.9.2
 **/
949 950 951 952 953 954 955
void
hb_ot_shape_glyphs_closure (hb_font_t          *font,
			    hb_buffer_t        *buffer,
			    const hb_feature_t *features,
			    unsigned int        num_features,
			    hb_set_t           *glyphs)
{
B
Behdad Esfahbod 已提交
956
  const char *shapers[] = {"ot", nullptr};
957 958
  hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached (font->face, &buffer->props,
							     features, num_features, shapers);
959

960
  bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL;
961 962

  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
963
  hb_glyph_info_t *info = buffer->info;
964
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
965
    add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
966

B
Behdad Esfahbod 已提交
967 968
  hb_set_t *lookups = hb_set_create ();
  hb_ot_shape_plan_collect_lookups (shape_plan, HB_OT_TAG_GSUB, lookups);
969
  hb_ot_layout_lookups_substitute_closure (font->face, lookups, glyphs);
B
Behdad Esfahbod 已提交
970 971

  hb_set_destroy (lookups);
972 973

  hb_shape_plan_destroy (shape_plan);
974
}