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