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 31
#define hb_ot_face_data_t hb_ot_layout_t
#define hb_ot_shape_plan_data_t hb_ot_shape_plan_t
32 33
#include "hb-shaper-impl-private.hh"

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

39
#include "hb-ot-layout-private.hh"
B
Minor  
Behdad Esfahbod 已提交
40
#include "hb-unicode-private.hh"
41
#include "hb-set-private.hh"
42

43
#include "hb-ot-layout-gsubgpos-private.hh"
B
Behdad Esfahbod 已提交
44
#include "hb-aat-layout-private.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;

74
  map->add_global_bool_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->add_global_bool_feature (HB_TAG ('l','t','r','a'));
      map->add_global_bool_feature (HB_TAG ('l','t','r','m'));
B
Behdad Esfahbod 已提交
81 82
      break;
    case HB_DIRECTION_RTL:
B
Behdad Esfahbod 已提交
83
      map->add_global_bool_feature (HB_TAG ('r','t','l','a'));
B
Behdad Esfahbod 已提交
84
      map->add_feature (HB_TAG ('r','t','l','m'), 1, F_NONE);
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 94 95 96
  map->add_feature (HB_TAG ('f','r','a','c'), 1, F_NONE);
  map->add_feature (HB_TAG ('n','u','m','r'), 1, F_NONE);
  map->add_feature (HB_TAG ('d','n','o','m'), 1, F_NONE);

97
  if (planner->shaper->collect_features)
98
    planner->shaper->collect_features (planner);
B
Behdad Esfahbod 已提交
99

B
Behdad Esfahbod 已提交
100 101
  for (unsigned int i = 0; i < ARRAY_LENGTH (common_features); i++)
    map->add_global_bool_feature (common_features[i]);
102 103

  if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
B
Behdad Esfahbod 已提交
104
    for (unsigned int i = 0; i < ARRAY_LENGTH (horizontal_features); i++)
105 106 107
      map->add_feature (horizontal_features[i], 1, F_GLOBAL |
			(horizontal_features[i] == HB_TAG('k','e','r','n') ?
			 F_HAS_FALLBACK : F_NONE));
108
  else
B
Behdad Esfahbod 已提交
109
  {
110 111 112
    /* 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:
113
     * https://github.com/harfbuzz/harfbuzz/issues/63 */
114
    map->add_feature (HB_TAG ('v','e','r','t'), 1, F_GLOBAL | F_GLOBAL_SEARCH);
B
Behdad Esfahbod 已提交
115
  }
116

117
  if (planner->shaper->override_features)
118
    planner->shaper->override_features (planner);
119

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


129 130 131 132
/*
 * shaper face data
 */

B
Behdad Esfahbod 已提交
133 134
HB_SHAPER_DATA_ENSURE_DEFINE(ot, face)

B
Rename  
Behdad Esfahbod 已提交
135
hb_ot_face_data_t *
136 137 138 139 140 141
_hb_ot_shaper_face_data_create (hb_face_t *face)
{
  return _hb_ot_layout_create (face);
}

void
B
Rename  
Behdad Esfahbod 已提交
142
_hb_ot_shaper_face_data_destroy (hb_ot_face_data_t *data)
143 144 145 146 147 148 149 150 151
{
  _hb_ot_layout_destroy (data);
}


/*
 * shaper font data
 */

B
Behdad Esfahbod 已提交
152 153
HB_SHAPER_DATA_ENSURE_DEFINE(ot, font)

B
Rename  
Behdad Esfahbod 已提交
154
struct hb_ot_font_data_t {};
155

