]> git.sur5r.net Git - i3/i3/blob - libi3/font.c
Reduce some code around frees
[i3/i3] / libi3 / font.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include "libi3.h"
9
10 #include <assert.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <stdbool.h>
15 #include <err.h>
16
17 #include <cairo/cairo-xcb.h>
18 #include <pango/pangocairo.h>
19
20 static const i3Font *savedFont = NULL;
21
22 static xcb_visualtype_t *root_visual_type;
23 static double pango_font_red;
24 static double pango_font_green;
25 static double pango_font_blue;
26
27 static PangoLayout *create_layout_with_dpi(cairo_t *cr) {
28     PangoLayout *layout;
29     PangoContext *context;
30
31     context = pango_cairo_create_context(cr);
32     pango_cairo_context_set_resolution(context, get_dpi_value());
33     layout = pango_layout_new(context);
34     g_object_unref(context);
35
36     return layout;
37 }
38
39 /*
40  * Loads a Pango font description into an i3Font structure. Returns true
41  * on success, false otherwise.
42  *
43  */
44 static bool load_pango_font(i3Font *font, const char *desc) {
45     /* Load the font description */
46     font->specific.pango_desc = pango_font_description_from_string(desc);
47     if (!font->specific.pango_desc) {
48         ELOG("Could not open font %s with Pango, fallback to X font.\n", desc);
49         return false;
50     }
51
52     LOG("Using Pango font %s, size %d\n",
53         pango_font_description_get_family(font->specific.pango_desc),
54         pango_font_description_get_size(font->specific.pango_desc) / PANGO_SCALE);
55
56     /* We cache root_visual_type here, since you must call
57      * load_pango_font before any other pango function
58      * that would need root_visual_type */
59     root_visual_type = get_visualtype(root_screen);
60
61     /* Create a dummy Pango layout to compute the font height */
62     cairo_surface_t *surface = cairo_xcb_surface_create(conn, root_screen->root, root_visual_type, 1, 1);
63     cairo_t *cr = cairo_create(surface);
64     PangoLayout *layout = create_layout_with_dpi(cr);
65     pango_layout_set_font_description(layout, font->specific.pango_desc);
66
67     /* Get the font height */
68     gint height;
69     pango_layout_get_pixel_size(layout, NULL, &height);
70     font->height = height;
71
72     /* Free resources */
73     g_object_unref(layout);
74     cairo_destroy(cr);
75     cairo_surface_destroy(surface);
76
77     /* Set the font type and return successfully */
78     font->type = FONT_TYPE_PANGO;
79     return true;
80 }
81
82 /*
83  * Draws text using Pango rendering.
84  *
85  */
86 static void draw_text_pango(const char *text, size_t text_len,
87                             xcb_drawable_t drawable, xcb_visualtype_t *visual, int x, int y,
88                             int max_width, bool pango_markup) {
89     /* Create the Pango layout */
90     /* root_visual_type is cached in load_pango_font */
91     cairo_surface_t *surface = cairo_xcb_surface_create(conn, drawable,
92                                                         visual, x + max_width, y + savedFont->height);
93     cairo_t *cr = cairo_create(surface);
94     PangoLayout *layout = create_layout_with_dpi(cr);
95     gint height;
96
97     pango_layout_set_font_description(layout, savedFont->specific.pango_desc);
98     pango_layout_set_width(layout, max_width * PANGO_SCALE);
99     pango_layout_set_wrap(layout, PANGO_WRAP_CHAR);
100     pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END);
101
102     if (pango_markup)
103         pango_layout_set_markup(layout, text, text_len);
104     else
105         pango_layout_set_text(layout, text, text_len);
106
107     /* Do the drawing */
108     cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
109     cairo_set_source_rgb(cr, pango_font_red, pango_font_green, pango_font_blue);
110     pango_cairo_update_layout(cr, layout);
111     pango_layout_get_pixel_size(layout, NULL, &height);
112     /* Center the piece of text vertically if its height is smaller than the
113      * cached font height, and just let "high" symbols fall out otherwise. */
114     int yoffset = abs(height - savedFont->height) / 2;
115     cairo_move_to(cr, x, y - yoffset);
116     pango_cairo_show_layout(cr, layout);
117
118     /* Free resources */
119     g_object_unref(layout);
120     cairo_destroy(cr);
121     cairo_surface_destroy(surface);
122 }
123
124 /*
125  * Calculate the text width using Pango rendering.
126  *
127  */
128 static int predict_text_width_pango(const char *text, size_t text_len, bool pango_markup) {
129     /* Create a dummy Pango layout */
130     /* root_visual_type is cached in load_pango_font */
131     cairo_surface_t *surface = cairo_xcb_surface_create(conn, root_screen->root, root_visual_type, 1, 1);
132     cairo_t *cr = cairo_create(surface);
133     PangoLayout *layout = create_layout_with_dpi(cr);
134
135     /* Get the font width */
136     gint width;
137     pango_layout_set_font_description(layout, savedFont->specific.pango_desc);
138
139     if (pango_markup)
140         pango_layout_set_markup(layout, text, text_len);
141     else
142         pango_layout_set_text(layout, text, text_len);
143
144     pango_cairo_update_layout(cr, layout);
145     pango_layout_get_pixel_size(layout, &width, NULL);
146
147     /* Free resources */
148     g_object_unref(layout);
149     cairo_destroy(cr);
150     cairo_surface_destroy(surface);
151
152     return width;
153 }
154
155 /*
156  * Loads a font for usage, also getting its metrics. If fallback is true,
157  * the fonts 'fixed' or '-misc-*' will be loaded instead of exiting. If any
158  * font was previously loaded, it will be freed.
159  *
160  */
161 i3Font load_font(const char *pattern, const bool fallback) {
162     /* if any font was previously loaded, free it now */
163     free_font();
164
165     i3Font font;
166     font.type = FONT_TYPE_NONE;
167
168     /* No XCB connction, return early because we're just validating the
169      * configuration file. */
170     if (conn == NULL) {
171         return font;
172     }
173
174     /* Try to load a pango font if specified */
175     if (strlen(pattern) > strlen("pango:") && !strncmp(pattern, "pango:", strlen("pango:"))) {
176         const char *font_pattern = pattern + strlen("pango:");
177         if (load_pango_font(&font, font_pattern)) {
178             font.pattern = sstrdup(pattern);
179             return font;
180         }
181     } else if (strlen(pattern) > strlen("xft:") && !strncmp(pattern, "xft:", strlen("xft:"))) {
182         const char *font_pattern = pattern + strlen("xft:");
183         if (load_pango_font(&font, font_pattern)) {
184             font.pattern = sstrdup(pattern);
185             return font;
186         }
187     }
188
189     /* Send all our requests first */
190     font.specific.xcb.id = xcb_generate_id(conn);
191     xcb_void_cookie_t font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
192                                                           strlen(pattern), pattern);
193     xcb_query_font_cookie_t info_cookie = xcb_query_font(conn, font.specific.xcb.id);
194
195     /* Check for errors. If errors, fall back to default font. */
196     xcb_generic_error_t *error;
197     error = xcb_request_check(conn, font_cookie);
198
199     /* If we fail to open font, fall back to 'fixed' */
200     if (fallback && error != NULL) {
201         ELOG("Could not open font %s (X error %d). Trying fallback to 'fixed'.\n",
202              pattern, error->error_code);
203         pattern = "fixed";
204         font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
205                                             strlen(pattern), pattern);
206         info_cookie = xcb_query_font(conn, font.specific.xcb.id);
207
208         /* Check if we managed to open 'fixed' */
209         free(error);
210         error = xcb_request_check(conn, font_cookie);
211
212         /* Fall back to '-misc-*' if opening 'fixed' fails. */
213         if (error != NULL) {
214             ELOG("Could not open fallback font 'fixed', trying with '-misc-*'.\n");
215             pattern = "-misc-*";
216             font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
217                                                 strlen(pattern), pattern);
218             info_cookie = xcb_query_font(conn, font.specific.xcb.id);
219
220             free(error);
221             if ((error = xcb_request_check(conn, font_cookie)) != NULL)
222                 errx(EXIT_FAILURE, "Could open neither requested font nor fallbacks "
223                                    "(fixed or -misc-*): X11 error %d",
224                      error->error_code);
225         }
226     }
227     free(error);
228
229     font.pattern = sstrdup(pattern);
230     LOG("Using X font %s\n", pattern);
231
232     /* Get information (height/name) for this font */
233     if (!(font.specific.xcb.info = xcb_query_font_reply(conn, info_cookie, NULL)))
234         errx(EXIT_FAILURE, "Could not load font \"%s\"", pattern);
235
236     /* Get the font table, if possible */
237     if (xcb_query_font_char_infos_length(font.specific.xcb.info) == 0)
238         font.specific.xcb.table = NULL;
239     else
240         font.specific.xcb.table = xcb_query_font_char_infos(font.specific.xcb.info);
241
242     /* Calculate the font height */
243     font.height = font.specific.xcb.info->font_ascent + font.specific.xcb.info->font_descent;
244
245     /* Set the font type and return successfully */
246     font.type = FONT_TYPE_XCB;
247     return font;
248 }
249
250 /*
251  * Defines the font to be used for the forthcoming calls.
252  *
253  */
254 void set_font(i3Font *font) {
255     savedFont = font;
256 }
257
258 /*
259  * Frees the resources taken by the current font. If no font was previously
260  * loaded, it simply returns.
261  *
262  */
263 void free_font(void) {
264     /* if there is no saved font, simply return */
265     if (savedFont == NULL)
266         return;
267
268     free(savedFont->pattern);
269     switch (savedFont->type) {
270         case FONT_TYPE_NONE:
271             /* Nothing to do */
272             break;
273         case FONT_TYPE_XCB: {
274             /* Close the font and free the info */
275             xcb_close_font(conn, savedFont->specific.xcb.id);
276             free(savedFont->specific.xcb.info);
277             break;
278         }
279         case FONT_TYPE_PANGO:
280             /* Free the font description */
281             pango_font_description_free(savedFont->specific.pango_desc);
282             break;
283     }
284
285     savedFont = NULL;
286 }
287
288 /*
289  * Defines the colors to be used for the forthcoming draw_text calls.
290  *
291  */
292 void set_font_colors(xcb_gcontext_t gc, color_t foreground, color_t background) {
293     assert(savedFont != NULL);
294
295     switch (savedFont->type) {
296         case FONT_TYPE_NONE:
297             /* Nothing to do */
298             break;
299         case FONT_TYPE_XCB: {
300             /* Change the font and colors in the GC */
301             uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
302             uint32_t values[] = {foreground.colorpixel, background.colorpixel, savedFont->specific.xcb.id};
303             xcb_change_gc(conn, gc, mask, values);
304             break;
305         }
306         case FONT_TYPE_PANGO:
307             /* Save the foreground font */
308             pango_font_red = foreground.red;
309             pango_font_green = foreground.green;
310             pango_font_blue = foreground.blue;
311             break;
312     }
313 }
314
315 /*
316  * Returns true if and only if the current font is a pango font.
317  *
318  */
319 bool font_is_pango(void) {
320     return savedFont->type == FONT_TYPE_PANGO;
321 }
322
323 static int predict_text_width_xcb(const xcb_char2b_t *text, size_t text_len);
324
325 static void draw_text_xcb(const xcb_char2b_t *text, size_t text_len, xcb_drawable_t drawable,
326                           xcb_gcontext_t gc, int x, int y, int max_width) {
327     /* X11 coordinates for fonts start at the baseline */
328     int pos_y = y + savedFont->specific.xcb.info->font_ascent;
329
330     /* The X11 protocol limits text drawing to 255 chars, so we may need
331      * multiple calls */
332     int offset = 0;
333     for (;;) {
334         /* Calculate the size of this chunk */
335         int chunk_size = (text_len > 255 ? 255 : text_len);
336         const xcb_char2b_t *chunk = text + offset;
337
338         /* Draw it */
339         xcb_image_text_16(conn, chunk_size, drawable, gc, x, pos_y, chunk);
340
341         /* Advance the offset and length of the text to draw */
342         offset += chunk_size;
343         text_len -= chunk_size;
344
345         /* Check if we're done */
346         if (text_len == 0)
347             break;
348
349         /* Advance pos_x based on the predicted text width */
350         x += predict_text_width_xcb(chunk, chunk_size);
351     }
352 }
353
354 /*
355  * Draws text onto the specified X drawable (normally a pixmap) at the
356  * specified coordinates (from the top left corner of the leftmost, uppermost
357  * glyph) and using the provided gc.
358  *
359  * Text must be specified as an i3String.
360  *
361  */
362 void draw_text(i3String *text, xcb_drawable_t drawable, xcb_gcontext_t gc,
363                xcb_visualtype_t *visual, int x, int y, int max_width) {
364     assert(savedFont != NULL);
365     if (visual == NULL) {
366         visual = root_visual_type;
367     }
368
369     switch (savedFont->type) {
370         case FONT_TYPE_NONE:
371             /* Nothing to do */
372             return;
373         case FONT_TYPE_XCB:
374             draw_text_xcb(i3string_as_ucs2(text), i3string_get_num_glyphs(text),
375                           drawable, gc, x, y, max_width);
376             break;
377         case FONT_TYPE_PANGO:
378             /* Render the text using Pango */
379             draw_text_pango(i3string_as_utf8(text), i3string_get_num_bytes(text),
380                             drawable, visual, x, y, max_width, i3string_is_markup(text));
381             return;
382     }
383 }
384
385 /*
386  * ASCII version of draw_text to print static strings.
387  *
388  */
389 void draw_text_ascii(const char *text, xcb_drawable_t drawable,
390                      xcb_gcontext_t gc, int x, int y, int max_width) {
391     assert(savedFont != NULL);
392
393     switch (savedFont->type) {
394         case FONT_TYPE_NONE:
395             /* Nothing to do */
396             return;
397         case FONT_TYPE_XCB: {
398             size_t text_len = strlen(text);
399             if (text_len > 255) {
400                 /* The text is too long to draw it directly to X */
401                 i3String *str = i3string_from_utf8(text);
402                 draw_text(str, drawable, gc, NULL, x, y, max_width);
403                 i3string_free(str);
404             } else {
405                 /* X11 coordinates for fonts start at the baseline */
406                 int pos_y = y + savedFont->specific.xcb.info->font_ascent;
407
408                 xcb_image_text_8(conn, text_len, drawable, gc, x, pos_y, text);
409             }
410             break;
411         }
412         case FONT_TYPE_PANGO:
413             /* Render the text using Pango */
414             draw_text_pango(text, strlen(text),
415                             drawable, root_visual_type, x, y, max_width, false);
416             return;
417     }
418 }
419
420 static int xcb_query_text_width(const xcb_char2b_t *text, size_t text_len) {
421     /* Make the user know we’re using the slow path, but only once. */
422     static bool first_invocation = true;
423     if (first_invocation) {
424         fprintf(stderr, "Using slow code path for text extents\n");
425         first_invocation = false;
426     }
427
428     /* Query the text width */
429     xcb_generic_error_t *error;
430     xcb_query_text_extents_cookie_t cookie = xcb_query_text_extents(conn,
431                                                                     savedFont->specific.xcb.id, text_len, (xcb_char2b_t *)text);
432     xcb_query_text_extents_reply_t *reply = xcb_query_text_extents_reply(conn,
433                                                                          cookie, &error);
434     if (reply == NULL) {
435         /* We return a safe estimate because a rendering error is better than
436          * a crash. Plus, the user will see the error in their log. */
437         fprintf(stderr, "Could not get text extents (X error code %d)\n",
438                 error->error_code);
439         return savedFont->specific.xcb.info->max_bounds.character_width * text_len;
440     }
441
442     int width = reply->overall_width;
443     free(reply);
444     return width;
445 }
446
447 static int predict_text_width_xcb(const xcb_char2b_t *input, size_t text_len) {
448     if (text_len == 0)
449         return 0;
450
451     int width;
452     if (savedFont->specific.xcb.table == NULL) {
453         /* If we don't have a font table, fall back to querying the server */
454         width = xcb_query_text_width(input, text_len);
455     } else {
456         /* Save some pointers for convenience */
457         xcb_query_font_reply_t *font_info = savedFont->specific.xcb.info;
458         xcb_charinfo_t *font_table = savedFont->specific.xcb.table;
459
460         /* Calculate the width using the font table */
461         width = 0;
462         for (size_t i = 0; i < text_len; i++) {
463             xcb_charinfo_t *info;
464             int row = input[i].byte1;
465             int col = input[i].byte2;
466
467             if (row < font_info->min_byte1 ||
468                 row > font_info->max_byte1 ||
469                 col < font_info->min_char_or_byte2 ||
470                 col > font_info->max_char_or_byte2)
471                 continue;
472
473             /* Don't you ask me, how this one works… (Merovius) */
474             info = &font_table[((row - font_info->min_byte1) *
475                                 (font_info->max_char_or_byte2 - font_info->min_char_or_byte2 + 1)) +
476                                (col - font_info->min_char_or_byte2)];
477
478             if (info->character_width != 0 ||
479                 (info->right_side_bearing |
480                  info->left_side_bearing |
481                  info->ascent |
482                  info->descent) != 0) {
483                 width += info->character_width;
484             }
485         }
486     }
487
488     return width;
489 }
490
491 /*
492  * Predict the text width in pixels for the given text. Text must be
493  * specified as an i3String.
494  *
495  */
496 int predict_text_width(i3String *text) {
497     assert(savedFont != NULL);
498
499     switch (savedFont->type) {
500         case FONT_TYPE_NONE:
501             /* Nothing to do */
502             return 0;
503         case FONT_TYPE_XCB:
504             return predict_text_width_xcb(i3string_as_ucs2(text), i3string_get_num_glyphs(text));
505         case FONT_TYPE_PANGO:
506             /* Calculate extents using Pango */
507             return predict_text_width_pango(i3string_as_utf8(text), i3string_get_num_bytes(text),
508                                             i3string_is_markup(text));
509     }
510     assert(false);
511 }