Coverage Report

Created: 2026-05-16 09:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/workdir/UnpackedTarball/harfbuzz/src/hb-graphite2.cc
Line
Count
Source
1
/*
2
 * Copyright © 2011  Martin Hosken
3
 * Copyright © 2011  SIL International
4
 * Copyright © 2011,2012  Google, Inc.
5
 *
6
 *  This is part of HarfBuzz, a text shaping library.
7
 *
8
 * Permission is hereby granted, without written agreement and without
9
 * license or royalty fees, to use, copy, modify, and distribute this
10
 * software and its documentation for any purpose, provided that the
11
 * above copyright notice and the following two paragraphs appear in
12
 * all copies of this software.
13
 *
14
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18
 * DAMAGE.
19
 *
20
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
23
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25
 *
26
 * Google Author(s): Behdad Esfahbod
27
 */
28
29
#include "hb.hh"
30
31
#ifdef HAVE_GRAPHITE2
32
33
#include "hb-shaper-impl.hh"
34
35
#include "hb-graphite2.h"
36
37
#include <graphite2/Segment.h>
38
39
#include "hb-ot-layout.h"
40
41
42
/**
43
 * SECTION:hb-graphite2
44
 * @title: hb-graphite2
45
 * @short_description: Graphite2 integration
46
 * @include: hb-graphite2.h
47
 *
48
 * Functions for using HarfBuzz with fonts that include Graphite features.
49
 * 
50
 * For Graphite features to work, you must be sure that HarfBuzz was compiled
51
 * with the `graphite2` shaping engine enabled. Currently, the default is to
52
 * not enable `graphite2` shaping.
53
 **/
54
55
56
/*
57
 * shaper face data
58
 */
59
60
typedef struct hb_graphite2_tablelist_t
61
{
62
  struct hb_graphite2_tablelist_t *next;
63
  hb_blob_t *blob;
64
  unsigned int tag;
65
} hb_graphite2_tablelist_t;
66
67
struct hb_graphite2_face_data_t
68
{
69
  hb_face_t *face;
70
  gr_face   *grface;
71
  hb_atomic_t<hb_graphite2_tablelist_t *> tlist;
72
};
73
74
static const void *hb_graphite2_get_table (const void *data, unsigned int tag, size_t *len)
75
0
{
76
0
  hb_graphite2_face_data_t *face_data = (hb_graphite2_face_data_t *) data;
77
0
  hb_graphite2_tablelist_t *tlist = face_data->tlist;
78
79
0
  hb_blob_t *blob = nullptr;
80
81
0
  for (hb_graphite2_tablelist_t *p = tlist; p; p = p->next)
82
0
    if (p->tag == tag) {
83
0
      blob = p->blob;
84
0
      break;
85
0
    }
86
87
0
  if (unlikely (!blob))
88
0
  {
89
0
    blob = face_data->face->reference_table (tag);
90
91
0
    hb_graphite2_tablelist_t *p = (hb_graphite2_tablelist_t *) hb_calloc (1, sizeof (hb_graphite2_tablelist_t));
92
0
    if (unlikely (!p)) {
93
0
      hb_blob_destroy (blob);
94
0
      return nullptr;
95
0
    }
96
0
    p->blob = blob;
97
0
    p->tag = tag;
98
99
0
retry:
100
0
    hb_graphite2_tablelist_t *tlist = face_data->tlist;
101
0
    p->next = tlist;
102
103
0
    if (unlikely (!face_data->tlist.cmpexch (tlist, p)))
104
0
      goto retry;
105
0
  }
106
107
0
  unsigned int tlen;
108
0
  const char *d = hb_blob_get_data (blob, &tlen);
109
0
  *len = tlen;
110
0
  return d;
111
0
}
112
113
hb_graphite2_face_data_t *
114
_hb_graphite2_shaper_face_data_create (hb_face_t *face)
115
32.9M
{
116
32.9M
  hb_unique_ptr_t<hb_blob_t> silf_blob (face->reference_table (HB_GRAPHITE2_TAG_SILF));
117
  /* Umm, we just reference the table to check whether it exists.
118
   * Maybe add better API for this? */
119
32.9M
  if (!hb_blob_get_length (silf_blob))
120
32.9M
    return nullptr;
121
122
0
  hb_graphite2_face_data_t *data = (hb_graphite2_face_data_t *) hb_calloc (1, sizeof (hb_graphite2_face_data_t));
123
0
  if (unlikely (!data))
124
0
    return nullptr;
125
126
0
  data->face = face;
127
0
  const gr_face_ops ops = {sizeof(gr_face_ops), &hb_graphite2_get_table, NULL};
128
0
  data->grface = gr_make_face_with_ops (data, &ops, gr_face_preloadAll);
129
130
0
  if (unlikely (!data->grface)) {
131
0
    hb_free (data);
132
0
    return nullptr;
133
0
  }
134
135
0
  return data;
136
0
}
137
138
void
139
_hb_graphite2_shaper_face_data_destroy (hb_graphite2_face_data_t *data)
140
0
{
141
0
  hb_graphite2_tablelist_t *tlist = data->tlist;
142
143
0
  while (tlist)
144
0
  {
145
0
    hb_graphite2_tablelist_t *old = tlist;
146
0
    hb_blob_destroy (tlist->blob);
147
0
    tlist = tlist->next;
148
0
    hb_free (old);
149
0
  }
150
151
0
  gr_face_destroy (data->grface);
152
153
0
  hb_free (data);
154
0
}
155
156
/**
157
 * hb_graphite2_face_get_gr_face: (skip)
158
 * @face: @hb_face_t to query
159
 *
160
 * Fetches the Graphite2 gr_face corresponding to the specified
161
 * #hb_face_t face object.
162
 *
163
 * Return value: the gr_face found
164
 *
165
 * Since: 0.9.10
166
 */
