]> git.sur5r.net Git - i3/i3/blob - src/commands.c
Improve resize_find_tiling_participants() and simplify cmd_resize_tiling_width_height...
[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, false);
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
556     /* get the appropriate current container (skip stacked/tabbed cons) */
557     Con *dummy = NULL;
558     direction_t search_direction = (strcmp(direction, "width") == 0 ? D_LEFT : D_DOWN);
559     bool search_result = resize_find_tiling_participants(&current, &dummy, search_direction, true);
560     if (search_result == false) {
561         ysuccess(false);
562         return false;
563     }
564
565     /* get the default percentage */
566     int children = con_num_children(current->parent);
567     LOG("ins. %d children\n", children);
568     double percentage = 1.0 / children;
569     LOG("default percentage = %f\n", percentage);
570
571     /* Ensure all the other children have a percentage set. */
572     Con *child;
573     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
574         LOG("child->percent = %f (child %p)\n", child->percent, child);
575         if (child->percent == 0.0)
576             child->percent = percentage;
577     }
578
579     double new_current_percent = current->percent + ((double)ppt / 100.0);
580     double subtract_percent = ((double)ppt / 100.0) / (children - 1);
581     LOG("new_current_percent = %f\n", new_current_percent);
582     LOG("subtract_percent = %f\n", subtract_percent);
583     /* Ensure that the new percentages are positive and greater than
584      * 0.05 to have a reasonable minimum size. */
585     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
586         if (child == current)
587             continue;
588         if (!definitelyGreaterThan(child->percent - subtract_percent, 0.05, DBL_EPSILON)) {
589             LOG("Not resizing, already at minimum size (child %p would end up with a size of %.f\n", child, child->percent - subtract_percent);
590             ysuccess(false);
591             return false;
592         }
593     }
594     if (!definitelyGreaterThan(new_current_percent, 0.05, DBL_EPSILON)) {
595         LOG("Not resizing, already at minimum size\n");
596         ysuccess(false);
597         return false;
598     }
599
600     current->percent += ((double)ppt / 100.0);
601     LOG("current->percent after = %f\n", current->percent);
602
603     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
604         if (child == current)
605             continue;
606         child->percent -= subtract_percent;
607         LOG("child->percent after (%p) = %f\n", child, child->percent);
608     }
609
610     return true;
611 }
612
613 /*
614  * Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
615  *
616  */
617 void cmd_resize(I3_CMD, const char *way, const char *direction, long resize_px, long resize_ppt) {
618     DLOG("resizing in way %s, direction %s, px %ld or ppt %ld\n", way, direction, resize_px, resize_ppt);
619     if (strcmp(way, "shrink") == 0) {
620         resize_px *= -1;
621         resize_ppt *= -1;
622     }
623
624     HANDLE_EMPTY_MATCH;
625
626     owindow *current;
627     TAILQ_FOREACH(current, &owindows, owindows) {
628         /* Don't handle dock windows (issue #1201) */
629         if (current->con->window && current->con->window->dock) {
630             DLOG("This is a dock window. Not resizing (con = %p)\n)", current->con);
631             continue;
632         }
633
634         Con *floating_con;
635         if ((floating_con = con_inside_floating(current->con))) {
636             cmd_resize_floating(current_match, cmd_output, way, direction, floating_con, resize_px);
637         } else {
638             if (strcmp(direction, "width") == 0 ||
639                 strcmp(direction, "height") == 0) {
640                 if (!cmd_resize_tiling_width_height(current_match, cmd_output,
641                                                     current->con, way, direction, resize_ppt))
642                     return;
643             } else {
644                 if (!cmd_resize_tiling_direction(current_match, cmd_output,
645                                                  current->con, way, direction, resize_ppt))
646                     return;
647             }
648         }
649     }
650
651     cmd_output->needs_tree_render = true;
652     // XXX: default reply for now, make this a better reply
653     ysuccess(true);
654 }
655
656 /*
657  * Implementation of 'resize set <width> [px | ppt] <height> [px | ppt]'.
658  *
659  */
660 void cmd_resize_set(I3_CMD, long cwidth, const char *mode_width, long cheight, const char *mode_height) {
661     DLOG("resizing to %ld %s x %ld %s\n", cwidth, mode_width, cheight, mode_height);
662     if (cwidth <= 0 || cheight <= 0) {
663         ELOG("Resize failed: dimensions cannot be negative (was %ld %s x %ld %s)\n", cwidth, mode_width, cheight, mode_height);
664         return;
665     }
666
667     HANDLE_EMPTY_MATCH;
668
669     owindow *current;
670     TAILQ_FOREACH(current, &owindows, owindows) {
671         Con *floating_con;
672         if ((floating_con = con_inside_floating(current->con))) {
673             Con *output = con_get_output(floating_con);
674             if (mode_width && strcmp(mode_width, "ppt") == 0) {
675                 cwidth = output->rect.width * ((double)cwidth / 100.0);
676             }
677             if (mode_height && strcmp(mode_height, "ppt") == 0) {
678                 cheight = output->rect.height * ((double)cheight / 100.0);
679             }
680             floating_resize(floating_con, cwidth, cheight);
681         } else {
682             ELOG("Resize failed: %p not a floating container\n", current->con);
683         }
684     }
685
686     cmd_output->needs_tree_render = true;
687     // XXX: default reply for now, make this a better reply
688     ysuccess(true);
689 }
690
691 /*
692  * Implementation of 'border normal|pixel [<n>]', 'border none|1pixel|toggle'.
693  *
694  */
695 void cmd_border(I3_CMD, const char *border_style_str, long border_width) {
696     DLOG("border style should be changed to %s with border width %ld\n", border_style_str, border_width);
697     owindow *current;
698
699     HANDLE_EMPTY_MATCH;
700
701     TAILQ_FOREACH(current, &owindows, owindows) {
702         DLOG("matching: %p / %s\n", current->con, current->con->name);
703         int border_style = current->con->border_style;
704         int con_border_width = border_width;
705
706         if (strcmp(border_style_str, "toggle") == 0) {
707             border_style++;
708             border_style %= 3;
709             if (border_style == BS_NORMAL)
710                 con_border_width = 2;
711             else if (border_style == BS_NONE)
712                 con_border_width = 0;
713             else if (border_style == BS_PIXEL)
714                 con_border_width = 1;
715         } else {
716             if (strcmp(border_style_str, "normal") == 0) {
717                 border_style = BS_NORMAL;
718             } else if (strcmp(border_style_str, "pixel") == 0) {
719                 border_style = BS_PIXEL;
720             } else if (strcmp(border_style_str, "1pixel") == 0) {
721                 border_style = BS_PIXEL;
722                 con_border_width = 1;
723             } else if (strcmp(border_style_str, "none") == 0) {
724                 border_style = BS_NONE;
725             } else {
726                 ELOG("BUG: called with border_style=%s\n", border_style_str);
727                 ysuccess(false);
728                 return;
729             }
730         }
731
732         con_set_border_style(current->con, border_style, logical_px(con_border_width));
733     }
734
735     cmd_output->needs_tree_render = true;
736     // XXX: default reply for now, make this a better reply
737     ysuccess(true);
738 }
739
740 /*
741  * Implementation of 'nop <comment>'.
742  *
743  */
744 void cmd_nop(I3_CMD, const char *comment) {
745     LOG("-------------------------------------------------\n");
746     LOG("  NOP: %s\n", comment);
747     LOG("-------------------------------------------------\n");
748 }
749
750 /*
751  * Implementation of 'append_layout <path>'.
752  *
753  */
754 void cmd_append_layout(I3_CMD, const char *cpath) {
755     char *path = sstrdup(cpath);
756     LOG("Appending layout \"%s\"\n", path);
757
758     /* Make sure we allow paths like '~/.i3/layout.json' */
759     path = resolve_tilde(path);
760
761     char *buf = NULL;
762     ssize_t len;
763     if ((len = slurp(path, &buf)) < 0) {
764         /* slurp already logged an error. */
765         goto out;
766     }
767
768     if (!json_validate(buf, len)) {
769         ELOG("Could not parse \"%s\" as JSON, not loading.\n", path);
770         yerror("Could not parse \"%s\" as JSON.", path);
771         goto out;
772     }
773
774     json_content_t content = json_determine_content(buf, len);
775     LOG("JSON content = %d\n", content);
776     if (content == JSON_CONTENT_UNKNOWN) {
777         ELOG("Could not determine the contents of \"%s\", not loading.\n", path);
778         yerror("Could not determine the contents of \"%s\".", path);
779         goto out;
780     }
781
782     Con *parent = focused;
783     if (content == JSON_CONTENT_WORKSPACE) {
784         parent = output_get_content(con_get_output(parent));
785     } else {
786         /* We need to append the layout to a split container, since a leaf
787          * container must not have any children (by definition).
788          * Note that we explicitly check for workspaces, since they are okay for
789          * this purpose, but con_accepts_window() returns false for workspaces. */
790         while (parent->type != CT_WORKSPACE && !con_accepts_window(parent))
791             parent = parent->parent;
792     }
793     DLOG("Appending to parent=%p instead of focused=%p\n", parent, focused);
794     char *errormsg = NULL;
795     tree_append_json(parent, buf, len, &errormsg);
796     if (errormsg != NULL) {
797         yerror(errormsg);
798         free(errormsg);
799         /* Note that we continue executing since tree_append_json() has
800          * side-effects — user-provided layouts can be partly valid, partly
801          * invalid, leading to half of the placeholder containers being
802          * created. */
803     } else {
804         ysuccess(true);
805     }
806
807     // XXX: This is a bit of a kludge. Theoretically, render_con(parent,
808     // false); should be enough, but when sending 'workspace 4; append_layout
809     // /tmp/foo.json', the needs_tree_render == true of the workspace command
810     // is not executed yet and will be batched with append_layout’s
811     // needs_tree_render after the parser finished. We should check if that is
812     // necessary at all.
813     render_con(croot, false);
814
815     restore_open_placeholder_windows(parent);
816
817     if (content == JSON_CONTENT_WORKSPACE)
818         ipc_send_workspace_event("restored", parent, NULL);
819
820     cmd_output->needs_tree_render = true;
821 out:
822     free(path);
823     free(buf);
824 }
825
826 /*
827  * Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
828  *
829  */
830 void cmd_workspace(I3_CMD, const char *which) {
831     Con *ws;
832
833     DLOG("which=%s\n", which);
834
835     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
836         LOG("Cannot switch workspace while in global fullscreen\n");
837         ysuccess(false);
838         return;
839     }
840
841     if (strcmp(which, "next") == 0)
842         ws = workspace_next();
843     else if (strcmp(which, "prev") == 0)
844         ws = workspace_prev();
845     else if (strcmp(which, "next_on_output") == 0)
846         ws = workspace_next_on_output();
847     else if (strcmp(which, "prev_on_output") == 0)
848         ws = workspace_prev_on_output();
849     else {
850         ELOG("BUG: called with which=%s\n", which);
851         ysuccess(false);
852         return;
853     }
854
855     workspace_show(ws);
856
857     cmd_output->needs_tree_render = true;
858     // XXX: default reply for now, make this a better reply
859     ysuccess(true);
860 }
861
862 /*
863  * Implementation of 'workspace [--no-auto-back-and-forth] number <name>'
864  *
865  */
866 void cmd_workspace_number(I3_CMD, const char *which, const char *_no_auto_back_and_forth) {
867     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
868     Con *output, *workspace = NULL;
869
870     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
871         LOG("Cannot switch workspace while in global fullscreen\n");
872         ysuccess(false);
873         return;
874     }
875
876     long parsed_num = ws_name_to_number(which);
877
878     if (parsed_num == -1) {
879         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
880         yerror("Could not parse number \"%s\"", which);
881         return;
882     }
883
884     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
885     GREP_FIRST(workspace, output_get_content(output),
886                child->num == parsed_num);
887
888     if (!workspace) {
889         LOG("There is no workspace with number %ld, creating a new one.\n", parsed_num);
890         ysuccess(true);
891         workspace_show_by_name(which);
892         cmd_output->needs_tree_render = true;
893         return;
894     }
895     if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, workspace->name)) {
896         ysuccess(true);
897         return;
898     }
899     workspace_show(workspace);
900
901     cmd_output->needs_tree_render = true;
902     // XXX: default reply for now, make this a better reply
903     ysuccess(true);
904 }
905
906 /*
907  * Implementation of 'workspace back_and_forth'.
908  *
909  */
910 void cmd_workspace_back_and_forth(I3_CMD) {
911     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
912         LOG("Cannot switch workspace while in global fullscreen\n");
913         ysuccess(false);
914         return;
915     }
916
917     workspace_back_and_forth();
918
919     cmd_output->needs_tree_render = true;
920     // XXX: default reply for now, make this a better reply
921     ysuccess(true);
922 }
923
924 /*
925  * Implementation of 'workspace [--no-auto-back-and-forth] <name>'
926  *
927  */
928 void cmd_workspace_name(I3_CMD, const char *name, const char *_no_auto_back_and_forth) {
929     const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
930
931     if (strncasecmp(name, "__", strlen("__")) == 0) {
932         LOG("You cannot switch to the i3-internal workspaces (\"%s\").\n", name);
933         ysuccess(false);
934         return;
935     }
936
937     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
938         LOG("Cannot switch workspace while in global fullscreen\n");
939         ysuccess(false);
940         return;
941     }
942
943     DLOG("should switch to workspace %s\n", name);
944     if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, name)) {
945         ysuccess(true);
946         return;
947     }
948     workspace_show_by_name(name);
949
950     cmd_output->needs_tree_render = true;
951     // XXX: default reply for now, make this a better reply
952     ysuccess(true);
953 }
954
955 /*
956  * Implementation of 'mark [--add|--replace] [--toggle] <mark>'
957  *
958  */
959 void cmd_mark(I3_CMD, const char *mark, const char *mode, const char *toggle) {
960     HANDLE_EMPTY_MATCH;
961
962     owindow *current = TAILQ_FIRST(&owindows);
963     if (current == NULL) {
964         ysuccess(false);
965         return;
966     }
967
968     /* Marks must be unique, i.e., no two windows must have the same mark. */
969     if (current != TAILQ_LAST(&owindows, owindows_head)) {
970         yerror("A mark must not be put onto more than one window");
971         return;
972     }
973
974     DLOG("matching: %p / %s\n", current->con, current->con->name);
975
976     mark_mode_t mark_mode = (mode == NULL || strcmp(mode, "--replace") == 0) ? MM_REPLACE : MM_ADD;
977     if (toggle != NULL) {
978         con_mark_toggle(current->con, mark, mark_mode);
979     } else {
980         con_mark(current->con, mark, mark_mode);
981     }
982
983     cmd_output->needs_tree_render = true;
984     // XXX: default reply for now, make this a better reply
985     ysuccess(true);
986 }
987
988 /*
989  * Implementation of 'unmark [mark]'
990  *
991  */
992 void cmd_unmark(I3_CMD, const char *mark) {
993     if (match_is_empty(current_match)) {
994         con_unmark(NULL, mark);
995     } else {
996         owindow *current;
997         TAILQ_FOREACH(current, &owindows, owindows) {
998             con_unmark(current->con, mark);
999         }
1000     }
1001
1002     cmd_output->needs_tree_render = true;
1003     // XXX: default reply for now, make this a better reply
1004     ysuccess(true);
1005 }
1006
1007 /*
1008  * Implementation of 'mode <string>'.
1009  *
1010  */
1011 void cmd_mode(I3_CMD, const char *mode) {
1012     DLOG("mode=%s\n", mode);
1013     switch_mode(mode);
1014
1015     // XXX: default reply for now, make this a better reply
1016     ysuccess(true);
1017 }
1018
1019 /*
1020  * Implementation of 'move [window|container] [to] output <str>'.
1021  *
1022  */
1023 void cmd_move_con_to_output(I3_CMD, const char *name) {
1024     DLOG("Should move window to output \"%s\".\n", name);
1025     HANDLE_EMPTY_MATCH;
1026
1027     owindow *current;
1028     bool had_error = false;
1029     TAILQ_FOREACH(current, &owindows, owindows) {
1030         DLOG("matching: %p / %s\n", current->con, current->con->name);
1031
1032         had_error |= !con_move_to_output_name(current->con, name, true);
1033     }
1034
1035     cmd_output->needs_tree_render = true;
1036     ysuccess(!had_error);
1037 }
1038
1039 /*
1040  * Implementation of 'move [container|window] [to] mark <str>'.
1041  *
1042  */
1043 void cmd_move_con_to_mark(I3_CMD, const char *mark) {
1044     DLOG("moving window to mark \"%s\"\n", mark);
1045
1046     HANDLE_EMPTY_MATCH;
1047
1048     bool result = true;
1049     owindow *current;
1050     TAILQ_FOREACH(current, &owindows, owindows) {
1051         DLOG("moving matched window %p / %s to mark \"%s\"\n", current->con, current->con->name, mark);
1052         result &= con_move_to_mark(current->con, mark);
1053     }
1054
1055     cmd_output->needs_tree_render = true;
1056     ysuccess(result);
1057 }
1058
1059 /*
1060  * Implementation of 'floating enable|disable|toggle'
1061  *
1062  */
1063 void cmd_floating(I3_CMD, const char *floating_mode) {
1064     owindow *current;
1065
1066     DLOG("floating_mode=%s\n", floating_mode);
1067
1068     HANDLE_EMPTY_MATCH;
1069
1070     TAILQ_FOREACH(current, &owindows, owindows) {
1071         DLOG("matching: %p / %s\n", current->con, current->con->name);
1072         if (strcmp(floating_mode, "toggle") == 0) {
1073             DLOG("should toggle mode\n");
1074             toggle_floating_mode(current->con, false);
1075         } else {
1076             DLOG("should switch mode to %s\n", floating_mode);
1077             if (strcmp(floating_mode, "enable") == 0) {
1078                 floating_enable(current->con, false);
1079             } else {
1080                 floating_disable(current->con, false);
1081             }
1082         }
1083     }
1084
1085     cmd_output->needs_tree_render = true;
1086     // XXX: default reply for now, make this a better reply
1087     ysuccess(true);
1088 }
1089
1090 /*
1091  * Implementation of 'move workspace to [output] <str>'.
1092  *
1093  */
1094 void cmd_move_workspace_to_output(I3_CMD, const char *name) {
1095     DLOG("should move workspace to output %s\n", name);
1096
1097     HANDLE_EMPTY_MATCH;
1098
1099     owindow *current;
1100     TAILQ_FOREACH(current, &owindows, owindows) {
1101         Con *ws = con_get_workspace(current->con);
1102         if (con_is_internal(ws)) {
1103             continue;
1104         }
1105
1106         bool success = workspace_move_to_output(ws, name);
1107         if (!success) {
1108             ELOG("Failed to move workspace to output.\n");
1109             ysuccess(false);
1110             return;
1111         }
1112     }
1113
1114     cmd_output->needs_tree_render = true;
1115     // XXX: default reply for now, make this a better reply
1116     ysuccess(true);
1117 }
1118
1119 /*
1120  * Implementation of 'split v|h|t|vertical|horizontal|toggle'.
1121  *
1122  */
1123 void cmd_split(I3_CMD, const char *direction) {
1124     HANDLE_EMPTY_MATCH;
1125
1126     owindow *current;
1127     LOG("splitting in direction %c\n", direction[0]);
1128     TAILQ_FOREACH(current, &owindows, owindows) {
1129         if (con_is_docked(current->con)) {
1130             ELOG("Cannot split a docked container, skipping.\n");
1131             continue;
1132         }
1133
1134         DLOG("matching: %p / %s\n", current->con, current->con->name);
1135         if (direction[0] == 't') {
1136             layout_t current_layout;
1137             if (current->con->type == CT_WORKSPACE) {
1138                 current_layout = current->con->layout;
1139             } else {
1140                 current_layout = current->con->parent->layout;
1141             }
1142             /* toggling split orientation */
1143             if (current_layout == L_SPLITH) {
1144                 tree_split(current->con, VERT);
1145             } else {
1146                 tree_split(current->con, HORIZ);
1147             }
1148         } else {
1149             tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1150         }
1151     }
1152
1153     cmd_output->needs_tree_render = true;
1154     // XXX: default reply for now, make this a better reply
1155     ysuccess(true);
1156 }
1157
1158 /*
1159  * Implementation of 'kill [window|client]'.
1160  *
1161  */
1162 void cmd_kill(I3_CMD, const char *kill_mode_str) {
1163     if (kill_mode_str == NULL)
1164         kill_mode_str = "window";
1165
1166     DLOG("kill_mode=%s\n", kill_mode_str);
1167
1168     int kill_mode;
1169     if (strcmp(kill_mode_str, "window") == 0)
1170         kill_mode = KILL_WINDOW;
1171     else if (strcmp(kill_mode_str, "client") == 0)
1172         kill_mode = KILL_CLIENT;
1173     else {
1174         ELOG("BUG: called with kill_mode=%s\n", kill_mode_str);
1175         ysuccess(false);
1176         return;
1177     }
1178
1179     HANDLE_EMPTY_MATCH;
1180
1181     owindow *current;
1182     TAILQ_FOREACH(current, &owindows, owindows) {
1183         con_close(current->con, kill_mode);
1184     }
1185
1186     cmd_output->needs_tree_render = true;
1187     // XXX: default reply for now, make this a better reply
1188     ysuccess(true);
1189 }
1190
1191 /*
1192  * Implementation of 'exec [--no-startup-id] <command>'.
1193  *
1194  */
1195 void cmd_exec(I3_CMD, const char *nosn, const char *command) {
1196     bool no_startup_id = (nosn != NULL);
1197
1198     DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1199     start_application(command, no_startup_id);
1200
1201     // XXX: default reply for now, make this a better reply
1202     ysuccess(true);
1203 }
1204
1205 /*
1206  * Implementation of 'focus left|right|up|down'.
1207  *
1208  */
1209 void cmd_focus_direction(I3_CMD, const char *direction) {
1210     DLOG("direction = *%s*\n", direction);
1211
1212     if (strcmp(direction, "left") == 0)
1213         tree_next('p', HORIZ);
1214     else if (strcmp(direction, "right") == 0)
1215         tree_next('n', HORIZ);
1216     else if (strcmp(direction, "up") == 0)
1217         tree_next('p', VERT);
1218     else if (strcmp(direction, "down") == 0)
1219         tree_next('n', VERT);
1220     else {
1221         ELOG("Invalid focus direction (%s)\n", direction);
1222         ysuccess(false);
1223         return;
1224     }
1225
1226     cmd_output->needs_tree_render = true;
1227     // XXX: default reply for now, make this a better reply
1228     ysuccess(true);
1229 }
1230
1231 /*
1232  * Focus a container and disable any other fullscreen container not permitting the focus.
1233  *
1234  */
1235 static void cmd_focus_force_focus(Con *con) {
1236     /* Disable fullscreen container in workspace with container to be focused. */
1237     Con *ws = con_get_workspace(con);
1238     Con *fullscreen_on_ws = (focused && focused->fullscreen_mode == CF_GLOBAL) ? focused : con_get_fullscreen_con(ws, CF_OUTPUT);
1239     if (fullscreen_on_ws && fullscreen_on_ws != con && !con_has_parent(con, fullscreen_on_ws)) {
1240         con_disable_fullscreen(fullscreen_on_ws);
1241     }
1242     con_focus(con);
1243 }
1244
1245 /*
1246  * Implementation of 'focus tiling|floating|mode_toggle'.
1247  *
1248  */
1249 void cmd_focus_window_mode(I3_CMD, const char *window_mode) {
1250     DLOG("window_mode = %s\n", window_mode);
1251
1252     bool to_floating = false;
1253     if (strcmp(window_mode, "mode_toggle") == 0) {
1254         to_floating = !con_inside_floating(focused);
1255     } else if (strcmp(window_mode, "floating") == 0) {
1256         to_floating = true;
1257     } else if (strcmp(window_mode, "tiling") == 0) {
1258         to_floating = false;
1259     }
1260
1261     Con *ws = con_get_workspace(focused);
1262     Con *current;
1263     bool success = false;
1264     TAILQ_FOREACH(current, &(ws->focus_head), focused) {
1265         if ((to_floating && current->type != CT_FLOATING_CON) ||
1266             (!to_floating && current->type == CT_FLOATING_CON))
1267             continue;
1268
1269         cmd_focus_force_focus(con_descend_focused(current));
1270         success = true;
1271         break;
1272     }
1273
1274     if (success) {
1275         cmd_output->needs_tree_render = true;
1276         ysuccess(true);
1277     } else {
1278         yerror("Failed to find a %s container in workspace.", to_floating ? "floating" : "tiling");
1279     }
1280 }
1281
1282 /*
1283  * Implementation of 'focus parent|child'.
1284  *
1285  */
1286 void cmd_focus_level(I3_CMD, const char *level) {
1287     DLOG("level = %s\n", level);
1288     bool success = false;
1289
1290     /* Focusing the parent can only be allowed if the newly
1291      * focused container won't escape the fullscreen container. */
1292     if (strcmp(level, "parent") == 0) {
1293         if (focused && focused->parent) {
1294             if (con_fullscreen_permits_focusing(focused->parent))
1295                 success = level_up();
1296             else
1297                 ELOG("'focus parent': Currently in fullscreen, not going up\n");
1298         }
1299     }
1300
1301     /* Focusing a child should always be allowed. */
1302     else
1303         success = level_down();
1304
1305     cmd_output->needs_tree_render = success;
1306     // XXX: default reply for now, make this a better reply
1307     ysuccess(success);
1308 }
1309
1310 /*
1311  * Implementation of 'focus'.
1312  *
1313  */
1314 void cmd_focus(I3_CMD) {
1315     DLOG("current_match = %p\n", current_match);
1316
1317     if (match_is_empty(current_match)) {
1318         ELOG("You have to specify which window/container should be focused.\n");
1319         ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1320
1321         yerror("You have to specify which window/container should be focused");
1322
1323         return;
1324     }
1325
1326     Con *__i3_scratch = workspace_get("__i3_scratch", NULL);
1327     int count = 0;
1328     owindow *current;
1329     TAILQ_FOREACH(current, &owindows, owindows) {
1330         Con *ws = con_get_workspace(current->con);
1331         /* If no workspace could be found, this was a dock window.
1332          * Just skip it, you cannot focus dock windows. */
1333         if (!ws)
1334             continue;
1335
1336         /* In case this is a scratchpad window, call scratchpad_show(). */
1337         if (ws == __i3_scratch) {
1338             scratchpad_show(current->con);
1339             count++;
1340             /* While for the normal focus case we can change focus multiple
1341              * times and only a single window ends up focused, we could show
1342              * multiple scratchpad windows. So, rather break here. */
1343             break;
1344         }
1345
1346         /* If the container is not on the current workspace,
1347          * workspace_show() will switch to a different workspace and (if
1348          * enabled) trigger a mouse pointer warp to the currently focused
1349          * container (!) on the target workspace.
1350          *
1351          * Therefore, before calling workspace_show(), we make sure that
1352          * 'current' will be focused on the workspace. However, we cannot
1353          * just con_focus(current) because then the pointer will not be
1354          * warped at all (the code thinks we are already there).
1355          *
1356          * So we focus 'current' to make it the currently focused window of
1357          * the target workspace, then revert focus. */
1358         Con *currently_focused = focused;
1359         cmd_focus_force_focus(current->con);
1360         con_focus(currently_focused);
1361
1362         /* Now switch to the workspace, then focus */
1363         workspace_show(ws);
1364         LOG("focusing %p / %s\n", current->con, current->con->name);
1365         con_focus(current->con);
1366         count++;
1367     }
1368
1369     if (count > 1)
1370         LOG("WARNING: Your criteria for the focus command matches %d containers, "
1371             "while only exactly one container can be focused at a time.\n",
1372             count);
1373
1374     cmd_output->needs_tree_render = true;
1375     ysuccess(count > 0);
1376 }
1377
1378 /*
1379  * Implementation of 'fullscreen enable|toggle [global]' and
1380  *                   'fullscreen disable'
1381  *
1382  */
1383 void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode) {
1384     fullscreen_mode_t mode = strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT;
1385     DLOG("%s fullscreen, mode = %s\n", action, fullscreen_mode);
1386     owindow *current;
1387
1388     HANDLE_EMPTY_MATCH;
1389
1390     TAILQ_FOREACH(current, &owindows, owindows) {
1391         DLOG("matching: %p / %s\n", current->con, current->con->name);
1392         if (strcmp(action, "toggle") == 0) {
1393             con_toggle_fullscreen(current->con, mode);
1394         } else if (strcmp(action, "enable") == 0) {
1395             con_enable_fullscreen(current->con, mode);
1396         } else if (strcmp(action, "disable") == 0) {
1397             con_disable_fullscreen(current->con);
1398         }
1399     }
1400
1401     cmd_output->needs_tree_render = true;
1402     // XXX: default reply for now, make this a better reply
1403     ysuccess(true);
1404 }
1405
1406 /*
1407  * Implementation of 'sticky enable|disable|toggle'.
1408  *
1409  */
1410 void cmd_sticky(I3_CMD, const char *action) {
1411     DLOG("%s sticky on window\n", action);
1412     HANDLE_EMPTY_MATCH;
1413
1414     owindow *current;
1415     TAILQ_FOREACH(current, &owindows, owindows) {
1416         if (current->con->window == NULL) {
1417             ELOG("only containers holding a window can be made sticky, skipping con = %p\n", current->con);
1418             continue;
1419         }
1420         DLOG("setting sticky for container = %p / %s\n", current->con, current->con->name);
1421
1422         bool sticky = false;
1423         if (strcmp(action, "enable") == 0)
1424             sticky = true;
1425         else if (strcmp(action, "disable") == 0)
1426             sticky = false;
1427         else if (strcmp(action, "toggle") == 0)
1428             sticky = !current->con->sticky;
1429
1430         current->con->sticky = sticky;
1431         ewmh_update_sticky(current->con->window->id, sticky);
1432     }
1433
1434     /* A window we made sticky might not be on a visible workspace right now, so we need to make
1435      * sure it gets pushed to the front now. */
1436     output_push_sticky_windows(focused);
1437
1438     ewmh_update_wm_desktop();
1439
1440     cmd_output->needs_tree_render = true;
1441     ysuccess(true);
1442 }
1443
1444 /*
1445  * Implementation of 'move <direction> [<pixels> [px]]'.
1446  *
1447  */
1448 void cmd_move_direction(I3_CMD, const char *direction, long move_px) {
1449     owindow *current;
1450     HANDLE_EMPTY_MATCH;
1451
1452     Con *initially_focused = focused;
1453
1454     TAILQ_FOREACH(current, &owindows, owindows) {
1455         DLOG("moving in direction %s, px %ld\n", direction, move_px);
1456         if (con_is_floating(current->con)) {
1457             DLOG("floating move with %ld pixels\n", move_px);
1458             Rect newrect = current->con->parent->rect;
1459             if (strcmp(direction, "left") == 0) {
1460                 newrect.x -= move_px;
1461             } else if (strcmp(direction, "right") == 0) {
1462                 newrect.x += move_px;
1463             } else if (strcmp(direction, "up") == 0) {
1464                 newrect.y -= move_px;
1465             } else if (strcmp(direction, "down") == 0) {
1466                 newrect.y += move_px;
1467             }
1468             floating_reposition(current->con->parent, newrect);
1469         } else {
1470             tree_move(current->con, (strcmp(direction, "right") == 0 ? D_RIGHT : (strcmp(direction, "left") == 0 ? D_LEFT : (strcmp(direction, "up") == 0 ? D_UP : D_DOWN))));
1471             cmd_output->needs_tree_render = true;
1472         }
1473     }
1474
1475     /* the move command should not disturb focus */
1476     if (focused != initially_focused)
1477         con_focus(initially_focused);
1478
1479     // XXX: default reply for now, make this a better reply
1480     ysuccess(true);
1481 }
1482
1483 /*
1484  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1485  *
1486  */
1487 void cmd_layout(I3_CMD, const char *layout_str) {
1488     HANDLE_EMPTY_MATCH;
1489
1490     layout_t layout;
1491     if (!layout_from_name(layout_str, &layout)) {
1492         ELOG("Unknown layout \"%s\", this is a mismatch between code and parser spec.\n", layout_str);
1493         return;
1494     }
1495
1496     DLOG("changing layout to %s (%d)\n", layout_str, layout);
1497
1498     owindow *current;
1499     TAILQ_FOREACH(current, &owindows, owindows) {
1500         if (con_is_docked(current->con)) {
1501             ELOG("cannot change layout of a docked container, skipping it.\n");
1502             continue;
1503         }
1504
1505         DLOG("matching: %p / %s\n", current->con, current->con->name);
1506         con_set_layout(current->con, layout);
1507     }
1508
1509     cmd_output->needs_tree_render = true;
1510     // XXX: default reply for now, make this a better reply
1511     ysuccess(true);
1512 }
1513
1514 /*
1515  * Implementation of 'layout toggle [all|split]'.
1516  *
1517  */
1518 void cmd_layout_toggle(I3_CMD, const char *toggle_mode) {
1519     owindow *current;
1520
1521     if (toggle_mode == NULL)
1522         toggle_mode = "default";
1523
1524     DLOG("toggling layout (mode = %s)\n", toggle_mode);
1525
1526     /* check if the match is empty, not if the result is empty */
1527     if (match_is_empty(current_match))
1528         con_toggle_layout(focused, toggle_mode);
1529     else {
1530         TAILQ_FOREACH(current, &owindows, owindows) {
1531             DLOG("matching: %p / %s\n", current->con, current->con->name);
1532             con_toggle_layout(current->con, toggle_mode);
1533         }
1534     }
1535
1536     cmd_output->needs_tree_render = true;
1537     // XXX: default reply for now, make this a better reply
1538     ysuccess(true);
1539 }
1540
1541 /*
1542  * Implementation of 'exit'.
1543  *
1544  */
1545 void cmd_exit(I3_CMD) {
1546     LOG("Exiting due to user command.\n");
1547 #ifdef I3_ASAN_ENABLED
1548     __lsan_do_leak_check();
1549 #endif
1550     ipc_shutdown(SHUTDOWN_REASON_EXIT);
1551     unlink(config.ipc_socket_path);
1552     xcb_disconnect(conn);
1553     exit(0);
1554
1555     /* unreached */
1556 }
1557
1558 /*
1559  * Implementation of 'reload'.
1560  *
1561  */
1562 void cmd_reload(I3_CMD) {
1563     LOG("reloading\n");
1564     kill_nagbar(&config_error_nagbar_pid, false);
1565     kill_nagbar(&command_error_nagbar_pid, false);
1566     load_configuration(conn, NULL, true);
1567     x_set_i3_atoms();
1568     /* Send an IPC event just in case the ws names have changed */
1569     ipc_send_workspace_event("reload", NULL, NULL);
1570     /* Send an update event for the barconfig just in case it has changed */
1571     update_barconfig();
1572
1573     // XXX: default reply for now, make this a better reply
1574     ysuccess(true);
1575 }
1576
1577 /*
1578  * Implementation of 'restart'.
1579  *
1580  */
1581 void cmd_restart(I3_CMD) {
1582     LOG("restarting i3\n");
1583     ipc_shutdown(SHUTDOWN_REASON_RESTART);
1584     unlink(config.ipc_socket_path);
1585     /* We need to call this manually since atexit handlers don’t get called
1586      * when exec()ing */
1587     purge_zerobyte_logfile();
1588     i3_restart(false);
1589
1590     // XXX: default reply for now, make this a better reply
1591     ysuccess(true);
1592 }
1593
1594 /*
1595  * Implementation of 'open'.
1596  *
1597  */
1598 void cmd_open(I3_CMD) {
1599     LOG("opening new container\n");
1600     Con *con = tree_open_con(NULL, NULL);
1601     con->layout = L_SPLITH;
1602     con_focus(con);
1603
1604     y(map_open);
1605     ystr("success");
1606     y(bool, true);
1607     ystr("id");
1608     y(integer, (uintptr_t)con);
1609     y(map_close);
1610
1611     cmd_output->needs_tree_render = true;
1612 }
1613
1614 /*
1615  * Implementation of 'focus output <output>'.
1616  *
1617  */
1618 void cmd_focus_output(I3_CMD, const char *name) {
1619     owindow *current;
1620
1621     DLOG("name = %s\n", name);
1622
1623     HANDLE_EMPTY_MATCH;
1624
1625     /* get the output */
1626     Output *current_output = NULL;
1627     Output *output;
1628
1629     TAILQ_FOREACH(current, &owindows, owindows)
1630     current_output = get_output_for_con(current->con);
1631     assert(current_output != NULL);
1632
1633     output = get_output_from_string(current_output, name);
1634
1635     if (!output) {
1636         LOG("No such output found.\n");
1637         ysuccess(false);
1638         return;
1639     }
1640
1641     /* get visible workspace on output */
1642     Con *ws = NULL;
1643     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1644     if (!ws) {
1645         ysuccess(false);
1646         return;
1647     }
1648
1649     workspace_show(ws);
1650
1651     cmd_output->needs_tree_render = true;
1652     // XXX: default reply for now, make this a better reply
1653     ysuccess(true);
1654 }
1655
1656 /*
1657  * Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
1658  *
1659  */
1660 void cmd_move_window_to_position(I3_CMD, const char *method, long x, long y) {
1661     bool has_error = false;
1662
1663     owindow *current;
1664     HANDLE_EMPTY_MATCH;
1665
1666     TAILQ_FOREACH(current, &owindows, owindows) {
1667         if (!con_is_floating(current->con)) {
1668             ELOG("Cannot change position. The window/container is not floating\n");
1669
1670             if (!has_error) {
1671                 yerror("Cannot change position of a window/container because it is not floating.");
1672                 has_error = true;
1673             }
1674
1675             continue;
1676         }
1677
1678         if (strcmp(method, "absolute") == 0) {
1679             current->con->parent->rect.x = x;
1680             current->con->parent->rect.y = y;
1681
1682             DLOG("moving to absolute position %ld %ld\n", x, y);
1683             floating_maybe_reassign_ws(current->con->parent);
1684             cmd_output->needs_tree_render = true;
1685         }
1686
1687         if (strcmp(method, "position") == 0) {
1688             Rect newrect = current->con->parent->rect;
1689
1690             DLOG("moving to position %ld %ld\n", x, y);
1691             newrect.x = x;
1692             newrect.y = y;
1693
1694             floating_reposition(current->con->parent, newrect);
1695         }
1696     }
1697
1698     // XXX: default reply for now, make this a better reply
1699     if (!has_error)
1700         ysuccess(true);
1701 }
1702
1703 /*
1704  * Implementation of 'move [window|container] [to] [absolute] position center
1705  *
1706  */
1707 void cmd_move_window_to_center(I3_CMD, const char *method) {
1708     bool has_error = false;
1709     HANDLE_EMPTY_MATCH;
1710
1711     owindow *current;
1712     TAILQ_FOREACH(current, &owindows, owindows) {
1713         Con *floating_con = con_inside_floating(current->con);
1714         if (floating_con == NULL) {
1715             ELOG("con %p / %s is not floating, cannot move it to the center.\n",
1716                  current->con, current->con->name);
1717
1718             if (!has_error) {
1719                 yerror("Cannot change position of a window/container because it is not floating.");
1720                 has_error = true;
1721             }
1722
1723             continue;
1724         }
1725
1726         if (strcmp(method, "absolute") == 0) {
1727             DLOG("moving to absolute center\n");
1728             floating_center(floating_con, croot->rect);
1729
1730             floating_maybe_reassign_ws(floating_con);
1731             cmd_output->needs_tree_render = true;
1732         }
1733
1734         if (strcmp(method, "position") == 0) {
1735             DLOG("moving to center\n");
1736             floating_center(floating_con, con_get_workspace(floating_con)->rect);
1737
1738             cmd_output->needs_tree_render = true;
1739         }
1740     }
1741
1742     // XXX: default reply for now, make this a better reply
1743     if (!has_error)
1744         ysuccess(true);
1745 }
1746
1747 /*
1748  * Implementation of 'move [window|container] [to] position mouse'
1749  *
1750  */
1751 void cmd_move_window_to_mouse(I3_CMD) {
1752     HANDLE_EMPTY_MATCH;
1753
1754     owindow *current;
1755     TAILQ_FOREACH(current, &owindows, owindows) {
1756         Con *floating_con = con_inside_floating(current->con);
1757         if (floating_con == NULL) {
1758             DLOG("con %p / %s is not floating, cannot move it to the mouse position.\n",
1759                  current->con, current->con->name);
1760             continue;
1761         }
1762
1763         DLOG("moving floating container %p / %s to cursor position\n", floating_con, floating_con->name);
1764         floating_move_to_pointer(floating_con);
1765     }
1766
1767     cmd_output->needs_tree_render = true;
1768     ysuccess(true);
1769 }
1770
1771 /*
1772  * Implementation of 'move scratchpad'.
1773  *
1774  */
1775 void cmd_move_scratchpad(I3_CMD) {
1776     DLOG("should move window to scratchpad\n");
1777     owindow *current;
1778
1779     HANDLE_EMPTY_MATCH;
1780
1781     TAILQ_FOREACH(current, &owindows, owindows) {
1782         DLOG("matching: %p / %s\n", current->con, current->con->name);
1783         scratchpad_move(current->con);
1784     }
1785
1786     cmd_output->needs_tree_render = true;
1787     // XXX: default reply for now, make this a better reply
1788     ysuccess(true);
1789 }
1790
1791 /*
1792  * Implementation of 'scratchpad show'.
1793  *
1794  */
1795 void cmd_scratchpad_show(I3_CMD) {
1796     DLOG("should show scratchpad window\n");
1797     owindow *current;
1798
1799     if (match_is_empty(current_match)) {
1800         scratchpad_show(NULL);
1801     } else {
1802         TAILQ_FOREACH(current, &owindows, owindows) {
1803             DLOG("matching: %p / %s\n", current->con, current->con->name);
1804             scratchpad_show(current->con);
1805         }
1806     }
1807
1808     cmd_output->needs_tree_render = true;
1809     // XXX: default reply for now, make this a better reply
1810     ysuccess(true);
1811 }
1812
1813 /*
1814  * Implementation of 'swap [container] [with] id|con_id|mark <arg>'.
1815  *
1816  */
1817 void cmd_swap(I3_CMD, const char *mode, const char *arg) {
1818     HANDLE_EMPTY_MATCH;
1819
1820     owindow *match = TAILQ_FIRST(&owindows);
1821     if (match == NULL) {
1822         DLOG("No match found for swapping.\n");
1823         return;
1824     }
1825
1826     Con *con;
1827     if (strcmp(mode, "id") == 0) {
1828         long target;
1829         if (!parse_long(arg, &target, 0)) {
1830             yerror("Failed to parse %s into a window id.\n", arg);
1831             return;
1832         }
1833
1834         con = con_by_window_id(target);
1835     } else if (strcmp(mode, "con_id") == 0) {
1836         long target;
1837         if (!parse_long(arg, &target, 0)) {
1838             yerror("Failed to parse %s into a container id.\n", arg);
1839             return;
1840         }
1841
1842         con = con_by_con_id(target);
1843     } else if (strcmp(mode, "mark") == 0) {
1844         con = con_by_mark(arg);
1845     } else {
1846         yerror("Unhandled swap mode \"%s\". This is a bug.\n", mode);
1847         return;
1848     }
1849
1850     if (con == NULL) {
1851         yerror("Could not find container for %s = %s\n", mode, arg);
1852         return;
1853     }
1854
1855     if (match != TAILQ_LAST(&owindows, owindows_head)) {
1856         DLOG("More than one container matched the swap command, only using the first one.");
1857     }
1858
1859     if (match->con == NULL) {
1860         DLOG("Match %p has no container.\n", match);
1861         ysuccess(false);
1862         return;
1863     }
1864
1865     DLOG("Swapping %p with %p.\n", match->con, con);
1866     bool result = con_swap(match->con, con);
1867
1868     cmd_output->needs_tree_render = true;
1869     ysuccess(result);
1870 }
1871
1872 /*
1873  * Implementation of 'title_format <format>'
1874  *
1875  */
1876 void cmd_title_format(I3_CMD, const char *format) {
1877     DLOG("setting title_format to \"%s\"\n", format);
1878     HANDLE_EMPTY_MATCH;
1879
1880     owindow *current;
1881     TAILQ_FOREACH(current, &owindows, owindows) {
1882         DLOG("setting title_format for %p / %s\n", current->con, current->con->name);
1883         FREE(current->con->title_format);
1884
1885         /* If we only display the title without anything else, we can skip the parsing step,
1886          * so we remove the title format altogether. */
1887         if (strcasecmp(format, "%title") != 0) {
1888             current->con->title_format = sstrdup(format);
1889
1890             if (current->con->window != NULL) {
1891                 i3String *formatted_title = con_parse_title_format(current->con);
1892                 ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
1893                 I3STRING_FREE(formatted_title);
1894             }
1895         } else {
1896             if (current->con->window != NULL) {
1897                 /* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
1898                 ewmh_update_visible_name(current->con->window->id, NULL);
1899             }
1900         }
1901
1902         if (current->con->window != NULL) {
1903             /* Make sure the window title is redrawn immediately. */
1904             current->con->window->name_x_changed = true;
1905         } else {
1906             /* For windowless containers we also need to force the redrawing. */
1907             FREE(current->con->deco_render_params);
1908         }
1909     }
1910
1911     cmd_output->needs_tree_render = true;
1912     ysuccess(true);
1913 }
1914
1915 /*
1916  * Implementation of 'rename workspace [<name>] to <name>'
1917  *
1918  */
1919 void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
1920     if (strncasecmp(new_name, "__", strlen("__")) == 0) {
1921         LOG("Cannot rename workspace to \"%s\": names starting with __ are i3-internal.\n", new_name);
1922         ysuccess(false);
1923         return;
1924     }
1925     if (old_name) {
1926         LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1927     } else {
1928         LOG("Renaming current workspace to \"%s\"\n", new_name);
1929     }
1930
1931     Con *output, *workspace = NULL;
1932     if (old_name) {
1933         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1934         GREP_FIRST(workspace, output_get_content(output),
1935                    !strcasecmp(child->name, old_name));
1936     } else {
1937         workspace = con_get_workspace(focused);
1938         old_name = workspace->name;
1939     }
1940
1941     if (!workspace) {
1942         yerror("Old workspace \"%s\" not found", old_name);
1943         return;
1944     }
1945
1946     Con *check_dest = NULL;
1947     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1948     GREP_FIRST(check_dest, output_get_content(output),
1949                !strcasecmp(child->name, new_name));
1950
1951     /* If check_dest == workspace, the user might be changing the case of the
1952      * workspace, or it might just be a no-op. */
1953     if (check_dest != NULL && check_dest != workspace) {
1954         yerror("New workspace \"%s\" already exists", new_name);
1955         return;
1956     }
1957
1958     /* Change the name and try to parse it as a number. */
1959     /* old_name might refer to workspace->name, so copy it before free()ing */
1960     char *old_name_copy = sstrdup(old_name);
1961     FREE(workspace->name);
1962     workspace->name = sstrdup(new_name);
1963
1964     workspace->num = ws_name_to_number(new_name);
1965     LOG("num = %d\n", workspace->num);
1966
1967     /* By re-attaching, the sort order will be correct afterwards. */
1968     Con *previously_focused = focused;
1969     Con *parent = workspace->parent;
1970     con_detach(workspace);
1971     con_attach(workspace, parent, false);
1972
1973     /* Move the workspace to the correct output if it has an assignment */
1974     struct Workspace_Assignment *assignment = NULL;
1975     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1976         if (assignment->output == NULL)
1977             continue;
1978         if (strcmp(assignment->name, workspace->name) != 0 && (!name_is_digits(assignment->name) || ws_name_to_number(assignment->name) != workspace->num)) {
1979             continue;
1980         }
1981
1982         workspace_move_to_output(workspace, assignment->output);
1983
1984         if (previously_focused)
1985             workspace_show(con_get_workspace(previously_focused));
1986
1987         break;
1988     }
1989
1990     /* Restore the previous focus since con_attach messes with the focus. */
1991     con_focus(previously_focused);
1992
1993     cmd_output->needs_tree_render = true;
1994     ysuccess(true);
1995
1996     ipc_send_workspace_event("rename", workspace, NULL);
1997     ewmh_update_desktop_names();
1998     ewmh_update_desktop_viewport();
1999     ewmh_update_current_desktop();
2000
2001     startup_sequence_rename_workspace(old_name_copy, new_name);
2002     free(old_name_copy);
2003 }
2004
2005 /*
2006  * Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'
2007  *
2008  */
2009 bool cmd_bar_mode(const char *bar_mode, const char *bar_id) {
2010     int mode = M_DOCK;
2011     bool toggle = false;
2012     if (strcmp(bar_mode, "dock") == 0)
2013         mode = M_DOCK;
2014     else if (strcmp(bar_mode, "hide") == 0)
2015         mode = M_HIDE;
2016     else if (strcmp(bar_mode, "invisible") == 0)
2017         mode = M_INVISIBLE;
2018     else if (strcmp(bar_mode, "toggle") == 0)
2019         toggle = true;
2020     else {
2021         ELOG("Unknown bar mode \"%s\", this is a mismatch between code and parser spec.\n", bar_mode);
2022         return false;
2023     }
2024
2025     bool changed_sth = false;
2026     Barconfig *current = NULL;
2027     TAILQ_FOREACH(current, &barconfigs, configs) {
2028         if (bar_id && strcmp(current->id, bar_id) != 0)
2029             continue;
2030
2031         if (toggle)
2032             mode = (current->mode + 1) % 2;
2033
2034         DLOG("Changing bar mode of bar_id '%s' to '%s (%d)'\n", current->id, bar_mode, mode);
2035         current->mode = mode;
2036         changed_sth = true;
2037
2038         if (bar_id)
2039             break;
2040     }
2041
2042     if (bar_id && !changed_sth) {
2043         DLOG("Changing bar mode of bar_id %s failed, bar_id not found.\n", bar_id);
2044         return false;
2045     }
2046
2047     return true;
2048 }
2049
2050 /*
2051  * Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'
2052  *
2053  */
2054 bool cmd_bar_hidden_state(const char *bar_hidden_state, const char *bar_id) {
2055     int hidden_state = S_SHOW;
2056     bool toggle = false;
2057     if (strcmp(bar_hidden_state, "hide") == 0)
2058         hidden_state = S_HIDE;
2059     else if (strcmp(bar_hidden_state, "show") == 0)
2060         hidden_state = S_SHOW;
2061     else if (strcmp(bar_hidden_state, "toggle") == 0)
2062         toggle = true;
2063     else {
2064         ELOG("Unknown bar state \"%s\", this is a mismatch between code and parser spec.\n", bar_hidden_state);
2065         return false;
2066     }
2067
2068     bool changed_sth = false;
2069     Barconfig *current = NULL;
2070     TAILQ_FOREACH(current, &barconfigs, configs) {
2071         if (bar_id && strcmp(current->id, bar_id) != 0)
2072             continue;
2073
2074         if (toggle)
2075             hidden_state = (current->hidden_state + 1) % 2;
2076
2077         DLOG("Changing bar hidden_state of bar_id '%s' to '%s (%d)'\n", current->id, bar_hidden_state, hidden_state);
2078         current->hidden_state = hidden_state;
2079         changed_sth = true;
2080
2081         if (bar_id)
2082             break;
2083     }
2084
2085     if (bar_id && !changed_sth) {
2086         DLOG("Changing bar hidden_state of bar_id %s failed, bar_id not found.\n", bar_id);
2087         return false;
2088     }
2089
2090     return true;
2091 }
2092
2093 /*
2094  * Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) [<bar_id>]'
2095  *
2096  */
2097 void cmd_bar(I3_CMD, const char *bar_type, const char *bar_value, const char *bar_id) {
2098     bool ret;
2099     if (strcmp(bar_type, "mode") == 0)
2100         ret = cmd_bar_mode(bar_value, bar_id);
2101     else if (strcmp(bar_type, "hidden_state") == 0)
2102         ret = cmd_bar_hidden_state(bar_value, bar_id);
2103     else {
2104         ELOG("Unknown bar option type \"%s\", this is a mismatch between code and parser spec.\n", bar_type);
2105         ret = false;
2106     }
2107
2108     ysuccess(ret);
2109     if (!ret)
2110         return;
2111
2112     update_barconfig();
2113 }
2114
2115 /*
2116  * Implementation of 'shmlog <size>|toggle|on|off'
2117  *
2118  */
2119 void cmd_shmlog(I3_CMD, const char *argument) {
2120     if (!strcmp(argument, "toggle"))
2121         /* Toggle shm log, if size is not 0. If it is 0, set it to default. */
2122         shmlog_size = shmlog_size ? -shmlog_size : default_shmlog_size;
2123     else if (!strcmp(argument, "on"))
2124         shmlog_size = default_shmlog_size;
2125     else if (!strcmp(argument, "off"))
2126         shmlog_size = 0;
2127     else {
2128         /* If shm logging now, restart logging with the new size. */
2129         if (shmlog_size > 0) {
2130             shmlog_size = 0;
2131             LOG("Restarting shm logging...\n");
2132             init_logging();
2133         }
2134         shmlog_size = atoi(argument);
2135         /* Make a weakly attempt at ensuring the argument is valid. */
2136         if (shmlog_size <= 0)
2137             shmlog_size = default_shmlog_size;
2138     }
2139     LOG("%s shm logging\n", shmlog_size > 0 ? "Enabling" : "Disabling");
2140     init_logging();
2141     update_shmlog_atom();
2142     // XXX: default reply for now, make this a better reply
2143     ysuccess(true);
2144 }
2145
2146 /*
2147  * Implementation of 'debuglog toggle|on|off'
2148  *
2149  */
2150 void cmd_debuglog(I3_CMD, const char *argument) {
2151     bool logging = get_debug_logging();
2152     if (!strcmp(argument, "toggle")) {
2153         LOG("%s debug logging\n", logging ? "Disabling" : "Enabling");
2154         set_debug_logging(!logging);
2155     } else if (!strcmp(argument, "on") && !logging) {
2156         LOG("Enabling debug logging\n");
2157         set_debug_logging(true);
2158     } else if (!strcmp(argument, "off") && logging) {
2159         LOG("Disabling debug logging\n");
2160         set_debug_logging(false);
2161     }
2162     // XXX: default reply for now, make this a better reply
2163     ysuccess(true);
2164 }