]> git.sur5r.net Git - i3/i3/blob - src/commands.c
Merge pull request #3022 from orestisf1993/i3bar-leaks
[i3/i3] / src / commands.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * commands.c: all command functions (see commands_parser.c)
8  *
9  */
10 #include "all.h"
11
12 #include <stdint.h>
13 #include <float.h>
14 #include <stdarg.h>
15
16 #ifdef I3_ASAN_ENABLED
17 #include <sanitizer/lsan_interface.h>
18 #endif
19
20 #include "shmlog.h"
21
22 // Macros to make the YAJL API a bit easier to use.
23 #define y(x, ...) (cmd_output->json_gen != NULL ? yajl_gen_##x(cmd_output->json_gen, ##__VA_ARGS__) : 0)
24 #define ystr(str) (cmd_output->json_gen != NULL ? yajl_gen_string(cmd_output->json_gen, (unsigned char *)str, strlen(str)) : 0)
25 #define ysuccess(success)                   \
26     do {                                    \
27         if (cmd_output->json_gen != NULL) { \
28             y(map_open);                    \
29             ystr("success");                \
30             y(bool, success);               \
31             y(map_close);                   \
32         }                                   \
33     } while (0)
34 #define yerror(format, ...)                             \
35     do {                                                \
36         if (cmd_output->json_gen != NULL) {             \
37             char *message;                              \
38             sasprintf(&message, format, ##__VA_ARGS__); \
39             y(map_open);                                \
40             ystr("success");                            \
41             y(bool, false);                             \
42             ystr("error");                              \
43             ystr(message);                              \
44             y(map_close);                               \
45             free(message);                              \
46         }                                               \
47     } while (0)
48
49 /** If an error occurred during parsing of the criteria, we want to exit instead
50  * of relying on fallback behavior. See #2091. */
51 #define HANDLE_INVALID_MATCH                                   \
52     do {                                                       \
53         if (current_match->error != NULL) {                    \
54             yerror("Invalid match: %s", current_match->error); \
55             return;                                            \
56         }                                                      \
57     } while (0)
58
59 /** When the command did not include match criteria (!), we use the currently
60  * focused container. Do not confuse this case with a command which included
61  * criteria but which did not match any windows. This macro has to be called in
62  * every command.
63  */
64 #define HANDLE_EMPTY_MATCH                              \
65     do {                                                \
66         HANDLE_INVALID_MATCH;                           \
67                                                         \
68         if (match_is_empty(current_match)) {            \
69             while (!TAILQ_EMPTY(&owindows)) {           \
70                 owindow *ow = TAILQ_FIRST(&owindows);   \
71                 TAILQ_REMOVE(&owindows, ow, owindows);  \
72                 free(ow);                               \
73             }                                           \
74             owindow *ow = smalloc(sizeof(owindow));     \
75             ow->con = focused;                          \
76             TAILQ_INIT(&owindows);                      \
77             TAILQ_INSERT_TAIL(&owindows, ow, owindows); \
78         }                                               \
79     } while (0)
80
81 /*
82  * Returns true if a is definitely greater than b (using the given epsilon)
83  *
84  */
85 static bool definitelyGreaterThan(float a, float b, float epsilon) {
86     return (a - b) > ((fabs(a) < fabs(b) ? fabs(b) : fabs(a)) * epsilon);
87 }
88
89 /*
90  * Checks whether we switched to a new workspace and returns false in that case,
91  * signaling that further workspace switching should be done by the calling function
92  * If not, calls workspace_back_and_forth() if workspace_auto_back_and_forth is set
93  * and return true, signaling that no further workspace switching should occur in the calling function.
94  *
95  */
96 static bool maybe_back_and_forth(struct CommandResultIR *cmd_output, const char *name) {
97     Con *ws = con_get_workspace(focused);
98
99     /* If we switched to a different workspace, do nothing */
100     if (strcmp(ws->name, name) != 0)
101         return false;
102
103     DLOG("This workspace is already focused.\n");
104     if (config.workspace_auto_back_and_forth) {
105         workspace_back_and_forth();
106         cmd_output->needs_tree_render = true;
107     }
108     return true;
109 }
110
111 /*
112  * Return the passed workspace unless it is the current one and auto back and
113  * forth is enabled, in which case the back_and_forth workspace is returned.
114  */
115 static Con *maybe_auto_back_and_forth_workspace(Con *workspace) {
116     Con *current, *baf;
117
118     if (!config.workspace_auto_back_and_forth)
119         return workspace;
120
121     current = con_get_workspace(focused);
122
123     if (current == workspace) {
124         baf = workspace_back_and_forth_get();
125         if (baf != NULL) {
126             DLOG("Substituting workspace with back_and_forth, as it is focused.\n");
127             return baf;
128         }
129     }
130
131     return workspace;
132 }
133
134 /*******************************************************************************
135  * Criteria functions.
136  ******************************************************************************/
137
138 /*
139  * Helper data structure for an operation window (window on which the operation
140  * will be performed). Used to build the TAILQ owindows.
141  *
142  */
143 typedef struct owindow {
144     Con *con;
145
146     TAILQ_ENTRY(owindow)
147     owindows;
148 } owindow;
149
150 typedef TAILQ_HEAD(owindows_head, owindow) owindows_head;
151
152 static owindows_head owindows;
153
154 /*
155  * Initializes the specified 'Match' data structure and the initial state of
156  * commands.c for matching target windows of a command.
157  *
158  */
159 void cmd_criteria_init(I3_CMD) {
160     Con *con;
161     owindow *ow;
162
163     DLOG("Initializing criteria, current_match = %p\n", current_match);
164     match_free(current_match);
165     match_init(current_match);
166     while (!TAILQ_EMPTY(&owindows)) {
167         ow = TAILQ_FIRST(&owindows);
168         TAILQ_REMOVE(&owindows, ow, owindows);
169         free(ow);
170     }
171     TAILQ_INIT(&owindows);
172     /* copy all_cons */
173     TAILQ_FOREACH(con, &all_cons, all_cons) {
174         ow = smalloc(sizeof(owindow));
175         ow->con = con;
176         TAILQ_INSERT_TAIL(&owindows, ow, owindows);
177     }
178 }
179
180 /*
181  * A match specification just finished (the closing square bracket was found),
182  * so we filter the list of owindows.
183  *
184  */
185 void cmd_criteria_match_windows(I3_CMD) {
186     owindow *next, *current;
187
188     DLOG("match specification finished, matching...\n");
189     /* copy the old list head to iterate through it and start with a fresh
190      * list which will contain only matching windows */
191     struct owindows_head old = owindows;
192     TAILQ_INIT(&owindows);
193     for (next = TAILQ_FIRST(&old); next != TAILQ_END(&old);) {
194         /* make a copy of the next pointer and advance the pointer to the
195          * next element as we are going to invalidate the element’s
196          * next/prev pointers by calling TAILQ_INSERT_TAIL later */
197         current = next;
198         next = TAILQ_NEXT(next, owindows);
199
200         DLOG("checking if con %p / %s matches\n", current->con, current->con->name);
201
202         /* We use this flag to prevent matching on window-less containers if
203          * only window-specific criteria were specified. */
204         bool accept_match = false;
205
206         if (current_match->con_id != NULL) {
207             accept_match = true;
208
209             if (current_match->con_id == current->con) {
210                 DLOG("con_id matched.\n");
211             } else {
212                 DLOG("con_id does not match.\n");
213                 FREE(current);
214                 continue;
215             }
216         }
217
218         if (current_match->mark != NULL && !TAILQ_EMPTY(&(current->con->marks_head))) {
219             accept_match = true;
220             bool matched_by_mark = false;
221
222             mark_t *mark;
223             TAILQ_FOREACH(mark, &(current->con->marks_head), marks) {
224                 if (!regex_matches(current_match->mark, mark->name))
225                     continue;
226
227                 DLOG("match by mark\n");
228                 matched_by_mark = true;
229                 break;
230             }
231
232             if (!matched_by_mark) {
233                 DLOG("mark does not match.\n");
234                 FREE(current);
235                 continue;
236             }
237         }
238
239         if (current->con->window != NULL) {
240             if (match_matches_window(current_match, current->con->window)) {
241                 DLOG("matches window!\n");
242                 accept_match = true;
243             } else {
244                 DLOG("doesn't match\n");
245                 FREE(current);
246                 continue;
247             }
248         }
249
250         if (accept_match) {
251             TAILQ_INSERT_TAIL(&owindows, current, owindows);
252         } else {
253             FREE(current);
254             continue;
255         }
256     }
257
258     TAILQ_FOREACH(current, &owindows, owindows) {
259         DLOG("matching: %p / %s\n", current->con, current->con->name);
260     }
261 }
262
263 /*
264  * Interprets a ctype=cvalue pair and adds it to the current match
265  * specification.
266  *
267  */
268 void cmd_criteria_add(I3_CMD, const char *ctype, const char *cvalue) {
269     match_parse_property(current_match, ctype, cvalue);
270 }
271
272 /*
273  * Implementation of 'move [window|container] [to] workspace
274  * next|prev|next_on_output|prev_on_output|current'.
275  *
276  */
277 void cmd_move_con_to_workspace(I3_CMD, const char *which) {
278     owindow *current;
279
280     DLOG("which=%s\n", which);
281
282     /* We have nothing to move:
283      *  when criteria was specified but didn't match any window or
284      *  when criteria wasn't specified and we don't have any window focused. */
285     if ((!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) ||
286         (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
287          !con_has_children(focused))) {
288         ysuccess(false);
289         return;
290     }
291
292     HANDLE_EMPTY_MATCH;
293
294     /* get the workspace */
295     Con *ws;
296     if (strcmp(which, "next") == 0)
297         ws = workspace_next();
298     else if (strcmp(which, "prev") == 0)
299         ws = workspace_prev();
300     else if (strcmp(which, "next_on_output") == 0)
301         ws = workspace_next_on_output();
302     else if (strcmp(which, "prev_on_output") == 0)
303         ws = workspace_prev_on_output();
304     else if (strcmp(which, "current") == 0)
305         ws = con_get_workspace(focused);
306     else {
307         ELOG("BUG: called with which=%s\n", which);
308         ysuccess(false);
309         return;
310     }
311
312     TAILQ_FOREACH(current, &owindows, owindows) {
313         DLOG("matching: %p / %s\n", current->con, current->con->name);
314         con_move_to_workspace(current->con, ws, true, false, false);
315     }
316
317     cmd_output->needs_tree_render = true;
318     // XXX: default reply for now, make this a better reply
319     ysuccess(true);
320 }
321
322 /**
323  * Implementation of 'move [window|container] [to] workspace back_and_forth'.
324  *
325  */
326 void cmd_move_con_to_workspace_back_and_forth(I3_CMD) {
327     owindow *current;
328     Con *ws;
329
330     ws = workspace_back_and_forth_get();
331
332     if (ws == NULL) {
333         yerror("No workspace was previously active.");
334         return;
335     }
336
337     HANDLE_EMPTY_MATCH;
338
339     TAILQ_FOREACH(current, &owindows, owindows) {
340         DLOG("matching: %p / %s\n", current->con, current->con->name);
341         con_move_to_workspace(current->con, ws, true, false, false);
342     }
343
344     cmd_output->needs_tree_render = true;
345     // XXX: default reply for now, make this a better reply
346     ysuccess(true);
347 }
348
349 /*
350  * Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace <name>'.
351  *
352  */
353 void cmd_move_con_to_workspace_name(I3_CMD, const char *name, const char *_no_auto_back_and_forth) {
354     if (strncasecmp(name, "__", strlen("__")) == 0) {
355         LOG("You cannot move containers to i3-internal workspaces (\"%s\").\n", name);
356         ysuccess(false);
357         return;
358     }
359
360     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
361     owindow *current;
362
363     /* We have nothing to move:
364      *  when criteria was specified but didn't match any window or
365      *  when criteria wasn't specified and we don't have any window focused. */
366     if (!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) {
367         ELOG("No windows match your criteria, cannot move.\n");
368         ysuccess(false);
369         return;
370     } else if (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
371                !con_has_children(focused)) {
372         ysuccess(false);
373         return;
374     }
375
376     LOG("should move window to workspace %s\n", name);
377     /* get the workspace */
378     Con *ws = workspace_get(name, NULL);
379
380     if (!no_auto_back_and_forth)
381         ws = maybe_auto_back_and_forth_workspace(ws);
382
383     HANDLE_EMPTY_MATCH;
384
385     TAILQ_FOREACH(current, &owindows, owindows) {
386         DLOG("matching: %p / %s\n", current->con, current->con->name);
387         con_move_to_workspace(current->con, ws, true, false, false);
388     }
389
390     cmd_output->needs_tree_render = true;
391     // XXX: default reply for now, make this a better reply
392     ysuccess(true);
393 }
394
395 /*
396  * Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace number <name>'.
397  *
398  */
399 void cmd_move_con_to_workspace_number(I3_CMD, const char *which, const char *_no_auto_back_and_forth) {
400     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
401     owindow *current;
402
403     /* We have nothing to move:
404      *  when criteria was specified but didn't match any window or
405      *  when criteria wasn't specified and we don't have any window focused. */
406     if ((!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) ||
407         (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
408          !con_has_children(focused))) {
409         ysuccess(false);
410         return;
411     }
412
413     LOG("should move window to workspace %s\n", which);
414     /* get the workspace */
415     Con *output, *workspace = NULL;
416
417     long parsed_num = ws_name_to_number(which);
418
419     if (parsed_num == -1) {
420         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
421         yerror("Could not parse number \"%s\"", which);
422         return;
423     }
424
425     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
426     GREP_FIRST(workspace, output_get_content(output),
427                child->num == parsed_num);
428
429     if (!workspace) {
430         workspace = workspace_get(which, NULL);
431     }
432
433     if (!no_auto_back_and_forth)
434         workspace = maybe_auto_back_and_forth_workspace(workspace);
435
436     HANDLE_EMPTY_MATCH;
437
438     TAILQ_FOREACH(current, &owindows, owindows) {
439         DLOG("matching: %p / %s\n", current->con, current->con->name);
440         con_move_to_workspace(current->con, workspace, true, false, false);
441     }
442
443     cmd_output->needs_tree_render = true;
444     // XXX: default reply for now, make this a better reply
445     ysuccess(true);
446 }
447
448 static void cmd_resize_floating(I3_CMD, const char *way, const char *direction, Con *floating_con, int px) {
449     LOG("floating resize\n");
450     Rect old_rect = floating_con->rect;
451     Con *focused_con = con_descend_focused(floating_con);
452
453     /* ensure that resize will take place even if pixel increment is smaller than
454      * height increment or width increment.
455      * fixes #1011 */
456     const i3Window *window = focused_con->window;
457     if (window != NULL) {
458         if (strcmp(direction, "up") == 0 || strcmp(direction, "down") == 0 ||
459             strcmp(direction, "height") == 0) {
460             if (px < 0)
461                 px = (-px < window->height_increment) ? -window->height_increment : px;
462             else
463                 px = (px < window->height_increment) ? window->height_increment : px;
464         } else if (strcmp(direction, "left") == 0 || strcmp(direction, "right") == 0) {
465             if (px < 0)
466                 px = (-px < window->width_increment) ? -window->width_increment : px;
467             else
468                 px = (px < window->width_increment) ? window->width_increment : px;
469         }
470     }
471
472     if (strcmp(direction, "up") == 0) {
473         floating_con->rect.height += px;
474     } else if (strcmp(direction, "down") == 0 || strcmp(direction, "height") == 0) {
475         floating_con->rect.height += px;
476     } else if (strcmp(direction, "left") == 0) {
477         floating_con->rect.width += px;
478     } else {
479         floating_con->rect.width += px;
480     }
481
482     floating_check_size(floating_con);
483
484     /* Did we actually resize anything or did the size constraints prevent us?
485      * If we could not resize, exit now to not move the window. */
486     if (memcmp(&old_rect, &(floating_con->rect), sizeof(Rect)) == 0)
487         return;
488
489     if (strcmp(direction, "up") == 0) {
490         floating_con->rect.y -= (floating_con->rect.height - old_rect.height);
491     } else if (strcmp(direction, "left") == 0) {
492         floating_con->rect.x -= (floating_con->rect.width - old_rect.width);
493     }
494
495     /* If this is a scratchpad window, don't auto center it from now on. */
496     if (floating_con->scratchpad_state == SCRATCHPAD_FRESH)
497         floating_con->scratchpad_state = SCRATCHPAD_CHANGED;
498 }
499
500 static bool cmd_resize_tiling_direction(I3_CMD, Con *current, const char *way, const char *direction, int ppt) {
501     LOG("tiling resize\n");
502     Con *second = NULL;
503     Con *first = current;
504     direction_t search_direction;
505     if (!strcmp(direction, "left"))
506         search_direction = D_LEFT;
507     else if (!strcmp(direction, "right"))
508         search_direction = D_RIGHT;
509     else if (!strcmp(direction, "up"))
510         search_direction = D_UP;
511     else
512         search_direction = D_DOWN;
513
514     bool res = resize_find_tiling_participants(&first, &second, search_direction);
515     if (!res) {
516         LOG("No second container in this direction found.\n");
517         ysuccess(false);
518         return false;
519     }
520
521     /* get the default percentage */
522     int children = con_num_children(first->parent);
523     LOG("ins. %d children\n", children);
524     double percentage = 1.0 / children;
525     LOG("default percentage = %f\n", percentage);
526
527     /* resize */
528     LOG("second->percent = %f\n", second->percent);
529     LOG("first->percent before = %f\n", first->percent);
530     if (first->percent == 0.0)
531         first->percent = percentage;
532     if (second->percent == 0.0)
533         second->percent = percentage;
534     double new_first_percent = first->percent + ((double)ppt / 100.0);
535     double new_second_percent = second->percent - ((double)ppt / 100.0);
536     LOG("new_first_percent = %f\n", new_first_percent);
537     LOG("new_second_percent = %f\n", new_second_percent);
538     /* Ensure that the new percentages are positive and greater than
539      * 0.05 to have a reasonable minimum size. */
540     if (definitelyGreaterThan(new_first_percent, 0.05, DBL_EPSILON) &&
541         definitelyGreaterThan(new_second_percent, 0.05, DBL_EPSILON)) {
542         first->percent += ((double)ppt / 100.0);
543         second->percent -= ((double)ppt / 100.0);
544         LOG("first->percent after = %f\n", first->percent);
545         LOG("second->percent after = %f\n", second->percent);
546     } else {
547         LOG("Not resizing, already at minimum size\n");
548     }
549
550     return true;
551 }
552
553 static bool cmd_resize_tiling_width_height(I3_CMD, Con *current, const char *way, const char *direction, int ppt) {
554     LOG("width/height resize\n");
555     /* get the appropriate current container (skip stacked/tabbed cons) */
556     while (current->parent->layout == L_STACKED ||
557            current->parent->layout == L_TABBED)
558         current = current->parent;
559
560     /* Then further go up until we find one with the matching orientation. */
561     orientation_t search_orientation =
562         (strcmp(direction, "width") == 0 ? HORIZ : VERT);
563
564     while (current->type != CT_WORKSPACE &&
565            current->type != CT_FLOATING_CON &&
566            (con_orientation(current->parent) != search_orientation || con_num_children(current->parent) == 1))
567         current = current->parent;
568
569     /* get the default percentage */
570     int children = con_num_children(current->parent);
571     LOG("ins. %d children\n", children);
572     double percentage = 1.0 / children;
573     LOG("default percentage = %f\n", percentage);
574
575     orientation_t orientation = con_orientation(current->parent);
576
577     if ((orientation == HORIZ &&
578          strcmp(direction, "height") == 0) ||
579         (orientation == VERT &&
580          strcmp(direction, "width") == 0)) {
581         LOG("You cannot resize in that direction. Your focus is in a %s split container currently.\n",
582             (orientation == HORIZ ? "horizontal" : "vertical"));
583         ysuccess(false);
584         return false;
585     }
586
587     if (children == 1) {
588         LOG("This is the only container, cannot resize.\n");
589         ysuccess(false);
590         return false;
591     }
592
593     /* Ensure all the other children have a percentage set. */
594     Con *child;
595     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
596         LOG("child->percent = %f (child %p)\n", child->percent, child);
597         if (child->percent == 0.0)
598             child->percent = percentage;
599     }
600
601     double new_current_percent = current->percent + ((double)ppt / 100.0);
602     double subtract_percent = ((double)ppt / 100.0) / (children - 1);
603     LOG("new_current_percent = %f\n", new_current_percent);
604     LOG("subtract_percent = %f\n", subtract_percent);
605     /* Ensure that the new percentages are positive and greater than
606      * 0.05 to have a reasonable minimum size. */
607     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
608         if (child == current)
609             continue;
610         if (!definitelyGreaterThan(child->percent - subtract_percent, 0.05, DBL_EPSILON)) {
611             LOG("Not resizing, already at minimum size (child %p would end up with a size of %.f\n", child, child->percent - subtract_percent);
612             ysuccess(false);
613             return false;
614         }
615     }
616     if (!definitelyGreaterThan(new_current_percent, 0.05, DBL_EPSILON)) {
617         LOG("Not resizing, already at minimum size\n");
618         ysuccess(false);
619         return false;
620     }
621
622     current->percent += ((double)ppt / 100.0);
623     LOG("current->percent after = %f\n", current->percent);
624
625     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
626         if (child == current)
627             continue;
628         child->percent -= subtract_percent;
629         LOG("child->percent after (%p) = %f\n", child, child->percent);
630     }
631
632     return true;
633 }
634
635 /*
636  * Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
637  *
638  */
639 void cmd_resize(I3_CMD, const char *way, const char *direction, long resize_px, long resize_ppt) {
640     DLOG("resizing in way %s, direction %s, px %ld or ppt %ld\n", way, direction, resize_px, resize_ppt);
641     if (strcmp(way, "shrink") == 0) {
642         resize_px *= -1;
643         resize_ppt *= -1;
644     }
645
646     HANDLE_EMPTY_MATCH;
647
648     owindow *current;
649     TAILQ_FOREACH(current, &owindows, owindows) {
650         /* Don't handle dock windows (issue #1201) */
651         if (current->con->window && current->con->window->dock) {
652             DLOG("This is a dock window. Not resizing (con = %p)\n)", current->con);
653             continue;
654         }
655
656         Con *floating_con;
657         if ((floating_con = con_inside_floating(current->con))) {
658             cmd_resize_floating(current_match, cmd_output, way, direction, floating_con, resize_px);
659         } else {
660             if (strcmp(direction, "width") == 0 ||
661                 strcmp(direction, "height") == 0) {
662                 if (!cmd_resize_tiling_width_height(current_match, cmd_output,
663                                                     current->con, way, direction, resize_ppt))
664                     return;
665             } else {
666                 if (!cmd_resize_tiling_direction(current_match, cmd_output,
667                                                  current->con, way, direction, resize_ppt))
668                     return;
669             }
670         }
671     }
672
673     cmd_output->needs_tree_render = true;
674     // XXX: default reply for now, make this a better reply
675     ysuccess(true);
676 }
677
678 /*
679  * Implementation of 'resize set <width> [px | ppt] <height> [px | ppt]'.
680  *
681  */
682 void cmd_resize_set(I3_CMD, long cwidth, const char *mode_width, long cheight, const char *mode_height) {
683     DLOG("resizing to %ld %s x %ld %s\n", cwidth, mode_width, cheight, mode_height);
684     if (cwidth <= 0 || cheight <= 0) {
685         ELOG("Resize failed: dimensions cannot be negative (was %ld %s x %ld %s)\n", cwidth, mode_width, cheight, mode_height);
686         return;
687     }
688
689     HANDLE_EMPTY_MATCH;
690
691     owindow *current;
692     TAILQ_FOREACH(current, &owindows, owindows) {
693         Con *floating_con;
694         if ((floating_con = con_inside_floating(current->con))) {
695             Con *output = con_get_output(floating_con);
696             if (mode_width && strcmp(mode_width, "ppt") == 0) {
697                 cwidth = output->rect.width * ((double)cwidth / 100.0);
698             }
699             if (mode_height && strcmp(mode_height, "ppt") == 0) {
700                 cheight = output->rect.height * ((double)cheight / 100.0);
701             }
702             floating_resize(floating_con, cwidth, cheight);
703         } else {
704             ELOG("Resize failed: %p not a floating container\n", current->con);
705         }
706     }
707
708     cmd_output->needs_tree_render = true;
709     // XXX: default reply for now, make this a better reply
710     ysuccess(true);
711 }
712
713 /*
714  * Implementation of 'border normal|pixel [<n>]', 'border none|1pixel|toggle'.
715  *
716  */
717 void cmd_border(I3_CMD, const char *border_style_str, long border_width) {
718     DLOG("border style should be changed to %s with border width %ld\n", border_style_str, border_width);
719     owindow *current;
720
721     HANDLE_EMPTY_MATCH;
722
723     TAILQ_FOREACH(current, &owindows, owindows) {
724         DLOG("matching: %p / %s\n", current->con, current->con->name);
725         int border_style = current->con->border_style;
726         int con_border_width = border_width;
727
728         if (strcmp(border_style_str, "toggle") == 0) {
729             border_style++;
730             border_style %= 3;
731             if (border_style == BS_NORMAL)
732                 con_border_width = 2;
733             else if (border_style == BS_NONE)
734                 con_border_width = 0;
735             else if (border_style == BS_PIXEL)
736                 con_border_width = 1;
737         } else {
738             if (strcmp(border_style_str, "normal") == 0) {
739                 border_style = BS_NORMAL;
740             } else if (strcmp(border_style_str, "pixel") == 0) {
741                 border_style = BS_PIXEL;
742             } else if (strcmp(border_style_str, "1pixel") == 0) {
743                 border_style = BS_PIXEL;
744                 con_border_width = 1;
745             } else if (strcmp(border_style_str, "none") == 0) {
746                 border_style = BS_NONE;
747             } else {
748                 ELOG("BUG: called with border_style=%s\n", border_style_str);
749                 ysuccess(false);
750                 return;
751             }
752         }
753
754         con_set_border_style(current->con, border_style, logical_px(con_border_width));
755     }
756
757     cmd_output->needs_tree_render = true;
758     // XXX: default reply for now, make this a better reply
759     ysuccess(true);
760 }
761
762 /*
763  * Implementation of 'nop <comment>'.
764  *
765  */
766 void cmd_nop(I3_CMD, const char *comment) {
767     LOG("-------------------------------------------------\n");
768     LOG("  NOP: %s\n", comment);
769     LOG("-------------------------------------------------\n");
770 }
771
772 /*
773  * Implementation of 'append_layout <path>'.
774  *
775  */
776 void cmd_append_layout(I3_CMD, const char *cpath) {
777     char *path = sstrdup(cpath);
778     LOG("Appending layout \"%s\"\n", path);
779
780     /* Make sure we allow paths like '~/.i3/layout.json' */
781     path = resolve_tilde(path);
782
783     char *buf = NULL;
784     ssize_t len;
785     if ((len = slurp(path, &buf)) < 0) {
786         /* slurp already logged an error. */
787         goto out;
788     }
789
790     if (!json_validate(buf, len)) {
791         ELOG("Could not parse \"%s\" as JSON, not loading.\n", path);
792         yerror("Could not parse \"%s\" as JSON.", path);
793         goto out;
794     }
795
796     json_content_t content = json_determine_content(buf, len);
797     LOG("JSON content = %d\n", content);
798     if (content == JSON_CONTENT_UNKNOWN) {
799         ELOG("Could not determine the contents of \"%s\", not loading.\n", path);
800         yerror("Could not determine the contents of \"%s\".", path);
801         goto out;
802     }
803
804     Con *parent = focused;
805     if (content == JSON_CONTENT_WORKSPACE) {
806         parent = output_get_content(con_get_output(parent));
807     } else {
808         /* We need to append the layout to a split container, since a leaf
809          * container must not have any children (by definition).
810          * Note that we explicitly check for workspaces, since they are okay for
811          * this purpose, but con_accepts_window() returns false for workspaces. */
812         while (parent->type != CT_WORKSPACE && !con_accepts_window(parent))
813             parent = parent->parent;
814     }
815     DLOG("Appending to parent=%p instead of focused=%p\n", parent, focused);
816     char *errormsg = NULL;
817     tree_append_json(parent, buf, len, &errormsg);
818     if (errormsg != NULL) {
819         yerror(errormsg);
820         free(errormsg);
821         /* Note that we continue executing since tree_append_json() has
822          * side-effects — user-provided layouts can be partly valid, partly
823          * invalid, leading to half of the placeholder containers being
824          * created. */
825     } else {
826         ysuccess(true);
827     }
828
829     // XXX: This is a bit of a kludge. Theoretically, render_con(parent,
830     // false); should be enough, but when sending 'workspace 4; append_layout
831     // /tmp/foo.json', the needs_tree_render == true of the workspace command
832     // is not executed yet and will be batched with append_layout’s
833     // needs_tree_render after the parser finished. We should check if that is
834     // necessary at all.
835     render_con(croot, false);
836
837     restore_open_placeholder_windows(parent);
838
839     if (content == JSON_CONTENT_WORKSPACE)
840         ipc_send_workspace_event("restored", parent, NULL);
841
842     cmd_output->needs_tree_render = true;
843 out:
844     free(path);
845     free(buf);
846 }
847
848 /*
849  * Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
850  *
851  */
852 void cmd_workspace(I3_CMD, const char *which) {
853     Con *ws;
854
855     DLOG("which=%s\n", which);
856
857     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
858         LOG("Cannot switch workspace while in global fullscreen\n");
859         ysuccess(false);
860         return;
861     }
862
863     if (strcmp(which, "next") == 0)
864         ws = workspace_next();
865     else if (strcmp(which, "prev") == 0)
866         ws = workspace_prev();
867     else if (strcmp(which, "next_on_output") == 0)
868         ws = workspace_next_on_output();
869     else if (strcmp(which, "prev_on_output") == 0)
870         ws = workspace_prev_on_output();
871     else {
872         ELOG("BUG: called with which=%s\n", which);
873         ysuccess(false);
874         return;
875     }
876
877     workspace_show(ws);
878
879     cmd_output->needs_tree_render = true;
880     // XXX: default reply for now, make this a better reply
881     ysuccess(true);
882 }
883
884 /*
885  * Implementation of 'workspace [--no-auto-back-and-forth] number <name>'
886  *
887  */
888 void cmd_workspace_number(I3_CMD, const char *which, const char *_no_auto_back_and_forth) {
889     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
890     Con *output, *workspace = NULL;
891
892     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
893         LOG("Cannot switch workspace while in global fullscreen\n");
894         ysuccess(false);
895         return;
896     }
897
898     long parsed_num = ws_name_to_number(which);
899
900     if (parsed_num == -1) {
901         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
902         yerror("Could not parse number \"%s\"", which);
903         return;
904     }
905
906     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
907     GREP_FIRST(workspace, output_get_content(output),
908                child->num == parsed_num);
909
910     if (!workspace) {
911         LOG("There is no workspace with number %ld, creating a new one.\n", parsed_num);
912         ysuccess(true);
913         workspace_show_by_name(which);
914         cmd_output->needs_tree_render = true;
915         return;
916     }
917     if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, workspace->name)) {
918         ysuccess(true);
919         return;
920     }
921     workspace_show(workspace);
922
923     cmd_output->needs_tree_render = true;
924     // XXX: default reply for now, make this a better reply
925     ysuccess(true);
926 }
927
928 /*
929  * Implementation of 'workspace back_and_forth'.
930  *
931  */
932 void cmd_workspace_back_and_forth(I3_CMD) {
933     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
934         LOG("Cannot switch workspace while in global fullscreen\n");
935         ysuccess(false);
936         return;
937     }
938
939     workspace_back_and_forth();
940
941     cmd_output->needs_tree_render = true;
942     // XXX: default reply for now, make this a better reply
943     ysuccess(true);
944 }
945
946 /*
947  * Implementation of 'workspace [--no-auto-back-and-forth] <name>'
948  *
949  */
950 void cmd_workspace_name(I3_CMD, const char *name, const char *_no_auto_back_and_forth) {
951     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
952
953     if (strncasecmp(name, "__", strlen("__")) == 0) {
954         LOG("You cannot switch to the i3-internal workspaces (\"%s\").\n", name);
955         ysuccess(false);
956         return;
957     }
958
959     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
960         LOG("Cannot switch workspace while in global fullscreen\n");
961         ysuccess(false);
962         return;
963     }
964
965     DLOG("should switch to workspace %s\n", name);
966     if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, name)) {
967         ysuccess(true);
968         return;
969     }
970     workspace_show_by_name(name);
971
972     cmd_output->needs_tree_render = true;
973     // XXX: default reply for now, make this a better reply
974     ysuccess(true);
975 }
976
977 /*
978  * Implementation of 'mark [--add|--replace] [--toggle] <mark>'
979  *
980  */
981 void cmd_mark(I3_CMD, const char *mark, const char *mode, const char *toggle) {
982     HANDLE_EMPTY_MATCH;
983
984     owindow *current = TAILQ_FIRST(&owindows);
985     if (current == NULL) {
986         ysuccess(false);
987         return;
988     }
989
990     /* Marks must be unique, i.e., no two windows must have the same mark. */
991     if (current != TAILQ_LAST(&owindows, owindows_head)) {
992         yerror("A mark must not be put onto more than one window");
993         return;
994     }
995
996     DLOG("matching: %p / %s\n", current->con, current->con->name);
997
998     mark_mode_t mark_mode = (mode == NULL || strcmp(mode, "--replace") == 0) ? MM_REPLACE : MM_ADD;
999     if (toggle != NULL) {
1000         con_mark_toggle(current->con, mark, mark_mode);
1001     } else {
1002         con_mark(current->con, mark, mark_mode);
1003     }
1004
1005     cmd_output->needs_tree_render = true;
1006     // XXX: default reply for now, make this a better reply
1007     ysuccess(true);
1008 }
1009
1010 /*
1011  * Implementation of 'unmark [mark]'
1012  *
1013  */
1014 void cmd_unmark(I3_CMD, const char *mark) {
1015     if (match_is_empty(current_match)) {
1016         con_unmark(NULL, mark);
1017     } else {
1018         owindow *current;
1019         TAILQ_FOREACH(current, &owindows, owindows) {
1020             con_unmark(current->con, mark);
1021         }
1022     }
1023
1024     cmd_output->needs_tree_render = true;
1025     // XXX: default reply for now, make this a better reply
1026     ysuccess(true);
1027 }
1028
1029 /*
1030  * Implementation of 'mode <string>'.
1031  *
1032  */
1033 void cmd_mode(I3_CMD, const char *mode) {
1034     DLOG("mode=%s\n", mode);
1035     switch_mode(mode);
1036
1037     // XXX: default reply for now, make this a better reply
1038     ysuccess(true);
1039 }
1040
1041 /*
1042  * Implementation of 'move [window|container] [to] output <str>'.
1043  *
1044  */
1045 void cmd_move_con_to_output(I3_CMD, const char *name) {
1046     DLOG("Should move window to output \"%s\".\n", name);
1047     HANDLE_EMPTY_MATCH;
1048
1049     owindow *current;
1050     bool had_error = false;
1051     TAILQ_FOREACH(current, &owindows, owindows) {
1052         DLOG("matching: %p / %s\n", current->con, current->con->name);
1053
1054         had_error |= !con_move_to_output_name(current->con, name, true);
1055     }
1056
1057     cmd_output->needs_tree_render = true;
1058     ysuccess(!had_error);
1059 }
1060
1061 /*
1062  * Implementation of 'move [container|window] [to] mark <str>'.
1063  *
1064  */
1065 void cmd_move_con_to_mark(I3_CMD, const char *mark) {
1066     DLOG("moving window to mark \"%s\"\n", mark);
1067
1068     HANDLE_EMPTY_MATCH;
1069
1070     bool result = true;
1071     owindow *current;
1072     TAILQ_FOREACH(current, &owindows, owindows) {
1073         DLOG("moving matched window %p / %s to mark \"%s\"\n", current->con, current->con->name, mark);
1074         result &= con_move_to_mark(current->con, mark);
1075     }
1076
1077     cmd_output->needs_tree_render = true;
1078     ysuccess(result);
1079 }
1080
1081 /*
1082  * Implementation of 'floating enable|disable|toggle'
1083  *
1084  */
1085 void cmd_floating(I3_CMD, const char *floating_mode) {
1086     owindow *current;
1087
1088     DLOG("floating_mode=%s\n", floating_mode);
1089
1090     HANDLE_EMPTY_MATCH;
1091
1092     TAILQ_FOREACH(current, &owindows, owindows) {
1093         DLOG("matching: %p / %s\n", current->con, current->con->name);
1094         if (strcmp(floating_mode, "toggle") == 0) {
1095             DLOG("should toggle mode\n");
1096             toggle_floating_mode(current->con, false);
1097         } else {
1098             DLOG("should switch mode to %s\n", floating_mode);
1099             if (strcmp(floating_mode, "enable") == 0) {
1100                 floating_enable(current->con, false);
1101             } else {
1102                 floating_disable(current->con, false);
1103             }
1104         }
1105     }
1106
1107     cmd_output->needs_tree_render = true;
1108     // XXX: default reply for now, make this a better reply
1109     ysuccess(true);
1110 }
1111
1112 /*
1113  * Implementation of 'move workspace to [output] <str>'.
1114  *
1115  */
1116 void cmd_move_workspace_to_output(I3_CMD, const char *name) {
1117     DLOG("should move workspace to output %s\n", name);
1118
1119     HANDLE_EMPTY_MATCH;
1120
1121     owindow *current;
1122     TAILQ_FOREACH(current, &owindows, owindows) {
1123         Con *ws = con_get_workspace(current->con);
1124         if (con_is_internal(ws)) {
1125             continue;
1126         }
1127
1128         bool success = workspace_move_to_output(ws, name);
1129         if (!success) {
1130             ELOG("Failed to move workspace to output.\n");
1131             ysuccess(false);
1132             return;
1133         }
1134     }
1135
1136     cmd_output->needs_tree_render = true;
1137     // XXX: default reply for now, make this a better reply
1138     ysuccess(true);
1139 }
1140
1141 /*
1142  * Implementation of 'split v|h|t|vertical|horizontal|toggle'.
1143  *
1144  */
1145 void cmd_split(I3_CMD, const char *direction) {
1146     HANDLE_EMPTY_MATCH;
1147
1148     owindow *current;
1149     LOG("splitting in direction %c\n", direction[0]);
1150     TAILQ_FOREACH(current, &owindows, owindows) {
1151         if (con_is_docked(current->con)) {
1152             ELOG("Cannot split a docked container, skipping.\n");
1153             continue;
1154         }
1155
1156         DLOG("matching: %p / %s\n", current->con, current->con->name);
1157         if (direction[0] == 't') {
1158             layout_t current_layout;
1159             if (current->con->type == CT_WORKSPACE) {
1160                 current_layout = current->con->layout;
1161             } else {
1162                 current_layout = current->con->parent->layout;
1163             }
1164             /* toggling split orientation */
1165             if (current_layout == L_SPLITH) {
1166                 tree_split(current->con, VERT);
1167             } else {
1168                 tree_split(current->con, HORIZ);
1169             }
1170         } else {
1171             tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1172         }
1173     }
1174
1175     cmd_output->needs_tree_render = true;
1176     // XXX: default reply for now, make this a better reply
1177     ysuccess(true);
1178 }
1179
1180 /*
1181  * Implementation of 'kill [window|client]'.
1182  *
1183  */
1184 void cmd_kill(I3_CMD, const char *kill_mode_str) {
1185     if (kill_mode_str == NULL)
1186         kill_mode_str = "window";
1187
1188     DLOG("kill_mode=%s\n", kill_mode_str);
1189
1190     int kill_mode;
1191     if (strcmp(kill_mode_str, "window") == 0)
1192         kill_mode = KILL_WINDOW;
1193     else if (strcmp(kill_mode_str, "client") == 0)
1194         kill_mode = KILL_CLIENT;
1195     else {
1196         ELOG("BUG: called with kill_mode=%s\n", kill_mode_str);
1197         ysuccess(false);
1198         return;
1199     }
1200
1201     HANDLE_EMPTY_MATCH;
1202
1203     owindow *current;
1204     TAILQ_FOREACH(current, &owindows, owindows) {
1205         con_close(current->con, kill_mode);
1206     }
1207
1208     cmd_output->needs_tree_render = true;
1209     // XXX: default reply for now, make this a better reply
1210     ysuccess(true);
1211 }
1212
1213 /*
1214  * Implementation of 'exec [--no-startup-id] <command>'.
1215  *
1216  */
1217 void cmd_exec(I3_CMD, const char *nosn, const char *command) {
1218     bool no_startup_id = (nosn != NULL);
1219
1220     DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1221     start_application(command, no_startup_id);
1222
1223     // XXX: default reply for now, make this a better reply
1224     ysuccess(true);
1225 }
1226
1227 /*
1228  * Implementation of 'focus left|right|up|down'.
1229  *
1230  */
1231 void cmd_focus_direction(I3_CMD, const char *direction) {
1232     DLOG("direction = *%s*\n", direction);
1233
1234     if (strcmp(direction, "left") == 0)
1235         tree_next('p', HORIZ);
1236     else if (strcmp(direction, "right") == 0)
1237         tree_next('n', HORIZ);
1238     else if (strcmp(direction, "up") == 0)
1239         tree_next('p', VERT);
1240     else if (strcmp(direction, "down") == 0)
1241         tree_next('n', VERT);
1242     else {
1243         ELOG("Invalid focus direction (%s)\n", direction);
1244         ysuccess(false);
1245         return;
1246     }
1247
1248     cmd_output->needs_tree_render = true;
1249     // XXX: default reply for now, make this a better reply
1250     ysuccess(true);
1251 }
1252
1253 /*
1254  * Implementation of 'focus tiling|floating|mode_toggle'.
1255  *
1256  */
1257 void cmd_focus_window_mode(I3_CMD, const char *window_mode) {
1258     DLOG("window_mode = %s\n", window_mode);
1259
1260     Con *ws = con_get_workspace(focused);
1261     if (ws != NULL) {
1262         if (strcmp(window_mode, "mode_toggle") == 0) {
1263             if (con_inside_floating(focused))
1264                 window_mode = "tiling";
1265             else
1266                 window_mode = "floating";
1267         }
1268         Con *current;
1269         TAILQ_FOREACH(current, &(ws->focus_head), focused) {
1270             if ((strcmp(window_mode, "floating") == 0 && current->type != CT_FLOATING_CON) ||
1271                 (strcmp(window_mode, "tiling") == 0 && current->type == CT_FLOATING_CON))
1272                 continue;
1273
1274             con_focus(con_descend_focused(current));
1275             break;
1276         }
1277     }
1278
1279     cmd_output->needs_tree_render = true;
1280     // XXX: default reply for now, make this a better reply
1281     ysuccess(true);
1282 }
1283
1284 /*
1285  * Implementation of 'focus parent|child'.
1286  *
1287  */
1288 void cmd_focus_level(I3_CMD, const char *level) {
1289     DLOG("level = %s\n", level);
1290     bool success = false;
1291
1292     /* Focusing the parent can only be allowed if the newly
1293      * focused container won't escape the fullscreen container. */
1294     if (strcmp(level, "parent") == 0) {
1295         if (focused && focused->parent) {
1296             if (con_fullscreen_permits_focusing(focused->parent))
1297                 success = level_up();
1298             else
1299                 ELOG("'focus parent': Currently in fullscreen, not going up\n");
1300         }
1301     }
1302
1303     /* Focusing a child should always be allowed. */
1304     else
1305         success = level_down();
1306
1307     cmd_output->needs_tree_render = success;
1308     // XXX: default reply for now, make this a better reply
1309     ysuccess(success);
1310 }
1311
1312 /*
1313  * Implementation of 'focus'.
1314  *
1315  */
1316 void cmd_focus(I3_CMD) {
1317     DLOG("current_match = %p\n", current_match);
1318
1319     if (match_is_empty(current_match)) {
1320         ELOG("You have to specify which window/container should be focused.\n");
1321         ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1322
1323         yerror("You have to specify which window/container should be focused");
1324
1325         return;
1326     }
1327
1328     Con *__i3_scratch = workspace_get("__i3_scratch", NULL);
1329     int count = 0;
1330     owindow *current;
1331     TAILQ_FOREACH(current, &owindows, owindows) {
1332         Con *ws = con_get_workspace(current->con);
1333         /* If no workspace could be found, this was a dock window.
1334          * Just skip it, you cannot focus dock windows. */
1335         if (!ws)
1336             continue;
1337
1338         /* Check the fullscreen focus constraints. */
1339         if (!con_fullscreen_permits_focusing(current->con)) {
1340             LOG("Cannot change focus while in fullscreen mode (fullscreen rules).\n");
1341             ysuccess(false);
1342             return;
1343         }
1344
1345         /* In case this is a scratchpad window, call scratchpad_show(). */
1346         if (ws == __i3_scratch) {
1347             scratchpad_show(current->con);
1348             count++;
1349             /* While for the normal focus case we can change focus multiple
1350              * times and only a single window ends up focused, we could show
1351              * multiple scratchpad windows. So, rather break here. */
1352             break;
1353         }
1354
1355         /* If the container is not on the current workspace,
1356          * workspace_show() will switch to a different workspace and (if
1357          * enabled) trigger a mouse pointer warp to the currently focused
1358          * container (!) on the target workspace.
1359          *
1360          * Therefore, before calling workspace_show(), we make sure that
1361          * 'current' will be focused on the workspace. However, we cannot
1362          * just con_focus(current) because then the pointer will not be
1363          * warped at all (the code thinks we are already there).
1364          *
1365          * So we focus 'current' to make it the currently focused window of
1366          * the target workspace, then revert focus. */
1367         Con *currently_focused = focused;
1368         con_focus(current->con);
1369         con_focus(currently_focused);
1370
1371         /* Now switch to the workspace, then focus */
1372         workspace_show(ws);
1373         LOG("focusing %p / %s\n", current->con, current->con->name);
1374         con_focus(current->con);
1375         count++;
1376     }
1377
1378     if (count > 1)
1379         LOG("WARNING: Your criteria for the focus command matches %d containers, "
1380             "while only exactly one container can be focused at a time.\n",
1381             count);
1382
1383     cmd_output->needs_tree_render = true;
1384     ysuccess(count > 0);
1385 }
1386
1387 /*
1388  * Implementation of 'fullscreen enable|toggle [global]' and
1389  *                   'fullscreen disable'
1390  *
1391  */
1392 void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode) {
1393     fullscreen_mode_t mode = strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT;
1394     DLOG("%s fullscreen, mode = %s\n", action, fullscreen_mode);
1395     owindow *current;
1396
1397     HANDLE_EMPTY_MATCH;
1398
1399     TAILQ_FOREACH(current, &owindows, owindows) {
1400         DLOG("matching: %p / %s\n", current->con, current->con->name);
1401         if (strcmp(action, "toggle") == 0) {
1402             con_toggle_fullscreen(current->con, mode);
1403         } else if (strcmp(action, "enable") == 0) {
1404             con_enable_fullscreen(current->con, mode);
1405         } else if (strcmp(action, "disable") == 0) {
1406             con_disable_fullscreen(current->con);
1407         }
1408     }
1409
1410     cmd_output->needs_tree_render = true;
1411     // XXX: default reply for now, make this a better reply
1412     ysuccess(true);
1413 }
1414
1415 /*
1416  * Implementation of 'sticky enable|disable|toggle'.
1417  *
1418  */
1419 void cmd_sticky(I3_CMD, const char *action) {
1420     DLOG("%s sticky on window\n", action);
1421     HANDLE_EMPTY_MATCH;
1422
1423     owindow *current;
1424     TAILQ_FOREACH(current, &owindows, owindows) {
1425         if (current->con->window == NULL) {
1426             ELOG("only containers holding a window can be made sticky, skipping con = %p\n", current->con);
1427             continue;
1428         }
1429         DLOG("setting sticky for container = %p / %s\n", current->con, current->con->name);
1430
1431         bool sticky = false;
1432         if (strcmp(action, "enable") == 0)
1433             sticky = true;
1434         else if (strcmp(action, "disable") == 0)
1435             sticky = false;
1436         else if (strcmp(action, "toggle") == 0)
1437             sticky = !current->con->sticky;
1438
1439         current->con->sticky = sticky;
1440         ewmh_update_sticky(current->con->window->id, sticky);
1441     }
1442
1443     /* A window we made sticky might not be on a visible workspace right now, so we need to make
1444      * sure it gets pushed to the front now. */
1445     output_push_sticky_windows(focused);
1446
1447     ewmh_update_wm_desktop();
1448
1449     cmd_output->needs_tree_render = true;
1450     ysuccess(true);
1451 }
1452
1453 /*
1454  * Implementation of 'move <direction> [<pixels> [px]]'.
1455  *
1456  */
1457 void cmd_move_direction(I3_CMD, const char *direction, long move_px) {
1458     owindow *current;
1459     HANDLE_EMPTY_MATCH;
1460
1461     Con *initially_focused = focused;
1462
1463     TAILQ_FOREACH(current, &owindows, owindows) {
1464         DLOG("moving in direction %s, px %ld\n", direction, move_px);
1465         if (con_is_floating(current->con)) {
1466             DLOG("floating move with %ld pixels\n", move_px);
1467             Rect newrect = current->con->parent->rect;
1468             if (strcmp(direction, "left") == 0) {
1469                 newrect.x -= move_px;
1470             } else if (strcmp(direction, "right") == 0) {
1471                 newrect.x += move_px;
1472             } else if (strcmp(direction, "up") == 0) {
1473                 newrect.y -= move_px;
1474             } else if (strcmp(direction, "down") == 0) {
1475                 newrect.y += move_px;
1476             }
1477             floating_reposition(current->con->parent, newrect);
1478         } else {
1479             tree_move(current->con, (strcmp(direction, "right") == 0 ? D_RIGHT : (strcmp(direction, "left") == 0 ? D_LEFT : (strcmp(direction, "up") == 0 ? D_UP : D_DOWN))));
1480             cmd_output->needs_tree_render = true;
1481         }
1482     }
1483
1484     /* the move command should not disturb focus */
1485     if (focused != initially_focused)
1486         con_focus(initially_focused);
1487
1488     // XXX: default reply for now, make this a better reply
1489     ysuccess(true);
1490 }
1491
1492 /*
1493  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1494  *
1495  */
1496 void cmd_layout(I3_CMD, const char *layout_str) {
1497     HANDLE_EMPTY_MATCH;
1498
1499     layout_t layout;
1500     if (!layout_from_name(layout_str, &layout)) {
1501         ELOG("Unknown layout \"%s\", this is a mismatch between code and parser spec.\n", layout_str);
1502         return;
1503     }
1504
1505     DLOG("changing layout to %s (%d)\n", layout_str, layout);
1506
1507     owindow *current;
1508     TAILQ_FOREACH(current, &owindows, owindows) {
1509         if (con_is_docked(current->con)) {
1510             ELOG("cannot change layout of a docked container, skipping it.\n");
1511             continue;
1512         }
1513
1514         DLOG("matching: %p / %s\n", current->con, current->con->name);
1515         con_set_layout(current->con, layout);
1516     }
1517
1518     cmd_output->needs_tree_render = true;
1519     // XXX: default reply for now, make this a better reply
1520     ysuccess(true);
1521 }
1522
1523 /*
1524  * Implementation of 'layout toggle [all|split]'.
1525  *
1526  */
1527 void cmd_layout_toggle(I3_CMD, const char *toggle_mode) {
1528     owindow *current;
1529
1530     if (toggle_mode == NULL)
1531         toggle_mode = "default";
1532
1533     DLOG("toggling layout (mode = %s)\n", toggle_mode);
1534
1535     /* check if the match is empty, not if the result is empty */
1536     if (match_is_empty(current_match))
1537         con_toggle_layout(focused, toggle_mode);
1538     else {
1539         TAILQ_FOREACH(current, &owindows, owindows) {
1540             DLOG("matching: %p / %s\n", current->con, current->con->name);
1541             con_toggle_layout(current->con, toggle_mode);
1542         }
1543     }
1544
1545     cmd_output->needs_tree_render = true;
1546     // XXX: default reply for now, make this a better reply
1547     ysuccess(true);
1548 }
1549
1550 /*
1551  * Implementation of 'exit'.
1552  *
1553  */
1554 void cmd_exit(I3_CMD) {
1555     LOG("Exiting due to user command.\n");
1556 #ifdef I3_ASAN_ENABLED
1557     __lsan_do_leak_check();
1558 #endif
1559     ipc_shutdown(SHUTDOWN_REASON_EXIT);
1560     unlink(config.ipc_socket_path);
1561     xcb_disconnect(conn);
1562     exit(0);
1563
1564     /* unreached */
1565 }
1566
1567 /*
1568  * Implementation of 'reload'.
1569  *
1570  */
1571 void cmd_reload(I3_CMD) {
1572     LOG("reloading\n");
1573     kill_nagbar(&config_error_nagbar_pid, false);
1574     kill_nagbar(&command_error_nagbar_pid, false);
1575     load_configuration(conn, NULL, true);
1576     x_set_i3_atoms();
1577     /* Send an IPC event just in case the ws names have changed */
1578     ipc_send_workspace_event("reload", NULL, NULL);
1579     /* Send an update event for the barconfig just in case it has changed */
1580     update_barconfig();
1581
1582     // XXX: default reply for now, make this a better reply
1583     ysuccess(true);
1584 }
1585
1586 /*
1587  * Implementation of 'restart'.
1588  *
1589  */
1590 void cmd_restart(I3_CMD) {
1591     LOG("restarting i3\n");
1592     ipc_shutdown(SHUTDOWN_REASON_RESTART);
1593     unlink(config.ipc_socket_path);
1594     /* We need to call this manually since atexit handlers don’t get called
1595      * when exec()ing */
1596     purge_zerobyte_logfile();
1597     i3_restart(false);
1598
1599     // XXX: default reply for now, make this a better reply
1600     ysuccess(true);
1601 }
1602
1603 /*
1604  * Implementation of 'open'.
1605  *
1606  */
1607 void cmd_open(I3_CMD) {
1608     LOG("opening new container\n");
1609     Con *con = tree_open_con(NULL, NULL);
1610     con->layout = L_SPLITH;
1611     con_focus(con);
1612
1613     y(map_open);
1614     ystr("success");
1615     y(bool, true);
1616     ystr("id");
1617     y(integer, (uintptr_t)con);
1618     y(map_close);
1619
1620     cmd_output->needs_tree_render = true;
1621 }
1622
1623 /*
1624  * Implementation of 'focus output <output>'.
1625  *
1626  */
1627 void cmd_focus_output(I3_CMD, const char *name) {
1628     owindow *current;
1629
1630     DLOG("name = %s\n", name);
1631
1632     HANDLE_EMPTY_MATCH;
1633
1634     /* get the output */
1635     Output *current_output = NULL;
1636     Output *output;
1637
1638     TAILQ_FOREACH(current, &owindows, owindows)
1639     current_output = get_output_for_con(current->con);
1640     assert(current_output != NULL);
1641
1642     output = get_output_from_string(current_output, name);
1643
1644     if (!output) {
1645         LOG("No such output found.\n");
1646         ysuccess(false);
1647         return;
1648     }
1649
1650     /* get visible workspace on output */
1651     Con *ws = NULL;
1652     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1653     if (!ws) {
1654         ysuccess(false);
1655         return;
1656     }
1657
1658     workspace_show(ws);
1659
1660     cmd_output->needs_tree_render = true;
1661     // XXX: default reply for now, make this a better reply
1662     ysuccess(true);
1663 }
1664
1665 /*
1666  * Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
1667  *
1668  */
1669 void cmd_move_window_to_position(I3_CMD, const char *method, long x, long y) {
1670     bool has_error = false;
1671
1672     owindow *current;
1673     HANDLE_EMPTY_MATCH;
1674
1675     TAILQ_FOREACH(current, &owindows, owindows) {
1676         if (!con_is_floating(current->con)) {
1677             ELOG("Cannot change position. The window/container is not floating\n");
1678
1679             if (!has_error) {
1680                 yerror("Cannot change position of a window/container because it is not floating.");
1681                 has_error = true;
1682             }
1683
1684             continue;
1685         }
1686
1687         if (strcmp(method, "absolute") == 0) {
1688             current->con->parent->rect.x = x;
1689             current->con->parent->rect.y = y;
1690
1691             DLOG("moving to absolute position %ld %ld\n", x, y);
1692             floating_maybe_reassign_ws(current->con->parent);
1693             cmd_output->needs_tree_render = true;
1694         }
1695
1696         if (strcmp(method, "position") == 0) {
1697             Rect newrect = current->con->parent->rect;
1698
1699             DLOG("moving to position %ld %ld\n", x, y);
1700             newrect.x = x;
1701             newrect.y = y;
1702
1703             floating_reposition(current->con->parent, newrect);
1704         }
1705     }
1706
1707     // XXX: default reply for now, make this a better reply
1708     if (!has_error)
1709         ysuccess(true);
1710 }
1711
1712 /*
1713  * Implementation of 'move [window|container] [to] [absolute] position center
1714  *
1715  */
1716 void cmd_move_window_to_center(I3_CMD, const char *method) {
1717     bool has_error = false;
1718     HANDLE_EMPTY_MATCH;
1719
1720     owindow *current;
1721     TAILQ_FOREACH(current, &owindows, owindows) {
1722         Con *floating_con = con_inside_floating(current->con);
1723         if (floating_con == NULL) {
1724             ELOG("con %p / %s is not floating, cannot move it to the center.\n",
1725                  current->con, current->con->name);
1726
1727             if (!has_error) {
1728                 yerror("Cannot change position of a window/container because it is not floating.");
1729                 has_error = true;
1730             }
1731
1732             continue;
1733         }
1734
1735         if (strcmp(method, "absolute") == 0) {
1736             DLOG("moving to absolute center\n");
1737             floating_center(floating_con, croot->rect);
1738
1739             floating_maybe_reassign_ws(floating_con);
1740             cmd_output->needs_tree_render = true;
1741         }
1742
1743         if (strcmp(method, "position") == 0) {
1744             DLOG("moving to center\n");
1745             floating_center(floating_con, con_get_workspace(floating_con)->rect);
1746
1747             cmd_output->needs_tree_render = true;
1748         }
1749     }
1750
1751     // XXX: default reply for now, make this a better reply
1752     if (!has_error)
1753         ysuccess(true);
1754 }
1755
1756 /*
1757  * Implementation of 'move [window|container] [to] position mouse'
1758  *
1759  */
1760 void cmd_move_window_to_mouse(I3_CMD) {
1761     HANDLE_EMPTY_MATCH;
1762
1763     owindow *current;
1764     TAILQ_FOREACH(current, &owindows, owindows) {
1765         Con *floating_con = con_inside_floating(current->con);
1766         if (floating_con == NULL) {
1767             DLOG("con %p / %s is not floating, cannot move it to the mouse position.\n",
1768                  current->con, current->con->name);
1769             continue;
1770         }
1771
1772         DLOG("moving floating container %p / %s to cursor position\n", floating_con, floating_con->name);
1773         floating_move_to_pointer(floating_con);
1774     }
1775
1776     cmd_output->needs_tree_render = true;
1777     ysuccess(true);
1778 }
1779
1780 /*
1781  * Implementation of 'move scratchpad'.
1782  *
1783  */
1784 void cmd_move_scratchpad(I3_CMD) {
1785     DLOG("should move window to scratchpad\n");
1786     owindow *current;
1787
1788     HANDLE_EMPTY_MATCH;
1789
1790     TAILQ_FOREACH(current, &owindows, owindows) {
1791         DLOG("matching: %p / %s\n", current->con, current->con->name);
1792         scratchpad_move(current->con);
1793     }
1794
1795     cmd_output->needs_tree_render = true;
1796     // XXX: default reply for now, make this a better reply
1797     ysuccess(true);
1798 }
1799
1800 /*
1801  * Implementation of 'scratchpad show'.
1802  *
1803  */
1804 void cmd_scratchpad_show(I3_CMD) {
1805     DLOG("should show scratchpad window\n");
1806     owindow *current;
1807
1808     if (match_is_empty(current_match)) {
1809         scratchpad_show(NULL);
1810     } else {
1811         TAILQ_FOREACH(current, &owindows, owindows) {
1812             DLOG("matching: %p / %s\n", current->con, current->con->name);
1813             scratchpad_show(current->con);
1814         }
1815     }
1816
1817     cmd_output->needs_tree_render = true;
1818     // XXX: default reply for now, make this a better reply
1819     ysuccess(true);
1820 }
1821
1822 /*
1823  * Implementation of 'swap [container] [with] id|con_id|mark <arg>'.
1824  *
1825  */
1826 void cmd_swap(I3_CMD, const char *mode, const char *arg) {
1827     HANDLE_EMPTY_MATCH;
1828
1829     owindow *match = TAILQ_FIRST(&owindows);
1830     if (match == NULL) {
1831         DLOG("No match found for swapping.\n");
1832         return;
1833     }
1834
1835     Con *con;
1836     if (strcmp(mode, "id") == 0) {
1837         long target;
1838         if (!parse_long(arg, &target, 0)) {
1839             yerror("Failed to parse %s into a window id.\n", arg);
1840             return;
1841         }
1842
1843         con = con_by_window_id(target);
1844     } else if (strcmp(mode, "con_id") == 0) {
1845         long target;
1846         if (!parse_long(arg, &target, 0)) {
1847             yerror("Failed to parse %s into a container id.\n", arg);
1848             return;
1849         }
1850
1851         con = con_by_con_id(target);
1852     } else if (strcmp(mode, "mark") == 0) {
1853         con = con_by_mark(arg);
1854     } else {
1855         yerror("Unhandled swap mode \"%s\". This is a bug.\n", mode);
1856         return;
1857     }
1858
1859     if (con == NULL) {
1860         yerror("Could not find container for %s = %s\n", mode, arg);
1861         return;
1862     }
1863
1864     if (match != TAILQ_LAST(&owindows, owindows_head)) {
1865         DLOG("More than one container matched the swap command, only using the first one.");
1866     }
1867
1868     if (match->con == NULL) {
1869         DLOG("Match %p has no container.\n", match);
1870         ysuccess(false);
1871         return;
1872     }
1873
1874     DLOG("Swapping %p with %p.\n", match->con, con);
1875     bool result = con_swap(match->con, con);
1876
1877     cmd_output->needs_tree_render = true;
1878     ysuccess(result);
1879 }
1880
1881 /*
1882  * Implementation of 'title_format <format>'
1883  *
1884  */
1885 void cmd_title_format(I3_CMD, const char *format) {
1886     DLOG("setting title_format to \"%s\"\n", format);
1887     HANDLE_EMPTY_MATCH;
1888
1889     owindow *current;
1890     TAILQ_FOREACH(current, &owindows, owindows) {
1891         DLOG("setting title_format for %p / %s\n", current->con, current->con->name);
1892         FREE(current->con->title_format);
1893
1894         /* If we only display the title without anything else, we can skip the parsing step,
1895          * so we remove the title format altogether. */
1896         if (strcasecmp(format, "%title") != 0) {
1897             current->con->title_format = sstrdup(format);
1898
1899             if (current->con->window != NULL) {
1900                 i3String *formatted_title = con_parse_title_format(current->con);
1901                 ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
1902                 I3STRING_FREE(formatted_title);
1903             }
1904         } else {
1905             if (current->con->window != NULL) {
1906                 /* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
1907                 ewmh_update_visible_name(current->con->window->id, NULL);
1908             }
1909         }
1910
1911         if (current->con->window != NULL) {
1912             /* Make sure the window title is redrawn immediately. */
1913             current->con->window->name_x_changed = true;
1914         } else {
1915             /* For windowless containers we also need to force the redrawing. */
1916             FREE(current->con->deco_render_params);
1917         }
1918     }
1919
1920     cmd_output->needs_tree_render = true;
1921     ysuccess(true);
1922 }
1923
1924 /*
1925  * Implementation of 'rename workspace [<name>] to <name>'
1926  *
1927  */
1928 void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
1929     if (strncasecmp(new_name, "__", strlen("__")) == 0) {
1930         LOG("Cannot rename workspace to \"%s\": names starting with __ are i3-internal.\n", new_name);
1931         ysuccess(false);
1932         return;
1933     }
1934     if (old_name) {
1935         LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1936     } else {
1937         LOG("Renaming current workspace to \"%s\"\n", new_name);
1938     }
1939
1940     Con *output, *workspace = NULL;
1941     if (old_name) {
1942         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1943         GREP_FIRST(workspace, output_get_content(output),
1944                    !strcasecmp(child->name, old_name));
1945     } else {
1946         workspace = con_get_workspace(focused);
1947         old_name = workspace->name;
1948     }
1949
1950     if (!workspace) {
1951         yerror("Old workspace \"%s\" not found", old_name);
1952         return;
1953     }
1954
1955     Con *check_dest = NULL;
1956     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1957     GREP_FIRST(check_dest, output_get_content(output),
1958                !strcasecmp(child->name, new_name));
1959
1960     /* If check_dest == workspace, the user might be changing the case of the
1961      * workspace, or it might just be a no-op. */
1962     if (check_dest != NULL && check_dest != workspace) {
1963         yerror("New workspace \"%s\" already exists", new_name);
1964         return;
1965     }
1966
1967     /* Change the name and try to parse it as a number. */
1968     /* old_name might refer to workspace->name, so copy it before free()ing */
1969     char *old_name_copy = sstrdup(old_name);
1970     FREE(workspace->name);
1971     workspace->name = sstrdup(new_name);
1972
1973     workspace->num = ws_name_to_number(new_name);
1974     LOG("num = %d\n", workspace->num);
1975
1976     /* By re-attaching, the sort order will be correct afterwards. */
1977     Con *previously_focused = focused;
1978     Con *parent = workspace->parent;
1979     con_detach(workspace);
1980     con_attach(workspace, parent, false);
1981
1982     /* Move the workspace to the correct output if it has an assignment */
1983     struct Workspace_Assignment *assignment = NULL;
1984     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1985         if (assignment->output == NULL)
1986             continue;
1987         if (strcmp(assignment->name, workspace->name) != 0 && (!name_is_digits(assignment->name) || ws_name_to_number(assignment->name) != workspace->num)) {
1988             continue;
1989         }
1990
1991         workspace_move_to_output(workspace, assignment->output);
1992
1993         if (previously_focused)
1994             workspace_show(con_get_workspace(previously_focused));
1995
1996         break;
1997     }
1998
1999     /* Restore the previous focus since con_attach messes with the focus. */
2000     con_focus(previously_focused);
2001
2002     cmd_output->needs_tree_render = true;
2003     ysuccess(true);
2004
2005     ipc_send_workspace_event("rename", workspace, NULL);
2006     ewmh_update_desktop_names();
2007     ewmh_update_desktop_viewport();
2008     ewmh_update_current_desktop();
2009
2010     startup_sequence_rename_workspace(old_name_copy, new_name);
2011     free(old_name_copy);
2012 }
2013
2014 /*
2015  * Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'
2016  *
2017  */
2018 bool cmd_bar_mode(const char *bar_mode, const char *bar_id) {
2019     int mode = M_DOCK;
2020     bool toggle = false;
2021     if (strcmp(bar_mode, "dock") == 0)
2022         mode = M_DOCK;
2023     else if (strcmp(bar_mode, "hide") == 0)
2024         mode = M_HIDE;
2025     else if (strcmp(bar_mode, "invisible") == 0)
2026         mode = M_INVISIBLE;
2027     else if (strcmp(bar_mode, "toggle") == 0)
2028         toggle = true;
2029     else {
2030         ELOG("Unknown bar mode \"%s\", this is a mismatch between code and parser spec.\n", bar_mode);
2031         return false;
2032     }
2033
2034     bool changed_sth = false;
2035     Barconfig *current = NULL;
2036     TAILQ_FOREACH(current, &barconfigs, configs) {
2037         if (bar_id && strcmp(current->id, bar_id) != 0)
2038             continue;
2039
2040         if (toggle)
2041             mode = (current->mode + 1) % 2;
2042
2043         DLOG("Changing bar mode of bar_id '%s' to '%s (%d)'\n", current->id, bar_mode, mode);
2044         current->mode = mode;
2045         changed_sth = true;
2046
2047         if (bar_id)
2048             break;
2049     }
2050
2051     if (bar_id && !changed_sth) {
2052         DLOG("Changing bar mode of bar_id %s failed, bar_id not found.\n", bar_id);
2053         return false;
2054     }
2055
2056     return true;
2057 }
2058
2059 /*
2060  * Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'
2061  *
2062  */
2063 bool cmd_bar_hidden_state(const char *bar_hidden_state, const char *bar_id) {
2064     int hidden_state = S_SHOW;
2065     bool toggle = false;
2066     if (strcmp(bar_hidden_state, "hide") == 0)
2067         hidden_state = S_HIDE;
2068     else if (strcmp(bar_hidden_state, "show") == 0)
2069         hidden_state = S_SHOW;
2070     else if (strcmp(bar_hidden_state, "toggle") == 0)
2071         toggle = true;
2072     else {
2073         ELOG("Unknown bar state \"%s\", this is a mismatch between code and parser spec.\n", bar_hidden_state);
2074         return false;
2075     }
2076
2077     bool changed_sth = false;
2078     Barconfig *current = NULL;
2079     TAILQ_FOREACH(current, &barconfigs, configs) {
2080         if (bar_id && strcmp(current->id, bar_id) != 0)
2081             continue;
2082
2083         if (toggle)
2084             hidden_state = (current->hidden_state + 1) % 2;
2085
2086         DLOG("Changing bar hidden_state of bar_id '%s' to '%s (%d)'\n", current->id, bar_hidden_state, hidden_state);
2087         current->hidden_state = hidden_state;
2088         changed_sth = true;
2089
2090         if (bar_id)
2091             break;
2092     }
2093
2094     if (bar_id && !changed_sth) {
2095         DLOG("Changing bar hidden_state of bar_id %s failed, bar_id not found.\n", bar_id);
2096         return false;
2097     }
2098
2099     return true;
2100 }
2101
2102 /*
2103  * Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) [<bar_id>]'
2104  *
2105  */
2106 void cmd_bar(I3_CMD, const char *bar_type, const char *bar_value, const char *bar_id) {
2107     bool ret;
2108     if (strcmp(bar_type, "mode") == 0)
2109         ret = cmd_bar_mode(bar_value, bar_id);
2110     else if (strcmp(bar_type, "hidden_state") == 0)
2111         ret = cmd_bar_hidden_state(bar_value, bar_id);
2112     else {
2113         ELOG("Unknown bar option type \"%s\", this is a mismatch between code and parser spec.\n", bar_type);
2114         ret = false;
2115     }
2116
2117     ysuccess(ret);
2118     if (!ret)
2119         return;
2120
2121     update_barconfig();
2122 }
2123
2124 /*
2125  * Implementation of 'shmlog <size>|toggle|on|off'
2126  *
2127  */
2128 void cmd_shmlog(I3_CMD, const char *argument) {
2129     if (!strcmp(argument, "toggle"))
2130         /* Toggle shm log, if size is not 0. If it is 0, set it to default. */
2131         shmlog_size = shmlog_size ? -shmlog_size : default_shmlog_size;
2132     else if (!strcmp(argument, "on"))
2133         shmlog_size = default_shmlog_size;
2134     else if (!strcmp(argument, "off"))
2135         shmlog_size = 0;
2136     else {
2137         /* If shm logging now, restart logging with the new size. */
2138         if (shmlog_size > 0) {
2139             shmlog_size = 0;
2140             LOG("Restarting shm logging...\n");
2141             init_logging();
2142         }
2143         shmlog_size = atoi(argument);
2144         /* Make a weakly attempt at ensuring the argument is valid. */
2145         if (shmlog_size <= 0)
2146             shmlog_size = default_shmlog_size;
2147     }
2148     LOG("%s shm logging\n", shmlog_size > 0 ? "Enabling" : "Disabling");
2149     init_logging();
2150     update_shmlog_atom();
2151     // XXX: default reply for now, make this a better reply
2152     ysuccess(true);
2153 }
2154
2155 /*
2156  * Implementation of 'debuglog toggle|on|off'
2157  *
2158  */
2159 void cmd_debuglog(I3_CMD, const char *argument) {
2160     bool logging = get_debug_logging();
2161     if (!strcmp(argument, "toggle")) {
2162         LOG("%s debug logging\n", logging ? "Disabling" : "Enabling");
2163         set_debug_logging(!logging);
2164     } else if (!strcmp(argument, "on") && !logging) {
2165         LOG("Enabling debug logging\n");
2166         set_debug_logging(true);
2167     } else if (!strcmp(argument, "off") && logging) {
2168         LOG("Disabling debug logging\n");
2169         set_debug_logging(false);
2170     }
2171     // XXX: default reply for now, make this a better reply
2172     ysuccess(true);
2173 }