167
gr_face *
168
hb_graphite2_face_get_gr_face (hb_face_t *face)
169
211k
{
170
211k
  const hb_graphite2_face_data_t *data = face->data.graphite2;
171
211k
  return data ? data->grface : nullptr;
172
211k
}
173
174
175
/*
176
 * shaper font data
177
 */
178
179
struct hb_graphite2_font_data_t {};
180
181
hb_graphite2_font_data_t *
182
_hb_graphite2_shaper_font_data_create (hb_font_t *font HB_UNUSED)
183
0
{
184
0
  return (hb_graphite2_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;
185
0
}
186
187
void
188
_hb_graphite2_shaper_font_data_destroy (hb_graphite2_font_data_t *data HB_UNUSED)
189
0
{
190
0
}
191
192
#ifndef HB_DISABLE_DEPRECATED
193
/**
194
 * hb_graphite2_font_get_gr_font: (skip)
195
 * @font: An #hb_font_t
196
 *
197
 * Always returns `NULL`. Use hb_graphite2_face_get_gr_face() instead.
198
 *
199
 * Return value: (nullable): Graphite2 font associated with @font.
200
 *
201
 * Since: 0.9.10
202
 * Deprecated: 1.4.2
203
 */
204
gr_font *
205
hb_graphite2_font_get_gr_font (hb_font_t *font HB_UNUSED)
206
0
{
207
0
  return nullptr;
208
0
}
209
#endif
210
211
212
/*
213
 * shaper
214
 */
215
216
struct hb_graphite2_cluster_t {
217
  unsigned int base_char;
218
  unsigned int num_chars;
219
  unsigned int base_glyph;
220
  unsigned int num_glyphs;
221
  unsigned int cluster;
222
  int advance;
223
};
224
225
hb_bool_t
226
_hb_graphite2_shape (hb_shape_plan_t    *shape_plan HB_UNUSED,
227
         hb_font_t          *font,
228
         hb_buffer_t        *buffer,
229
         const hb_feature_t *features,
230
         unsigned int        num_features)
231
0
{
232
0
  hb_face_t *face = font->face;
233
0
  gr_face *grface = face->data.graphite2->grface;
234
235
0
  const char *lang = hb_language_to_string (hb_buffer_get_language (buffer));
236
0
  const char *lang_end = lang ? strchr (lang, '-') : nullptr;
237
0
  int lang_len = lang_end ? lang_end - lang : -1;
238
0
  gr_feature_val *feats = gr_face_featureval_for_lang (grface, lang ? hb_tag_from_string (lang, lang_len) : 0);
239
240
0
  for (unsigned int i = 0; i < num_features; i++)
241
0
  {
242
0
    const gr_feature_ref *fref = gr_face_find_fref (grface, features[i].tag);
243
0
    if (fref)
244
0
      gr_fref_set_feature_value (fref, features[i].value, feats);
245
0
  }
246
247
0
  hb_direction_t direction = buffer->props.direction;
248
0
  hb_direction_t horiz_dir = hb_script_get_horizontal_direction (buffer->props.script);
249
  /* TODO vertical:
250
   * The only BTT vertical script is Ogham, but it's not clear to me whether OpenType
251
   * Ogham fonts are supposed to be implemented BTT or not.  Need to research that
252
   * first. */
253
0
  if ((HB_DIRECTION_IS_HORIZONTAL (direction) &&
254
0
       direction != horiz_dir && horiz_dir != HB_DIRECTION_INVALID) ||
255
0
      (HB_DIRECTION_IS_VERTICAL   (direction) &&
256
0
       direction != HB_DIRECTION_TTB))
257
0
  {
258
0
    hb_buffer_reverse_clusters (buffer);
259
0
    direction = HB_DIRECTION_REVERSE (direction);
260
0
  }
261
262
0
  gr_segment *seg = nullptr;
263
0
  const gr_slot *is;
264
0
  unsigned int ci = 0, ic = 0;
265
0
  int curradvx = 0, curradvy = 0;
266
267
0
  unsigned int scratch_size;
268
0
  hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
269
270
0
  uint32_t *chars = (uint32_t *) scratch;
271
272
0
  for (unsigned int i = 0; i < buffer->len; ++i)
273
0
    chars[i] = buffer->info[i].codepoint;
274
275
0
  seg = gr_make_seg (nullptr, grface,
276
0
         HB_TAG_NONE, // https://github.com/harfbuzz/harfbuzz/issues/3439#issuecomment-1442650148
277
0
         feats,
278
0
         gr_utf32, chars, buffer->len,
279
0
         2 | (direction == HB_DIRECTION_RTL ? 1 : 0));
280
281
0
  if (unlikely (!seg)) {
282
0
    if (feats) gr_featureval_destroy (feats);
283
0
    return false;
284
0
  }
285
286
0
  unsigned int glyph_count = gr_seg_n_slots (seg);
287
0
  if (unlikely (!glyph_count)) {
288
0
    if (feats) gr_featureval_destroy (feats);
289
0
    gr_seg_destroy (seg);
290
0
    buffer->len = 0;
291
0
    return true;
292
0
  }
293
294
0
  (void) buffer->ensure (glyph_count);
295
0
  scratch = buffer->get_scratch_buffer (&scratch_size);
296
0
  while ((DIV_CEIL (sizeof (hb_graphite2_cluster_t) * buffer->len, sizeof (*scratch)) +
297
0
    DIV_CEIL (sizeof (hb_codepoint_t) * glyph_count, sizeof (*scratch))) > scratch_size)
298
0
  {
299
0
    if (unlikely (!buffer->ensure (buffer->allocated * 2)))
300
0
    {
301
0
      if (feats) gr_featureval_destroy (feats);
302
0
      gr_seg_destroy (seg);
303
0
      return false;
304
0
    }
305
0
    scratch = buffer->get_scratch_buffer (&scratch_size);
306
0
  }
307
308
0
#define ALLOCATE_ARRAY(Type, name, len) \
309
0
  Type *name = (Type *) scratch; \
310
0
  do { \
311
0
    unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \
312
0
    assert (_consumed <= scratch_size); \
313
0
    scratch += _consumed; \
314
0
    scratch_size -= _consumed; \
315
0
  } while (0)
316
317
0
  ALLOCATE_ARRAY (hb_graphite2_cluster_t, clusters, buffer->len);
318
0
  ALLOCATE_ARRAY (hb_codepoint_t, gids, glyph_count);
319
320
0
#undef ALLOCATE_ARRAY
321
322
0
  hb_memset (clusters, 0, sizeof (clusters[0]) * buffer->len);
323
324
0
  hb_codepoint_t *pg = gids;
325
0
  clusters[0].cluster = buffer->info[0].cluster;
326
0
  unsigned int upem = hb_face_get_upem (face);
327
0
  float xscale = (float) font->x_scale / upem;
328
0
  float yscale = (float) font->y_scale / upem;
329
0
  yscale *= yscale / xscale;
330
0
  unsigned int curradv = 0;
331
0
  if (HB_DIRECTION_IS_BACKWARD (direction))
332
0
  {
333
0
    curradv = gr_slot_origin_X(gr_seg_first_slot(seg)) * xscale;
334
0
    clusters[0].advance = gr_seg_advance_X(seg) * xscale - curradv;
335
0
  }
336
0
  else
337
0
    clusters[0].advance = 0;
338
0
  for (is = gr_seg_first_slot (seg), ic = 0; is; is = gr_slot_next_in_segment (is), ic++)
339
0
  {
340
0
    unsigned int before = gr_slot_before (is);
341
0
    unsigned int after = gr_slot_after (is);
342
0
    *pg = gr_slot_gid (is);
343
0
    pg++;
344
0
    while (clusters[ci].base_char > before && ci)
345
0
    {
346
0
      clusters[ci-1].num_chars += clusters[ci].num_chars;
347
0
      clusters[ci-1].num_glyphs += clusters[ci].num_glyphs;
348
0
      clusters[ci-1].advance += clusters[ci].advance;
349
0
      ci--;
350
0
    }
351
352
0
    if (gr_slot_can_insert_before (is) && clusters[ci].num_chars && before >= clusters[ci].base_char + clusters[ci].num_chars)
353
0
    {
354
0
      hb_graphite2_cluster_t *c = clusters + ci + 1;
355
0
      c->base_char = clusters[ci].base_char + clusters[ci].num_chars;
356
0
      c->cluster = buffer->info[c->base_char].cluster;
357
0
      c->num_chars = before - c->base_char;
358
0
      c->base_glyph = ic;
359
0
      c->num_glyphs = 0;
360
0
      if (HB_DIRECTION_IS_BACKWARD (direction))
361
0
      {
362
0
  c->advance = curradv - gr_slot_origin_X(is) * xscale;
363
0
  curradv -= c->advance;
364
0
      }
365
0
      else
366
0
      {
367
0
  auto origin_X = gr_slot_origin_X (is) * xscale;
368
0
  c->advance = 0;
369
0
  clusters[ci].advance += origin_X - curradv;
370
0
  curradv = origin_X;
371
0
      }
372
0
      ci++;
373
0
    }
374
0
    clusters[ci].num_glyphs++;
375
376
0
    if (clusters[ci].base_char + clusters[ci].num_chars < after + 1)
377
0
  clusters[ci].num_chars = after + 1 - clusters[ci].base_char;
378
0
  }
379
380
0
  if (HB_DIRECTION_IS_BACKWARD (direction))
381
0
    clusters[ci].advance += curradv;
382
0
  else
383
0
    clusters[ci].advance += gr_seg_advance_X(seg) * xscale - curradv;
384
0
  ci++;
385
386
0
  for (unsigned int i = 0; i < ci; ++i)
387
0
  {
388
0
    for (unsigned int j = 0; j < clusters[i].num_glyphs; ++j)
389
0
    {
390
0
      hb_glyph_info_t *info = &buffer->info[clusters[i].base_glyph + j];
391
0
      info->codepoint = gids[clusters[i].base_glyph + j];
392
0
      info->cluster = clusters[i].cluster;
393
0
      info->var1.i32 = clusters[i].advance;     // all glyphs in the cluster get the same advance
394
0
    }
395
0
  }
396
0
  buffer->len = glyph_count;
397
398
  /* Positioning. */
399
0
  unsigned int currclus = UINT_MAX;
400
0
  const hb_glyph_info_t *info = buffer->info;
401
0
  hb_glyph_position_t *pPos = hb_buffer_get_glyph_positions (buffer, nullptr);
402
0
  if (!HB_DIRECTION_IS_BACKWARD (direction))
403
0
  {
404
0
    curradvx = 0;
405
0
    for (is = gr_seg_first_slot (seg); is; pPos++, ++info, is = gr_slot_next_in_segment (is))
406
0
    {
407
0
      pPos->x_offset = gr_slot_origin_X (is) * xscale - curradvx;
408
0
      pPos->y_offset = gr_slot_origin_Y (is) * yscale - curradvy;
409
0
      if (info->cluster != currclus) {
410
0
  pPos->x_advance = info->var1.i32;
411
0
  curradvx += pPos->x_advance;
412
0
  currclus = info->cluster;
413
0
      } else
414
0
  pPos->x_advance = 0.;
415
416
0
      pPos->y_advance = gr_slot_advance_Y (is, grface, nullptr) * yscale;
417
0
      curradvy += pPos->y_advance;
418
0
    }
419
0
  }
420
0
  else
421
0
  {
422
0
    curradvx = gr_seg_advance_X(seg) * xscale;
423
0
    for (is = gr_seg_first_slot (seg); is; pPos++, info++, is = gr_slot_next_in_segment (is))
424
0
    {
425
0
      if (info->cluster != currclus)
426
0
      {
427
0
  pPos->x_advance = info->var1.i32;
428
0
  curradvx -= pPos->x_advance;
429
0
  currclus = info->cluster;
430
0
      } else
431
0
  pPos->x_advance = 0.;
432
433
0
      pPos->y_advance = gr_slot_advance_Y (is, grface, nullptr) * yscale;
434
0
      curradvy -= pPos->y_advance;
435
0
      pPos->x_offset = gr_slot_origin_X (is) * xscale - info->var1.i32 - curradvx + pPos->x_advance;
436
0
      pPos->y_offset = gr_slot_origin_Y (is) * yscale - curradvy;
437
0
    }
438
0
    hb_buffer_reverse_clusters (buffer);
439
0
  }
440
441
0
  if (feats) gr_featureval_destroy (feats);
442
0
  gr_seg_destroy (seg);
443
444
0
  buffer->clear_glyph_flags ();
445
0
  buffer->unsafe_to_break ();
446
447
0
  return true;
448
0
}
449
450
451
#endif