B
Rename  
Behdad Esfahbod 已提交
156
hb_ot_font_data_t *
B
Minor  
Behdad Esfahbod 已提交
157
_hb_ot_shaper_font_data_create (hb_font_t *font HB_UNUSED)
158
{
B
Rename  
Behdad Esfahbod 已提交
159
  return (hb_ot_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;
160 161 162
}

void
B
Rename  
Behdad Esfahbod 已提交
163
_hb_ot_shaper_font_data_destroy (hb_ot_font_data_t *data)
164 165 166 167 168 169 170 171
{
}


/*
 * shaper shape_plan data
 */

B
Rename  
Behdad Esfahbod 已提交
172
hb_ot_shape_plan_data_t *
173 174
_hb_ot_shaper_shape_plan_data_create (hb_shape_plan_t    *shape_plan,
				      const hb_feature_t *user_features,
B
Behdad Esfahbod 已提交
175 176 177
				      unsigned int        num_user_features,
				      const int          *coords,
				      unsigned int        num_coords)
178
{
179 180
  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 已提交
181
    return nullptr;
182

183 184
  plan->init ();

B
Behdad Esfahbod 已提交
185
  hb_ot_shape_planner_t planner (shape_plan);
186

187
  planner.shaper = hb_ot_shape_complex_categorize (&planner);
188

B
Behdad Esfahbod 已提交
189 190
  hb_ot_shape_collect_features (&planner, &shape_plan->props,
				user_features, num_user_features);
191

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

194 195
  if (plan->shaper->data_create) {
    plan->data = plan->shaper->data_create (plan);
B
Minor  
Behdad Esfahbod 已提交
196 197 198
    if (unlikely (!plan->data))
    {
      free (plan);
B
Behdad Esfahbod 已提交
199
      return nullptr;
P
prrace 已提交
200
    }
201 202 203
  }

  return plan;
204 205 206
}

void
B
Rename  
Behdad Esfahbod 已提交
207
_hb_ot_shaper_shape_plan_data_destroy (hb_ot_shape_plan_data_t *plan)
208
{
209 210 211
  if (plan->shaper->data_destroy)
    plan->shaper->data_destroy (const_cast<void *> (plan->data));

B
Behdad Esfahbod 已提交
212
  plan->fini ();
B
Behdad Esfahbod 已提交
213

214
  free (plan);
215 216 217 218 219 220 221
}


/*
 * shaper
 */

B
Behdad Esfahbod 已提交
222 223 224 225 226 227 228 229 230 231
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 */
232 233
  bool fallback_positioning;
  bool fallback_glyph_classes;
B
Behdad Esfahbod 已提交
234 235 236
  hb_direction_t target_direction;
};

B
Behdad Esfahbod 已提交
237 238


239 240
/* Main shaper */

241

242 243
/* Prepare */

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

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

262
  if (!font->has_glyph (0x25CCu))
263 264
    return;

B
Minor  
Behdad Esfahbod 已提交
265
  hb_glyph_info_t dottedcircle = {0};
266
  dottedcircle.codepoint = 0x25CCu;
267
  _hb_glyph_info_set_unicode_props (&dottedcircle, buffer);
268 269 270 271 272 273 274 275

  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 已提交
276
  while (buffer->idx < buffer->len && buffer->successful)
277 278 279 280 281
    buffer->next_glyph ();

  buffer->swap_buffers ();
}

282
static void
283
hb_form_clusters (hb_buffer_t *buffer)
284
{
285
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII))
286 287
    return;

288
  /* Loop duplicated in hb_ensure_native_direction(), and in _hb-coretext.cc */
B
Behdad Esfahbod 已提交
289
  unsigned int base = 0;
290
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
291
  hb_glyph_info_t *info = buffer->info;
292
  for (unsigned int i = 1; i < count; i++)
B
Behdad Esfahbod 已提交
293
  {
294 295
    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 已提交
296
    {
297 298 299 300
      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 已提交
301 302 303
      base = i;
    }
  }
304 305 306 307
  if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES)
    buffer->merge_clusters (base, count);
  else
    buffer->unsafe_to_break (base, count);
308 309
}

