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