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