]> git.sur5r.net Git - i3/i3/blob - include/libi3.h
Migrate i3 rendering to cairo.
[i3/i3] / include / libi3.h
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  * libi3: contains functions which are used by i3 *and* accompanying tools such
8  * as i3-msg, i3-config-wizard, …
9  *
10  */
11 #pragma once
12
13 #include <stdbool.h>
14 #include <stdarg.h>
15 #include <stdio.h>
16 #include <xcb/xcb.h>
17 #include <xcb/xproto.h>
18 #include <xcb/xcb_keysyms.h>
19
20 #if PANGO_SUPPORT
21 #include <pango/pango.h>
22 #endif
23 #ifdef CAIRO_SUPPORT
24 #include <cairo/cairo-xcb.h>
25 #endif
26
27 #define DEFAULT_DIR_MODE (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
28
29 /**
30  * Opaque data structure for storing strings.
31  *
32  */
33 typedef struct _i3String i3String;
34
35 typedef struct Font i3Font;
36
37 /**
38  * Data structure for cached font information:
39  * - font id in X11 (load it once)
40  * - font height (multiple calls needed to get it)
41  *
42  */
43 struct Font {
44     /** The type of font */
45     enum {
46         FONT_TYPE_NONE = 0,
47         FONT_TYPE_XCB,
48         FONT_TYPE_PANGO
49     } type;
50
51     /** The height of the font, built from font_ascent + font_descent */
52     int height;
53
54     /** The pattern/name used to load the font. */
55     char *pattern;
56
57     union {
58         struct {
59             /** The xcb-id for the font */
60             xcb_font_t id;
61
62             /** Font information gathered from the server */
63             xcb_query_font_reply_t *info;
64
65             /** Font table for this font (may be NULL) */
66             xcb_charinfo_t *table;
67         } xcb;
68
69 #if PANGO_SUPPORT
70         /** The pango font description */
71         PangoFontDescription *pango_desc;
72 #endif
73     } specific;
74 };
75
76 /* Since this file also gets included by utilities which don’t use the i3 log
77  * infrastructure, we define a fallback. */
78 #if !defined(LOG)
79 void verboselog(char *fmt, ...)
80     __attribute__((format(printf, 1, 2)));
81 #define LOG(fmt, ...) verboselog("[libi3] " __FILE__ " " fmt, ##__VA_ARGS__)
82 #endif
83 #if !defined(ELOG)
84 void errorlog(char *fmt, ...)
85     __attribute__((format(printf, 1, 2)));
86 #define ELOG(fmt, ...) errorlog("[libi3] ERROR: " fmt, ##__VA_ARGS__)
87 #endif
88 #if !defined(DLOG)
89 void debuglog(char *fmt, ...)
90     __attribute__((format(printf, 1, 2)));
91 #define DLOG(fmt, ...) debuglog("%s:%s:%d - " fmt, I3__FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
92 #endif
93
94 /**
95  * Try to get the contents of the given atom (for example I3_SOCKET_PATH) from
96  * the X11 root window and return NULL if it doesn’t work.
97  *
98  * If the provided XCB connection is NULL, a new connection will be
99  * established.
100  *
101  * The memory for the contents is dynamically allocated and has to be
102  * free()d by the caller.
103  *
104  */
105 char *root_atom_contents(const char *atomname, xcb_connection_t *provided_conn, int screen);
106
107 /**
108  * Safe-wrapper around malloc which exits if malloc returns NULL (meaning that
109  * there is no more memory available)
110  *
111  */
112 void *smalloc(size_t size);
113
114 /**
115  * Safe-wrapper around calloc which exits if malloc returns NULL (meaning that
116  * there is no more memory available)
117  *
118  */
119 void *scalloc(size_t num, size_t size);
120
121 /**
122  * Safe-wrapper around realloc which exits if realloc returns NULL (meaning
123  * that there is no more memory available).
124  *
125  */
126 void *srealloc(void *ptr, size_t size);
127
128 /**
129  * Safe-wrapper around strdup which exits if malloc returns NULL (meaning that
130  * there is no more memory available)
131  *
132  */
133 char *sstrdup(const char *str);
134
135 /**
136  * Safe-wrapper around strndup which exits if strndup returns NULL (meaning that
137  * there is no more memory available)
138  *
139  */
140 char *sstrndup(const char *str, size_t size);
141
142 /**
143  * Safe-wrapper around asprintf which exits if it returns -1 (meaning that
144  * there is no more memory available)
145  *
146  */
147 int sasprintf(char **strp, const char *fmt, ...);
148
149 /**
150  * Wrapper around correct write which returns -1 (meaning that
151  * write failed) or count (meaning that all bytes were written)
152  *
153  */
154 ssize_t writeall(int fd, const void *buf, size_t count);
155
156 /**
157  * Safe-wrapper around writeall which exits if it returns -1 (meaning that
158  * write failed)
159  *
160  */
161 ssize_t swrite(int fd, const void *buf, size_t count);
162
163 /**
164  * Build an i3String from an UTF-8 encoded string.
165  * Returns the newly-allocated i3String.
166  *
167  */
168 i3String *i3string_from_utf8(const char *from_utf8);
169
170 /**
171  * Build an i3String from an UTF-8 encoded string in Pango markup.
172  *
173  */
174 i3String *i3string_from_markup(const char *from_markup);
175
176 /**
177  * Build an i3String from an UTF-8 encoded string with fixed length.
178  * To be used when no proper NUL-terminaison is available.
179  * Returns the newly-allocated i3String.
180  *
181  */
182 i3String *i3string_from_utf8_with_length(const char *from_utf8, size_t num_bytes);
183
184 /**
185  * Build an i3String from an UTF-8 encoded string in Pango markup with fixed
186  * length.
187  *
188  */
189 i3String *i3string_from_markup_with_length(const char *from_markup, size_t num_bytes);
190
191 /**
192  * Build an i3String from an UCS-2 encoded string.
193  * Returns the newly-allocated i3String.
194  *
195  */
196 i3String *i3string_from_ucs2(const xcb_char2b_t *from_ucs2, size_t num_glyphs);
197
198 /**
199  * Copies the given i3string.
200  * Note that this will not free the source string.
201  */
202 i3String *i3string_copy(i3String *str);
203
204 /**
205  * Free an i3String.
206  *
207  */
208 void i3string_free(i3String *str);
209
210 /**
211  * Securely i3string_free by setting the pointer to NULL
212  * to prevent accidentally using freed memory.
213  *
214  */
215 #define I3STRING_FREE(str)      \
216     do {                        \
217         if (str != NULL) {      \
218             i3string_free(str); \
219             str = NULL;         \
220         }                       \
221     } while (0)
222
223 /**
224  * Returns the UTF-8 encoded version of the i3String.
225  *
226  */
227 const char *i3string_as_utf8(i3String *str);
228
229 /**
230  * Returns the UCS-2 encoded version of the i3String.
231  *
232  */
233 const xcb_char2b_t *i3string_as_ucs2(i3String *str);
234
235 /**
236  * Returns the number of bytes (UTF-8 encoded) in an i3String.
237  *
238  */
239 size_t i3string_get_num_bytes(i3String *str);
240
241 /**
242  * Whether the given i3String is in Pango markup.
243  */
244 bool i3string_is_markup(i3String *str);
245
246 /**
247  * Set whether the i3String should use Pango markup.
248  */
249 void i3string_set_markup(i3String *str, bool pango_markup);
250
251 /**
252  * Escape pango markup characters in the given string.
253  */
254 i3String *i3string_escape_markup(i3String *str);
255
256 /**
257  * Returns the number of glyphs in an i3String.
258  *
259  */
260 size_t i3string_get_num_glyphs(i3String *str);
261
262 /**
263  * Connects to the i3 IPC socket and returns the file descriptor for the
264  * socket. die()s if anything goes wrong.
265  *
266  */
267 int ipc_connect(const char *socket_path);
268
269 /**
270  * Formats a message (payload) of the given size and type and sends it to i3 via
271  * the given socket file descriptor.
272  *
273  * Returns -1 when write() fails, errno will remain.
274  * Returns 0 on success.
275  *
276  */
277 int ipc_send_message(int sockfd, const uint32_t message_size,
278                      const uint32_t message_type, const uint8_t *payload);
279
280 /**
281  * Reads a message from the given socket file descriptor and stores its length
282  * (reply_length) as well as a pointer to its contents (reply).
283  *
284  * Returns -1 when read() fails, errno will remain.
285  * Returns -2 when the IPC protocol is violated (invalid magic, unexpected
286  * message type, EOF instead of a message). Additionally, the error will be
287  * printed to stderr.
288  * Returns 0 on success.
289  *
290  */
291 int ipc_recv_message(int sockfd, uint32_t *message_type,
292                      uint32_t *reply_length, uint8_t **reply);
293
294 /**
295  * Generates a configure_notify event and sends it to the given window
296  * Applications need this to think they’ve configured themselves correctly.
297  * The truth is, however, that we will manage them.
298  *
299  */
300 void fake_configure_notify(xcb_connection_t *conn, xcb_rectangle_t r, xcb_window_t window, int border_width);
301
302 /**
303  * Returns the colorpixel to use for the given hex color (think of HTML). Only
304  * works for true-color (vast majority of cases) at the moment, avoiding a
305  * roundtrip to X11.
306  *
307  * The hex_color has to start with #, for example #FF00FF.
308  *
309  * NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
310  * This has to be done by the caller.
311  *
312  * NOTE that this function may in the future rely on a global xcb_connection_t
313  * variable called 'conn' to be present.
314  *
315  */
316 uint32_t get_colorpixel(const char *hex) __attribute__((const));
317
318 #if defined(__APPLE__)
319
320 /*
321  * Taken from FreeBSD
322  * Returns a pointer to a new string which is a duplicate of the
323  * string, but only copies at most n characters.
324  *
325  */
326 char *strndup(const char *str, size_t n);
327
328 #endif
329
330 /**
331  * All-in-one function which returns the modifier mask (XCB_MOD_MASK_*) for the
332  * given keysymbol, for example for XCB_NUM_LOCK (usually configured to mod2).
333  *
334  * This function initiates one round-trip. Use get_mod_mask_for() directly if
335  * you already have the modifier mapping and key symbols.
336  *
337  */
338 uint32_t aio_get_mod_mask_for(uint32_t keysym, xcb_key_symbols_t *symbols);
339
340 /**
341  * Returns the modifier mask (XCB_MOD_MASK_*) for the given keysymbol, for
342  * example for XCB_NUM_LOCK (usually configured to mod2).
343  *
344  * This function does not initiate any round-trips.
345  *
346  */
347 uint32_t get_mod_mask_for(uint32_t keysym,
348                           xcb_key_symbols_t *symbols,
349                           xcb_get_modifier_mapping_reply_t *modmap_reply);
350
351 /**
352  * Loads a font for usage, also getting its height. If fallback is true,
353  * the fonts 'fixed' or '-misc-*' will be loaded instead of exiting. If any
354  * font was previously loaded, it will be freed.
355  *
356  */
357 i3Font load_font(const char *pattern, const bool fallback);
358
359 /**
360  * Defines the font to be used for the forthcoming calls.
361  *
362  */
363 void set_font(i3Font *font);
364
365 /**
366  * Frees the resources taken by the current font. If no font was previously
367  * loaded, it simply returns.
368  *
369  */
370 void free_font(void);
371
372 /**
373  * Converts the given string to UTF-8 from UCS-2 big endian. The return value
374  * must be freed after use.
375  *
376  */
377 char *convert_ucs2_to_utf8(xcb_char2b_t *text, size_t num_glyphs);
378
379 /**
380  * Converts the given string to UCS-2 big endian for use with
381  * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen,
382  * a buffer containing the UCS-2 encoded string (16 bit per glyph) is
383  * returned. It has to be freed when done.
384  *
385  */
386 xcb_char2b_t *convert_utf8_to_ucs2(char *input, size_t *real_strlen);
387
388 /**
389  * Defines the colors to be used for the forthcoming draw_text calls.
390  *
391  */
392 void set_font_colors(xcb_gcontext_t gc, uint32_t foreground, uint32_t background);
393
394 /**
395  * Returns true if and only if the current font is a pango font.
396  *
397  */
398 bool font_is_pango(void);
399
400 /**
401  * Draws text onto the specified X drawable (normally a pixmap) at the
402  * specified coordinates (from the top left corner of the leftmost, uppermost
403  * glyph) and using the provided gc.
404  *
405  * Text must be specified as an i3String.
406  *
407  */
408 void draw_text(i3String *text, xcb_drawable_t drawable, xcb_gcontext_t gc,
409                xcb_visualtype_t *visual, int x, int y, int max_width);
410
411 /**
412  * ASCII version of draw_text to print static strings.
413  *
414  */
415 void draw_text_ascii(const char *text, xcb_drawable_t drawable,
416                      xcb_gcontext_t gc, int x, int y, int max_width);
417
418 /**
419  * Predict the text width in pixels for the given text. Text must be
420  * specified as an i3String.
421  *
422  */
423 int predict_text_width(i3String *text);
424
425 /**
426  * Returns the visual type associated with the given screen.
427  *
428  */
429 xcb_visualtype_t *get_visualtype(xcb_screen_t *screen);
430
431 /**
432  * Returns true if this version of i3 is a debug build (anything which is not a
433  * release version), based on the git version number.
434  *
435  */
436 bool is_debug_build() __attribute__((const));
437
438 /**
439  * Returns the name of a temporary file with the specified prefix.
440  *
441  */
442 char *get_process_filename(const char *prefix);
443
444 /**
445  * This function returns the absolute path to the executable it is running in.
446  *
447  * The implementation follows http://stackoverflow.com/a/933996/712014
448  *
449  * Returned value must be freed by the caller.
450  */
451 char *get_exe_path(const char *argv0);
452
453 /**
454  * Convert a logical amount of pixels (e.g. 2 pixels on a “standard” 96 DPI
455  * screen) to a corresponding amount of physical pixels on a standard or retina
456  * screen, e.g. 5 pixels on a 227 DPI MacBook Pro 13" Retina screen.
457  *
458  */
459 int logical_px(const int logical);
460
461 /**
462  * This function resolves ~ in pathnames.
463  * It may resolve wildcards in the first part of the path, but if no match
464  * or multiple matches are found, it just returns a copy of path as given.
465  *
466  */
467 char *resolve_tilde(const char *path);
468
469 /**
470  * Get the path of the first configuration file found. If override_configpath
471  * is specified, that path is returned and saved for further calls. Otherwise,
472  * checks the home directory first, then the system directory first, always
473  * taking into account the XDG Base Directory Specification ($XDG_CONFIG_HOME,
474  * $XDG_CONFIG_DIRS)
475  *
476  */
477 char *get_config_path(const char *override_configpath, bool use_system_paths);
478
479 #if !defined(__sun)
480 /**
481  * Emulates mkdir -p (creates any missing folders)
482  *
483  */
484 int mkdirp(const char *path, mode_t mode);
485 #endif
486
487 #ifdef CAIRO_SUPPORT
488 /* We need to flush cairo surfaces twice to avoid an assertion bug. See #1989
489  * and https://bugs.freedesktop.org/show_bug.cgi?id=92455. */
490 #define CAIRO_SURFACE_FLUSH(surface)  \
491     do {                              \
492         cairo_surface_flush(surface); \
493         cairo_surface_flush(surface); \
494     } while (0)
495 #endif
496
497 /* Represents a color split by color channel. */
498 typedef struct color_t {
499     double red;
500     double green;
501     double blue;
502
503     /* The colorpixel we use for direct XCB calls. */
504     uint32_t colorpixel;
505 } color_t;
506
507 /* A wrapper grouping an XCB drawable and both a graphics context
508  * and the corresponding cairo objects representing it. */
509 typedef struct surface_t {
510     /* The drawable which is being represented. */
511     xcb_drawable_t id;
512
513     /* A classic XCB graphics context. */
514     xcb_gcontext_t gc;
515
516     xcb_visualtype_t *visual_type;
517
518     int width;
519     int height;
520
521 #ifdef CAIRO_SUPPORT
522     /* A cairo surface representing the drawable. */
523     cairo_surface_t *surface;
524
525     /* The cairo object representing the drawable. In general,
526      * this is what one should use for any drawing operation. */
527     cairo_t *cr;
528 #endif
529 } surface_t;
530
531 /**
532  * Initialize the surface to represent the given drawable.
533  *
534  */
535 void draw_util_surface_init(xcb_connection_t *conn, surface_t *surface, xcb_drawable_t drawable,
536                             xcb_visualtype_t *visual, int width, int height);
537
538 /**
539  * Resize the surface to the given size.
540  *
541  */
542 void draw_util_surface_set_size(surface_t *surface, int width, int height);
543
544 /**
545  * Destroys the surface.
546  *
547  */
548 void draw_util_surface_free(xcb_connection_t *conn, surface_t *surface);
549
550 /**
551  * Parses the given color in hex format to an internal color representation.
552  * Note that the input must begin with a hash sign, e.g., "#3fbc59".
553  *
554  */
555 color_t draw_util_hex_to_color(const char *color);
556
557 color_t draw_util_colorpixel_to_color(uint32_t colorpixel);
558
559 /**
560  * Draw the given text using libi3.
561  * This function also marks the surface dirty which is needed if other means of
562  * drawing are used. This will be the case when using XCB to draw text.
563  *
564  */
565 void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_t bg_color, int x, int y, int max_width);
566
567 /**
568  * Draws a filled rectangle.
569  * This function is a convenience wrapper and takes care of flushing the
570  * surface as well as restoring the cairo state.
571  *
572  */
573 void draw_util_rectangle(xcb_connection_t *conn, surface_t *surface, color_t color, double x, double y, double w, double h);
574
575 /**
576  * Clears a surface with the given color.
577  *
578  */
579 void draw_util_clear_surface(xcb_connection_t *conn, surface_t *surface, color_t color);
580
581 /**
582  * Copies a surface onto another surface.
583  *
584  */
585 void draw_util_copy_surface(xcb_connection_t *conn, surface_t *src, surface_t *dest, double src_x, double src_y,
586                             double dest_x, double dest_y, double width, double height);