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