310
static void
311
hb_ensure_native_direction (hb_buffer_t *buffer)
312
{
313
  hb_direction_t direction = buffer->props.direction;
314
  hb_direction_t horiz_dir = hb_script_get_horizontal_direction (buffer->props.script);
315

B
Behdad Esfahbod 已提交
316 317 318 319
  /* 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. */
320 321 322 323
  if ((HB_DIRECTION_IS_HORIZONTAL (direction) &&
       direction != horiz_dir && horiz_dir != HB_DIRECTION_INVALID) ||
      (HB_DIRECTION_IS_VERTICAL   (direction) &&
       direction != HB_DIRECTION_TTB))
324
  {
325 326 327 328 329 330 331 332 333
    /* 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]))))
      {
334 335
	if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS)
	  buffer->merge_clusters (base, i);
B
Behdad Esfahbod 已提交
336 337
	buffer->reverse_range (base, i);

338 339 340
	base = i;
      }
    }
341 342
    if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS)
      buffer->merge_clusters (base, count);
B
Behdad Esfahbod 已提交
343
    buffer->reverse_range (base, count);
344 345 346

    buffer->reverse ();

347
    buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
348 349 350 351 352 353
  }
}


/* Substitute */

354 355
static inline void
hb_ot_mirror_chars (hb_ot_shape_context_t *c)
356
{
357
  if (HB_DIRECTION_IS_FORWARD (c->target_direction))
358 359
    return;

B
Behdad Esfahbod 已提交
360 361
  hb_buffer_t *buffer = c->buffer;
  hb_unicode_funcs_t *unicode = buffer->unicode;
362
  hb_mask_t rtlm_mask = c->plan->rtlm_mask;
363

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

375 376 377
static inline void
hb_ot_shape_setup_masks_fraction (hb_ot_shape_context_t *c)
{
378 379
  if (!(c->buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII) ||
      !c->plan->has_frac)
380 381
    return;

382 383
  hb_buffer_t *buffer = c->buffer;

384 385 386 387 388 389 390 391 392 393 394 395
  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;
  }

396 397 398 399
  unsigned int count = buffer->len;
  hb_glyph_info_t *info = buffer->info;
  for (unsigned int i = 0; i < count; i++)
  {
400
    if (info[i].codepoint == 0x2044u) /* FRACTION SLASH */
401 402 403 404 405 406 407 408 409 410 411
    {
      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++;

412 413
      buffer->unsafe_to_break (start, end);

414
      for (unsigned int j = start; j < i; j++)
415
        info[j].mask |= pre_mask;
416
      info[i].mask |= c->plan->frac_mask;
417
      for (unsigned int j = i + 1; j < end; j++)
418
        info[j].mask |= post_mask;
419 420 421 422 423 424

      i = end - 1;
    }
  }
}

425
static inline void
426
hb_ot_shape_initialize_masks (hb_ot_shape_context_t *c)
427 428
{
  hb_ot_map_t *map = &c->plan->map;
B
Behdad Esfahbod 已提交
429
  hb_buffer_t *buffer = c->buffer;
430 431

  hb_mask_t global_mask = map->get_global_mask ();
B
Behdad Esfahbod 已提交
432
  buffer->reset_masks (global_mask);
433 434 435 436 437 438 439
}

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;
440

441 442
  hb_ot_shape_setup_masks_fraction (c);

443
  if (c->plan->shaper->setup_masks)
B
Behdad Esfahbod 已提交
444
    c->plan->shaper->setup_masks (c->plan, buffer, c->font);
445 446 447 448 449 450 451

  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 已提交
452
      buffer->set_masks (feature->value << shift, mask, feature->start, feature->end);
453 454 455 456
    }
  }
}

457 458 459 460 461
static void
hb_ot_zero_width_default_ignorables (hb_ot_shape_context_t *c)
{
  hb_buffer_t *buffer = c->buffer;

462
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES) ||
463 464
      (buffer->flags & HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES) ||
      (buffer->flags & HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES))
465 466 467 468 469 470 471 472 473 474
    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;
}
475 476 477 478 479 480

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

481 482
  if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES) ||
      (buffer->flags & HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES))
483 484 485 486 487 488 489 490
    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++)
  {
491
    if (unlikely (_hb_glyph_info_is_default_ignorable (&info[i])))
492 493 494 495 496 497 498 499
      break;
  }

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

  hb_codepoint_t space;
500 501
  if (!(buffer->flags & HB_BUFFER_FLAG_REMOVE_DEFAULT_IGNORABLES) &&
      c->font->get_nominal_glyph (' ', &space))
