]> git.sur5r.net Git - i3/i3/blob - src/commands.c
Add support to resize floating container in percentage
[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         bool success = workspace_move_to_output(ws, name);
1125         if (!success) {
1126             ELOG("Failed to move workspace to output.\n");
1127             ysuccess(false);
1128             return;
1129         }
1130     }
1131
1132     cmd_output->needs_tree_render = true;
1133     // XXX: default reply for now, make this a better reply
1134     ysuccess(true);
1135 }
1136
1137 /*
1138  * Implementation of 'split v|h|t|vertical|horizontal|toggle'.
1139  *
1140  */
1141 void cmd_split(I3_CMD, const char *direction) {
1142     HANDLE_EMPTY_MATCH;
1143
1144     owindow *current;
1145     LOG("splitting in direction %c\n", direction[0]);
1146     TAILQ_FOREACH(current, &owindows, owindows) {
1147         if (con_is_docked(current->con)) {
1148             ELOG("Cannot split a docked container, skipping.\n");
1149             continue;
1150         }
1151
1152         DLOG("matching: %p / %s\n", current->con, current->con->name);
1153         if (direction[0] == 't') {
1154             layout_t current_layout;
1155             if (current->con->type == CT_WORKSPACE) {
1156                 current_layout = current->con->layout;
1157             } else {
1158                 current_layout = current->con->parent->layout;
1159             }
1160             /* toggling split orientation */
1161             if (current_layout == L_SPLITH) {
1162                 tree_split(current->con, VERT);
1163             } else {
1164                 tree_split(current->con, HORIZ);
1165             }
1166         } else {
1167             tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1168         }
1169     }
1170
1171     cmd_output->needs_tree_render = true;
1172     // XXX: default reply for now, make this a better reply
1173     ysuccess(true);
1174 }
1175
1176 /*
1177  * Implementation of 'kill [window|client]'.
1178  *
1179  */
1180 void cmd_kill(I3_CMD, const char *kill_mode_str) {
1181     if (kill_mode_str == NULL)
1182         kill_mode_str = "window";
1183
1184     DLOG("kill_mode=%s\n", kill_mode_str);
1185
1186     int kill_mode;
1187     if (strcmp(kill_mode_str, "window") == 0)
1188         kill_mode = KILL_WINDOW;
1189     else if (strcmp(kill_mode_str, "client") == 0)
1190         kill_mode = KILL_CLIENT;
1191     else {
1192         ELOG("BUG: called with kill_mode=%s\n", kill_mode_str);
1193         ysuccess(false);
1194         return;
1195     }
1196
1197     HANDLE_EMPTY_MATCH;
1198
1199     owindow *current;
1200     TAILQ_FOREACH(current, &owindows, owindows) {
1201         con_close(current->con, kill_mode);
1202     }
1203
1204     cmd_output->needs_tree_render = true;
1205     // XXX: default reply for now, make this a better reply
1206     ysuccess(true);
1207 }
1208
1209 /*
1210  * Implementation of 'exec [--no-startup-id] <command>'.
1211  *
1212  */
1213 void cmd_exec(I3_CMD, const char *nosn, const char *command) {
1214     bool no_startup_id = (nosn != NULL);
1215
1216     DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1217     start_application(command, no_startup_id);
1218
1219     // XXX: default reply for now, make this a better reply
1220     ysuccess(true);
1221 }
1222
1223 /*
1224  * Implementation of 'focus left|right|up|down'.
1225  *
1226  */
1227 void cmd_focus_direction(I3_CMD, const char *direction) {
1228     DLOG("direction = *%s*\n", direction);
1229
1230     if (strcmp(direction, "left") == 0)
1231         tree_next('p', HORIZ);
1232     else if (strcmp(direction, "right") == 0)
1233         tree_next('n', HORIZ);
1234     else if (strcmp(direction, "up") == 0)
1235         tree_next('p', VERT);
1236     else if (strcmp(direction, "down") == 0)
1237         tree_next('n', VERT);
1238     else {
1239         ELOG("Invalid focus direction (%s)\n", direction);
1240         ysuccess(false);
1241         return;
1242     }
1243
1244     cmd_output->needs_tree_render = true;
1245     // XXX: default reply for now, make this a better reply
1246     ysuccess(true);
1247 }
1248
1249 /*
1250  * Implementation of 'focus tiling|floating|mode_toggle'.
1251  *
1252  */
1253 void cmd_focus_window_mode(I3_CMD, const char *window_mode) {
1254     DLOG("window_mode = %s\n", window_mode);
1255
1256     Con *ws = con_get_workspace(focused);
1257     if (ws != NULL) {
1258         if (strcmp(window_mode, "mode_toggle") == 0) {
1259             if (con_inside_floating(focused))
1260                 window_mode = "tiling";
1261             else
1262                 window_mode = "floating";
1263         }
1264         Con *current;
1265         TAILQ_FOREACH(current, &(ws->focus_head), focused) {
1266             if ((strcmp(window_mode, "floating") == 0 && current->type != CT_FLOATING_CON) ||
1267                 (strcmp(window_mode, "tiling") == 0 && current->type == CT_FLOATING_CON))
1268                 continue;
1269
1270             con_focus(con_descend_focused(current));
1271             break;
1272         }
1273     }
1274
1275     cmd_output->needs_tree_render = true;
1276     // XXX: default reply for now, make this a better reply
1277     ysuccess(true);
1278 }
1279
1280 /*
1281  * Implementation of 'focus parent|child'.
1282  *
1283  */
1284 void cmd_focus_level(I3_CMD, const char *level) {
1285     DLOG("level = %s\n", level);
1286     bool success = false;
1287
1288     /* Focusing the parent can only be allowed if the newly
1289      * focused container won't escape the fullscreen container. */
1290     if (strcmp(level, "parent") == 0) {
1291         if (focused && focused->parent) {
1292             if (con_fullscreen_permits_focusing(focused->parent))
1293                 success = level_up();
1294             else
1295                 ELOG("'focus parent': Currently in fullscreen, not going up\n");
1296         }
1297     }
1298
1299     /* Focusing a child should always be allowed. */
1300     else
1301         success = level_down();
1302
1303     cmd_output->needs_tree_render = success;
1304     // XXX: default reply for now, make this a better reply
1305     ysuccess(success);
1306 }
1307
1308 /*
1309  * Implementation of 'focus'.
1310  *
1311  */
1312 void cmd_focus(I3_CMD) {
1313     DLOG("current_match = %p\n", current_match);
1314
1315     if (match_is_empty(current_match)) {
1316         ELOG("You have to specify which window/container should be focused.\n");
1317         ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1318
1319         yerror("You have to specify which window/container should be focused");
1320
1321         return;
1322     }
1323
1324     Con *__i3_scratch = workspace_get("__i3_scratch", NULL);
1325     int count = 0;
1326     owindow *current;
1327     TAILQ_FOREACH(current, &owindows, owindows) {
1328         Con *ws = con_get_workspace(current->con);
1329         /* If no workspace could be found, this was a dock window.
1330          * Just skip it, you cannot focus dock windows. */
1331         if (!ws)
1332             continue;
1333
1334         /* Check the fullscreen focus constraints. */
1335         if (!con_fullscreen_permits_focusing(current->con)) {
1336             LOG("Cannot change focus while in fullscreen mode (fullscreen rules).\n");
1337             ysuccess(false);
1338             return;
1339         }
1340
1341         /* In case this is a scratchpad window, call scratchpad_show(). */
1342         if (ws == __i3_scratch) {
1343             scratchpad_show(current->con);
1344             count++;
1345             /* While for the normal focus case we can change focus multiple
1346              * times and only a single window ends up focused, we could show
1347              * multiple scratchpad windows. So, rather break here. */
1348             break;
1349         }
1350
1351         /* If the container is not on the current workspace,
1352          * workspace_show() will switch to a different workspace and (if
1353          * enabled) trigger a mouse pointer warp to the currently focused
1354          * container (!) on the target workspace.
1355          *
1356          * Therefore, before calling workspace_show(), we make sure that
1357          * 'current' will be focused on the workspace. However, we cannot
1358          * just con_focus(current) because then the pointer will not be
1359          * warped at all (the code thinks we are already there).
1360          *
1361          * So we focus 'current' to make it the currently focused window of
1362          * the target workspace, then revert focus. */
1363         Con *currently_focused = focused;
1364         con_focus(current->con);
1365         con_focus(currently_focused);
1366
1367         /* Now switch to the workspace, then focus */
1368         workspace_show(ws);
1369         LOG("focusing %p / %s\n", current->con, current->con->name);
1370         con_focus(current->con);
1371         count++;
1372     }
1373
1374     if (count > 1)
1375         LOG("WARNING: Your criteria for the focus command matches %d containers, "
1376             "while only exactly one container can be focused at a time.\n",
1377             count);
1378
1379     cmd_output->needs_tree_render = true;
1380     ysuccess(count > 0);
1381 }
1382
1383 /*
1384  * Implementation of 'fullscreen enable|toggle [global]' and
1385  *                   'fullscreen disable'
1386  *
1387  */
1388 void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode) {
1389     fullscreen_mode_t mode = strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT;
1390     DLOG("%s fullscreen, mode = %s\n", action, fullscreen_mode);
1391     owindow *current;
1392
1393     HANDLE_EMPTY_MATCH;
1394
1395     TAILQ_FOREACH(current, &owindows, owindows) {
1396         DLOG("matching: %p / %s\n", current->con, current->con->name);
1397         if (strcmp(action, "toggle") == 0) {
1398             con_toggle_fullscreen(current->con, mode);
1399         } else if (strcmp(action, "enable") == 0) {
1400             con_enable_fullscreen(current->con, mode);
1401         } else if (strcmp(action, "disable") == 0) {
1402             con_disable_fullscreen(current->con);
1403         }
1404     }
1405
1406     cmd_output->needs_tree_render = true;
1407     // XXX: default reply for now, make this a better reply
1408     ysuccess(true);
1409 }
1410
1411 /*
1412  * Implementation of 'sticky enable|disable|toggle'.
1413  *
1414  */
1415 void cmd_sticky(I3_CMD, const char *action) {
1416     DLOG("%s sticky on window\n", action);
1417     HANDLE_EMPTY_MATCH;
1418
1419     owindow *current;
1420     TAILQ_FOREACH(current, &owindows, owindows) {
1421         if (current->con->window == NULL) {
1422             ELOG("only containers holding a window can be made sticky, skipping con = %p\n", current->con);
1423             continue;
1424         }
1425         DLOG("setting sticky for container = %p / %s\n", current->con, current->con->name);
1426
1427         bool sticky = false;
1428         if (strcmp(action, "enable") == 0)
1429             sticky = true;
1430         else if (strcmp(action, "disable") == 0)
1431             sticky = false;
1432         else if (strcmp(action, "toggle") == 0)
1433             sticky = !current->con->sticky;
1434
1435         current->con->sticky = sticky;
1436         ewmh_update_sticky(current->con->window->id, sticky);
1437     }
1438
1439     /* A window we made sticky might not be on a visible workspace right now, so we need to make
1440      * sure it gets pushed to the front now. */
1441     output_push_sticky_windows(focused);
1442
1443     ewmh_update_wm_desktop();
1444
1445     cmd_output->needs_tree_render = true;
1446     ysuccess(true);
1447 }
1448
1449 /*
1450  * Implementation of 'move <direction> [<pixels> [px]]'.
1451  *
1452  */
1453 void cmd_move_direction(I3_CMD, const char *direction, long move_px) {
1454     owindow *current;
1455     HANDLE_EMPTY_MATCH;
1456
1457     Con *initially_focused = focused;
1458
1459     TAILQ_FOREACH(current, &owindows, owindows) {
1460         DLOG("moving in direction %s, px %ld\n", direction, move_px);
1461         if (con_is_floating(current->con)) {
1462             DLOG("floating move with %ld pixels\n", move_px);
1463             Rect newrect = current->con->parent->rect;
1464             if (strcmp(direction, "left") == 0) {
1465                 newrect.x -= move_px;
1466             } else if (strcmp(direction, "right") == 0) {
1467                 newrect.x += move_px;
1468             } else if (strcmp(direction, "up") == 0) {
1469                 newrect.y -= move_px;
1470             } else if (strcmp(direction, "down") == 0) {
1471                 newrect.y += move_px;
1472             }
1473             floating_reposition(current->con->parent, newrect);
1474         } else {
1475             tree_move(current->con, (strcmp(direction, "right") == 0 ? D_RIGHT : (strcmp(direction, "left") == 0 ? D_LEFT : (strcmp(direction, "up") == 0 ? D_UP : D_DOWN))));
1476             cmd_output->needs_tree_render = true;
1477         }
1478     }
1479
1480     /* the move command should not disturb focus */
1481     if (focused != initially_focused)
1482         con_focus(initially_focused);
1483
1484     // XXX: default reply for now, make this a better reply
1485     ysuccess(true);
1486 }
1487
1488 /*
1489  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1490  *
1491  */
1492 void cmd_layout(I3_CMD, const char *layout_str) {
1493     HANDLE_EMPTY_MATCH;
1494
1495     layout_t layout;
1496     if (!layout_from_name(layout_str, &layout)) {
1497         ELOG("Unknown layout \"%s\", this is a mismatch between code and parser spec.\n", layout_str);
1498         return;
1499     }
1500
1501     DLOG("changing layout to %s (%d)\n", layout_str, layout);
1502
1503     owindow *current;
1504     TAILQ_FOREACH(current, &owindows, owindows) {
1505         if (con_is_docked(current->con)) {
1506             ELOG("cannot change layout of a docked container, skipping it.\n");
1507             continue;
1508         }
1509
1510         DLOG("matching: %p / %s\n", current->con, current->con->name);
1511         con_set_layout(current->con, layout);
1512     }
1513
1514     cmd_output->needs_tree_render = true;
1515     // XXX: default reply for now, make this a better reply
1516     ysuccess(true);
1517 }
1518
1519 /*
1520  * Implementation of 'layout toggle [all|split]'.
1521  *
1522  */
1523 void cmd_layout_toggle(I3_CMD, const char *toggle_mode) {
1524     owindow *current;
1525
1526     if (toggle_mode == NULL)
1527         toggle_mode = "default";
1528
1529     DLOG("toggling layout (mode = %s)\n", toggle_mode);
1530
1531     /* check if the match is empty, not if the result is empty */
1532     if (match_is_empty(current_match))
1533         con_toggle_layout(focused, toggle_mode);
1534     else {
1535         TAILQ_FOREACH(current, &owindows, owindows) {
1536             DLOG("matching: %p / %s\n", current->con, current->con->name);
1537             con_toggle_layout(current->con, toggle_mode);
1538         }
1539     }
1540
1541     cmd_output->needs_tree_render = true;
1542     // XXX: default reply for now, make this a better reply
1543     ysuccess(true);
1544 }
1545
1546 /*
1547  * Implementation of 'exit'.
1548  *
1549  */
1550 void cmd_exit(I3_CMD) {
1551     LOG("Exiting due to user command.\n");
1552 #ifdef I3_ASAN_ENABLED
1553     __lsan_do_leak_check();
1554 #endif
1555     ipc_shutdown(SHUTDOWN_REASON_EXIT);
1556     unlink(config.ipc_socket_path);
1557     xcb_disconnect(conn);
1558     exit(0);
1559
1560     /* unreached */
1561 }
1562
1563 /*
1564  * Implementation of 'reload'.
1565  *
1566  */
1567 void cmd_reload(I3_CMD) {
1568     LOG("reloading\n");
1569     kill_nagbar(&config_error_nagbar_pid, false);
1570     kill_nagbar(&command_error_nagbar_pid, false);
1571     load_configuration(conn, NULL, true);
1572     x_set_i3_atoms();
1573     /* Send an IPC event just in case the ws names have changed */
1574     ipc_send_workspace_event("reload", NULL, NULL);
1575     /* Send an update event for the barconfig just in case it has changed */
1576     update_barconfig();
1577
1578     // XXX: default reply for now, make this a better reply
1579     ysuccess(true);
1580 }
1581
1582 /*
1583  * Implementation of 'restart'.
1584  *
1585  */
1586 void cmd_restart(I3_CMD) {
1587     LOG("restarting i3\n");
1588     ipc_shutdown(SHUTDOWN_REASON_RESTART);
1589     unlink(config.ipc_socket_path);
1590     /* We need to call this manually since atexit handlers don’t get called
1591      * when exec()ing */
1592     purge_zerobyte_logfile();
1593     i3_restart(false);
1594
1595     // XXX: default reply for now, make this a better reply
1596     ysuccess(true);
1597 }
1598
1599 /*
1600  * Implementation of 'open'.
1601  *
1602  */
1603 void cmd_open(I3_CMD) {
1604     LOG("opening new container\n");
1605     Con *con = tree_open_con(NULL, NULL);
1606     con->layout = L_SPLITH;
1607     con_focus(con);
1608
1609     y(map_open);
1610     ystr("success");
1611     y(bool, true);
1612     ystr("id");
1613     y(integer, (uintptr_t)con);
1614     y(map_close);
1615
1616     cmd_output->needs_tree_render = true;
1617 }
1618
1619 /*
1620  * Implementation of 'focus output <output>'.
1621  *
1622  */
1623 void cmd_focus_output(I3_CMD, const char *name) {
1624     owindow *current;
1625
1626     DLOG("name = %s\n", name);
1627
1628     HANDLE_EMPTY_MATCH;
1629
1630     /* get the output */
1631     Output *current_output = NULL;
1632     Output *output;
1633
1634     TAILQ_FOREACH(current, &owindows, owindows)
1635     current_output = get_output_for_con(current->con);
1636     assert(current_output != NULL);
1637
1638     output = get_output_from_string(current_output, name);
1639
1640     if (!output) {
1641         LOG("No such output found.\n");
1642         ysuccess(false);
1643         return;
1644     }
1645
1646     /* get visible workspace on output */
1647     Con *ws = NULL;
1648     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1649     if (!ws) {
1650         ysuccess(false);
1651         return;
1652     }
1653
1654     workspace_show(ws);
1655
1656     cmd_output->needs_tree_render = true;
1657     // XXX: default reply for now, make this a better reply
1658     ysuccess(true);
1659 }
1660
1661 /*
1662  * Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
1663  *
1664  */
1665 void cmd_move_window_to_position(I3_CMD, const char *method, long x, long y) {
1666     bool has_error = false;
1667
1668     owindow *current;
1669     HANDLE_EMPTY_MATCH;
1670
1671     TAILQ_FOREACH(current, &owindows, owindows) {
1672         if (!con_is_floating(current->con)) {
1673             ELOG("Cannot change position. The window/container is not floating\n");
1674
1675             if (!has_error) {
1676                 yerror("Cannot change position of a window/container because it is not floating.");
1677                 has_error = true;
1678             }
1679
1680             continue;
1681         }
1682
1683         if (strcmp(method, "absolute") == 0) {
1684             current->con->parent->rect.x = x;
1685             current->con->parent->rect.y = y;
1686
1687             DLOG("moving to absolute position %ld %ld\n", x, y);
1688             floating_maybe_reassign_ws(current->con->parent);
1689             cmd_output->needs_tree_render = true;
1690         }
1691
1692         if (strcmp(method, "position") == 0) {
1693             Rect newrect = current->con->parent->rect;
1694
1695             DLOG("moving to position %ld %ld\n", x, y);
1696             newrect.x = x;
1697             newrect.y = y;
1698
1699             floating_reposition(current->con->parent, newrect);
1700         }
1701     }
1702
1703     // XXX: default reply for now, make this a better reply
1704     if (!has_error)
1705         ysuccess(true);
1706 }
1707
1708 /*
1709  * Implementation of 'move [window|container] [to] [absolute] position center
1710  *
1711  */
1712 void cmd_move_window_to_center(I3_CMD, const char *method) {
1713     bool has_error = false;
1714     HANDLE_EMPTY_MATCH;
1715
1716     owindow *current;
1717     TAILQ_FOREACH(current, &owindows, owindows) {
1718         Con *floating_con = con_inside_floating(current->con);
1719         if (floating_con == NULL) {
1720             ELOG("con %p / %s is not floating, cannot move it to the center.\n",
1721                  current->con, current->con->name);
1722
1723             if (!has_error) {
1724                 yerror("Cannot change position of a window/container because it is not floating.");
1725                 has_error = true;
1726             }
1727
1728             continue;
1729         }
1730
1731         if (strcmp(method, "absolute") == 0) {
1732             DLOG("moving to absolute center\n");
1733             floating_center(floating_con, croot->rect);
1734
1735             floating_maybe_reassign_ws(floating_con);
1736             cmd_output->needs_tree_render = true;
1737         }
1738
1739         if (strcmp(method, "position") == 0) {
1740             DLOG("moving to center\n");
1741             floating_center(floating_con, con_get_workspace(floating_con)->rect);
1742
1743             cmd_output->needs_tree_render = true;
1744         }
1745     }
1746
1747     // XXX: default reply for now, make this a better reply
1748     if (!has_error)
1749         ysuccess(true);
1750 }
1751
1752 /*
1753  * Implementation of 'move [window|container] [to] position mouse'
1754  *
1755  */
1756 void cmd_move_window_to_mouse(I3_CMD) {
1757     HANDLE_EMPTY_MATCH;
1758
1759     owindow *current;
1760     TAILQ_FOREACH(current, &owindows, owindows) {
1761         Con *floating_con = con_inside_floating(current->con);
1762         if (floating_con == NULL) {
1763             DLOG("con %p / %s is not floating, cannot move it to the mouse position.\n",
1764                  current->con, current->con->name);
1765             continue;
1766         }
1767
1768         DLOG("moving floating container %p / %s to cursor position\n", floating_con, floating_con->name);
1769         floating_move_to_pointer(floating_con);
1770     }
1771
1772     cmd_output->needs_tree_render = true;
1773     ysuccess(true);
1774 }
1775
1776 /*
1777  * Implementation of 'move scratchpad'.
1778  *
1779  */
1780 void cmd_move_scratchpad(I3_CMD) {
1781     DLOG("should move window to scratchpad\n");
1782     owindow *current;
1783
1784     HANDLE_EMPTY_MATCH;
1785
1786     TAILQ_FOREACH(current, &owindows, owindows) {
1787         DLOG("matching: %p / %s\n", current->con, current->con->name);
1788         scratchpad_move(current->con);
1789     }
1790
1791     cmd_output->needs_tree_render = true;
1792     // XXX: default reply for now, make this a better reply
1793     ysuccess(true);
1794 }
1795
1796 /*
1797  * Implementation of 'scratchpad show'.
1798  *
1799  */
1800 void cmd_scratchpad_show(I3_CMD) {
1801     DLOG("should show scratchpad window\n");
1802     owindow *current;
1803
1804     if (match_is_empty(current_match)) {
1805         scratchpad_show(NULL);
1806     } else {
1807         TAILQ_FOREACH(current, &owindows, owindows) {
1808             DLOG("matching: %p / %s\n", current->con, current->con->name);
1809             scratchpad_show(current->con);
1810         }
1811     }
1812
1813     cmd_output->needs_tree_render = true;
1814     // XXX: default reply for now, make this a better reply
1815     ysuccess(true);
1816 }
1817
1818 /*
1819  * Implementation of 'swap [container] [with] id|con_id|mark <arg>'.
1820  *
1821  */
1822 void cmd_swap(I3_CMD, const char *mode, const char *arg) {
1823     HANDLE_EMPTY_MATCH;
1824
1825     owindow *match = TAILQ_FIRST(&owindows);
1826     if (match == NULL) {
1827         DLOG("No match found for swapping.\n");
1828         return;
1829     }
1830
1831     Con *con;
1832     if (strcmp(mode, "id") == 0) {
1833         long target;
1834         if (!parse_long(arg, &target, 0)) {
1835             yerror("Failed to parse %s into a window id.\n", arg);
1836             return;
1837         }
1838
1839         con = con_by_window_id(target);
1840     } else if (strcmp(mode, "con_id") == 0) {
1841         long target;
1842         if (!parse_long(arg, &target, 0)) {
1843             yerror("Failed to parse %s into a container id.\n", arg);
1844             return;
1845         }
1846
1847         con = con_by_con_id(target);
1848     } else if (strcmp(mode, "mark") == 0) {
1849         con = con_by_mark(arg);
1850     } else {
1851         yerror("Unhandled swap mode \"%s\". This is a bug.\n", mode);
1852         return;
1853     }
1854
1855     if (con == NULL) {
1856         yerror("Could not find container for %s = %s\n", mode, arg);
1857         return;
1858     }
1859
1860     if (match != TAILQ_LAST(&owindows, owindows_head)) {
1861         DLOG("More than one container matched the swap command, only using the first one.");
1862     }
1863
1864     if (match->con == NULL) {
1865         DLOG("Match %p has no container.\n", match);
1866         ysuccess(false);
1867         return;
1868     }
1869
1870     DLOG("Swapping %p with %p.\n", match->con, con);
1871     bool result = con_swap(match->con, con);
1872
1873     cmd_output->needs_tree_render = true;
1874     ysuccess(result);
1875 }
1876
1877 /*
1878  * Implementation of 'title_format <format>'
1879  *
1880  */
1881 void cmd_title_format(I3_CMD, const char *format) {
1882     DLOG("setting title_format to \"%s\"\n", format);
1883     HANDLE_EMPTY_MATCH;
1884
1885     owindow *current;
1886     TAILQ_FOREACH(current, &owindows, owindows) {
1887         DLOG("setting title_format for %p / %s\n", current->con, current->con->name);
1888         FREE(current->con->title_format);
1889
1890         /* If we only display the title without anything else, we can skip the parsing step,
1891          * so we remove the title format altogether. */
1892         if (strcasecmp(format, "%title") != 0) {
1893             current->con->title_format = sstrdup(format);
1894
1895             if (current->con->window != NULL) {
1896                 i3String *formatted_title = con_parse_title_format(current->con);
1897                 ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
1898                 I3STRING_FREE(formatted_title);
1899             }
1900         } else {
1901             if (current->con->window != NULL) {
1902                 /* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
1903                 ewmh_update_visible_name(current->con->window->id, NULL);
1904             }
1905         }
1906
1907         if (current->con->window != NULL) {
1908             /* Make sure the window title is redrawn immediately. */
1909             current->con->window->name_x_changed = true;
1910         } else {
1911             /* For windowless containers we also need to force the redrawing. */
1912             FREE(current->con->deco_render_params);
1913         }
1914     }
1915
1916     cmd_output->needs_tree_render = true;
1917     ysuccess(true);
1918 }
1919
1920 /*
1921  * Implementation of 'rename workspace [<name>] to <name>'
1922  *
1923  */
1924 void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
1925     if (strncasecmp(new_name, "__", strlen("__")) == 0) {
1926         LOG("Cannot rename workspace to \"%s\": names starting with __ are i3-internal.\n", new_name);
1927         ysuccess(false);
1928         return;
1929     }
1930     if (old_name) {
1931         LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1932     } else {
1933         LOG("Renaming current workspace to \"%s\"\n", new_name);
1934     }
1935
1936     Con *output, *workspace = NULL;
1937     if (old_name) {
1938         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1939         GREP_FIRST(workspace, output_get_content(output),
1940                    !strcasecmp(child->name, old_name));
1941     } else {
1942         workspace = con_get_workspace(focused);
1943         old_name = workspace->name;
1944     }
1945
1946     if (!workspace) {
1947         yerror("Old workspace \"%s\" not found", old_name);
1948         return;
1949     }
1950
1951     Con *check_dest = NULL;
1952     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1953     GREP_FIRST(check_dest, output_get_content(output),
1954                !strcasecmp(child->name, new_name));
1955
1956     /* If check_dest == workspace, the user might be changing the case of the
1957      * workspace, or it might just be a no-op. */
1958     if (check_dest != NULL && check_dest != workspace) {
1959         yerror("New workspace \"%s\" already exists", new_name);
1960         return;
1961     }
1962
1963     /* Change the name and try to parse it as a number. */
1964     /* old_name might refer to workspace->name, so copy it before free()ing */
1965     char *old_name_copy = sstrdup(old_name);
1966     FREE(workspace->name);
1967     workspace->name = sstrdup(new_name);
1968
1969     workspace->num = ws_name_to_number(new_name);
1970     LOG("num = %d\n", workspace->num);
1971
1972     /* By re-attaching, the sort order will be correct afterwards. */
1973     Con *previously_focused = focused;
1974     Con *parent = workspace->parent;
1975     con_detach(workspace);
1976     con_attach(workspace, parent, false);
1977
1978     /* Move the workspace to the correct output if it has an assignment */
1979     struct Workspace_Assignment *assignment = NULL;
1980     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1981         if (assignment->output == NULL)
1982             continue;
1983         if (strcmp(assignment->name, workspace->name) != 0 && (!name_is_digits(assignment->name) || ws_name_to_number(assignment->name) != workspace->num)) {
1984             continue;
1985         }
1986
1987         workspace_move_to_output(workspace, assignment->output);
1988
1989         if (previously_focused)
1990             workspace_show(con_get_workspace(previously_focused));
1991
1992         break;
1993     }
1994
1995     /* Restore the previous focus since con_attach messes with the focus. */
1996     con_focus(previously_focused);
1997
1998     cmd_output->needs_tree_render = true;
1999     ysuccess(true);
2000
2001     ipc_send_workspace_event("rename", workspace, NULL);
2002     ewmh_update_desktop_names();
2003     ewmh_update_desktop_viewport();
2004     ewmh_update_current_desktop();
2005
2006     startup_sequence_rename_workspace(old_name_copy, new_name);
2007     free(old_name_copy);
2008 }
2009
2010 /*
2011  * Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'
2012  *
2013  */
2014 bool cmd_bar_mode(const char *bar_mode, const char *bar_id) {
2015     int mode = M_DOCK;
2016     bool toggle = false;
2017     if (strcmp(bar_mode, "dock") == 0)
2018         mode = M_DOCK;
2019     else if (strcmp(bar_mode, "hide") == 0)
2020         mode = M_HIDE;
2021     else if (strcmp(bar_mode, "invisible") == 0)
2022         mode = M_INVISIBLE;
2023     else if (strcmp(bar_mode, "toggle") == 0)
2024         toggle = true;
2025     else {
2026         ELOG("Unknown bar mode \"%s\", this is a mismatch between code and parser spec.\n", bar_mode);
2027         return false;
2028     }
2029
2030     bool changed_sth = false;
2031     Barconfig *current = NULL;
2032     TAILQ_FOREACH(current, &barconfigs, configs) {
2033         if (bar_id && strcmp(current->id, bar_id) != 0)
2034             continue;
2035
2036         if (toggle)
2037             mode = (current->mode + 1) % 2;
2038
2039         DLOG("Changing bar mode of bar_id '%s' to '%s (%d)'\n", current->id, bar_mode, mode);
2040         current->mode = mode;
2041         changed_sth = true;
2042
2043         if (bar_id)
2044             break;
2045     }
2046
2047     if (bar_id && !changed_sth) {
2048         DLOG("Changing bar mode of bar_id %s failed, bar_id not found.\n", bar_id);
2049         return false;
2050     }
2051
2052     return true;
2053 }
2054
2055 /*
2056  * Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'
2057  *
2058  */
2059 bool cmd_bar_hidden_state(const char *bar_hidden_state, const char *bar_id) {
2060     int hidden_state = S_SHOW;
2061     bool toggle = false;
2062     if (strcmp(bar_hidden_state, "hide") == 0)
2063         hidden_state = S_HIDE;
2064     else if (strcmp(bar_hidden_state, "show") == 0)
2065         hidden_state = S_SHOW;
2066     else if (strcmp(bar_hidden_state, "toggle") == 0)
2067         toggle = true;
2068     else {
2069         ELOG("Unknown bar state \"%s\", this is a mismatch between code and parser spec.\n", bar_hidden_state);
2070         return false;
2071     }
2072
2073     bool changed_sth = false;
2074     Barconfig *current = NULL;
2075     TAILQ_FOREACH(current, &barconfigs, configs) {
2076         if (bar_id && strcmp(current->id, bar_id) != 0)
2077             continue;
2078
2079         if (toggle)
2080             hidden_state = (current->hidden_state + 1) % 2;
2081
2082         DLOG("Changing bar hidden_state of bar_id '%s' to '%s (%d)'\n", current->id, bar_hidden_state, hidden_state);
2083         current->hidden_state = hidden_state;
2084         changed_sth = true;
2085
2086         if (bar_id)
2087             break;
2088     }
2089
2090     if (bar_id && !changed_sth) {
2091         DLOG("Changing bar hidden_state of bar_id %s failed, bar_id not found.\n", bar_id);
2092         return false;
2093     }
2094
2095     return true;
2096 }
2097
2098 /*
2099  * Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) [<bar_id>]'
2100  *
2101  */
2102 void cmd_bar(I3_CMD, const char *bar_type, const char *bar_value, const char *bar_id) {
2103     bool ret;
2104     if (strcmp(bar_type, "mode") == 0)
2105         ret = cmd_bar_mode(bar_value, bar_id);
2106     else if (strcmp(bar_type, "hidden_state") == 0)
2107         ret = cmd_bar_hidden_state(bar_value, bar_id);
2108     else {
2109         ELOG("Unknown bar option type \"%s\", this is a mismatch between code and parser spec.\n", bar_type);
2110         ret = false;
2111     }
2112
2113     ysuccess(ret);
2114     if (!ret)
2115         return;
2116
2117     update_barconfig();
2118 }
2119
2120 /*
2121  * Implementation of 'shmlog <size>|toggle|on|off'
2122  *
2123  */
2124 void cmd_shmlog(I3_CMD, const char *argument) {
2125     if (!strcmp(argument, "toggle"))
2126         /* Toggle shm log, if size is not 0. If it is 0, set it to default. */
2127         shmlog_size = shmlog_size ? -shmlog_size : default_shmlog_size;
2128     else if (!strcmp(argument, "on"))
2129         shmlog_size = default_shmlog_size;
2130     else if (!strcmp(argument, "off"))
2131         shmlog_size = 0;
2132     else {
2133         /* If shm logging now, restart logging with the new size. */
2134         if (shmlog_size > 0) {
2135             shmlog_size = 0;
2136             LOG("Restarting shm logging...\n");
2137             init_logging();
2138         }
2139         shmlog_size = atoi(argument);
2140         /* Make a weakly attempt at ensuring the argument is valid. */
2141         if (shmlog_size <= 0)
2142             shmlog_size = default_shmlog_size;
2143     }
2144     LOG("%s shm logging\n", shmlog_size > 0 ? "Enabling" : "Disabling");
2145     init_logging();
2146     update_shmlog_atom();
2147     // XXX: default reply for now, make this a better reply
2148     ysuccess(true);
2149 }
2150
2151 /*
2152  * Implementation of 'debuglog toggle|on|off'
2153  *
2154  */
2155 void cmd_debuglog(I3_CMD, const char *argument) {
2156     bool logging = get_debug_logging();
2157     if (!strcmp(argument, "toggle")) {
2158         LOG("%s debug logging\n", logging ? "Disabling" : "Enabling");
2159         set_debug_logging(!logging);
2160     } else if (!strcmp(argument, "on") && !logging) {
2161         LOG("Enabling debug logging\n");
2162         set_debug_logging(true);
2163     } else if (!strcmp(argument, "off") && logging) {
2164         LOG("Disabling debug logging\n");
2165         set_debug_logging(false);
2166     }
2167     // XXX: default reply for now, make this a better reply
2168     ysuccess(true);
2169 }