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