1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 2004--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
LilyPond is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LilyPond is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
// Necessary for supporting pango_context_new() and
// pango_context_set_font_map() in Pango < 1.22
#define PANGO_ENABLE_BACKEND
#include <pango/pangoft2.h>
#include "freetype.hh"
#include FT_XFREE86_H
#include <map>
#include <cstdio>
// Ugh.
#include "pango-font.hh"
#include "dimensions.hh"
#include "file-name.hh"
#include "international.hh"
#include "lookup.hh" // debugging
#include "ly-module.hh"
#include "main.hh"
#include "string-convert.hh"
#include "warn.hh"
#include "all-font-metrics.hh"
#include "program-option.hh"
#include "open-type-font.hh"
#if HAVE_PANGO_FT2
#include "stencil.hh"
Pango_font::Pango_font (PangoFT2FontMap *fontmap,
PangoFontDescription const *description,
Real output_scale)
{
// This line looks stupid, but if we don't initialize physical_font_tab_ before
// we allocate memory in scm_c_make_hash_table, then that could trigger a garbage
// collection.
physical_font_tab_ = SCM_EOL;
physical_font_tab_ = scm_c_make_hash_table (11);
PangoDirection pango_dir = PANGO_DIRECTION_LTR;
context_ = pango_context_new ();
pango_context_set_font_map (context_, PANGO_FONT_MAP (fontmap));
pango_description_ = pango_font_description_copy (description);
attribute_list_ = pango_attr_list_new ();
// urgh. I don't understand this. Why isn't this 1/(scale *
// resolution * output_scale)
//
// --hwn
output_scale_ = output_scale;
scale_ = INCH_TO_BP
/ (Real (PANGO_SCALE) * Real (PANGO_RESOLUTION) * output_scale);
// ugh. Should make this configurable.
pango_context_set_language (context_, pango_language_from_string ("en_US"));
pango_context_set_base_dir (context_, pango_dir);
pango_context_set_font_description (context_, description);
}
Pango_font::~Pango_font ()
{
pango_font_description_free (pango_description_);
g_object_unref (context_);
pango_attr_list_unref (attribute_list_);
}
void
Pango_font::register_font_file (const string &filename,
const string &ps_name,
int face_index)
{
scm_hash_set_x (physical_font_tab_,
ly_string2scm (ps_name),
scm_list_2 (ly_string2scm (filename),
scm_from_int (face_index)));
}
size_t
Pango_font::name_to_index (string nm) const
{
PangoFcFont *fcfont = PANGO_FC_FONT (pango_context_load_font (context_, pango_description_));
FT_Face face = pango_fc_font_lock_face (fcfont);
char *nm_str = (char *) nm.c_str ();
if (FT_UInt idx = FT_Get_Name_Index (face, nm_str))
{
pango_fc_font_unlock_face (fcfont);
return (size_t) idx;
}
pango_fc_font_unlock_face (fcfont);
return (size_t) - 1;
}
void
Pango_font::derived_mark () const
{
scm_gc_mark (physical_font_tab_);
}
void
get_glyph_index_name (char *s,
FT_ULong code)
{
sprintf (s, "glyphIndex%lX", code);
}
void
get_unicode_name (char *s,
FT_ULong code)
{
if (code > 0xFFFF)
sprintf (s, "u%lX", code);
else
sprintf (s, "uni%04lX", code);
}
Box
Pango_font::get_unscaled_indexed_char_dimensions (size_t signed_idx) const
{
PangoFcFont *fcfont = PANGO_FC_FONT (pango_context_load_font (context_, pango_description_));
FT_Face face = pango_fc_font_lock_face (fcfont);
Box b = ly_FT_get_unscaled_indexed_char_dimensions (face, signed_idx);
pango_fc_font_unlock_face (fcfont);
return b;
}
Box
Pango_font::get_scaled_indexed_char_dimensions (size_t signed_idx) const
{
PangoFont *font = pango_context_load_font (context_, pango_description_);
PangoRectangle logical_rect;
PangoRectangle ink_rect;
pango_font_get_glyph_extents (font, signed_idx, &ink_rect, &logical_rect);
Box out (Interval (PANGO_LBEARING (ink_rect),
PANGO_RBEARING (ink_rect)),
Interval (-PANGO_DESCENT (ink_rect),
PANGO_ASCENT (ink_rect)));
out.scale (scale_);
return out;
}
Box
Pango_font::get_glyph_outline_bbox (size_t signed_idx) const
{
PangoFcFont *fcfont = PANGO_FC_FONT (pango_context_load_font (context_, pango_description_));
FT_Face face = pango_fc_font_lock_face (fcfont);
Box b = ly_FT_get_glyph_outline_bbox (face, signed_idx);
pango_fc_font_unlock_face (fcfont);
return b;
}
SCM
Pango_font::get_glyph_outline (size_t signed_idx) const
{
PangoFcFont *fcfont = PANGO_FC_FONT (pango_context_load_font (context_, pango_description_));
FT_Face face = pango_fc_font_lock_face (fcfont);
SCM s = ly_FT_get_glyph_outline (face, signed_idx);
pango_fc_font_unlock_face (fcfont);
return s;
}
Stencil
Pango_font::pango_item_string_stencil (PangoGlyphItem const *glyph_item) const
{
const int GLYPH_NAME_LEN = 256;
char glyph_name[GLYPH_NAME_LEN];
PangoAnalysis const *pa = &(glyph_item->item->analysis);
PangoGlyphString *pgs = glyph_item->glyphs;
PangoRectangle logical_rect;
PangoRectangle ink_rect;
pango_glyph_string_extents (pgs, pa->font, &ink_rect, &logical_rect);
PangoFcFont *fcfont = PANGO_FC_FONT (pa->font);
FT_Face ftface = pango_fc_font_lock_face (fcfont);
Box b (Interval (PANGO_LBEARING (logical_rect),
PANGO_RBEARING (logical_rect)),
Interval (-PANGO_DESCENT (ink_rect),
PANGO_ASCENT (ink_rect)));
b.scale (scale_);
const string ps_name_str0 = get_postscript_name (ftface);
FcPattern *fcpat = fcfont->font_pattern;
FcChar8 *file_name_as_ptr = 0;
FcPatternGetString (fcpat, FC_FILE, 0, &file_name_as_ptr);
// due to a bug in FreeType 2.3.7 and earlier we can't use
// ftface->face_index; it is always zero for some font formats,
// in particular TTCs which we are interested in
int face_index = 0;
FcPatternGetInteger (fcpat, FC_INDEX, 0, &face_index);
string file_name;
if (file_name_as_ptr)
// Normalize file name.
file_name = File_name ((char const *)file_name_as_ptr).to_string ();
SCM glyph_exprs = SCM_EOL;
SCM *tail = &glyph_exprs;
Index_to_charcode_map const *cmap = 0;
bool has_glyph_names = ftface->face_flags & FT_FACE_FLAG_GLYPH_NAMES;
if (!has_glyph_names)
cmap = all_fonts_global->get_index_to_charcode_map (file_name, face_index, ftface);
bool is_ttf = string (FT_Get_X11_Font_Format (ftface)) == "TrueType";
bool cid_keyed = false;
for (int i = 0; i < pgs->num_glyphs; i++)
{
PangoGlyphInfo *pgi = pgs->glyphs + i;
PangoGlyph pg = pgi->glyph;
PangoGlyphGeometry ggeo = pgi->geometry;
/*
Zero-width characters are valid Unicode characters,
but glyph lookups need to be skipped.
*/
if (!(pg ^ PANGO_GLYPH_EMPTY))
continue;
if (pg & PANGO_GLYPH_UNKNOWN_FLAG)
{
warning (_f ("no glyph for character U+%0X in font `%s'",
pg & ~PANGO_GLYPH_UNKNOWN_FLAG, file_name.c_str ()));
continue;
}
glyph_name[0] = '\0';
if (has_glyph_names)
{
FT_Error errorcode = FT_Get_Glyph_Name (ftface, pg, glyph_name,
GLYPH_NAME_LEN);
if (errorcode)
programming_error (_f ("FT_Get_Glyph_Name () error: %s",
freetype_error_string (errorcode).c_str ()));
}
SCM char_id = SCM_EOL;
if (glyph_name[0] == '\0'
&& cmap
&& is_ttf
&& cmap->find (pg) != cmap->end ())
{
FT_ULong char_code = cmap->find (pg)->second;
get_unicode_name (glyph_name, char_code);
}
if (glyph_name[0] == '\0' && has_glyph_names)
{
programming_error (_f ("Glyph has no name, but font supports glyph naming.\n"
"Skipping glyph U+%0X, file %s",
pg, file_name.c_str ()));
continue;
}
if (glyph_name == string (".notdef") && is_ttf)
glyph_name[0] = '\0';
if (glyph_name[0] == '\0' && is_ttf)
// Access by glyph index directly.
get_glyph_index_name (glyph_name, pg);
if (glyph_name[0] == '\0')
{
// CID entry
cid_keyed = true;
char_id = scm_from_uint32 (pg);
}
else
char_id = scm_from_utf8_string (glyph_name);
PangoRectangle logical_sub_rect;
PangoRectangle ink_sub_rect;
pango_glyph_string_extents_range (pgs, i, i + 1, pa->font, &ink_sub_rect, &logical_sub_rect);
Box b_sub (Interval (PANGO_LBEARING (logical_sub_rect),
PANGO_RBEARING (logical_sub_rect)),
Interval (-PANGO_DESCENT (ink_sub_rect),
PANGO_ASCENT (ink_sub_rect)));
b_sub.scale (scale_);
*tail = scm_cons (scm_list_5 (scm_from_double (b_sub[X_AXIS][RIGHT] - b_sub[X_AXIS][LEFT]),
scm_cons (scm_from_double (b_sub[Y_AXIS][DOWN]),
scm_from_double (b_sub[Y_AXIS][UP])),
scm_from_double (ggeo.x_offset * scale_),
scm_from_double (- ggeo.y_offset * scale_),
char_id),
SCM_EOL);
tail = SCM_CDRLOC (*tail);
}
pango_fc_font_unlock_face (fcfont);
pango_glyph_string_free (pgs);
pgs = 0;
PangoFontDescription *descr = pango_font_describe (pa->font);
Real size = pango_font_description_get_size (descr)
/ (Real (PANGO_SCALE));
if (ps_name_str0.empty ())
warning (_f ("no PostScript font name for font `%s'", file_name));
string ps_name;
if (ps_name_str0.empty ()
&& file_name != ""
&& (file_name.find (".otf") != NPOS
|| file_name.find (".cff") != NPOS))
{
// UGH: kludge a PS name for OTF/CFF fonts.
string name = file_name;
ssize idx = file_name.find (".otf");
if (idx == NPOS)
idx = file_name.find (".cff");
name = name.substr (0, idx);
ssize slash_idx = name.rfind ('/');
if (slash_idx != NPOS)
{
slash_idx++;
name = name.substr (slash_idx,
name.length () - slash_idx);
}
string initial = name.substr (0, 1);
initial = String_convert::to_upper (initial);
name = name.substr (1, name.length () - 1);
name = String_convert::to_lower (name);
ps_name = initial + name;
}
else if (!ps_name_str0.empty ())
ps_name = ps_name_str0;
if (ps_name.length ())
{
((Pango_font *) this)->register_font_file (file_name,
ps_name,
face_index);
SCM expr = scm_list_n (ly_symbol2scm ("glyph-string"),
self_scm (),
ly_string2scm (ps_name),
scm_from_double (size),
scm_from_bool (cid_keyed),
ly_quote_scm (glyph_exprs),
SCM_UNDEFINED);
return Stencil (b, expr);
}
warning (_ ("FreeType face has no PostScript font name"));
return Stencil ();
}
SCM
Pango_font::physical_font_tab () const
{
return physical_font_tab_;
}
extern bool music_strings_to_paths;
Stencil
Pango_font::text_stencil (Output_def * /* state */,
const string &str, bool music_string) const
{
/*
The text assigned to a PangoLayout is automatically divided
into sections and reordered according to the Unicode
Bidirectional Algorithm, if necessary.
*/
PangoLayout *layout = pango_layout_new (context_);
pango_layout_set_text (layout, str.c_str (), -1);
GSList *lines = pango_layout_get_lines (layout);
Stencil dest;
Real last_x = 0.0;
for (GSList *l = lines; l; l = l->next)
{
PangoLayoutLine *line = (PangoLayoutLine *) l->data;
GSList *layout_runs = line->runs;
for (GSList *p = layout_runs; p; p = p->next)
{
PangoGlyphItem *item = (PangoGlyphItem *) p->data;
Stencil item_stencil = pango_item_string_stencil (item);
item_stencil.translate_axis (last_x, X_AXIS);
last_x = item_stencil.extent (X_AXIS)[RIGHT];
#if 0 // Check extents.
if (!item_stencil.extent_box ()[X_AXIS].is_empty ())
{
Stencil frame = Lookup::frame (item_stencil.extent_box (), 0.1, 0.1);
Box empty;
empty.set_empty ();
Stencil dimless_frame (empty, frame.expr ());
dest.add_stencil (frame);
}
#endif
dest.add_stencil (item_stencil);
}
}
string name = get_output_backend_name ();
string output_mod = "scm output-" + name;
SCM mod = scm_c_resolve_module (output_mod.c_str ());
bool has_utf8_string = false;
if (ly_is_module (mod))
{
SCM utf8_string = ly_module_lookup (mod, ly_symbol2scm ("utf-8-string"));
/*
has_utf8_string should only be true when utf8_string is a
variable that is bound to a *named* procedure, i.e. not a
lambda expression.
*/
if (scm_is_true (utf8_string)
&& scm_is_true (scm_procedure_name (SCM_VARIABLE_REF (utf8_string))))
has_utf8_string = true;
}
bool to_paths = music_strings_to_paths;
/*
Backends with the utf-8-string expression use it when
1) the -dmusic-strings-to-paths option is set
and `str' is not a music string, or
2) the -dmusic-strings-to-paths option is not set.
*/
if (has_utf8_string && ((to_paths && !music_string) || !to_paths))
{
// For Pango based backends, we take a shortcut.
SCM exp = scm_list_3 (ly_symbol2scm ("utf-8-string"),
ly_string2scm (description_string ()),
ly_string2scm (str));
Box b (Interval (0, 0), Interval (0, 0));
b.unite (dest.extent_box ());
return Stencil (b, exp);
}
return dest;
}
string
Pango_font::description_string () const
{
char *descr_string = pango_font_description_to_string (pango_description_);
string s (descr_string);
g_free (descr_string);
return s;
}
SCM
Pango_font::font_file_name () const
{
return SCM_BOOL_F;
}
#endif // HAVE_PANGO_FT2
|