2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
7 * util.c: Utility functions, which can be useful everywhere within i3 (see
16 #if defined(__OpenBSD__)
17 #include <sys/cdefs.h>
21 #include <yajl/yajl_version.h>
24 #define SN_API_NOT_YET_FROZEN 1
25 #include <libsn/sn-launcher.h>
27 static iconv_t conversion_descriptor = 0;
29 int min(int a, int b) {
30 return (a < b ? a : b);
33 int max(int a, int b) {
34 return (a > b ? a : b);
37 bool rect_contains(Rect rect, uint32_t x, uint32_t y) {
38 return (x >= rect.x &&
39 x <= (rect.x + rect.width) &&
41 y <= (rect.y + rect.height));
44 Rect rect_add(Rect a, Rect b) {
45 return (Rect){a.x + b.x,
52 * Updates *destination with new_value and returns true if it was changed or false
56 bool update_if_necessary(uint32_t *destination, const uint32_t new_value) {
57 uint32_t old_value = *destination;
59 return ((*destination = new_value) != old_value);
63 * exec()s an i3 utility, for example the config file migration script or
64 * i3-nagbar. This function first searches $PATH for the given utility named,
65 * then falls back to the dirname() of the i3 executable path and then falls
66 * back to the dirname() of the target of /proc/self/exe (on linux).
68 * This function should be called after fork()ing.
70 * The first argument of the given argv vector will be overwritten with the
71 * executable name, so pass NULL.
73 * If the utility cannot be found in any of these locations, it exits with
77 void exec_i3_utility(char *name, char *argv[]) {
78 /* start the migration script, search PATH first */
79 char *migratepath = name;
80 argv[0] = migratepath;
81 execvp(migratepath, argv);
83 /* if the script is not in path, maybe the user installed to a strange
84 * location and runs the i3 binary with an absolute path. We use
85 * argv[0]’s dirname */
86 char *pathbuf = strdup(start_argv[0]);
87 char *dir = dirname(pathbuf);
88 sasprintf(&migratepath, "%s/%s", dir, name);
89 argv[0] = migratepath;
90 execvp(migratepath, argv);
92 #if defined(__linux__)
93 /* on linux, we have one more fall-back: dirname(/proc/self/exe) */
95 if (readlink("/proc/self/exe", buffer, BUFSIZ) == -1) {
96 warn("could not read /proc/self/exe");
99 dir = dirname(buffer);
100 sasprintf(&migratepath, "%s/%s", dir, name);
101 argv[0] = migratepath;
102 execvp(migratepath, argv);
105 warn("Could not start %s", name);
110 * Checks a generic cookie for errors and quits with the given message if there
114 void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie, char *err_message) {
115 xcb_generic_error_t *error = xcb_request_check(conn, cookie);
117 fprintf(stderr, "ERROR: %s (X error %d)\n", err_message , error->error_code);
118 xcb_disconnect(conn);
124 * Converts the given string to UCS-2 big endian for use with
125 * xcb_image_text_16(). The amount of real glyphs is stored in real_strlen,
126 * a buffer containing the UCS-2 encoded string (16 bit per glyph) is
127 * returned. It has to be freed when done.
130 char *convert_utf8_to_ucs2(char *input, int *real_strlen) {
131 size_t input_size = strlen(input) + 1;
132 /* UCS-2 consumes exactly two bytes for each glyph */
133 int buffer_size = input_size * 2;
135 char *buffer = smalloc(buffer_size);
136 size_t output_size = buffer_size;
137 /* We need to use an additional pointer, because iconv() modifies it */
138 char *output = buffer;
140 /* We convert the input into UCS-2 big endian */
141 if (conversion_descriptor == 0) {
142 conversion_descriptor = iconv_open("UCS-2BE", "UTF-8");
143 if (conversion_descriptor == 0) {
144 fprintf(stderr, "error opening the conversion context\n");
149 /* Get the conversion descriptor back to original state */
150 iconv(conversion_descriptor, NULL, NULL, NULL, NULL);
152 /* Convert our text */
153 int rc = iconv(conversion_descriptor, (void*)&input, &input_size, &output, &output_size);
154 if (rc == (size_t)-1) {
155 perror("Converting to UCS-2 failed");
157 if (real_strlen != NULL)
162 if (real_strlen != NULL)
163 *real_strlen = ((buffer_size - output_size) / 2) - 1;
169 * This function resolves ~ in pathnames.
170 * It may resolve wildcards in the first part of the path, but if no match
171 * or multiple matches are found, it just returns a copy of path as given.
174 char *resolve_tilde(const char *path) {
175 static glob_t globbuf;
176 char *head, *tail, *result;
178 tail = strchr(path, '/');
179 head = strndup(path, tail ? tail - path : strlen(path));
181 int res = glob(head, GLOB_TILDE, NULL, &globbuf);
183 /* no match, or many wildcard matches are bad */
184 if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
185 result = sstrdup(path);
187 die("glob() failed");
189 head = globbuf.gl_pathv[0];
190 result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);
191 strncpy(result, head, strlen(head));
193 strncat(result, tail, strlen(tail));
201 * Checks if the given path exists by calling stat().
204 bool path_exists(const char *path) {
206 return (stat(path, &buf) == 0);
210 * Goes through the list of arguments (for exec()) and checks if the given argument
211 * is present. If not, it copies the arguments (because we cannot realloc it) and
212 * appends the given argument.
215 static char **append_argument(char **original, char *argument) {
217 for (num_args = 0; original[num_args] != NULL; num_args++) {
218 DLOG("original argument: \"%s\"\n", original[num_args]);
219 /* If the argument is already present we return the original pointer */
220 if (strcmp(original[num_args], argument) == 0)
223 /* Copy the original array */
224 char **result = smalloc((num_args+2) * sizeof(char*));
225 memcpy(result, original, num_args * sizeof(char*));
226 result[num_args] = argument;
227 result[num_args+1] = NULL;
233 * Returns the name of a temporary file with the specified prefix.
236 char *get_process_filename(const char *prefix) {
237 char *dir = getenv("XDG_RUNTIME_DIR");
239 struct passwd *pw = getpwuid(getuid());
240 const char *username = pw ? pw->pw_name : "unknown";
241 sasprintf(&dir, "/tmp/i3-%s", username);
244 sasprintf(&tmp, "%s/i3", dir);
247 if (!path_exists(dir)) {
248 if (mkdir(dir, 0700) == -1) {
254 sasprintf(&filename, "%s/%s.%d", dir, prefix, getpid());
259 #define y(x, ...) yajl_gen_ ## x (gen, ##__VA_ARGS__)
260 #define ystr(str) yajl_gen_string(gen, (unsigned char*)str, strlen(str))
262 char *store_restart_layout() {
263 setlocale(LC_NUMERIC, "C");
265 yajl_gen gen = yajl_gen_alloc(NULL);
267 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
270 dump_node(gen, croot, true);
272 setlocale(LC_NUMERIC, "");
274 const unsigned char *payload;
280 y(get_buf, &payload, &length);
282 /* create a temporary file if one hasn't been specified, or just
283 * resolve the tildes in the specified path */
285 if (config.restart_state_path == NULL) {
286 filename = get_process_filename("restart-state");
290 filename = resolve_tilde(config.restart_state_path);
293 int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
301 while (written < length) {
302 int n = write(fd, payload + written, length - written);
303 /* TODO: correct error-handling */
311 printf("write == 0?\n");
318 printf("written: %d of %zd\n", written, length);
320 printf("written: %d of %d\n", written, length);
326 printf("layout: %.*s\n", (int)length, payload);
335 * Restart i3 in-place
336 * appends -a to argument list to disable autostart
339 void i3_restart(bool forget_layout) {
340 char *restart_filename = forget_layout ? NULL : store_restart_layout();
342 kill_configerror_nagbar(true);
348 LOG("restarting \"%s\"...\n", start_argv[0]);
349 /* make sure -a is in the argument list or append it */
350 start_argv = append_argument(start_argv, "-a");
352 /* replace -r <file> so that the layout is restored */
353 if (restart_filename != NULL) {
354 /* create the new argv */
356 for (num_args = 0; start_argv[num_args] != NULL; num_args++);
357 char **new_argv = scalloc((num_args + 3) * sizeof(char*));
359 /* copy the arguments, but skip the ones we'll replace */
361 bool skip_next = false;
362 for (int i = 0; i < num_args; ++i) {
365 else if (!strcmp(start_argv[i], "-r") ||
366 !strcmp(start_argv[i], "--restart"))
369 new_argv[write_index++] = start_argv[i];
372 /* add the arguments we'll replace */
373 new_argv[write_index++] = "--restart";
374 new_argv[write_index] = restart_filename;
377 start_argv = new_argv;
380 execvp(start_argv[0], start_argv);
384 #if defined(__OpenBSD__) || defined(__APPLE__)
388 * Find the first occurrence of the byte string s in byte string l.
391 void *memmem(const void *l, size_t l_len, const void *s, size_t s_len) {
392 register char *cur, *last;
393 const char *cl = (const char *)l;
394 const char *cs = (const char *)s;
396 /* we need something to compare */
397 if (l_len == 0 || s_len == 0)
400 /* "s" must be smaller or equal to "l" */
404 /* special case where s_len == 1 */
406 return memchr(l, (int)*cs, l_len);
408 /* the last position where its possible to find "s" in "l" */
409 last = (char *)cl + l_len - s_len;
411 for (cur = (char *)cl; cur <= last; cur++)
412 if (cur[0] == cs[0] && memcmp(cur, cs, s_len) == 0)