502 503 504 505
  {
    /* Replace default-ignorables with a zero-advance space glyph. */
    for (/*continue*/; i < count; i++)
    {
506
      if (_hb_glyph_info_is_default_ignorable (&info[i]))
507 508 509 510 511
	info[i].codepoint = space;
    }
  }
  else
  {
512 513 514 515
    /* 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++)
516
    {
517
      if (_hb_glyph_info_is_default_ignorable (&info[i]))
518
      {
519 520 521 522 523 524 525 526 527 528 529 530
	/* 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)
	  {
531
	    unsigned int mask = info[i].mask;
532 533
	    unsigned int old_cluster = info[j - 1].cluster;
	    for (unsigned k = j; k && info[k - 1].cluster == old_cluster; k--)
534
	      buffer->set_cluster (info[k - 1], cluster, mask);
535 536 537 538 539 540 541
	  }
	  continue;
	}

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

542 543
	continue;
      }
544 545 546 547 548 549 550

      if (j != i)
      {
	info[j] = info[i];
	pos[j] = pos[i];
      }
      j++;
551
    }
552
    buffer->len = j;
553 554 555 556
  }
}


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

  buffer->content_type = HB_BUFFER_CONTENT_TYPE_GLYPHS;
567 568
}

569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
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);
  }
}

595 596
static inline void
hb_ot_substitute_default (hb_ot_shape_context_t *c)
597
{
B
Behdad Esfahbod 已提交
598 599
  hb_buffer_t *buffer = c->buffer;

600 601
  hb_ot_mirror_chars (c);

B
Behdad Esfahbod 已提交
602
  HB_BUFFER_ALLOCATE_VAR (buffer, glyph_index);
603

B
Behdad Esfahbod 已提交
604
  _hb_ot_shape_normalize (c->plan, buffer, c->font);
605 606

  hb_ot_shape_setup_masks (c);
607

B
Behdad Esfahbod 已提交
608
  /* This is unfortunate to go here, but necessary... */
609
  if (c->fallback_positioning)
B
Behdad Esfahbod 已提交
610
    _hb_ot_shape_fallback_position_recategorize_marks (c->plan, c->font, buffer);
B
Behdad Esfahbod 已提交
611

B
Behdad Esfahbod 已提交
612
  hb_ot_map_glyphs_fast (buffer);
613

B
Behdad Esfahbod 已提交
614
  HB_BUFFER_DEALLOCATE_VAR (buffer, glyph_index);
615 616
}

617
static inline void
B
Behdad Esfahbod 已提交
618 619
hb_ot_substitute_complex (hb_ot_shape_context_t *c)
{
B
Behdad Esfahbod 已提交
620 621 622
  hb_buffer_t *buffer = c->buffer;

  hb_ot_layout_substitute_start (c->font, buffer);
623

624 625 626
  if (!hb_ot_layout_has_glyph_classes (c->face))
    hb_synthesize_glyph_classes (c);

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

B
Behdad Esfahbod 已提交
629 630
  if (0) /* XXX Call morx instead. */
    hb_aat_layout_substitute (c->font, c->buffer);
B
Behdad Esfahbod 已提交
631 632
}

633 634 635 636
static inline void
hb_ot_substitute (hb_ot_shape_context_t *c)
{
  hb_ot_substitute_default (c);
B
Minor  
Behdad Esfahbod 已提交
637 638 639

  _hb_buffer_allocate_gsubgpos_vars (c->buffer);

640 641
  hb_ot_substitute_complex (c);
}
642 643 644

/* Position */

B
Behdad Esfahbod 已提交
645
static inline void
646 647 648 649 650 651 652 653 654 655 656 657 658
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 已提交
659
static inline void
660
zero_mark_widths_by_gdef (hb_buffer_t *buffer, bool adjust_offsets)
B
Behdad Esfahbod 已提交
661 662
{
  unsigned int count = buffer->len;
B
Behdad Esfahbod 已提交
663
  hb_glyph_info_t *info = buffer->info;
B
Behdad Esfahbod 已提交
664
  for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
665
    if (_hb_glyph_info_is_mark (&info[i]))
B
Behdad Esfahbod 已提交
666
    {
667 668 669
      if (adjust_offsets)
        adjust_mark_offsets (&buffer->pos[i]);
      zero_mark_width (&buffer->pos[i]);
B
Behdad Esfahbod 已提交
670 671 672
    }
}

