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