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