673 674
static inline void
hb_ot_position_default (hb_ot_shape_context_t *c)
675
{
B
Behdad Esfahbod 已提交
676
  hb_direction_t direction = c->buffer->props.direction;
677
  unsigned int count = c->buffer->len;
B
Behdad Esfahbod 已提交
678 679
  hb_glyph_info_t *info = c->buffer->info;
  hb_glyph_position_t *pos = c->buffer->pos;
680

681 682
  if (HB_DIRECTION_IS_HORIZONTAL (direction))
  {
K
Koji Ishii 已提交
683 684
    c->font->get_glyph_h_advances (count, &info[0].codepoint, sizeof(info[0]),
                                   &pos[0].x_advance, sizeof(pos[0]));
B
Behdad Esfahbod 已提交
685
    /* The nil glyph_h_origin() func returns 0, so no need to apply it. */
686 687 688 689 690
    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);
691 692 693
  }
  else
  {
694 695
    c->font->get_glyph_v_advances (count, &info[0].codepoint, sizeof(info[0]),
                                   &pos[0].y_advance, sizeof(pos[0]));
696
    for (unsigned int i = 0; i < count; i++)
B
Behdad Esfahbod 已提交
697 698 699 700 701
    {
      c->font->subtract_glyph_v_origin (info[i].codepoint,
					&pos[i].x_offset,
					&pos[i].y_offset);
    }
702
  }
703 704
  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 已提交
705 706
}

707
static inline void
B
Behdad Esfahbod 已提交
708 709 710
hb_ot_position_complex (hb_ot_shape_context_t *c)
{
  unsigned int count = c->buffer->len;
B
Behdad Esfahbod 已提交
711 712
  hb_glyph_info_t *info = c->buffer->info;
  hb_glyph_position_t *pos = c->buffer->pos;
713

714 715 716 717 718 719 720 721 722
  /* 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.
   */
723 724 725
  bool adjust_offsets_when_zeroing = c->fallback_positioning &&
				     !c->plan->shaper->fallback_position &&
				     HB_DIRECTION_IS_FORWARD (c->buffer->props.direction);
726

B
Behdad Esfahbod 已提交
727 728 729 730 731 732 733 734 735 736 737
  /* 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);

738
  switch (c->plan->shaper->zero_width_marks)
739
  {
740
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY:
741
      zero_mark_widths_by_gdef (c->buffer, adjust_offsets_when_zeroing);
742 743 744 745
      break;

    default:
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_NONE:
746
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE:
747
      break;
748
  }
B
Behdad Esfahbod 已提交
749

750
  if (likely (!c->fallback_positioning))
751
    c->plan->position (c->font, c->buffer);
B
Behdad Esfahbod 已提交
752

753
  switch (c->plan->shaper->zero_width_marks)
754
  {
755
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE:
756
      zero_mark_widths_by_gdef (c->buffer, adjust_offsets_when_zeroing);
757 758
      break;

759 760
    default:
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_NONE:
761
    case HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY:
762 763 764
      break;
  }

765 766
  /* Finishing off GPOS has to follow a certain order. */
  hb_ot_layout_position_finish_advances (c->font, c->buffer);
767
  hb_ot_zero_width_default_ignorables (c);
768
  hb_ot_layout_position_finish_offsets (c->font, c->buffer);
B
Behdad Esfahbod 已提交
769 770 771 772 773 774 775

  /* 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 已提交
776 777
}

778 779 780
static inline void
hb_ot_position (hb_ot_shape_context_t *c)
{
781
  c->buffer->clear_positions ();
B
Behdad Esfahbod 已提交
782

783 784
  hb_ot_position_default (c);

785
  hb_ot_position_complex (c);
786

787
  if (c->fallback_positioning && c->plan->shaper->fallback_position)
788
    _hb_ot_shape_fallback_position (c->plan, c->font, c->buffer);
789 790 791 792

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

793 794
  /* Visual fallback goes here. */

795
  if (c->fallback_positioning)
B
Behdad Esfahbod 已提交
796
    _hb_ot_shape_fallback_kern (c->plan, c->font, c->buffer);
797 798

  _hb_buffer_deallocate_gsubgpos_vars (c->buffer);
799 800

  //hb_aat_layout_position (c->font, c->buffer);
801 802
}

