]> git.sur5r.net Git - i3/i3/blob - libi3/font.c
Merge branch 'master' into next
[i3/i3] / libi3 / font.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <assert.h>
9 #include <stdint.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <stdbool.h>
13 #include <err.h>
14
15 #include "libi3.h"
16
17 extern xcb_connection_t *conn;
18 static const i3Font *savedFont = NULL;
19
20 /*
21  * Loads a font for usage, also getting its metrics. If fallback is true,
22  * the fonts 'fixed' or '-misc-*' will be loaded instead of exiting.
23  *
24  */
25 i3Font load_font(const char *pattern, const bool fallback) {
26     i3Font font;
27
28     /* Send all our requests first */
29     font.id = xcb_generate_id(conn);
30     xcb_void_cookie_t font_cookie = xcb_open_font_checked(conn, font.id,
31             strlen(pattern), pattern);
32     xcb_query_font_cookie_t info_cookie = xcb_query_font(conn, font.id);
33
34     /* Check for errors. If errors, fall back to default font. */
35     xcb_generic_error_t *error;
36     error = xcb_request_check(conn, font_cookie);
37
38     /* If we fail to open font, fall back to 'fixed' */
39     if (fallback && error != NULL) {
40         ELOG("Could not open font %s (X error %d). Trying fallback to 'fixed'.\n",
41              pattern, error->error_code);
42         pattern = "fixed";
43         font_cookie = xcb_open_font_checked(conn, font.id, strlen(pattern), pattern);
44         info_cookie = xcb_query_font(conn, font.id);
45
46         /* Check if we managed to open 'fixed' */
47         error = xcb_request_check(conn, font_cookie);
48
49         /* Fall back to '-misc-*' if opening 'fixed' fails. */
50         if (error != NULL) {
51             ELOG("Could not open fallback font 'fixed', trying with '-misc-*'.\n");
52             pattern = "-misc-*";
53             font_cookie = xcb_open_font_checked(conn, font.id, strlen(pattern), pattern);
54             info_cookie = xcb_query_font(conn, font.id);
55
56             if ((error = xcb_request_check(conn, font_cookie)) != NULL)
57                 errx(EXIT_FAILURE, "Could open neither requested font nor fallbacks "
58                      "(fixed or -misc-*): X11 error %d", error->error_code);
59         }
60     }
61
62     /* Get information (height/name) for this font */
63     if (!(font.info = xcb_query_font_reply(conn, info_cookie, NULL)))
64         errx(EXIT_FAILURE, "Could not load font \"%s\"", pattern);
65
66     /* Get the font table, if possible */
67     if (xcb_query_font_char_infos_length(font.info) == 0)
68         font.table = NULL;
69     else
70         font.table = xcb_query_font_char_infos(font.info);
71
72     /* Calculate the font height */
73     font.height = font.info->font_ascent + font.info->font_descent;
74
75     return font;
76 }
77
78 /*
79  * Defines the font to be used for the forthcoming calls.
80  *
81  */
82 void set_font(i3Font *font) {
83     savedFont = font;
84 }
85
86 /*
87  * Frees the resources taken by the current font.
88  *
89  */
90 void free_font() {
91     /* Close the font and free the info */
92     xcb_close_font(conn, savedFont->id);
93     if (savedFont->info)
94         free(savedFont->info);
95 }
96
97 /*
98  * Defines the colors to be used for the forthcoming draw_text calls.
99  *
100  */
101 void set_font_colors(xcb_gcontext_t gc, uint32_t foreground, uint32_t background) {
102     assert(savedFont != NULL);
103     uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
104     uint32_t values[] = { foreground, background, savedFont->id };
105     xcb_change_gc(conn, gc, mask, values);
106 }
107
108 /*
109  * Draws text onto the specified X drawable (normally a pixmap) at the
110  * specified coordinates (from the top left corner of the leftmost, uppermost
111  * glyph) and using the provided gc. Text can be specified as UCS-2 or UTF-8.
112  *
113  */
114 void draw_text(char *text, size_t text_len, bool is_ucs2, xcb_drawable_t drawable,
115                xcb_gcontext_t gc, int x, int y, int max_width) {
116     assert(savedFont != NULL);
117     assert(text_len != 0);
118
119     /* X11 coordinates for fonts start at the baseline */
120     int pos_y = y + savedFont->info->font_ascent;
121
122     /* As an optimization, check if we can bypass conversion */
123     if (!is_ucs2 && text_len <= 255) {
124         xcb_image_text_8(conn, text_len, drawable, gc, x, pos_y, text);
125         return;
126     }
127
128     /* Convert the text into UCS-2 so we can do basic pointer math */
129     char *input = (is_ucs2 ? text : (char*)convert_utf8_to_ucs2(text, &text_len));
130
131     /* The X11 protocol limits text drawing to 255 chars, so we may need
132      * multiple calls */
133     int pos_x = x;
134     int offset = 0;
135     for (;;) {
136         /* Calculate the size of this chunk */
137         int chunk_size = (text_len > 255 ? 255 : text_len);
138         xcb_char2b_t *chunk = (xcb_char2b_t*)input + offset;
139
140         /* Draw it */
141         xcb_image_text_16(conn, chunk_size, drawable, gc, pos_x, pos_y, chunk);
142
143         /* Advance the offset and length of the text to draw */
144         offset += chunk_size;
145         text_len -= chunk_size;
146
147         /* Check if we're done */
148         if (text_len == 0)
149             break;
150
151         /* Advance pos_x based on the predicted text width */
152         pos_x += predict_text_width((char*)chunk, chunk_size, true);
153     }
154
155     /* If we had to convert, free the converted string */
156     if (!is_ucs2)
157         free(input);
158 }
159
160 static int xcb_query_text_width(xcb_char2b_t *text, size_t text_len) {
161     /* Make the user know we’re using the slow path, but only once. */
162     static bool first_invocation = true;
163     if (first_invocation) {
164         fprintf(stderr, "Using slow code path for text extents\n");
165         first_invocation = false;
166     }
167
168     /* Query the text width */
169     xcb_generic_error_t *error;
170     xcb_query_text_extents_cookie_t cookie = xcb_query_text_extents(conn,
171             savedFont->id, text_len, (xcb_char2b_t*)text);
172     xcb_query_text_extents_reply_t *reply = xcb_query_text_extents_reply(conn,
173             cookie, &error);
174     if (reply == NULL) {
175         /* We return a safe estimate because a rendering error is better than
176          * a crash. Plus, the user will see the error in his log. */
177         fprintf(stderr, "Could not get text extents (X error code %d)\n",
178                 error->error_code);
179         return savedFont->info->max_bounds.character_width * text_len;
180     }
181
182     int width = reply->overall_width;
183     free(reply);
184     return width;
185 }
186
187 /*
188  * Predict the text width in pixels for the given text. Text can be specified
189  * as UCS-2 or UTF-8.
190  *
191  */
192 int predict_text_width(char *text, size_t text_len, bool is_ucs2) {
193     /* Convert the text into UTF-16 so we can do basic pointer math */
194     xcb_char2b_t *input;
195     if (is_ucs2)
196         input = (xcb_char2b_t*)text;
197     else
198         input = convert_utf8_to_ucs2(text, &text_len);
199
200     int width;
201     if (savedFont->table == NULL) {
202         /* If we don't have a font table, fall back to querying the server */
203         width = xcb_query_text_width(input, text_len);
204     } else {
205         /* Save some pointers for convenience */
206         xcb_query_font_reply_t *font_info = savedFont->info;
207         xcb_charinfo_t *font_table = savedFont->table;
208
209         /* Calculate the width using the font table */
210         width = 0;
211         for (size_t i = 0; i < text_len; i++) {
212             xcb_charinfo_t *info;
213             int row = input[i].byte1;
214             int col = input[i].byte2;
215
216             if (row < font_info->min_byte1 ||
217                 row > font_info->max_byte1 ||
218                 col < font_info->min_char_or_byte2 ||
219                 col > font_info->max_char_or_byte2)
220                 continue;
221
222             /* Don't you ask me, how this one works… (Merovius) */
223             info = &font_table[((row - font_info->min_byte1) *
224                     (font_info->max_char_or_byte2 - font_info->min_char_or_byte2 + 1)) +
225                 (col - font_info->min_char_or_byte2)];
226
227             if (info->character_width != 0 ||
228                     (info->right_side_bearing |
229                      info->left_side_bearing |
230                      info->ascent |
231                      info->descent) != 0) {
232                 width += info->character_width;
233             }
234         }
235     }
236
237     /* If we had to convert, free the converted string */
238     if (!is_ucs2)
239         free(input);
240
241     return width;
242 }