Coverage Report

Created: 2026-06-13 06:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/harfbuzz/src/hb-face-builder.cc
Line
Count
Source
1
/*
2
 * Copyright © 2009  Red Hat, Inc.
3
 * Copyright © 2012  Google, Inc.
4
 *
5
 *  This is part of HarfBuzz, a text shaping library.
6
 *
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.
12
 *
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.
18
 *
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.
24
 *
25
 * Red Hat Author(s): Behdad Esfahbod
26
 * Google Author(s): Behdad Esfahbod
27
 */
28
29
#include "hb.hh"
30
31
#include "hb-face.hh"
32
33
#include "hb-map.hh"
34
#include "hb-open-file.hh"
35
#include "hb-serialize.hh"
36
37
38
/*
39
 * face-builder: A face that has add_table().
40
 */
41
42
struct face_table_info_t
43
{
44
  hb_blob_t* data;
45
  unsigned order;
46
};
47
48
struct hb_face_builder_data_t
49
{
50
  hb_hashmap_t<hb_tag_t, face_table_info_t> tables;
51
};
52
53
static int compare_entries (const void* pa, const void* pb)
54
205k
{
55
205k
  const auto& a = * (const hb_pair_t<hb_tag_t, face_table_info_t> *) pa;
56
205k
  const auto& b = * (const hb_pair_t<hb_tag_t, face_table_info_t> *) pb;
57
58
  /* Order by blob size first (smallest to largest) and then table tag */
59
60
205k
  if (a.second.order != b.second.order)
61
0
    return a.second.order < b.second.order ? -1 : +1;
62
63
205k
  if (a.second.data->length != b.second.data->length)
64
85.6k
    return a.second.data->length < b.second.data->length ? -1 : +1;
65
66
119k
  return a.first < b.first ? -1 : a.first == b.first ? 0 : +1;
67
205k
}
68
69
static hb_face_builder_data_t *
70
_hb_face_builder_data_create ()
71
39.5k
{
72
39.5k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) hb_calloc (1, sizeof (hb_face_builder_data_t));
73
39.5k
  if (unlikely (!data))
74
485
    return nullptr;
75
76
39.0k
  data->tables.init ();
77
78
39.0k
  return data;
79
39.5k
}
80
81
static void
82
_hb_face_builder_data_destroy (void *user_data)
83
39.0k
{
84
39.0k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
85
86
39.0k
  for (auto info : data->tables.values())
87
124k
    hb_blob_destroy (info.data);
88
89
39.0k
  data->tables.fini ();
90
91
39.0k
  hb_free (data);
92
39.0k
}
93
94
static hb_blob_t *
95
_hb_face_builder_data_reference_blob (hb_face_builder_data_t *data)
96
9.92k
{
97
98
9.92k
  unsigned int table_count = data->tables.get_population ();
99
9.92k
  unsigned int face_length = table_count * 16 + 12;
100
101
9.92k
  for (auto info : data->tables.values())
102
64.1k
    face_length += hb_ceil_to_4 (hb_blob_get_length (info.data));
103
104
9.92k
  char *buf = (char *) hb_malloc (face_length);
105
9.92k
  if (unlikely (!buf))
106
32
    return nullptr;
107
108
9.89k
  hb_serialize_context_t c (buf, face_length);
109
9.89k
  c.propagate_error (data->tables);
110
9.89k
  OT::OpenTypeFontFile *f = c.start_serialize<OT::OpenTypeFontFile> ();
111
112
9.89k
  bool is_cff = (data->tables.has (HB_TAG ('C','F','F',' '))
113
9.20k
                 || data->tables.has (HB_TAG ('C','F','F','2')));
114
9.89k
  hb_tag_t sfnt_tag = is_cff ? OT::OpenTypeFontFile::CFFTag : OT::OpenTypeFontFile::TrueTypeTag;
115
116
  // Sort the tags so that produced face is deterministic.
117
9.89k
  hb_vector_t<hb_pair_t <hb_tag_t, face_table_info_t>> sorted_entries;
118
9.89k
  data->tables.iter () | hb_sink (sorted_entries);
119
9.89k
  if (unlikely (sorted_entries.in_error ()))
120
44
  {
121
44
    hb_free (buf);
122
44
    return nullptr;
123
44
  }
124
125
9.84k
  sorted_entries.qsort (compare_entries);
126
127
9.84k
  bool ret = f->serialize_single (&c,
128
9.84k
                                  sfnt_tag,
129
9.84k
                                  + sorted_entries.iter()
130
63.3k
                                  | hb_map ([&] (hb_pair_t<hb_tag_t, face_table_info_t> _) {
131
63.3k
                                    return hb_pair_t<hb_tag_t, hb_blob_t*> (_.first, _.second.data);
132
63.3k
                                  }));
133
134
9.84k
  c.end_serialize ();
135
136
9.84k
  if (unlikely (!ret))
137
72
  {
138
72
    hb_free (buf);
139
72
    return nullptr;
140
72
  }
141
142
9.77k
  return hb_blob_create (buf, face_length, HB_MEMORY_MODE_WRITABLE, buf, hb_free);
143
9.84k
}
144
145
static hb_blob_t *
146
_hb_face_builder_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
147
10.6k
{
148
10.6k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
149
150
10.6k
  if (!tag)
151
9.92k
    return _hb_face_builder_data_reference_blob (data);
152
153
693
  return hb_blob_reference (data->tables[tag].data);
154
10.6k
}
155
156
static unsigned
157
_hb_face_builder_get_table_tags (const hb_face_t *face HB_UNUSED,
158
         unsigned int start_offset,
159
         unsigned int *table_count,
160
         hb_tag_t *table_tags,
161
         void *user_data)