803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
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;
  }
}
828 829

/* Pull it all together! */
830

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

847 848 849 850 851
  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 已提交
852
  /* Save the original direction, we use it later. */
853
  c->target_direction = c->buffer->props.direction;
B
Behdad Esfahbod 已提交
854

B
Behdad Esfahbod 已提交
855
  _hb_buffer_allocate_unicode_vars (c->buffer);
856

857 858
  c->buffer->clear_output ();

859
  hb_ot_shape_initialize_masks (c);
860
  hb_set_unicode_props (c->buffer);
861
  hb_insert_dotted_circle (c->buffer, c->font);
862

B
Behdad Esfahbod 已提交
863 864
  hb_form_clusters (c->buffer);

865
  hb_ensure_native_direction (c->buffer);
866

867 868 869
  if (c->plan->shaper->preprocess_text)
    c->plan->shaper->preprocess_text (c->plan, c->buffer, c->font);

870 871
  hb_ot_substitute (c);
  hb_ot_position (c);
872

873 874
  hb_ot_hide_default_ignorables (c);

875 876 877
  if (c->plan->shaper->postprocess_glyphs)
    c->plan->shaper->postprocess_glyphs (c->plan, c->buffer, c->font);

878 879
  hb_propagate_flags (c->buffer);

B
Behdad Esfahbod 已提交
880
  _hb_buffer_deallocate_unicode_vars (c->buffer);
881

882
  c->buffer->props.direction = c->target_direction;
883

B
Behdad Esfahbod 已提交
884
  c->buffer->max_len = HB_BUFFER_MAX_LEN_DEFAULT;
885
  c->buffer->max_ops = HB_BUFFER_MAX_OPS_DEFAULT;
886
  c->buffer->deallocate_var_all ();
887 888
}

B
Behdad Esfahbod 已提交
889

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

900
  return true;
901
}
902 903


S
Sascha Brawer 已提交
904
/**
B
Behdad Esfahbod 已提交
905 906
 * hb_ot_shape_plan_collect_lookups:
 *
S
Sascha Brawer 已提交
907 908
 * Since: 0.9.7
 **/
909 910 911 912 913
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 已提交
914
  /* XXX Does the first part always succeed? */
915 916
  HB_SHAPER_DATA_GET (shape_plan)->collect_lookups (table_tag, lookup_indexes);
}
917

918 919 920 921 922 923 924 925

/* 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)
926
{
927
  hb_codepoint_t glyph;
928
  if (font->get_nominal_glyph (u, &glyph))
929 930 931 932
    glyphs->add (glyph);
  if (mirror)
  {
    hb_codepoint_t m = unicode->mirroring (u);
933
    if (m != u && font->get_nominal_glyph (m, &glyph))
934 935
      glyphs->add (glyph);
  }
936 937
}

938

S
Sascha Brawer 已提交
939
/**
B
Behdad Esfahbod 已提交
940 941
 * hb_ot_shape_glyphs_closure:
 *
S
Sascha Brawer 已提交
942 943
 * Since: 0.9.2
 **/
944 945 946 947 948 949 950
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 已提交
951
  const char *shapers[] = {"ot", nullptr};
952 953
  hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached (font->face, &buffer->props,
							     features, num_features, shapers);
954

955
  bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL;
956 957

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

B
Behdad Esfahbod 已提交
962 963
  hb_set_t *lookups = hb_set_create ();
  hb_ot_shape_plan_collect_lookups (shape_plan, HB_OT_TAG_GSUB, lookups);
964
  hb_ot_layout_lookups_substitute_closure (font->face, lookups, glyphs);
B
Behdad Esfahbod 已提交
965 966

  hb_set_destroy (lookups);
967 968

  hb_shape_plan_destroy (shape_plan);
969
}