4 * i3 - an improved dynamic tiling window manager
6 * © 2009 Michael Stapelberg and contributors
8 * See file LICENSE for license information.
10 * util.c: Utility functions, which can be useful everywhere.
16 #if defined(__OpenBSD__)
17 #include <sys/cdefs.h>
24 static iconv_t conversion_descriptor = 0;
26 int min(int a, int b) {
27 return (a < b ? a : b);
30 int max(int a, int b) {
31 return (a > b ? a : b);
34 bool rect_contains(Rect rect, uint32_t x, uint32_t y) {
35 return (x >= rect.x &&
36 x <= (rect.x + rect.width) &&
38 y <= (rect.y + rect.height));
42 * Updates *destination with new_value and returns true if it was changed or false
46 bool update_if_necessary(uint32_t *destination, const uint32_t new_value) {
47 uint32_t old_value = *destination;
49 return ((*destination = new_value) != old_value);
53 * The s* functions (safe) are wrappers around malloc, strdup, …, which exits if one of
54 * the called functions returns NULL, meaning that there is no more memory available
57 void *smalloc(size_t size) {
58 void *result = malloc(size);
59 exit_if_null(result, "Error: out of memory (malloc(%zd))\n", size);
63 void *scalloc(size_t size) {
64 void *result = calloc(size, 1);
65 exit_if_null(result, "Error: out of memory (calloc(%zd))\n", size);
69 void *srealloc(void *ptr, size_t size) {
70 void *result = realloc(ptr, size);
71 exit_if_null(result, "Error: out memory (realloc(%zd))\n", size);
75 char *sstrdup(const char *str) {
76 char *result = strdup(str);
77 exit_if_null(result, "Error: out of memory (strdup())\n");
82 * Starts the given application by passing it through a shell. We use double fork
83 * to avoid zombie processes. As the started application’s parent exits (immediately),
84 * the application is reparented to init (process-id 1), which correctly handles
85 * childs, so we don’t have to do it :-).
87 * The shell is determined by looking for the SHELL environment variable. If it
88 * does not exist, /bin/sh is used.
91 void start_application(const char *command) {
92 LOG("executing: %s\n", command);
96 /* Stores the path of the shell */
97 static const char *shell = NULL;
100 if ((shell = getenv("SHELL")) == NULL)
103 /* This is the child */
104 execl(shell, shell, "-c", command, (void*)NULL);
113 * Checks a generic cookie for errors and quits with the given message if there
117 void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie, char *err_message) {
118 xcb_generic_error_t *error = xcb_request_check(conn, cookie);
120 fprintf(stderr, "ERROR: %s (X error %d)\n", err_message , error->error_code);
121 xcb_disconnect(conn);
127 * Converts the given string to UCS-2 big endian for use with
128 * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen,
129 * a buffer containing the UCS-2 encoded string (16 bit per glyph) is
130 * returned. It has to be freed when done.
133 char *convert_utf8_to_ucs2(char *input, int *real_strlen) {
134 size_t input_size = strlen(input) + 1;
135 /* UCS-2 consumes exactly two bytes for each glyph */
136 int buffer_size = input_size * 2;
138 char *buffer = smalloc(buffer_size);
139 size_t output_size = buffer_size;
140 /* We need to use an additional pointer, because iconv() modifies it */
141 char *output = buffer;
143 /* We convert the input into UCS-2 big endian */
144 if (conversion_descriptor == 0) {
145 conversion_descriptor = iconv_open("UCS-2BE", "UTF-8");
146 if (conversion_descriptor == 0) {
147 fprintf(stderr, "error opening the conversion context\n");
152 /* Get the conversion descriptor back to original state */
153 iconv(conversion_descriptor, NULL, NULL, NULL, NULL);
155 /* Convert our text */
156 int rc = iconv(conversion_descriptor, (void*)&input, &input_size, &output, &output_size);
157 if (rc == (size_t)-1) {
158 perror("Converting to UCS-2 failed");
159 if (real_strlen != NULL)
164 if (real_strlen != NULL)
165 *real_strlen = ((buffer_size - output_size) / 2) - 1;
172 * Returns the client which comes next in focus stack (= was selected before) for
173 * the given container, optionally excluding the given client.
176 Client *get_last_focused_client(xcb_connection_t *conn, Container *container, Client *exclude) {
178 SLIST_FOREACH(current, &(container->workspace->focus_stack), focus_clients)
179 if ((current->container == container) && ((exclude == NULL) || (current != exclude)))
186 * Sets the given client as focused by updating the data structures correctly,
187 * updating the X input focus and finally re-decorating both windows (to signalize
188 * the user the new focus situation)
191 void set_focus(xcb_connection_t *conn, Client *client, bool set_anyways) {
192 /* The dock window cannot be focused, but enter notifies are still handled correctly */
196 /* Store the old client */
197 Client *old_client = SLIST_FIRST(&(c_ws->focus_stack));
199 /* Check if the focus needs to be changed at all */
200 if (!set_anyways && (old_client == client))
203 /* Store current_row/current_col */
204 c_ws->current_row = current_row;
205 c_ws->current_col = current_col;
206 c_ws = client->workspace;
207 ewmh_update_current_desktop();
208 /* Load current_col/current_row if we switch to a client without a container */
209 current_col = c_ws->current_col;
210 current_row = c_ws->current_row;
212 /* Update container */
213 if (client->container != NULL) {
214 client->container->currently_focused = client;
216 current_col = client->container->col;
217 current_row = client->container->row;
221 /* Set focus to the entered window, and flush xcb buffer immediately */
222 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, client->child, XCB_CURRENT_TIME);
223 ewmh_update_active_window(client->child);
224 //xcb_warp_pointer(conn, XCB_NONE, client->child, 0, 0, 0, 0, 10, 10);
226 if (client->container != NULL) {
227 /* Get the client which was last focused in this particular container, it may be a different
228 one than old_client */
229 Client *last_focused = get_last_focused_client(conn, client->container, NULL);
231 /* In stacking containers, raise the client in respect to the one which was focused before */
232 if ((client->container->mode == MODE_STACK || client->container->mode == MODE_TABBED) &&
233 client->container->workspace->fullscreen_client == NULL) {
234 /* We need to get the client again, this time excluding the current client, because
235 * we might have just gone into stacking mode and need to raise */
236 Client *last_focused = get_last_focused_client(conn, client->container, client);
238 if (last_focused != NULL) {
239 DLOG("raising above frame %p / child %p\n", last_focused->frame, last_focused->child);
240 uint32_t values[] = { last_focused->frame, XCB_STACK_MODE_ABOVE };
241 xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
245 /* If it is the same one as old_client, we save us the unnecessary redecorate */
246 if ((last_focused != NULL) && (last_focused != old_client))
247 redecorate_window(conn, last_focused);
250 /* If the last client was a floating client, we need to go to the next
251 * tiling client in stack and re-decorate it. */
252 if (old_client != NULL && client_is_floating(old_client)) {
253 DLOG("Coming from floating client, searching next tiling...\n");
255 SLIST_FOREACH(current, &(client->workspace->focus_stack), focus_clients) {
256 if (client_is_floating(current))
259 DLOG("Found window: %p / child %p\n", current->frame, current->child);
260 redecorate_window(conn, current);
265 SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
266 SLIST_INSERT_HEAD(&(client->workspace->focus_stack), client, focus_clients);
268 /* Clear the urgency flag if set (necessary when i3 sets the flag, for
269 * example when automatically putting windows on the workspace of their
271 client->urgent = false;
272 workspace_update_urgent_flag(client->workspace);
274 /* If we’re in stacking mode, this renders the container to update changes in the title
275 bars and to raise the focused client */
276 if ((old_client != NULL) && (old_client != client) && !old_client->dock)
277 redecorate_window(conn, old_client);
279 /* redecorate_window flushes, so we don’t need to */
280 redecorate_window(conn, client);
284 * Called when the user switches to another mode or when the container is
285 * destroyed and thus needs to be cleaned up.
288 void leave_stack_mode(xcb_connection_t *conn, Container *container) {
289 /* When going out of stacking mode, we need to close the window */
290 struct Stack_Window *stack_win = &(container->stack_win);
292 SLIST_REMOVE(&stack_wins, stack_win, Stack_Window, stack_windows);
294 xcb_free_gc(conn, stack_win->pixmap.gc);
295 xcb_free_pixmap(conn, stack_win->pixmap.id);
296 xcb_destroy_window(conn, stack_win->window);
298 stack_win->rect.width = -1;
299 stack_win->rect.height = -1;
303 * Switches the layout of the given container taking care of the necessary house-keeping
306 void switch_layout_mode(xcb_connection_t *conn, Container *container, int mode) {
307 if (mode == MODE_STACK || mode == MODE_TABBED) {
308 /* When we’re already in stacking mode, nothing has to be done */
309 if ((mode == MODE_STACK && container->mode == MODE_STACK) ||
310 (mode == MODE_TABBED && container->mode == MODE_TABBED))
313 if (container->mode == MODE_STACK || container->mode == MODE_TABBED)
316 /* When entering stacking mode, we need to open a window on
317 * which we can draw the title bars of the clients, it has
318 * height 1 because we don’t bother here with calculating the
319 * correct height - it will be adjusted when rendering anyways.
320 * Also, we need to use max(width, 1) because windows cannot
321 * be created with either width == 0 or height == 0. */
322 Rect rect = {container->x, container->y, max(container->width, 1), 1};
327 /* Don’t generate events for our new window, it should *not* be managed */
328 mask |= XCB_CW_OVERRIDE_REDIRECT;
331 /* We want to know when… */
332 mask |= XCB_CW_EVENT_MASK;
333 values[1] = XCB_EVENT_MASK_ENTER_WINDOW | /* …mouse is moved into our window */
334 XCB_EVENT_MASK_BUTTON_PRESS | /* …mouse is pressed */
335 XCB_EVENT_MASK_EXPOSURE; /* …our window needs to be redrawn */
337 struct Stack_Window *stack_win = &(container->stack_win);
338 stack_win->window = create_window(conn, rect, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_CURSOR_LEFT_PTR, false, mask, values);
340 stack_win->rect.height = 0;
342 /* Initialize the entry for our cached pixmap. It will be
343 * created as soon as it’s needed (see cached_pixmap_prepare). */
344 memset(&(stack_win->pixmap), 0, sizeof(struct Cached_Pixmap));
345 stack_win->pixmap.referred_rect = &stack_win->rect;
346 stack_win->pixmap.referred_drawable = stack_win->window;
348 stack_win->container = container;
350 SLIST_INSERT_HEAD(&stack_wins, stack_win, stack_windows);
352 if (container->mode == MODE_STACK || container->mode == MODE_TABBED)
353 leave_stack_mode(conn, container);
356 container->mode = mode;
358 /* Force reconfiguration of each client */
361 CIRCLEQ_FOREACH(client, &(container->clients), clients)
362 client->force_reconfigure = true;
366 if (container->currently_focused != NULL) {
367 /* We need to make sure that this client is above *each* of the
368 * other clients in this container */
369 Client *last_focused = get_last_focused_client(conn, container, container->currently_focused);
371 CIRCLEQ_FOREACH(client, &(container->clients), clients) {
372 if (client == container->currently_focused || client == last_focused)
375 DLOG("setting %08x below %08x / %08x\n", client->frame, container->currently_focused->frame);
376 uint32_t values[] = { container->currently_focused->frame, XCB_STACK_MODE_BELOW };
377 xcb_configure_window(conn, client->frame,
378 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
381 if (last_focused != NULL) {
382 DLOG("Putting last_focused directly underneath the currently focused\n");
383 uint32_t values[] = { container->currently_focused->frame, XCB_STACK_MODE_BELOW };
384 xcb_configure_window(conn, last_focused->frame,
385 XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
389 set_focus(conn, container->currently_focused, true);
394 * Gets the first matching client for the given window class/window title.
395 * If the paramater specific is set to a specific client, only this one
399 Client *get_matching_client(xcb_connection_t *conn, const char *window_classtitle,
401 char *to_class, *to_title, *to_title_ucs = NULL;
402 int to_title_ucs_len = 0;
403 Client *matching = NULL;
405 to_class = sstrdup(window_classtitle);
407 /* If a title was specified, split both strings at the slash */
408 if ((to_title = strstr(to_class, "/")) != NULL) {
409 *(to_title++) = '\0';
410 /* Convert to UCS-2 */
411 to_title_ucs = convert_utf8_to_ucs2(to_title, &to_title_ucs_len);
414 /* If we were given a specific client we only check if that one matches */
415 if (specific != NULL) {
416 if (client_matches_class_name(specific, to_class, to_title, to_title_ucs, to_title_ucs_len))
421 DLOG("Getting clients for class \"%s\" / title \"%s\"\n", to_class, to_title);
423 TAILQ_FOREACH(ws, workspaces, workspaces) {
424 if (ws->output == NULL)
428 SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
429 DLOG("Checking client with class=%s / %s, name=%s\n", client->window_class_instance,
430 client->window_class_class, client->name);
431 if (!client_matches_class_name(client, to_class, to_title, to_title_ucs, to_title_ucs_len))
447 * Goes through the list of arguments (for exec()) and checks if the given argument
448 * is present. If not, it copies the arguments (because we cannot realloc it) and
449 * appends the given argument.
452 static char **append_argument(char **original, char *argument) {
454 for (num_args = 0; original[num_args] != NULL; num_args++) {
455 DLOG("original argument: \"%s\"\n", original[num_args]);
456 /* If the argument is already present we return the original pointer */
457 if (strcmp(original[num_args], argument) == 0)
460 /* Copy the original array */
461 char **result = smalloc((num_args+2) * sizeof(char*));
462 memcpy(result, original, num_args * sizeof(char*));
463 result[num_args] = argument;
464 result[num_args+1] = NULL;
469 #define y(x, ...) yajl_gen_ ## x (gen, ##__VA_ARGS__)
470 #define ystr(str) yajl_gen_string(gen, (unsigned char*)str, strlen(str))
472 void store_restart_layout() {
473 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
475 dump_node(gen, croot, true);
477 const unsigned char *payload;
479 y(get_buf, &payload, &length);
481 char *globbed = glob_path("~/.i3/_restart.json");
482 int fd = open(globbed, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
490 while (written < length) {
491 int n = write(fd, payload + written, length - written);
492 /* TODO: correct error-handling */
498 printf("write == 0?\n");
502 printf("written: %d of %d\n", written, length);
506 printf("layout: %.*s\n", length, payload);
512 * Restart i3 in-place
513 * appends -a to argument list to disable autostart
517 store_restart_layout();
522 LOG("restarting \"%s\"...\n", start_argv[0]);
523 /* make sure -a is in the argument list or append it */
524 start_argv = append_argument(start_argv, "-a");
526 execvp(start_argv[0], start_argv);
532 #if defined(__OpenBSD__)
536 * Find the first occurrence of the byte string s in byte string l.
539 void *memmem(const void *l, size_t l_len, const void *s, size_t s_len) {
540 register char *cur, *last;
541 const char *cl = (const char *)l;
542 const char *cs = (const char *)s;
544 /* we need something to compare */
545 if (l_len == 0 || s_len == 0)
548 /* "s" must be smaller or equal to "l" */
552 /* special case where s_len == 1 */
554 return memchr(l, (int)*cs, l_len);
556 /* the last position where its possible to find "s" in "l" */
557 last = (char *)cl + l_len - s_len;
559 for (cur = (char *)cl; cur <= last; cur++)
560 if (cur[0] == cs[0] && memcmp(cur, cs, s_len) == 0)