162
311
{
163
311
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
164
165
311
  unsigned population = data->tables.get_population ();
166
167
311
  if (!table_count)
168
162
    return population;
169
170
149
  if (unlikely (start_offset >= population))
171
0
  {
172
0
    *table_count = 0;
173
0
    return population;
174
0
  }
175
176
  // Sort the tags.
177
149
  hb_vector_t<hb_tag_t> sorted_tags;
178
149
  data->tables.keys () | hb_sink (sorted_tags);
179
149
  if (unlikely (sorted_tags.in_error ()))
180
15
  {
181
    // Not much to do...
182
15
  }
183
2.08k
  sorted_tags.qsort ([] (const hb_tag_t &a, const hb_tag_t &b) {
184
2.08k
    return (a > b) - (a < b);
185
2.08k
  });
186
187
149
  auto array = sorted_tags.as_array ().sub_array (start_offset, table_count);
188
149
  auto out = hb_array (table_tags, *table_count);
189
190
149
  + array.iter ()
191
149
  | hb_sink (out)
192
149
  ;
193
194
149
  return population;
195
149
}
196
197
198
/**
199
 * hb_face_builder_create:
200
 *
201
 * Creates a #hb_face_t that can be used with hb_face_builder_add_table().
202
 * After tables are added to the face, it can be compiled to a binary
203
 * font file by calling hb_face_reference_blob().
204
 *
205
 * Return value: (transfer full): New face.
206
 *
207
 * Since: 1.9.0
208
 **/
209
hb_face_t *
210
hb_face_builder_create ()
211
39.5k
{
212
39.5k
  hb_face_builder_data_t *data = _hb_face_builder_data_create ();
213
39.5k
  if (unlikely (!data)) return hb_face_get_empty ();
214
215
39.0k
  hb_face_t *face = hb_face_create_for_tables (_hb_face_builder_reference_table,
216
39.0k
                 data,
217
39.0k
                 _hb_face_builder_data_destroy);
218
219
39.0k
  hb_face_set_get_table_tags_func (face,
220
39.0k
           _hb_face_builder_get_table_tags,
221
39.0k
           data,
222
39.0k
           nullptr);
223
224
39.0k
  return face;
225
39.5k
}
226
227
/**
228
 * hb_face_builder_add_table:
229
 * @face: A face object created with hb_face_builder_create()
230
 * @tag: The #hb_tag_t of the table to add
231
 * @blob: The blob containing the table data to add
232
 *
233
 * Add table for @tag with data provided by @blob to the face.  @face must
234
 * be created using hb_face_builder_create().
235
 *
236
 * Since: 1.9.0
237
 **/
238
hb_bool_t
239
hb_face_builder_add_table (hb_face_t *face, hb_tag_t tag, hb_blob_t *blob)
240
127k
{
241
127k
  if (unlikely (face->destroy != (hb_destroy_func_t) _hb_face_builder_data_destroy))
242
103
    return false;
243
244
127k
  if (tag == HB_MAP_VALUE_INVALID)
245
0
    return false;
246
247
127k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) face->user_data;
248
249
127k
  hb_blob_t* previous = data->tables.get (tag).data;
250
127k
  if (!data->tables.set (tag, face_table_info_t {hb_blob_reference (blob), (unsigned) -1}))
251
114
  {
252
114
    hb_blob_destroy (blob);
253
114
    return false;
254
114
  }
255
256
127k
  hb_blob_destroy (previous);
257
127k
  return true;
258
127k
}
259
260
/**
261
 * hb_face_builder_sort_tables:
262
 * @face: A face object created with hb_face_builder_create()
263
 * @tags: (array zero-terminated=1): ordered list of table tags terminated by
264
 *   %HB_TAG_NONE
265
 *
266
 * Set the ordering of tables for serialization. Any tables not
267
 * specified in the tags list will be ordered after the tables in
268
 * tags, ordered by the default sort ordering.
269
 *
270
 * Since: 5.3.0
271
 **/
272
void
273
hb_face_builder_sort_tables (hb_face_t *face,
274
                             const hb_tag_t  *tags)
275
0
{
276
0
  if (unlikely (face->destroy != (hb_destroy_func_t) _hb_face_builder_data_destroy))
277
0
    return;
278
279
0
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) face->user_data;
280
281
  // Sort all unspecified tables after any specified tables.
282
0
  for (auto& info : data->tables.values_ref())
283
0
    info.order = (unsigned) -1;
284
285
0
  signed order = 0;
286
0
  for (const hb_tag_t* tag = tags;
287
0
       *tag;
288
0
       tag++)
289
0
  {
290
0
    face_table_info_t* info;
291
0
    if (!data->tables.has (*tag, &info)) continue;
292
0
    info->order = order++;
293
0
  }
294
0
}