]> git.sur5r.net Git - i3/i3/blob - src/util.c
cb37d30aa2619d56f6dbeb8052b6183c3e50328b
[i3/i3] / src / util.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * util.c: Utility functions, which can be useful everywhere.
11  *
12  */
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <string.h>
17 #include <sys/wait.h>
18 #include <stdarg.h>
19 #include <assert.h>
20 #include <iconv.h>
21 #if defined(__OpenBSD__)
22 #include <sys/cdefs.h>
23 #endif
24
25 #include <xcb/xcb_icccm.h>
26
27 #include "i3.h"
28 #include "data.h"
29 #include "table.h"
30 #include "layout.h"
31 #include "util.h"
32 #include "xcb.h"
33 #include "client.h"
34 #include "log.h"
35 #include "ewmh.h"
36 #include "manage.h"
37 #include "workspace.h"
38 #include "ipc.h"
39
40 static iconv_t conversion_descriptor = 0;
41 struct keyvalue_table_head by_parent = TAILQ_HEAD_INITIALIZER(by_parent);
42 struct keyvalue_table_head by_child = TAILQ_HEAD_INITIALIZER(by_child);
43
44 int min(int a, int b) {
45         return (a < b ? a : b);
46 }
47
48 int max(int a, int b) {
49         return (a > b ? a : b);
50 }
51
52 /*
53  * Updates *destination with new_value and returns true if it was changed or false
54  * if it was the same
55  *
56  */
57 bool update_if_necessary(uint32_t *destination, const uint32_t new_value) {
58         uint32_t old_value = *destination;
59
60         return ((*destination = new_value) != old_value);
61 }
62
63 /*
64  * The s* functions (safe) are wrappers around malloc, strdup, …, which exits if one of
65  * the called functions returns NULL, meaning that there is no more memory available
66  *
67  */
68 void *smalloc(size_t size) {
69         void *result = malloc(size);
70         exit_if_null(result, "Error: out of memory (malloc(%zd))\n", size);
71         return result;
72 }
73
74 void *scalloc(size_t size) {
75         void *result = calloc(size, 1);
76         exit_if_null(result, "Error: out of memory (calloc(%zd))\n", size);
77         return result;
78 }
79
80 char *sstrdup(const char *str) {
81         char *result = strdup(str);
82         exit_if_null(result, "Error: out of memory (strdup())\n");
83         return result;
84 }
85
86 /*
87  * The table_* functions emulate the behaviour of libxcb-wm, which in libxcb 0.3.4 suddenly
88  * vanished. Great.
89  *
90  */
91 bool table_put(struct keyvalue_table_head *head, uint32_t key, void *value) {
92         struct keyvalue_element *element = scalloc(sizeof(struct keyvalue_element));
93         element->key = key;
94         element->value = value;
95
96         TAILQ_INSERT_TAIL(head, element, elements);
97         return true;
98 }
99
100 void *table_remove(struct keyvalue_table_head *head, uint32_t key) {
101         struct keyvalue_element *element;
102
103         TAILQ_FOREACH(element, head, elements)
104                 if (element->key == key) {
105                         void *value = element->value;
106                         TAILQ_REMOVE(head, element, elements);
107                         free(element);
108                         return value;
109                 }
110
111         return NULL;
112 }
113
114 void *table_get(struct keyvalue_table_head *head, uint32_t key) {
115         struct keyvalue_element *element;
116
117         TAILQ_FOREACH(element, head, elements)
118                 if (element->key == key)
119                         return element->value;
120
121         return NULL;
122 }
123
124 /*
125  * Starts the given application by passing it through a shell. We use double fork
126  * to avoid zombie processes. As the started application’s parent exits (immediately),
127  * the application is reparented to init (process-id 1), which correctly handles
128  * childs, so we don’t have to do it :-).
129  *
130  * The shell is determined by looking for the SHELL environment variable. If it
131  * does not exist, /bin/sh is used.
132  *
133  */
134 void start_application(const char *command) {
135         if (fork() == 0) {
136                 /* Child process */
137                 if (fork() == 0) {
138                         /* Stores the path of the shell */
139                         static const char *shell = NULL;
140
141                         if (shell == NULL)
142                                 if ((shell = getenv("SHELL")) == NULL)
143                                         shell = "/bin/sh";
144
145                         /* This is the child */
146                         execl(shell, shell, "-c", command, (void*)NULL);
147                         /* not reached */
148                 }
149                 exit(0);
150         }
151         wait(0);
152 }
153
154 /*
155  * Checks a generic cookie for errors and quits with the given message if there
156  * was an error.
157  *
158  */
159 void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie, char *err_message) {
160         xcb_generic_error_t *error = xcb_request_check(conn, cookie);
161         if (error != NULL) {
162                 fprintf(stderr, "ERROR: %s (X error %d)\n", err_message , error->error_code);
163                 xcb_disconnect(conn);
164                 exit(-1);
165         }
166 }
167
168 /*
169  * Converts the given string to UCS-2 big endian for use with
170  * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen,
171  * a buffer containing the UCS-2 encoded string (16 bit per glyph) is
172  * returned. It has to be freed when done.
173  *
174  */
175 char *convert_utf8_to_ucs2(char *input, int *real_strlen) {
176         size_t input_size = strlen(input) + 1;
177         /* UCS-2 consumes exactly two bytes for each glyph */
178         int buffer_size = input_size * 2;
179
180         char *buffer = smalloc(buffer_size);
181         size_t output_size = buffer_size;
182         /* We need to use an additional pointer, because iconv() modifies it */
183         char *output = buffer;
184
185         /* We convert the input into UCS-2 big endian */
186         if (conversion_descriptor == 0) {
187                 conversion_descriptor = iconv_open("UCS-2BE", "UTF-8");
188                 if (conversion_descriptor == 0) {
189                         fprintf(stderr, "error opening the conversion context\n");
190                         exit(1);
191                 }
192         }
193
194         /* Get the conversion descriptor back to original state */
195         iconv(conversion_descriptor, NULL, NULL, NULL, NULL);
196
197         /* Convert our text */
198         int rc = iconv(conversion_descriptor, (void*)&input, &input_size, &output, &output_size);
199         if (rc == (size_t)-1) {
200                 perror("Converting to UCS-2 failed");
201                 if (real_strlen != NULL)
202                         *real_strlen = 0;
203                 return NULL;
204         }
205
206         if (real_strlen != NULL)
207                 *real_strlen = ((buffer_size - output_size) / 2) - 1;
208
209         return buffer;
210 }
211
212 /*
213  * Returns the client which comes next in focus stack (= was selected before) for
214  * the given container, optionally excluding the given client.
215  *
216  */
217 Client *get_last_focused_client(xcb_connection_t *conn, Container *container, Client *exclude) {
218         Client *current;
219         SLIST_FOREACH(current, &(container->workspace->focus_stack), focus_clients)
220                 if ((current->container == container) && ((exclude == NULL) || (current != exclude)))
221                         return current;
222         return NULL;
223 }
224
225
226 /*
227  * Sets the given client as focused by updating the data structures correctly,
228  * updating the X input focus and finally re-decorating both windows (to signalize
229  * the user the new focus situation)
230  *
231  */
232 void set_focus(xcb_connection_t *conn, Client *client, bool set_anyways) {
233         /* The dock window cannot be focused, but enter notifies are still handled correctly */
234         if (client->dock)
235                 return;
236
237         /* Store the old client */
238         Client *old_client = SLIST_FIRST(&(c_ws->focus_stack));
239
240         /* Check if the focus needs to be changed at all */
241         if (!set_anyways && (old_client == client))
242                 return;
243
244         /* Store current_row/current_col */
245         c_ws->current_row = current_row;
246         c_ws->current_col = current_col;
247         c_ws = client->workspace;
248         ewmh_update_current_desktop();
249         /* Load current_col/current_row if we switch to a client without a container */
250         current_col = c_ws->current_col;
251         current_row = c_ws->current_row;
252
253         /* Update container */
254         if (client->container != NULL) {
255                 client->container->currently_focused = client;
256
257                 current_col = client->container->col;
258                 current_row = client->container->row;
259         }
260
261         CLIENT_LOG(client);
262         /* Set focus to the entered window, and flush xcb buffer immediately */
263         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, client->child, XCB_CURRENT_TIME);
264         ewmh_update_active_window(client->child);
265         //xcb_warp_pointer(conn, XCB_NONE, client->child, 0, 0, 0, 0, 10, 10);
266
267         if (client->container != NULL) {
268                 /* Get the client which was last focused in this particular container, it may be a different
269                    one than old_client */
270                 Client *last_focused = get_last_focused_client(conn, client->container, NULL);
271
272                 /* In stacking containers, raise the client in respect to the one which was focused before */
273                 if ((client->container->mode == MODE_STACK || client->container->mode == MODE_TABBED) &&
274                     client->container->workspace->fullscreen_client == NULL) {
275                         /* We need to get the client again, this time excluding the current client, because
276                          * we might have just gone into stacking mode and need to raise */
277                         Client *last_focused = get_last_focused_client(conn, client->container, client);
278
279                         if (last_focused != NULL) {
280                                 DLOG("raising above frame %p / child %p\n", last_focused->frame, last_focused->child);
281                                 uint32_t values[] = { last_focused->frame, XCB_STACK_MODE_ABOVE };
282                                 xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
283                         }
284                 }
285
286                 /* If it is the same one as old_client, we save us the unnecessary redecorate */
287                 if ((last_focused != NULL) && (last_focused != old_client))
288                         redecorate_window(conn, last_focused);
289         }
290
291         /* If the last client was a floating client, we need to go to the next
292          * tiling client in stack and re-decorate it. */
293         if (old_client != NULL && client_is_floating(old_client)) {
294                 DLOG("Coming from floating client, searching next tiling...\n");
295                 Client *current;
296                 SLIST_FOREACH(current, &(client->workspace->focus_stack), focus_clients) {
297                         if (client_is_floating(current))
298                                 continue;
299
300                         DLOG("Found window: %p / child %p\n", current->frame, current->child);
301                         redecorate_window(conn, current);
302                         break;
303                 }
304         }
305
306         SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
307         SLIST_INSERT_HEAD(&(client->workspace->focus_stack), client, focus_clients);
308
309         /* Clear the urgency flag if set (necessary when i3 sets the flag, for
310          * example when automatically putting windows on the workspace of their
311          * leader) */
312         client->urgent = false;
313         workspace_update_urgent_flag(client->workspace);
314
315         /* If we’re in stacking mode, this renders the container to update changes in the title
316            bars and to raise the focused client */
317         if ((old_client != NULL) && (old_client != client) && !old_client->dock)
318                 redecorate_window(conn, old_client);
319
320         /* redecorate_window flushes, so we don’t need to */
321         redecorate_window(conn, client);
322 }
323
324 /*
325  * Called when the user switches to another mode or when the container is
326  * destroyed and thus needs to be cleaned up.
327  *
328  */
329 void leave_stack_mode(xcb_connection_t *conn, Container *container) {
330         /* When going out of stacking mode, we need to close the window */
331         struct Stack_Window *stack_win = &(container->stack_win);
332
333         SLIST_REMOVE(&stack_wins, stack_win, Stack_Window, stack_windows);
334
335         xcb_free_gc(conn, stack_win->pixmap.gc);
336         xcb_free_pixmap(conn, stack_win->pixmap.id);
337         xcb_destroy_window(conn, stack_win->window);
338
339         stack_win->rect.width = -1;
340         stack_win->rect.height = -1;
341 }
342
343 /*
344  * Switches the layout of the given container taking care of the necessary house-keeping
345  *
346  */
347 void switch_layout_mode(xcb_connection_t *conn, Container *container, int mode) {
348         if (mode == MODE_STACK || mode == MODE_TABBED) {
349                 /* When we’re already in stacking mode, nothing has to be done */
350                 if ((mode == MODE_STACK && container->mode == MODE_STACK) ||
351                     (mode == MODE_TABBED && container->mode == MODE_TABBED))
352                         return;
353
354                 if (container->mode == MODE_STACK || container->mode == MODE_TABBED)
355                         goto after_stackwin;
356
357                 /* When entering stacking mode, we need to open a window on
358                  * which we can draw the title bars of the clients, it has
359                  * height 1 because we don’t bother here with calculating the
360                  * correct height - it will be adjusted when rendering anyways.
361                  * Also, we need to use max(width, 1) because windows cannot
362                  * be created with either width == 0 or height == 0. */
363                 Rect rect = {container->x, container->y, max(container->width, 1), 1};
364
365                 uint32_t mask = 0;
366                 uint32_t values[2];
367
368                 /* Don’t generate events for our new window, it should *not* be managed */
369                 mask |= XCB_CW_OVERRIDE_REDIRECT;
370                 values[0] = 1;
371
372                 /* We want to know when… */
373                 mask |= XCB_CW_EVENT_MASK;
374                 values[1] =     XCB_EVENT_MASK_ENTER_WINDOW |   /* …mouse is moved into our window */
375                                 XCB_EVENT_MASK_BUTTON_PRESS |   /* …mouse is pressed */
376                                 XCB_EVENT_MASK_EXPOSURE;        /* …our window needs to be redrawn */
377
378                 struct Stack_Window *stack_win = &(container->stack_win);
379                 stack_win->window = create_window(conn, rect, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_CURSOR_LEFT_PTR, false, mask, values);
380
381                 stack_win->rect.height = 0;
382
383                 /* Initialize the entry for our cached pixmap. It will be
384                  * created as soon as it’s needed (see cached_pixmap_prepare). */
385                 memset(&(stack_win->pixmap), 0, sizeof(struct Cached_Pixmap));
386                 stack_win->pixmap.referred_rect = &stack_win->rect;
387                 stack_win->pixmap.referred_drawable = stack_win->window;
388
389                 stack_win->container = container;
390
391                 SLIST_INSERT_HEAD(&stack_wins, stack_win, stack_windows);
392         } else {
393                 if (container->mode == MODE_STACK || container->mode == MODE_TABBED)
394                         leave_stack_mode(conn, container);
395         }
396 after_stackwin:
397         container->mode = mode;
398
399         /* Force reconfiguration of each client */
400         Client *client;
401
402         CIRCLEQ_FOREACH(client, &(container->clients), clients)
403                 client->force_reconfigure = true;
404
405         render_layout(conn);
406
407         if (container->currently_focused != NULL) {
408                 /* We need to make sure that this client is above *each* of the
409                  * other clients in this container */
410                 Client *last_focused = get_last_focused_client(conn, container, container->currently_focused);
411
412                 CIRCLEQ_FOREACH(client, &(container->clients), clients) {
413                         if (client == container->currently_focused || client == last_focused)
414                                 continue;
415
416                         DLOG("setting %08x below %08x / %08x\n", client->frame, container->currently_focused->frame);
417                         uint32_t values[] = { container->currently_focused->frame, XCB_STACK_MODE_BELOW };
418                         xcb_configure_window(conn, client->frame,
419                                              XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
420                 }
421
422                 if (last_focused != NULL) {
423                         DLOG("Putting last_focused directly underneath the currently focused\n");
424                         uint32_t values[] = { container->currently_focused->frame, XCB_STACK_MODE_BELOW };
425                         xcb_configure_window(conn, last_focused->frame,
426                                              XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
427                 }
428
429
430                 set_focus(conn, container->currently_focused, true);
431         }
432 }
433
434 /*
435  * Gets the first matching client for the given window class/window title.
436  * If the paramater specific is set to a specific client, only this one
437  * will be checked.
438  *
439  */
440 Client *get_matching_client(xcb_connection_t *conn, const char *window_classtitle,
441                             Client *specific) {
442         char *to_class, *to_title, *to_title_ucs = NULL;
443         int to_title_ucs_len = 0;
444         Client *matching = NULL;
445
446         to_class = sstrdup(window_classtitle);
447
448         /* If a title was specified, split both strings at the slash */
449         if ((to_title = strstr(to_class, "/")) != NULL) {
450                 *(to_title++) = '\0';
451                 /* Convert to UCS-2 */
452                 to_title_ucs = convert_utf8_to_ucs2(to_title, &to_title_ucs_len);
453         }
454
455         /* If we were given a specific client we only check if that one matches */
456         if (specific != NULL) {
457                 if (client_matches_class_name(specific, to_class, to_title, to_title_ucs, to_title_ucs_len))
458                         matching = specific;
459                 goto done;
460         }
461
462         DLOG("Getting clients for class \"%s\" / title \"%s\"\n", to_class, to_title);
463         Workspace *ws;
464         TAILQ_FOREACH(ws, workspaces, workspaces) {
465                 if (ws->output == NULL)
466                         continue;
467
468                 Client *client;
469                 SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
470                         DLOG("Checking client with class=%s / %s, name=%s\n", client->window_class_instance,
471                              client->window_class_class, client->name);
472                         if (!client_matches_class_name(client, to_class, to_title, to_title_ucs, to_title_ucs_len))
473                                 continue;
474
475                         matching = client;
476                         goto done;
477                 }
478         }
479
480 done:
481         free(to_class);
482         FREE(to_title_ucs);
483         return matching;
484 }
485
486 /*
487  * Goes through the list of arguments (for exec()) and checks if the given argument
488  * is present. If not, it copies the arguments (because we cannot realloc it) and
489  * appends the given argument.
490  *
491  */
492 static char **append_argument(char **original, char *argument) {
493         int num_args;
494         for (num_args = 0; original[num_args] != NULL; num_args++) {
495                 DLOG("original argument: \"%s\"\n", original[num_args]);
496                 /* If the argument is already present we return the original pointer */
497                 if (strcmp(original[num_args], argument) == 0)
498                         return original;
499         }
500         /* Copy the original array */
501         char **result = smalloc((num_args+2) * sizeof(char*));
502         memcpy(result, original, num_args * sizeof(char*));
503         result[num_args] = argument;
504         result[num_args+1] = NULL;
505
506         return result;
507 }
508
509 /*
510  * Restart i3 in-place
511  * appends -a to argument list to disable autostart
512  *
513  */
514 void i3_restart() {
515         restore_geometry(global_conn);
516
517         ipc_shutdown();
518
519         LOG("restarting \"%s\"...\n", start_argv[0]);
520         /* make sure -a is in the argument list or append it */
521         start_argv = append_argument(start_argv, "-a");
522
523         execvp(start_argv[0], start_argv);
524         /* not reached */
525 }
526
527 #if defined(__OpenBSD__)
528
529 /*
530  * Taken from FreeBSD
531  * Find the first occurrence of the byte string s in byte string l.
532  *
533  */
534 void *memmem(const void *l, size_t l_len, const void *s, size_t s_len) {
535         register char *cur, *last;
536         const char *cl = (const char *)l;
537         const char *cs = (const char *)s;
538
539         /* we need something to compare */
540         if (l_len == 0 || s_len == 0)
541                 return NULL;
542
543         /* "s" must be smaller or equal to "l" */
544         if (l_len < s_len)
545                 return NULL;
546
547         /* special case where s_len == 1 */
548         if (s_len == 1)
549                 return memchr(l, (int)*cs, l_len);
550
551         /* the last position where its possible to find "s" in "l" */
552         last = (char *)cl + l_len - s_len;
553
554         for (cur = (char *)cl; cur <= last; cur++)
555                 if (cur[0] == cs[0] && memcmp(cur, cs, s_len) == 0)
556                         return cur;
557
558         return NULL;
559 }
560
561 #endif
562