]> git.sur5r.net Git - i3/i3/blob - src/util.c
Implement putting clients onto specific workspaces ("assign" in the configfile)
[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
22 #include <xcb/xcb_icccm.h>
23
24 #include "i3.h"
25 #include "data.h"
26 #include "table.h"
27 #include "layout.h"
28 #include "util.h"
29 #include "xcb.h"
30 #include "client.h"
31
32 static iconv_t conversion_descriptor = 0;
33 struct keyvalue_table_head by_parent = TAILQ_HEAD_INITIALIZER(by_parent);
34 struct keyvalue_table_head by_child = TAILQ_HEAD_INITIALIZER(by_child);
35
36 int min(int a, int b) {
37         return (a < b ? a : b);
38 }
39
40 int max(int a, int b) {
41         return (a > b ? a : b);
42 }
43
44 /*
45  * Logs the given message to stdout while prefixing the current time to it.
46  * This is to be called by LOG() which includes filename/linenumber
47  *
48  */
49 void slog(char *fmt, ...) {
50         va_list args;
51         char timebuf[64];
52
53         va_start(args, fmt);
54         /* Get current time */
55         time_t t = time(NULL);
56         /* Convert time to local time (determined by the locale) */
57         struct tm *tmp = localtime(&t);
58         /* Generate time prefix */
59         strftime(timebuf, sizeof(timebuf), "%x %X - ", tmp);
60         printf("%s", timebuf);
61         vprintf(fmt, args);
62         va_end(args);
63 }
64
65 /*
66  * Prints the message (see printf()) to stderr, then exits the program.
67  *
68  */
69 void die(char *fmt, ...) {
70         va_list args;
71
72         va_start(args, fmt);
73         vfprintf(stderr, fmt, args);
74         va_end(args);
75
76         exit(EXIT_FAILURE);
77 }
78
79 /*
80  * The s* functions (safe) are wrappers around malloc, strdup, …, which exits if one of
81  * the called functions returns NULL, meaning that there is no more memory available
82  *
83  */
84 void *smalloc(size_t size) {
85         void *result = malloc(size);
86         exit_if_null(result, "Too less memory for malloc(%d)\n", size);
87         return result;
88 }
89
90 void *scalloc(size_t size) {
91         void *result = calloc(size, 1);
92         exit_if_null(result, "Too less memory for calloc(%d)\n", size);
93         return result;
94 }
95
96 char *sstrdup(const char *str) {
97         char *result = strdup(str);
98         exit_if_null(result, "Too less memory for strdup()\n");
99         return result;
100 }
101
102 /*
103  * The table_* functions emulate the behaviour of libxcb-wm, which in libxcb 0.3.4 suddenly
104  * vanished. Great.
105  *
106  */
107 bool table_put(struct keyvalue_table_head *head, uint32_t key, void *value) {
108         struct keyvalue_element *element = scalloc(sizeof(struct keyvalue_element));
109         element->key = key;
110         element->value = value;
111
112         TAILQ_INSERT_TAIL(head, element, elements);
113         return true;
114 }
115
116 void *table_remove(struct keyvalue_table_head *head, uint32_t key) {
117         struct keyvalue_element *element;
118
119         TAILQ_FOREACH(element, head, elements)
120                 if (element->key == key) {
121                         void *value = element->value;
122                         TAILQ_REMOVE(head, element, elements);
123                         free(element);
124                         return value;
125                 }
126
127         return NULL;
128 }
129
130 void *table_get(struct keyvalue_table_head *head, uint32_t key) {
131         struct keyvalue_element *element;
132
133         TAILQ_FOREACH(element, head, elements)
134                 if (element->key == key)
135                         return element->value;
136
137         return NULL;
138 }
139
140 /*
141  * Starts the given application by passing it through a shell. We use double fork
142  * to avoid zombie processes. As the started application’s parent exits (immediately),
143  * the application is reparented to init (process-id 1), which correctly handles
144  * childs, so we don’t have to do it :-).
145  *
146  * The shell is determined by looking for the SHELL environment variable. If it
147  * does not exist, /bin/sh is used.
148  *
149  */
150 void start_application(const char *command) {
151         if (fork() == 0) {
152                 /* Child process */
153                 if (fork() == 0) {
154                         /* Stores the path of the shell */
155                         static const char *shell = NULL;
156
157                         if (shell == NULL)
158                                 if ((shell = getenv("SHELL")) == NULL)
159                                         shell = "/bin/sh";
160
161                         /* This is the child */
162                         execl(shell, shell, "-c", command, NULL);
163                         /* not reached */
164                 }
165                 exit(0);
166         }
167         wait(0);
168 }
169
170 /*
171  * Checks a generic cookie for errors and quits with the given message if there
172  * was an error.
173  *
174  */
175 void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie, char *err_message) {
176         xcb_generic_error_t *error = xcb_request_check(conn, cookie);
177         if (error != NULL) {
178                 fprintf(stderr, "ERROR: %s : %d\n", err_message , error->error_code);
179                 xcb_disconnect(conn);
180                 exit(-1);
181         }
182 }
183
184 /*
185  * Converts the given string to UCS-2 big endian for use with
186  * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen,
187  * a buffer containing the UCS-2 encoded string (16 bit per glyph) is
188  * returned. It has to be freed when done.
189  *
190  */
191 char *convert_utf8_to_ucs2(char *input, int *real_strlen) {
192         size_t input_size = strlen(input) + 1;
193         /* UCS-2 consumes exactly two bytes for each glyph */
194         int buffer_size = input_size * 2;
195
196         char *buffer = smalloc(buffer_size);
197         size_t output_size = buffer_size;
198         /* We need to use an additional pointer, because iconv() modifies it */
199         char *output = buffer;
200
201         /* We convert the input into UCS-2 big endian */
202         if (conversion_descriptor == 0) {
203                 conversion_descriptor = iconv_open("UCS-2BE", "UTF-8");
204                 if (conversion_descriptor == 0) {
205                         fprintf(stderr, "error opening the conversion context\n");
206                         exit(1);
207                 }
208         }
209
210         /* Get the conversion descriptor back to original state */
211         iconv(conversion_descriptor, NULL, NULL, NULL, NULL);
212
213         /* Convert our text */
214         int rc = iconv(conversion_descriptor, (void*)&input, &input_size, &output, &output_size);
215         if (rc == (size_t)-1) {
216                 perror("Converting to UCS-2 failed");
217                 if (real_strlen != NULL)
218                         *real_strlen = 0;
219                 return NULL;
220         }
221
222         if (real_strlen != NULL)
223                 *real_strlen = ((buffer_size - output_size) / 2) - 1;
224
225         return buffer;
226 }
227
228 /*
229  * Returns the client which comes next in focus stack (= was selected before) for
230  * the given container, optionally excluding the given client.
231  *
232  */
233 Client *get_last_focused_client(xcb_connection_t *conn, Container *container, Client *exclude) {
234         Client *current;
235         SLIST_FOREACH(current, &(container->workspace->focus_stack), focus_clients)
236                 if ((current->container == container) && ((exclude == NULL) || (current != exclude)))
237                         return current;
238         return NULL;
239 }
240
241 /*
242  * Unmaps all clients (and stack windows) of the given workspace.
243  *
244  * This needs to be called separately when temporarily rendering
245  * a workspace which is not the active workspace to force
246  * reconfiguration of all clients, like in src/xinerama.c when
247  * re-assigning a workspace to another screen.
248  *
249  */
250 void unmap_workspace(xcb_connection_t *conn, Workspace *u_ws) {
251         Client *client;
252         struct Stack_Window *stack_win;
253
254         /* Ignore notify events because they would cause focus to be changed */
255         ignore_enter_notify_forall(conn, u_ws, true);
256
257         /* Unmap all clients of the current workspace */
258         int unmapped_clients = 0;
259         FOR_TABLE(u_ws)
260                 CIRCLEQ_FOREACH(client, &(u_ws->table[cols][rows]->clients), clients) {
261                         xcb_unmap_window(conn, client->frame);
262                         unmapped_clients++;
263                 }
264
265         /* If we did not unmap any clients, the workspace is empty and we can destroy it */
266         if (unmapped_clients == 0)
267                 u_ws->screen = NULL;
268
269         /* Unmap the stack windows on the current workspace, if any */
270         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
271                 if (stack_win->container->workspace == u_ws)
272                         xcb_unmap_window(conn, stack_win->window);
273
274         ignore_enter_notify_forall(conn, u_ws, false);
275 }
276
277 /*
278  * Sets the given client as focused by updating the data structures correctly,
279  * updating the X input focus and finally re-decorating both windows (to signalize
280  * the user the new focus situation)
281  *
282  */
283 void set_focus(xcb_connection_t *conn, Client *client, bool set_anyways) {
284         /* The dock window cannot be focused, but enter notifies are still handled correctly */
285         if (client->dock)
286                 return;
287
288         /* Store the old client */
289         Client *old_client = CUR_CELL->currently_focused;
290
291         /* Check if the focus needs to be changed at all */
292         if (!set_anyways && (old_client == client)) {
293                 LOG("old_client == client, not changing focus\n");
294                 return;
295         }
296
297         /* Store current_row/current_col */
298         c_ws->current_row = current_row;
299         c_ws->current_col = current_col;
300         c_ws = client->container->workspace;
301
302         /* Update container */
303         client->container->currently_focused = client;
304
305         current_col = client->container->col;
306         current_row = client->container->row;
307
308         LOG("set_focus(frame %08x, child %08x, name %s)\n", client->frame, client->child, client->name);
309         /* Set focus to the entered window, and flush xcb buffer immediately */
310         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, client->child, XCB_CURRENT_TIME);
311         //xcb_warp_pointer(conn, XCB_NONE, client->child, 0, 0, 0, 0, 10, 10);
312
313         /* Get the client which was last focused in this particular container, it may be a different
314            one than old_client */
315         Client *last_focused = get_last_focused_client(conn, client->container, NULL);
316
317         /* In stacking containers, raise the client in respect to the one which was focused before */
318         if (client->container->mode == MODE_STACK && client->container->workspace->fullscreen_client == NULL) {
319                 /* We need to get the client again, this time excluding the current client, because
320                  * we might have just gone into stacking mode and need to raise */
321                 Client *last_focused = get_last_focused_client(conn, client->container, client);
322
323                 if (last_focused != NULL) {
324                         LOG("raising above frame %p / child %p\n", last_focused->frame, last_focused->child);
325                         uint32_t values[] = { last_focused->frame, XCB_STACK_MODE_ABOVE };
326                         xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
327                 }
328         }
329
330         /* If it is the same one as old_client, we save us the unnecessary redecorate */
331         if ((last_focused != NULL) && (last_focused != old_client))
332                 redecorate_window(conn, last_focused);
333
334         /* If we’re in stacking mode, this renders the container to update changes in the title
335            bars and to raise the focused client */
336         if ((old_client != NULL) && (old_client != client) && !old_client->dock)
337                 redecorate_window(conn, old_client);
338
339         SLIST_REMOVE(&(client->container->workspace->focus_stack), client, Client, focus_clients);
340         SLIST_INSERT_HEAD(&(client->container->workspace->focus_stack), client, focus_clients);
341
342         /* redecorate_window flushes, so we don’t need to */
343         redecorate_window(conn, client);
344 }
345
346 /*
347  * Called when the user switches to another mode or when the container is
348  * destroyed and thus needs to be cleaned up.
349  *
350  */
351 void leave_stack_mode(xcb_connection_t *conn, Container *container) {
352         /* When going out of stacking mode, we need to close the window */
353         struct Stack_Window *stack_win = &(container->stack_win);
354
355         SLIST_REMOVE(&stack_wins, stack_win, Stack_Window, stack_windows);
356
357         xcb_free_gc(conn, stack_win->gc);
358         xcb_destroy_window(conn, stack_win->window);
359
360         stack_win->rect.width = -1;
361         stack_win->rect.height = -1;
362 }
363
364 /*
365  * Switches the layout of the given container taking care of the necessary house-keeping
366  *
367  */
368 void switch_layout_mode(xcb_connection_t *conn, Container *container, int mode) {
369         if (mode == MODE_STACK) {
370                 /* When we’re already in stacking mode, nothing has to be done */
371                 if (container->mode == MODE_STACK)
372                         return;
373
374                 /* When entering stacking mode, we need to open a window on which we can draw the
375                    title bars of the clients, it has height 1 because we don’t bother here with
376                    calculating the correct height - it will be adjusted when rendering anyways. */
377                 Rect rect = {container->x, container->y, container->width, 1 };
378
379                 uint32_t mask = 0;
380                 uint32_t values[2];
381
382                 /* Don’t generate events for our new window, it should *not* be managed */
383                 mask |= XCB_CW_OVERRIDE_REDIRECT;
384                 values[0] = 1;
385
386                 /* We want to know when… */
387                 mask |= XCB_CW_EVENT_MASK;
388                 values[1] =     XCB_EVENT_MASK_ENTER_WINDOW |   /* …mouse is moved into our window */
389                                 XCB_EVENT_MASK_BUTTON_PRESS |   /* …mouse is pressed */
390                                 XCB_EVENT_MASK_EXPOSURE;        /* …our window needs to be redrawn */
391
392                 struct Stack_Window *stack_win = &(container->stack_win);
393                 stack_win->window = create_window(conn, rect, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_CURSOR_LEFT_PTR, mask, values);
394
395                 /* Generate a graphics context for the titlebar */
396                 stack_win->gc = xcb_generate_id(conn);
397                 xcb_create_gc(conn, stack_win->gc, stack_win->window, 0, 0);
398
399                 stack_win->container = container;
400
401                 SLIST_INSERT_HEAD(&stack_wins, stack_win, stack_windows);
402         } else {
403                 if (container->mode == MODE_STACK)
404                         leave_stack_mode(conn, container);
405         }
406         container->mode = mode;
407
408         /* Force reconfiguration of each client */
409         Client *client;
410
411         CIRCLEQ_FOREACH(client, &(container->clients), clients)
412                 client->force_reconfigure = true;
413
414         render_layout(conn);
415
416         if (container->currently_focused != NULL)
417                 set_focus(conn, container->currently_focused, true);
418 }
419
420 /*
421  * Toggles fullscreen mode for the given client. It updates the data structures and
422  * reconfigures (= resizes/moves) the client and its frame to the full size of the
423  * screen. When leaving fullscreen, re-rendering the layout is forced.
424  *
425  */
426 void toggle_fullscreen(xcb_connection_t *conn, Client *client) {
427         /* clients without a container (docks) cannot be focused */
428         assert(client->container != NULL);
429
430         Workspace *workspace = client->container->workspace;
431
432         if (!client->fullscreen) {
433                 if (workspace->fullscreen_client != NULL) {
434                         LOG("Not entering fullscreen mode, there already is a fullscreen client.\n");
435                         return;
436                 }
437                 client->fullscreen = true;
438                 workspace->fullscreen_client = client;
439                 LOG("Entering fullscreen mode...\n");
440                 /* We just entered fullscreen mode, let’s configure the window */
441                  uint32_t mask = XCB_CONFIG_WINDOW_X |
442                                  XCB_CONFIG_WINDOW_Y |
443                                  XCB_CONFIG_WINDOW_WIDTH |
444                                  XCB_CONFIG_WINDOW_HEIGHT;
445                 uint32_t values[4] = {workspace->rect.x,
446                                       workspace->rect.y,
447                                       workspace->rect.width,
448                                       workspace->rect.height};
449
450                 LOG("child itself will be at %dx%d with size %dx%d\n",
451                                 values[0], values[1], values[2], values[3]);
452
453                 xcb_configure_window(conn, client->frame, mask, values);
454
455                 /* Child’s coordinates are relative to the parent (=frame) */
456                 values[0] = 0;
457                 values[1] = 0;
458                 xcb_configure_window(conn, client->child, mask, values);
459
460                 /* Raise the window */
461                 values[0] = XCB_STACK_MODE_ABOVE;
462                 xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_STACK_MODE, values);
463
464                 Rect child_rect = workspace->rect;
465                 child_rect.x = child_rect.y = 0;
466                 fake_configure_notify(conn, child_rect, client->child);
467         } else {
468                 LOG("leaving fullscreen mode\n");
469                 client->fullscreen = false;
470                 workspace->fullscreen_client = NULL;
471                 /* Because the coordinates of the window haven’t changed, it would not be
472                    re-configured if we don’t set the following flag */
473                 client->force_reconfigure = true;
474                 /* We left fullscreen mode, redraw the whole layout to ensure enternotify events are disabled */
475                 render_layout(conn);
476         }
477
478         xcb_flush(conn);
479 }
480
481 /*
482  * Gets the first matching client for the given window class/window title.
483  * If the paramater specific is set to a specific client, only this one
484  * will be checked.
485  *
486  */
487 Client *get_matching_client(xcb_connection_t *conn, const char *window_classtitle,
488                             Client *specific) {
489         char *to_class, *to_title, *to_title_ucs = NULL;
490         int to_title_ucs_len;
491         Client *matching = NULL;
492
493         to_class = sstrdup(window_classtitle);
494
495         /* If a title was specified, split both strings at the slash */
496         if ((to_title = strstr(to_class, "/")) != NULL) {
497                 *(to_title++) = '\0';
498                 /* Convert to UCS-2 */
499                 to_title_ucs = convert_utf8_to_ucs2(to_title, &to_title_ucs_len);
500         }
501
502         /* If we were given a specific client we only check if that one matches */
503         if (specific != NULL) {
504                 if (client_matches_class_name(specific, to_class, to_title, to_title_ucs, to_title_ucs_len))
505                         matching = specific;
506                 goto done;
507         }
508
509         LOG("Getting clients for class \"%s\" / title \"%s\"\n", to_class, to_title);
510         for (int workspace = 0; workspace < 10; workspace++) {
511                 if (workspaces[workspace].screen == NULL)
512                         continue;
513
514                 FOR_TABLE(&(workspaces[workspace])) {
515                         Container *con = workspaces[workspace].table[cols][rows];
516                         Client *client;
517
518                         CIRCLEQ_FOREACH(client, &(con->clients), clients) {
519                                 LOG("Checking client with class=%s, name=%s\n", client->window_class, client->name);
520                                 if (!client_matches_class_name(client, to_class, to_title, to_title_ucs, to_title_ucs_len))
521                                         continue;
522
523                                 matching = client;
524                                 goto done;
525                         }
526                 }
527         }
528
529 done:
530         free(to_class);
531         FREE(to_title_ucs);
532         return matching;
533 }