Coverage Report

Created: 2026-04-09 11:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/workdir/UnpackedTarball/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
208k
{
55
208k
  const auto& a = * (const hb_pair_t<hb_tag_t, face_table_info_t> *) pa;
56
208k
  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
208k
  if (a.second.order != b.second.order)
61
0
    return a.second.order < b.second.order ? -1 : +1;
62
63
208k
  if (a.second.data->length != b.second.data->length)
64
201k
    return a.second.data->length < b.second.data->length ? -1 : +1;
65
66
6.95k
  return a.first < b.first ? -1 : a.first == b.first ? 0 : +1;
67
208k
}
68
69
static hb_face_builder_data_t *
70
_hb_face_builder_data_create ()
71
12.4k
{
72
12.4k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) hb_calloc (1, sizeof (hb_face_builder_data_t));
73
12.4k
  if (unlikely (!data))
74
0
    return nullptr;
75
76
12.4k
  data->tables.init ();
77
78
12.4k
  return data;
79
12.4k
}
80
81
static void
82
_hb_face_builder_data_destroy (void *user_data)
83
12.4k
{
84
12.4k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
85
86
12.4k
  for (auto info : data->tables.values())
87
156k
    hb_blob_destroy (info.data);
88
89
12.4k
  data->tables.fini ();
90
91
12.4k
  hb_free (data);
92
12.4k
}
93
94
static hb_blob_t *
95
_hb_face_builder_data_reference_blob (hb_face_builder_data_t *data)
96
6.24k
{
97
98
6.24k
  unsigned int table_count = data->tables.get_population ();
99
6.24k
  unsigned int face_length = table_count * 16 + 12;
100
101
6.24k
  for (auto info : data->tables.values())
102
81.2k
    face_length += hb_ceil_to_4 (hb_blob_get_length (info.data));
103
104
6.24k
  char *buf = (char *) hb_malloc (face_length);
105
6.24k
  if (unlikely (!buf))
106
0
    return nullptr;
107
108
6.24k
  hb_serialize_context_t c (buf, face_length);
109
6.24k
  c.propagate_error (data->tables);
110
6.24k
  OT::OpenTypeFontFile *f = c.start_serialize<OT::OpenTypeFontFile> ();
111
112
6.24k
  bool is_cff = (data->tables.has (HB_TAG ('C','F','F',' '))
113
6.24k
                 || data->tables.has (HB_TAG ('C','F','F','2')));
114
6.24k
  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
6.24k
  hb_vector_t<hb_pair_t <hb_tag_t, face_table_info_t>> sorted_entries;
118
6.24k
  data->tables.iter () | hb_sink (sorted_entries);
119
6.24k
  if (unlikely (sorted_entries.in_error ()))
120
0
  {
121
0
    hb_free (buf);
122
0
    return nullptr;
123
0
  }
124
125
6.24k
  sorted_entries.qsort (compare_entries);
126
127
6.24k
  bool ret = f->serialize_single (&c,
128
6.24k
                                  sfnt_tag,
129
6.24k
                                  + sorted_entries.iter()
130
81.2k
                                  | hb_map ([&] (hb_pair_t<hb_tag_t, face_table_info_t> _) {
131
81.2k
                                    return hb_pair_t<hb_tag_t, hb_blob_t*> (_.first, _.second.data);
132
81.2k
                                  }));
133
134
6.24k
  c.end_serialize ();
135
136
6.24k
  if (unlikely (!ret))
137
0
  {
138
0
    hb_free (buf);
139
0
    return nullptr;
140
0
  }
141
142
6.24k
  return hb_blob_create (buf, face_length, HB_MEMORY_MODE_WRITABLE, buf, hb_free);
143
6.24k
}
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
131k
{
148
131k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
149
150
131k
  if (!tag)
151
6.24k
    return _hb_face_builder_data_reference_blob (data);
152
153
124k
  return hb_blob_reference (data->tables[tag].data);
154
131k
}
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
12.4k
{
163
12.4k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) user_data;
164
165
12.4k
  unsigned population = data->tables.get_population ();
166
167
12.4k
  if (!table_count)
168
6.24k
    return population;
169
170
6.24k
  if (unlikely (start_offset >= population))
171
0
  {
172
0
    *table_count = 0;
173
0
    return population;
174
0
  }
175
176
  // Sort the tags.
177
6.24k
  hb_vector_t<hb_tag_t> sorted_tags;
178
6.24k
  data->tables.keys () | hb_sink (sorted_tags);
179
6.24k
  if (unlikely (sorted_tags.in_error ()))
180
0
  {
181
    // Not much to do...
182
0
  }
183
262k
  sorted_tags.qsort ([] (const hb_tag_t &a, const hb_tag_t &b) {
184
262k
    return a < b;
185
262k
  });
186
187
6.24k
  auto array = sorted_tags.as_array ().sub_array (start_offset, table_count);
188
6.24k
  auto out = hb_array (table_tags, *table_count);
189
190
6.24k
  + array.iter ()
191
6.24k
  | hb_sink (out)
192
6.24k
  ;
193
194
6.24k
  return population;
195
6.24k
}
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
12.4k
{
212
12.4k
  hb_face_builder_data_t *data = _hb_face_builder_data_create ();
213
12.4k
  if (unlikely (!data)) return hb_face_get_empty ();
214
215
12.4k
  hb_face_t *face = hb_face_create_for_tables (_hb_face_builder_reference_table,
216
12.4k
                 data,
217
12.4k
                 _hb_face_builder_data_destroy);
218
219
12.4k
  hb_face_set_get_table_tags_func (face,
220
12.4k
           _hb_face_builder_get_table_tags,
221
12.4k
           data,
222
12.4k
           nullptr);
223
224
12.4k
  return face;
225
12.4k
}
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
156k
{
241
156k
  if (unlikely (face->destroy != (hb_destroy_func_t) _hb_face_builder_data_destroy))
242
0
    return false;
243
244
156k
  if (tag == HB_MAP_VALUE_INVALID)
245
0
    return false;
246
247
156k
  hb_face_builder_data_t *data = (hb_face_builder_data_t *) face->user_data;
248
249
156k
  hb_blob_t* previous = data->tables.get (tag).data;
250
156k
  if (!data->tables.set (tag, face_table_info_t {hb_blob_reference (blob), (unsigned) -1}))
251
0
  {
252
0
    hb_blob_destroy (blob);
253
0
    return false;
254
0
  }
255
256
156k
  hb_blob_destroy (previous);
257
156k
  return true;
258
156k
}
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
}