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