]> git.sur5r.net Git - i3/i3/blob - src/commands.c
Implement the command 'move container to mark <mark>' using 'con_move_to_mark'.
[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, "con_mark") == 0) {
367         current_match->mark = regex_new(cvalue);
368         return;
369     }
370
371     if (strcmp(ctype, "title") == 0) {
372         current_match->title = regex_new(cvalue);
373         return;
374     }
375
376     if (strcmp(ctype, "urgent") == 0) {
377         if (strcasecmp(cvalue, "latest") == 0 ||
378             strcasecmp(cvalue, "newest") == 0 ||
379             strcasecmp(cvalue, "recent") == 0 ||
380             strcasecmp(cvalue, "last") == 0) {
381             current_match->urgent = U_LATEST;
382         } else if (strcasecmp(cvalue, "oldest") == 0 ||
383                    strcasecmp(cvalue, "first") == 0) {
384             current_match->urgent = U_OLDEST;
385         }
386         return;
387     }
388
389     ELOG("Unknown criterion: %s\n", ctype);
390 }
391
392 /*
393  * Implementation of 'move [window|container] [to] workspace
394  * next|prev|next_on_output|prev_on_output|current'.
395  *
396  */
397 void cmd_move_con_to_workspace(I3_CMD, char *which) {
398     owindow *current;
399
400     DLOG("which=%s\n", which);
401
402     /* We have nothing to move:
403      *  when criteria was specified but didn't match any window or
404      *  when criteria wasn't specified and we don't have any window focused. */
405     if ((!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) ||
406         (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
407          !con_has_children(focused))) {
408         ysuccess(false);
409         return;
410     }
411
412     HANDLE_EMPTY_MATCH;
413
414     /* get the workspace */
415     Con *ws;
416     if (strcmp(which, "next") == 0)
417         ws = workspace_next();
418     else if (strcmp(which, "prev") == 0)
419         ws = workspace_prev();
420     else if (strcmp(which, "next_on_output") == 0)
421         ws = workspace_next_on_output();
422     else if (strcmp(which, "prev_on_output") == 0)
423         ws = workspace_prev_on_output();
424     else if (strcmp(which, "current") == 0)
425         ws = con_get_workspace(focused);
426     else {
427         ELOG("BUG: called with which=%s\n", which);
428         ysuccess(false);
429         return;
430     }
431
432     TAILQ_FOREACH(current, &owindows, owindows) {
433         DLOG("matching: %p / %s\n", current->con, current->con->name);
434         con_move_to_workspace(current->con, ws, true, false);
435     }
436
437     cmd_output->needs_tree_render = true;
438     // XXX: default reply for now, make this a better reply
439     ysuccess(true);
440 }
441
442 /**
443  * Implementation of 'move [window|container] [to] workspace back_and_forth'.
444  *
445  */
446 void cmd_move_con_to_workspace_back_and_forth(I3_CMD) {
447     owindow *current;
448     Con *ws;
449
450     ws = workspace_back_and_forth_get();
451
452     if (ws == NULL) {
453         yerror("No workspace was previously active.");
454         return;
455     }
456
457     HANDLE_EMPTY_MATCH;
458
459     TAILQ_FOREACH(current, &owindows, owindows) {
460         DLOG("matching: %p / %s\n", current->con, current->con->name);
461         con_move_to_workspace(current->con, ws, true, false);
462     }
463
464     cmd_output->needs_tree_render = true;
465     // XXX: default reply for now, make this a better reply
466     ysuccess(true);
467 }
468
469 /*
470  * Implementation of 'move [window|container] [to] workspace <name>'.
471  *
472  */
473 void cmd_move_con_to_workspace_name(I3_CMD, char *name) {
474     if (strncasecmp(name, "__", strlen("__")) == 0) {
475         LOG("You cannot move containers to i3-internal workspaces (\"%s\").\n", name);
476         ysuccess(false);
477         return;
478     }
479
480     owindow *current;
481
482     /* We have nothing to move:
483      *  when criteria was specified but didn't match any window or
484      *  when criteria wasn't specified and we don't have any window focused. */
485     if (!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) {
486         ELOG("No windows match your criteria, cannot move.\n");
487         ysuccess(false);
488         return;
489     } else if (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
490                !con_has_children(focused)) {
491         ysuccess(false);
492         return;
493     }
494
495     LOG("should move window to workspace %s\n", name);
496     /* get the workspace */
497     Con *ws = workspace_get(name, NULL);
498
499     ws = maybe_auto_back_and_forth_workspace(ws);
500
501     HANDLE_EMPTY_MATCH;
502
503     TAILQ_FOREACH(current, &owindows, owindows) {
504         DLOG("matching: %p / %s\n", current->con, current->con->name);
505         con_move_to_workspace(current->con, ws, true, false);
506     }
507
508     cmd_output->needs_tree_render = true;
509     // XXX: default reply for now, make this a better reply
510     ysuccess(true);
511 }
512
513 /*
514  * Implementation of 'move [window|container] [to] workspace number <name>'.
515  *
516  */
517 void cmd_move_con_to_workspace_number(I3_CMD, char *which) {
518     owindow *current;
519
520     /* We have nothing to move:
521      *  when criteria was specified but didn't match any window or
522      *  when criteria wasn't specified and we don't have any window focused. */
523     if ((!match_is_empty(current_match) && TAILQ_EMPTY(&owindows)) ||
524         (match_is_empty(current_match) && focused->type == CT_WORKSPACE &&
525          !con_has_children(focused))) {
526         ysuccess(false);
527         return;
528     }
529
530     LOG("should move window to workspace %s\n", which);
531     /* get the workspace */
532     Con *output, *workspace = NULL;
533
534     long parsed_num = ws_name_to_number(which);
535
536     if (parsed_num == -1) {
537         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
538         yerror("Could not parse number \"%s\"", which);
539         return;
540     }
541
542     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
543     GREP_FIRST(workspace, output_get_content(output),
544                child->num == parsed_num);
545
546     if (!workspace) {
547         workspace = workspace_get(which, NULL);
548     }
549
550     workspace = maybe_auto_back_and_forth_workspace(workspace);
551
552     HANDLE_EMPTY_MATCH;
553
554     TAILQ_FOREACH(current, &owindows, owindows) {
555         DLOG("matching: %p / %s\n", current->con, current->con->name);
556         con_move_to_workspace(current->con, workspace, true, false);
557     }
558
559     cmd_output->needs_tree_render = true;
560     // XXX: default reply for now, make this a better reply
561     ysuccess(true);
562 }
563
564 static void cmd_resize_floating(I3_CMD, char *way, char *direction, Con *floating_con, int px) {
565     LOG("floating resize\n");
566     Rect old_rect = floating_con->rect;
567     Con *focused_con = con_descend_focused(floating_con);
568
569     /* ensure that resize will take place even if pixel increment is smaller than
570      * height increment or width increment.
571      * fixes #1011 */
572     if (strcmp(direction, "up") == 0 || strcmp(direction, "down") == 0 ||
573         strcmp(direction, "height") == 0) {
574         if (px < 0)
575             px = (-px < focused_con->height_increment) ? -focused_con->height_increment : px;
576         else
577             px = (px < focused_con->height_increment) ? focused_con->height_increment : px;
578     } else if (strcmp(direction, "left") == 0 || strcmp(direction, "right") == 0) {
579         if (px < 0)
580             px = (-px < focused_con->width_increment) ? -focused_con->width_increment : px;
581         else
582             px = (px < focused_con->width_increment) ? focused_con->width_increment : px;
583     }
584
585     if (strcmp(direction, "up") == 0) {
586         floating_con->rect.height += px;
587     } else if (strcmp(direction, "down") == 0 || strcmp(direction, "height") == 0) {
588         floating_con->rect.height += px;
589     } else if (strcmp(direction, "left") == 0) {
590         floating_con->rect.width += px;
591     } else {
592         floating_con->rect.width += px;
593     }
594
595     floating_check_size(floating_con);
596
597     /* Did we actually resize anything or did the size constraints prevent us?
598      * If we could not resize, exit now to not move the window. */
599     if (memcmp(&old_rect, &(floating_con->rect), sizeof(Rect)) == 0)
600         return;
601
602     if (strcmp(direction, "up") == 0) {
603         floating_con->rect.y -= (floating_con->rect.height - old_rect.height);
604     } else if (strcmp(direction, "left") == 0) {
605         floating_con->rect.x -= (floating_con->rect.width - old_rect.width);
606     }
607
608     /* If this is a scratchpad window, don't auto center it from now on. */
609     if (floating_con->scratchpad_state == SCRATCHPAD_FRESH)
610         floating_con->scratchpad_state = SCRATCHPAD_CHANGED;
611 }
612
613 static bool cmd_resize_tiling_direction(I3_CMD, Con *current, char *way, char *direction, int ppt) {
614     LOG("tiling resize\n");
615     Con *second = NULL;
616     Con *first = current;
617     direction_t search_direction;
618     if (!strcmp(direction, "left"))
619         search_direction = D_LEFT;
620     else if (!strcmp(direction, "right"))
621         search_direction = D_RIGHT;
622     else if (!strcmp(direction, "up"))
623         search_direction = D_UP;
624     else
625         search_direction = D_DOWN;
626
627     bool res = resize_find_tiling_participants(&first, &second, search_direction);
628     if (!res) {
629         LOG("No second container in this direction found.\n");
630         ysuccess(false);
631         return false;
632     }
633
634     /* get the default percentage */
635     int children = con_num_children(first->parent);
636     LOG("ins. %d children\n", children);
637     double percentage = 1.0 / children;
638     LOG("default percentage = %f\n", percentage);
639
640     /* resize */
641     LOG("second->percent = %f\n", second->percent);
642     LOG("first->percent before = %f\n", first->percent);
643     if (first->percent == 0.0)
644         first->percent = percentage;
645     if (second->percent == 0.0)
646         second->percent = percentage;
647     double new_first_percent = first->percent + ((double)ppt / 100.0);
648     double new_second_percent = second->percent - ((double)ppt / 100.0);
649     LOG("new_first_percent = %f\n", new_first_percent);
650     LOG("new_second_percent = %f\n", new_second_percent);
651     /* Ensure that the new percentages are positive and greater than
652      * 0.05 to have a reasonable minimum size. */
653     if (definitelyGreaterThan(new_first_percent, 0.05, DBL_EPSILON) &&
654         definitelyGreaterThan(new_second_percent, 0.05, DBL_EPSILON)) {
655         first->percent += ((double)ppt / 100.0);
656         second->percent -= ((double)ppt / 100.0);
657         LOG("first->percent after = %f\n", first->percent);
658         LOG("second->percent after = %f\n", second->percent);
659     } else {
660         LOG("Not resizing, already at minimum size\n");
661     }
662
663     return true;
664 }
665
666 static bool cmd_resize_tiling_width_height(I3_CMD, Con *current, char *way, char *direction, int ppt) {
667     LOG("width/height resize\n");
668     /* get the appropriate current container (skip stacked/tabbed cons) */
669     while (current->parent->layout == L_STACKED ||
670            current->parent->layout == L_TABBED)
671         current = current->parent;
672
673     /* Then further go up until we find one with the matching orientation. */
674     orientation_t search_orientation =
675         (strcmp(direction, "width") == 0 ? HORIZ : VERT);
676
677     while (current->type != CT_WORKSPACE &&
678            current->type != CT_FLOATING_CON &&
679            con_orientation(current->parent) != search_orientation)
680         current = current->parent;
681
682     /* get the default percentage */
683     int children = con_num_children(current->parent);
684     LOG("ins. %d children\n", children);
685     double percentage = 1.0 / children;
686     LOG("default percentage = %f\n", percentage);
687
688     orientation_t orientation = con_orientation(current->parent);
689
690     if ((orientation == HORIZ &&
691          strcmp(direction, "height") == 0) ||
692         (orientation == VERT &&
693          strcmp(direction, "width") == 0)) {
694         LOG("You cannot resize in that direction. Your focus is in a %s split container currently.\n",
695             (orientation == HORIZ ? "horizontal" : "vertical"));
696         ysuccess(false);
697         return false;
698     }
699
700     if (children == 1) {
701         LOG("This is the only container, cannot resize.\n");
702         ysuccess(false);
703         return false;
704     }
705
706     /* Ensure all the other children have a percentage set. */
707     Con *child;
708     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
709         LOG("child->percent = %f (child %p)\n", child->percent, child);
710         if (child->percent == 0.0)
711             child->percent = percentage;
712     }
713
714     double new_current_percent = current->percent + ((double)ppt / 100.0);
715     double subtract_percent = ((double)ppt / 100.0) / (children - 1);
716     LOG("new_current_percent = %f\n", new_current_percent);
717     LOG("subtract_percent = %f\n", subtract_percent);
718     /* Ensure that the new percentages are positive and greater than
719      * 0.05 to have a reasonable minimum size. */
720     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
721         if (child == current)
722             continue;
723         if (!definitelyGreaterThan(child->percent - subtract_percent, 0.05, DBL_EPSILON)) {
724             LOG("Not resizing, already at minimum size (child %p would end up with a size of %.f\n", child, child->percent - subtract_percent);
725             ysuccess(false);
726             return false;
727         }
728     }
729     if (!definitelyGreaterThan(new_current_percent, 0.05, DBL_EPSILON)) {
730         LOG("Not resizing, already at minimum size\n");
731         ysuccess(false);
732         return false;
733     }
734
735     current->percent += ((double)ppt / 100.0);
736     LOG("current->percent after = %f\n", current->percent);
737
738     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
739         if (child == current)
740             continue;
741         child->percent -= subtract_percent;
742         LOG("child->percent after (%p) = %f\n", child, child->percent);
743     }
744
745     return true;
746 }
747
748 /*
749  * Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
750  *
751  */
752 void cmd_resize(I3_CMD, char *way, char *direction, char *resize_px, char *resize_ppt) {
753     /* resize <grow|shrink> <direction> [<px> px] [or <ppt> ppt] */
754     DLOG("resizing in way %s, direction %s, px %s or ppt %s\n", way, direction, resize_px, resize_ppt);
755     // 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
756     int px = atoi(resize_px);
757     int ppt = atoi(resize_ppt);
758     if (strcmp(way, "shrink") == 0) {
759         px *= -1;
760         ppt *= -1;
761     }
762
763     HANDLE_EMPTY_MATCH;
764
765     owindow *current;
766     TAILQ_FOREACH(current, &owindows, owindows) {
767         /* Don't handle dock windows (issue #1201) */
768         if (current->con->window && current->con->window->dock) {
769             DLOG("This is a dock window. Not resizing (con = %p)\n)", current->con);
770             continue;
771         }
772
773         Con *floating_con;
774         if ((floating_con = con_inside_floating(current->con))) {
775             cmd_resize_floating(current_match, cmd_output, way, direction, floating_con, px);
776         } else {
777             if (strcmp(direction, "width") == 0 ||
778                 strcmp(direction, "height") == 0) {
779                 if (!cmd_resize_tiling_width_height(current_match, cmd_output, current->con, way, direction, ppt))
780                     return;
781             } else {
782                 if (!cmd_resize_tiling_direction(current_match, cmd_output, current->con, way, direction, ppt))
783                     return;
784             }
785         }
786     }
787
788     cmd_output->needs_tree_render = true;
789     // XXX: default reply for now, make this a better reply
790     ysuccess(true);
791 }
792
793 /*
794  * Implementation of 'border normal|none|1pixel|toggle|pixel'.
795  *
796  */
797 void cmd_border(I3_CMD, char *border_style_str, char *border_width) {
798     DLOG("border style should be changed to %s with border width %s\n", border_style_str, border_width);
799     owindow *current;
800
801     HANDLE_EMPTY_MATCH;
802
803     TAILQ_FOREACH(current, &owindows, owindows) {
804         DLOG("matching: %p / %s\n", current->con, current->con->name);
805         int border_style = current->con->border_style;
806         char *end;
807         int tmp_border_width = -1;
808         tmp_border_width = strtol(border_width, &end, 10);
809         if (end == border_width) {
810             /* no valid digits found */
811             tmp_border_width = -1;
812         }
813         if (strcmp(border_style_str, "toggle") == 0) {
814             border_style++;
815             border_style %= 3;
816             if (border_style == BS_NORMAL)
817                 tmp_border_width = 2;
818             else if (border_style == BS_NONE)
819                 tmp_border_width = 0;
820             else if (border_style == BS_PIXEL)
821                 tmp_border_width = 1;
822         } else {
823             if (strcmp(border_style_str, "normal") == 0)
824                 border_style = BS_NORMAL;
825             else if (strcmp(border_style_str, "pixel") == 0)
826                 border_style = BS_PIXEL;
827             else if (strcmp(border_style_str, "1pixel") == 0) {
828                 border_style = BS_PIXEL;
829                 tmp_border_width = 1;
830             } else if (strcmp(border_style_str, "none") == 0)
831                 border_style = BS_NONE;
832             else {
833                 ELOG("BUG: called with border_style=%s\n", border_style_str);
834                 ysuccess(false);
835                 return;
836             }
837         }
838         con_set_border_style(current->con, border_style, tmp_border_width);
839     }
840
841     cmd_output->needs_tree_render = true;
842     // XXX: default reply for now, make this a better reply
843     ysuccess(true);
844 }
845
846 /*
847  * Implementation of 'nop <comment>'.
848  *
849  */
850 void cmd_nop(I3_CMD, char *comment) {
851     LOG("-------------------------------------------------\n");
852     LOG("  NOP: %s\n", comment);
853     LOG("-------------------------------------------------\n");
854 }
855
856 /*
857  * Implementation of 'append_layout <path>'.
858  *
859  */
860 void cmd_append_layout(I3_CMD, char *path) {
861     LOG("Appending layout \"%s\"\n", path);
862
863     /* Make sure we allow paths like '~/.i3/layout.json' */
864     path = resolve_tilde(path);
865
866     json_content_t content = json_determine_content(path);
867     LOG("JSON content = %d\n", content);
868     if (content == JSON_CONTENT_UNKNOWN) {
869         ELOG("Could not determine the contents of \"%s\", not loading.\n", path);
870         yerror("Could not determine the contents of \"%s\".", path);
871         free(path);
872         return;
873     }
874
875     Con *parent = focused;
876     if (content == JSON_CONTENT_WORKSPACE) {
877         parent = output_get_content(con_get_output(parent));
878     } else {
879         /* We need to append the layout to a split container, since a leaf
880          * container must not have any children (by definition).
881          * Note that we explicitly check for workspaces, since they are okay for
882          * this purpose, but con_accepts_window() returns false for workspaces. */
883         while (parent->type != CT_WORKSPACE && !con_accepts_window(parent))
884             parent = parent->parent;
885     }
886     DLOG("Appending to parent=%p instead of focused=%p\n", parent, focused);
887     char *errormsg = NULL;
888     tree_append_json(parent, path, &errormsg);
889     if (errormsg != NULL) {
890         yerror(errormsg);
891         free(errormsg);
892         /* Note that we continue executing since tree_append_json() has
893          * side-effects — user-provided layouts can be partly valid, partly
894          * invalid, leading to half of the placeholder containers being
895          * created. */
896     } else {
897         ysuccess(true);
898     }
899
900     // XXX: This is a bit of a kludge. Theoretically, render_con(parent,
901     // false); should be enough, but when sending 'workspace 4; append_layout
902     // /tmp/foo.json', the needs_tree_render == true of the workspace command
903     // is not executed yet and will be batched with append_layout’s
904     // needs_tree_render after the parser finished. We should check if that is
905     // necessary at all.
906     render_con(croot, false);
907
908     restore_open_placeholder_windows(parent);
909
910     if (content == JSON_CONTENT_WORKSPACE)
911         ipc_send_workspace_event("restored", parent, NULL);
912
913     free(path);
914     cmd_output->needs_tree_render = true;
915 }
916
917 /*
918  * Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
919  *
920  */
921 void cmd_workspace(I3_CMD, char *which) {
922     Con *ws;
923
924     DLOG("which=%s\n", which);
925
926     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
927         LOG("Cannot switch workspace while in global fullscreen\n");
928         ysuccess(false);
929         return;
930     }
931
932     if (strcmp(which, "next") == 0)
933         ws = workspace_next();
934     else if (strcmp(which, "prev") == 0)
935         ws = workspace_prev();
936     else if (strcmp(which, "next_on_output") == 0)
937         ws = workspace_next_on_output();
938     else if (strcmp(which, "prev_on_output") == 0)
939         ws = workspace_prev_on_output();
940     else {
941         ELOG("BUG: called with which=%s\n", which);
942         ysuccess(false);
943         return;
944     }
945
946     workspace_show(ws);
947
948     cmd_output->needs_tree_render = true;
949     // XXX: default reply for now, make this a better reply
950     ysuccess(true);
951 }
952
953 /*
954  * Implementation of 'workspace number <name>'
955  *
956  */
957 void cmd_workspace_number(I3_CMD, char *which) {
958     Con *output, *workspace = NULL;
959
960     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
961         LOG("Cannot switch workspace while in global fullscreen\n");
962         ysuccess(false);
963         return;
964     }
965
966     long parsed_num = ws_name_to_number(which);
967
968     if (parsed_num == -1) {
969         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
970         yerror("Could not parse number \"%s\"", which);
971         return;
972     }
973
974     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
975     GREP_FIRST(workspace, output_get_content(output),
976                child->num == parsed_num);
977
978     if (!workspace) {
979         LOG("There is no workspace with number %ld, creating a new one.\n", parsed_num);
980         ysuccess(true);
981         workspace_show_by_name(which);
982         cmd_output->needs_tree_render = true;
983         return;
984     }
985     if (maybe_back_and_forth(cmd_output, workspace->name))
986         return;
987     workspace_show(workspace);
988
989     cmd_output->needs_tree_render = true;
990     // XXX: default reply for now, make this a better reply
991     ysuccess(true);
992 }
993
994 /*
995  * Implementation of 'workspace back_and_forth'.
996  *
997  */
998 void cmd_workspace_back_and_forth(I3_CMD) {
999     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
1000         LOG("Cannot switch workspace while in global fullscreen\n");
1001         ysuccess(false);
1002         return;
1003     }
1004
1005     workspace_back_and_forth();
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 'workspace <name>'
1014  *
1015  */
1016 void cmd_workspace_name(I3_CMD, char *name) {
1017     if (strncasecmp(name, "__", strlen("__")) == 0) {
1018         LOG("You cannot switch to the i3-internal workspaces (\"%s\").\n", name);
1019         ysuccess(false);
1020         return;
1021     }
1022
1023     if (con_get_fullscreen_con(croot, CF_GLOBAL)) {
1024         LOG("Cannot switch workspace while in global fullscreen\n");
1025         ysuccess(false);
1026         return;
1027     }
1028
1029     DLOG("should switch to workspace %s\n", name);
1030     if (maybe_back_and_forth(cmd_output, name))
1031         return;
1032     workspace_show_by_name(name);
1033
1034     cmd_output->needs_tree_render = true;
1035     // XXX: default reply for now, make this a better reply
1036     ysuccess(true);
1037 }
1038
1039 /*
1040  * Implementation of 'mark [--toggle] <mark>'
1041  *
1042  */
1043 void cmd_mark(I3_CMD, char *mark, char *toggle) {
1044     HANDLE_EMPTY_MATCH;
1045
1046     owindow *current = TAILQ_FIRST(&owindows);
1047     if (current == NULL) {
1048         ysuccess(false);
1049         return;
1050     }
1051
1052     /* Marks must be unique, i.e., no two windows must have the same mark. */
1053     if (current != TAILQ_LAST(&owindows, owindows_head)) {
1054         yerror("A mark must not be put onto more than one window");
1055         return;
1056     }
1057
1058     DLOG("matching: %p / %s\n", current->con, current->con->name);
1059     current->con->mark_changed = true;
1060     if (toggle != NULL && current->con->mark && strcmp(current->con->mark, mark) == 0) {
1061         DLOG("removing window mark %s\n", mark);
1062         FREE(current->con->mark);
1063     } else {
1064         DLOG("marking window with str %s\n", mark);
1065         FREE(current->con->mark);
1066         current->con->mark = sstrdup(mark);
1067     }
1068
1069     DLOG("Clearing all non-matched windows with this mark\n");
1070     Con *con;
1071     TAILQ_FOREACH(con, &all_cons, all_cons) {
1072         /* Skip matched window, we took care of it already. */
1073         if (current->con == con)
1074             continue;
1075
1076         if (con->mark && strcmp(con->mark, mark) == 0) {
1077             FREE(con->mark);
1078             con->mark_changed = true;
1079         }
1080     }
1081
1082     cmd_output->needs_tree_render = true;
1083     // XXX: default reply for now, make this a better reply
1084     ysuccess(true);
1085 }
1086
1087 /*
1088  * Implementation of 'unmark [mark]'
1089  *
1090  */
1091 void cmd_unmark(I3_CMD, char *mark) {
1092     if (mark == NULL) {
1093         Con *con;
1094         TAILQ_FOREACH(con, &all_cons, all_cons) {
1095             if (con->mark == NULL)
1096                 continue;
1097
1098             FREE(con->mark);
1099             con->mark_changed = true;
1100         }
1101         DLOG("removed all window marks");
1102     } else {
1103         Con *con = con_by_mark(mark);
1104         if (con != NULL) {
1105             FREE(con->mark);
1106             con->mark_changed = true;
1107         }
1108         DLOG("removed window mark %s\n", mark);
1109     }
1110
1111     cmd_output->needs_tree_render = true;
1112     // XXX: default reply for now, make this a better reply
1113     ysuccess(true);
1114 }
1115
1116 /*
1117  * Implementation of 'mode <string>'.
1118  *
1119  */
1120 void cmd_mode(I3_CMD, char *mode) {
1121     DLOG("mode=%s\n", mode);
1122     switch_mode(mode);
1123
1124     // XXX: default reply for now, make this a better reply
1125     ysuccess(true);
1126 }
1127
1128 /*
1129  * Implementation of 'move [window|container] [to] output <str>'.
1130  *
1131  */
1132 void cmd_move_con_to_output(I3_CMD, char *name) {
1133     owindow *current;
1134
1135     DLOG("should move window to output %s\n", name);
1136
1137     HANDLE_EMPTY_MATCH;
1138
1139     Output *current_output = NULL;
1140     // TODO: fix the handling of criteria
1141     TAILQ_FOREACH(current, &owindows, owindows)
1142     current_output = get_output_of_con(current->con);
1143     assert(current_output != NULL);
1144
1145     Output *output = get_output_from_string(current_output, name);
1146     if (!output) {
1147         LOG("No such output found.\n");
1148         ysuccess(false);
1149         return;
1150     }
1151
1152     /* get visible workspace on output */
1153     Con *ws = NULL;
1154     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1155     if (!ws) {
1156         ysuccess(false);
1157         return;
1158     }
1159
1160     TAILQ_FOREACH(current, &owindows, owindows) {
1161         DLOG("matching: %p / %s\n", current->con, current->con->name);
1162         con_move_to_workspace(current->con, ws, true, false);
1163     }
1164
1165     cmd_output->needs_tree_render = true;
1166     // XXX: default reply for now, make this a better reply
1167     ysuccess(true);
1168 }
1169
1170 /*
1171  * Implementation of 'move [container|window] [to] mark <str>'.
1172  *
1173  */
1174 void cmd_move_con_to_mark(I3_CMD, char *mark) {
1175     DLOG("moving window to mark \"%s\"\n", mark);
1176
1177     HANDLE_EMPTY_MATCH;
1178
1179     bool result = true;
1180     owindow *current;
1181     TAILQ_FOREACH(current, &owindows, owindows) {
1182         DLOG("moving matched window %p / %s to mark \"%s\"\n", current->con, current->con->name, mark);
1183         result &= con_move_to_mark(current->con, mark);
1184     }
1185
1186     cmd_output->needs_tree_render = true;
1187     ysuccess(result);
1188 }
1189
1190 /*
1191  * Implementation of 'floating enable|disable|toggle'
1192  *
1193  */
1194 void cmd_floating(I3_CMD, char *floating_mode) {
1195     owindow *current;
1196
1197     DLOG("floating_mode=%s\n", floating_mode);
1198
1199     HANDLE_EMPTY_MATCH;
1200
1201     TAILQ_FOREACH(current, &owindows, owindows) {
1202         DLOG("matching: %p / %s\n", current->con, current->con->name);
1203         if (strcmp(floating_mode, "toggle") == 0) {
1204             DLOG("should toggle mode\n");
1205             toggle_floating_mode(current->con, false);
1206         } else {
1207             DLOG("should switch mode to %s\n", floating_mode);
1208             if (strcmp(floating_mode, "enable") == 0) {
1209                 floating_enable(current->con, false);
1210             } else {
1211                 floating_disable(current->con, false);
1212             }
1213         }
1214     }
1215
1216     cmd_output->needs_tree_render = true;
1217     // XXX: default reply for now, make this a better reply
1218     ysuccess(true);
1219 }
1220
1221 /*
1222  * Implementation of 'move workspace to [output] <str>'.
1223  *
1224  */
1225 void cmd_move_workspace_to_output(I3_CMD, char *name) {
1226     DLOG("should move workspace to output %s\n", name);
1227
1228     HANDLE_EMPTY_MATCH;
1229
1230     owindow *current;
1231     TAILQ_FOREACH(current, &owindows, owindows) {
1232         Con *ws = con_get_workspace(current->con);
1233         bool success = workspace_move_to_output(ws, name);
1234         if (!success) {
1235             ELOG("Failed to move workspace to output.\n");
1236             ysuccess(false);
1237             return;
1238         }
1239     }
1240
1241     cmd_output->needs_tree_render = true;
1242     // XXX: default reply for now, make this a better reply
1243     ysuccess(true);
1244 }
1245
1246 /*
1247  * Implementation of 'split v|h|vertical|horizontal'.
1248  *
1249  */
1250 void cmd_split(I3_CMD, char *direction) {
1251     owindow *current;
1252     /* TODO: use matches */
1253     LOG("splitting in direction %c\n", direction[0]);
1254     if (match_is_empty(current_match))
1255         tree_split(focused, (direction[0] == 'v' ? VERT : HORIZ));
1256     else {
1257         TAILQ_FOREACH(current, &owindows, owindows) {
1258             DLOG("matching: %p / %s\n", current->con, current->con->name);
1259             tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1260         }
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  * Implementation of 'kill [window|client]'.
1270  *
1271  */
1272 void cmd_kill(I3_CMD, char *kill_mode_str) {
1273     if (kill_mode_str == NULL)
1274         kill_mode_str = "window";
1275     owindow *current;
1276
1277     DLOG("kill_mode=%s\n", kill_mode_str);
1278
1279     int kill_mode;
1280     if (strcmp(kill_mode_str, "window") == 0)
1281         kill_mode = KILL_WINDOW;
1282     else if (strcmp(kill_mode_str, "client") == 0)
1283         kill_mode = KILL_CLIENT;
1284     else {
1285         ELOG("BUG: called with kill_mode=%s\n", kill_mode_str);
1286         ysuccess(false);
1287         return;
1288     }
1289
1290     /* check if the match is empty, not if the result is empty */
1291     if (match_is_empty(current_match))
1292         tree_close_con(kill_mode);
1293     else {
1294         TAILQ_FOREACH(current, &owindows, owindows) {
1295             DLOG("matching: %p / %s\n", current->con, current->con->name);
1296             tree_close(current->con, kill_mode, false, false);
1297         }
1298     }
1299
1300     cmd_output->needs_tree_render = true;
1301     // XXX: default reply for now, make this a better reply
1302     ysuccess(true);
1303 }
1304
1305 /*
1306  * Implementation of 'exec [--no-startup-id] <command>'.
1307  *
1308  */
1309 void cmd_exec(I3_CMD, char *nosn, char *command) {
1310     bool no_startup_id = (nosn != NULL);
1311
1312     DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1313     start_application(command, no_startup_id);
1314
1315     // XXX: default reply for now, make this a better reply
1316     ysuccess(true);
1317 }
1318
1319 /*
1320  * Implementation of 'focus left|right|up|down'.
1321  *
1322  */
1323 void cmd_focus_direction(I3_CMD, char *direction) {
1324     DLOG("direction = *%s*\n", direction);
1325
1326     if (strcmp(direction, "left") == 0)
1327         tree_next('p', HORIZ);
1328     else if (strcmp(direction, "right") == 0)
1329         tree_next('n', HORIZ);
1330     else if (strcmp(direction, "up") == 0)
1331         tree_next('p', VERT);
1332     else if (strcmp(direction, "down") == 0)
1333         tree_next('n', VERT);
1334     else {
1335         ELOG("Invalid focus direction (%s)\n", direction);
1336         ysuccess(false);
1337         return;
1338     }
1339
1340     cmd_output->needs_tree_render = true;
1341     // XXX: default reply for now, make this a better reply
1342     ysuccess(true);
1343 }
1344
1345 /*
1346  * Implementation of 'focus tiling|floating|mode_toggle'.
1347  *
1348  */
1349 void cmd_focus_window_mode(I3_CMD, char *window_mode) {
1350     DLOG("window_mode = %s\n", window_mode);
1351
1352     Con *ws = con_get_workspace(focused);
1353     Con *current;
1354     if (ws != NULL) {
1355         if (strcmp(window_mode, "mode_toggle") == 0) {
1356             current = TAILQ_FIRST(&(ws->focus_head));
1357             if (current != NULL && current->type == CT_FLOATING_CON)
1358                 window_mode = "tiling";
1359             else
1360                 window_mode = "floating";
1361         }
1362         TAILQ_FOREACH(current, &(ws->focus_head), focused) {
1363             if ((strcmp(window_mode, "floating") == 0 && current->type != CT_FLOATING_CON) ||
1364                 (strcmp(window_mode, "tiling") == 0 && current->type == CT_FLOATING_CON))
1365                 continue;
1366
1367             con_focus(con_descend_focused(current));
1368             break;
1369         }
1370     }
1371
1372     cmd_output->needs_tree_render = true;
1373     // XXX: default reply for now, make this a better reply
1374     ysuccess(true);
1375 }
1376
1377 /*
1378  * Implementation of 'focus parent|child'.
1379  *
1380  */
1381 void cmd_focus_level(I3_CMD, char *level) {
1382     DLOG("level = %s\n", level);
1383     bool success = false;
1384
1385     /* Focusing the parent can only be allowed if the newly
1386      * focused container won't escape the fullscreen container. */
1387     if (strcmp(level, "parent") == 0) {
1388         if (focused && focused->parent) {
1389             if (con_fullscreen_permits_focusing(focused->parent))
1390                 success = level_up();
1391             else
1392                 ELOG("'focus parent': Currently in fullscreen, not going up\n");
1393         }
1394     }
1395
1396     /* Focusing a child should always be allowed. */
1397     else
1398         success = level_down();
1399
1400     cmd_output->needs_tree_render = success;
1401     // XXX: default reply for now, make this a better reply
1402     ysuccess(success);
1403 }
1404
1405 /*
1406  * Implementation of 'focus'.
1407  *
1408  */
1409 void cmd_focus(I3_CMD) {
1410     DLOG("current_match = %p\n", current_match);
1411
1412     if (match_is_empty(current_match)) {
1413         ELOG("You have to specify which window/container should be focused.\n");
1414         ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1415
1416         yerror("You have to specify which window/container should be focused");
1417
1418         return;
1419     }
1420
1421     Con *__i3_scratch = workspace_get("__i3_scratch", NULL);
1422     int count = 0;
1423     owindow *current;
1424     TAILQ_FOREACH(current, &owindows, owindows) {
1425         Con *ws = con_get_workspace(current->con);
1426         /* If no workspace could be found, this was a dock window.
1427          * Just skip it, you cannot focus dock windows. */
1428         if (!ws)
1429             continue;
1430
1431         /* Check the fullscreen focus constraints. */
1432         if (!con_fullscreen_permits_focusing(current->con)) {
1433             LOG("Cannot change focus while in fullscreen mode (fullscreen rules).\n");
1434             ysuccess(false);
1435             return;
1436         }
1437
1438         /* In case this is a scratchpad window, call scratchpad_show(). */
1439         if (ws == __i3_scratch) {
1440             scratchpad_show(current->con);
1441             count++;
1442             /* While for the normal focus case we can change focus multiple
1443              * times and only a single window ends up focused, we could show
1444              * multiple scratchpad windows. So, rather break here. */
1445             break;
1446         }
1447
1448         /* If the container is not on the current workspace,
1449          * workspace_show() will switch to a different workspace and (if
1450          * enabled) trigger a mouse pointer warp to the currently focused
1451          * container (!) on the target workspace.
1452          *
1453          * Therefore, before calling workspace_show(), we make sure that
1454          * 'current' will be focused on the workspace. However, we cannot
1455          * just con_focus(current) because then the pointer will not be
1456          * warped at all (the code thinks we are already there).
1457          *
1458          * So we focus 'current' to make it the currently focused window of
1459          * the target workspace, then revert focus. */
1460         Con *currently_focused = focused;
1461         con_focus(current->con);
1462         con_focus(currently_focused);
1463
1464         /* Now switch to the workspace, then focus */
1465         workspace_show(ws);
1466         LOG("focusing %p / %s\n", current->con, current->con->name);
1467         con_focus(current->con);
1468         count++;
1469     }
1470
1471     if (count > 1)
1472         LOG("WARNING: Your criteria for the focus command matches %d containers, "
1473             "while only exactly one container can be focused at a time.\n",
1474             count);
1475
1476     cmd_output->needs_tree_render = true;
1477     // XXX: default reply for now, make this a better reply
1478     ysuccess(true);
1479 }
1480
1481 /*
1482  * Implementation of 'fullscreen enable|toggle [global]' and
1483  *                   'fullscreen disable'
1484  *
1485  */
1486 void cmd_fullscreen(I3_CMD, char *action, char *fullscreen_mode) {
1487     fullscreen_mode_t mode = strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT;
1488     DLOG("%s fullscreen, mode = %s\n", action, fullscreen_mode);
1489     owindow *current;
1490
1491     HANDLE_EMPTY_MATCH;
1492
1493     TAILQ_FOREACH(current, &owindows, owindows) {
1494         DLOG("matching: %p / %s\n", current->con, current->con->name);
1495         if (strcmp(action, "toggle") == 0) {
1496             con_toggle_fullscreen(current->con, mode);
1497         } else if (strcmp(action, "enable") == 0) {
1498             con_enable_fullscreen(current->con, mode);
1499         } else if (strcmp(action, "disable") == 0) {
1500             con_disable_fullscreen(current->con);
1501         }
1502     }
1503
1504     cmd_output->needs_tree_render = true;
1505     // XXX: default reply for now, make this a better reply
1506     ysuccess(true);
1507 }
1508
1509 /*
1510  * Implementation of 'move <direction> [<pixels> [px]]'.
1511  *
1512  */
1513 void cmd_move_direction(I3_CMD, char *direction, char *move_px) {
1514     // 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
1515     int px = atoi(move_px);
1516
1517     owindow *current;
1518     HANDLE_EMPTY_MATCH;
1519
1520     Con *initially_focused = focused;
1521
1522     TAILQ_FOREACH(current, &owindows, owindows) {
1523         DLOG("moving in direction %s, px %s\n", direction, move_px);
1524         if (con_is_floating(current->con)) {
1525             DLOG("floating move with %d pixels\n", px);
1526             Rect newrect = current->con->parent->rect;
1527             if (strcmp(direction, "left") == 0) {
1528                 newrect.x -= px;
1529             } else if (strcmp(direction, "right") == 0) {
1530                 newrect.x += px;
1531             } else if (strcmp(direction, "up") == 0) {
1532                 newrect.y -= px;
1533             } else if (strcmp(direction, "down") == 0) {
1534                 newrect.y += px;
1535             }
1536             floating_reposition(current->con->parent, newrect);
1537         } else {
1538             tree_move(current->con, (strcmp(direction, "right") == 0 ? D_RIGHT : (strcmp(direction, "left") == 0 ? D_LEFT : (strcmp(direction, "up") == 0 ? D_UP : D_DOWN))));
1539             cmd_output->needs_tree_render = true;
1540         }
1541     }
1542
1543     /* the move command should not disturb focus */
1544     if (focused != initially_focused)
1545         con_focus(initially_focused);
1546
1547     // XXX: default reply for now, make this a better reply
1548     ysuccess(true);
1549 }
1550
1551 /*
1552  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1553  *
1554  */
1555 void cmd_layout(I3_CMD, char *layout_str) {
1556     if (strcmp(layout_str, "stacking") == 0)
1557         layout_str = "stacked";
1558     owindow *current;
1559     layout_t layout;
1560     /* default is a special case which will be handled in con_set_layout(). */
1561     if (strcmp(layout_str, "default") == 0)
1562         layout = L_DEFAULT;
1563     else if (strcmp(layout_str, "stacked") == 0)
1564         layout = L_STACKED;
1565     else if (strcmp(layout_str, "tabbed") == 0)
1566         layout = L_TABBED;
1567     else if (strcmp(layout_str, "splitv") == 0)
1568         layout = L_SPLITV;
1569     else if (strcmp(layout_str, "splith") == 0)
1570         layout = L_SPLITH;
1571     else {
1572         ELOG("Unknown layout \"%s\", this is a mismatch between code and parser spec.\n", layout_str);
1573         return;
1574     }
1575
1576     DLOG("changing layout to %s (%d)\n", layout_str, layout);
1577
1578     /* check if the match is empty, not if the result is empty */
1579     if (match_is_empty(current_match))
1580         con_set_layout(focused, layout);
1581     else {
1582         TAILQ_FOREACH(current, &owindows, owindows) {
1583             DLOG("matching: %p / %s\n", current->con, current->con->name);
1584             con_set_layout(current->con, layout);
1585         }
1586     }
1587
1588     cmd_output->needs_tree_render = true;
1589     // XXX: default reply for now, make this a better reply
1590     ysuccess(true);
1591 }
1592
1593 /*
1594  * Implementation of 'layout toggle [all|split]'.
1595  *
1596  */
1597 void cmd_layout_toggle(I3_CMD, char *toggle_mode) {
1598     owindow *current;
1599
1600     if (toggle_mode == NULL)
1601         toggle_mode = "default";
1602
1603     DLOG("toggling layout (mode = %s)\n", toggle_mode);
1604
1605     /* check if the match is empty, not if the result is empty */
1606     if (match_is_empty(current_match))
1607         con_toggle_layout(focused, toggle_mode);
1608     else {
1609         TAILQ_FOREACH(current, &owindows, owindows) {
1610             DLOG("matching: %p / %s\n", current->con, current->con->name);
1611             con_toggle_layout(current->con, toggle_mode);
1612         }
1613     }
1614
1615     cmd_output->needs_tree_render = true;
1616     // XXX: default reply for now, make this a better reply
1617     ysuccess(true);
1618 }
1619
1620 /*
1621  * Implementation of 'exit'.
1622  *
1623  */
1624 void cmd_exit(I3_CMD) {
1625     LOG("Exiting due to user command.\n");
1626     ipc_shutdown();
1627     unlink(config.ipc_socket_path);
1628     xcb_disconnect(conn);
1629     exit(0);
1630
1631     /* unreached */
1632 }
1633
1634 /*
1635  * Implementation of 'reload'.
1636  *
1637  */
1638 void cmd_reload(I3_CMD) {
1639     LOG("reloading\n");
1640     kill_nagbar(&config_error_nagbar_pid, false);
1641     kill_nagbar(&command_error_nagbar_pid, false);
1642     load_configuration(conn, NULL, true);
1643     x_set_i3_atoms();
1644     /* Send an IPC event just in case the ws names have changed */
1645     ipc_send_workspace_event("reload", NULL, NULL);
1646     /* Send an update event for the barconfig just in case it has changed */
1647     update_barconfig();
1648
1649     // XXX: default reply for now, make this a better reply
1650     ysuccess(true);
1651 }
1652
1653 /*
1654  * Implementation of 'restart'.
1655  *
1656  */
1657 void cmd_restart(I3_CMD) {
1658     LOG("restarting i3\n");
1659     ipc_shutdown();
1660     unlink(config.ipc_socket_path);
1661     /* We need to call this manually since atexit handlers don’t get called
1662      * when exec()ing */
1663     purge_zerobyte_logfile();
1664     i3_restart(false);
1665
1666     // XXX: default reply for now, make this a better reply
1667     ysuccess(true);
1668 }
1669
1670 /*
1671  * Implementation of 'open'.
1672  *
1673  */
1674 void cmd_open(I3_CMD) {
1675     LOG("opening new container\n");
1676     Con *con = tree_open_con(NULL, NULL);
1677     con->layout = L_SPLITH;
1678     con_focus(con);
1679
1680     y(map_open);
1681     ystr("success");
1682     y(bool, true);
1683     ystr("id");
1684     y(integer, (long int)con);
1685     y(map_close);
1686
1687     cmd_output->needs_tree_render = true;
1688 }
1689
1690 /*
1691  * Implementation of 'focus output <output>'.
1692  *
1693  */
1694 void cmd_focus_output(I3_CMD, char *name) {
1695     owindow *current;
1696
1697     DLOG("name = %s\n", name);
1698
1699     HANDLE_EMPTY_MATCH;
1700
1701     /* get the output */
1702     Output *current_output = NULL;
1703     Output *output;
1704
1705     TAILQ_FOREACH(current, &owindows, owindows)
1706     current_output = get_output_of_con(current->con);
1707     assert(current_output != NULL);
1708
1709     output = get_output_from_string(current_output, name);
1710
1711     if (!output) {
1712         LOG("No such output found.\n");
1713         ysuccess(false);
1714         return;
1715     }
1716
1717     /* get visible workspace on output */
1718     Con *ws = NULL;
1719     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1720     if (!ws) {
1721         ysuccess(false);
1722         return;
1723     }
1724
1725     workspace_show(ws);
1726
1727     cmd_output->needs_tree_render = true;
1728     // XXX: default reply for now, make this a better reply
1729     ysuccess(true);
1730 }
1731
1732 /*
1733  * Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
1734  *
1735  */
1736 void cmd_move_window_to_position(I3_CMD, char *method, char *cx, char *cy) {
1737     int x = atoi(cx);
1738     int y = atoi(cy);
1739     bool has_error = false;
1740
1741     owindow *current;
1742     HANDLE_EMPTY_MATCH;
1743
1744     TAILQ_FOREACH(current, &owindows, owindows) {
1745         if (!con_is_floating(current->con)) {
1746             ELOG("Cannot change position. The window/container is not floating\n");
1747
1748             if (!has_error) {
1749                 yerror("Cannot change position of a window/container because it is not floating.");
1750                 has_error = true;
1751             }
1752
1753             continue;
1754         }
1755
1756         if (strcmp(method, "absolute") == 0) {
1757             current->con->parent->rect.x = x;
1758             current->con->parent->rect.y = y;
1759
1760             DLOG("moving to absolute position %d %d\n", x, y);
1761             floating_maybe_reassign_ws(current->con->parent);
1762             cmd_output->needs_tree_render = true;
1763         }
1764
1765         if (strcmp(method, "position") == 0) {
1766             Rect newrect = current->con->parent->rect;
1767
1768             DLOG("moving to position %d %d\n", x, y);
1769             newrect.x = x;
1770             newrect.y = y;
1771
1772             floating_reposition(current->con->parent, newrect);
1773         }
1774     }
1775
1776     // XXX: default reply for now, make this a better reply
1777     if (!has_error)
1778         ysuccess(true);
1779 }
1780
1781 /*
1782  * Implementation of 'move [window|container] [to] [absolute] position center
1783  *
1784  */
1785 void cmd_move_window_to_center(I3_CMD, char *method) {
1786     if (!con_is_floating(focused)) {
1787         ELOG("Cannot change position. The window/container is not floating\n");
1788         yerror("Cannot change position. The window/container is not floating.");
1789         return;
1790     }
1791
1792     if (strcmp(method, "absolute") == 0) {
1793         DLOG("moving to absolute center\n");
1794         floating_center(focused->parent, croot->rect);
1795
1796         floating_maybe_reassign_ws(focused->parent);
1797         cmd_output->needs_tree_render = true;
1798     }
1799
1800     if (strcmp(method, "position") == 0) {
1801         DLOG("moving to center\n");
1802         floating_center(focused->parent, con_get_workspace(focused)->rect);
1803
1804         cmd_output->needs_tree_render = true;
1805     }
1806
1807     // XXX: default reply for now, make this a better reply
1808     ysuccess(true);
1809 }
1810
1811 /*
1812  * Implementation of 'move scratchpad'.
1813  *
1814  */
1815 void cmd_move_scratchpad(I3_CMD) {
1816     DLOG("should move window to scratchpad\n");
1817     owindow *current;
1818
1819     HANDLE_EMPTY_MATCH;
1820
1821     TAILQ_FOREACH(current, &owindows, owindows) {
1822         DLOG("matching: %p / %s\n", current->con, current->con->name);
1823         scratchpad_move(current->con);
1824     }
1825
1826     cmd_output->needs_tree_render = true;
1827     // XXX: default reply for now, make this a better reply
1828     ysuccess(true);
1829 }
1830
1831 /*
1832  * Implementation of 'scratchpad show'.
1833  *
1834  */
1835 void cmd_scratchpad_show(I3_CMD) {
1836     DLOG("should show scratchpad window\n");
1837     owindow *current;
1838
1839     if (match_is_empty(current_match)) {
1840         scratchpad_show(NULL);
1841     } else {
1842         TAILQ_FOREACH(current, &owindows, owindows) {
1843             DLOG("matching: %p / %s\n", current->con, current->con->name);
1844             scratchpad_show(current->con);
1845         }
1846     }
1847
1848     cmd_output->needs_tree_render = true;
1849     // XXX: default reply for now, make this a better reply
1850     ysuccess(true);
1851 }
1852
1853 /*
1854  * Implementation of 'rename workspace [<name>] to <name>'
1855  *
1856  */
1857 void cmd_rename_workspace(I3_CMD, char *old_name, char *new_name) {
1858     if (strncasecmp(new_name, "__", strlen("__")) == 0) {
1859         LOG("Cannot rename workspace to \"%s\": names starting with __ are i3-internal.", new_name);
1860         ysuccess(false);
1861         return;
1862     }
1863     if (old_name) {
1864         LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1865     } else {
1866         LOG("Renaming current workspace to \"%s\"\n", new_name);
1867     }
1868
1869     Con *output, *workspace = NULL;
1870     if (old_name) {
1871         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1872         GREP_FIRST(workspace, output_get_content(output),
1873                    !strcasecmp(child->name, old_name));
1874     } else {
1875         workspace = con_get_workspace(focused);
1876         old_name = workspace->name;
1877     }
1878
1879     if (!workspace) {
1880         yerror("Old workspace \"%s\" not found", old_name);
1881         return;
1882     }
1883
1884     Con *check_dest = NULL;
1885     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1886     GREP_FIRST(check_dest, output_get_content(output),
1887                !strcasecmp(child->name, new_name));
1888
1889     if (check_dest != NULL) {
1890         yerror("New workspace \"%s\" already exists", new_name);
1891         return;
1892     }
1893
1894     /* Change the name and try to parse it as a number. */
1895     FREE(workspace->name);
1896     workspace->name = sstrdup(new_name);
1897
1898     workspace->num = ws_name_to_number(new_name);
1899     LOG("num = %d\n", workspace->num);
1900
1901     /* By re-attaching, the sort order will be correct afterwards. */
1902     Con *previously_focused = focused;
1903     Con *parent = workspace->parent;
1904     con_detach(workspace);
1905     con_attach(workspace, parent, false);
1906
1907     /* Move the workspace to the correct output if it has an assignment */
1908     struct Workspace_Assignment *assignment = NULL;
1909     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1910         if (assignment->output == NULL)
1911             continue;
1912         if (strcmp(assignment->name, workspace->name) != 0 && (!name_is_digits(assignment->name) || ws_name_to_number(assignment->name) != workspace->num)) {
1913             continue;
1914         }
1915
1916         workspace_move_to_output(workspace, assignment->output);
1917
1918         if (previously_focused)
1919             workspace_show(con_get_workspace(previously_focused));
1920
1921         break;
1922     }
1923
1924     /* Restore the previous focus since con_attach messes with the focus. */
1925     con_focus(previously_focused);
1926
1927     cmd_output->needs_tree_render = true;
1928     ysuccess(true);
1929
1930     ipc_send_workspace_event("rename", workspace, NULL);
1931     ewmh_update_desktop_names();
1932     ewmh_update_desktop_viewport();
1933     ewmh_update_current_desktop();
1934
1935     startup_sequence_rename_workspace(old_name, new_name);
1936 }
1937
1938 /*
1939  * Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'
1940  *
1941  */
1942 bool cmd_bar_mode(char *bar_mode, char *bar_id) {
1943     int mode = M_DOCK;
1944     bool toggle = false;
1945     if (strcmp(bar_mode, "dock") == 0)
1946         mode = M_DOCK;
1947     else if (strcmp(bar_mode, "hide") == 0)
1948         mode = M_HIDE;
1949     else if (strcmp(bar_mode, "invisible") == 0)
1950         mode = M_INVISIBLE;
1951     else if (strcmp(bar_mode, "toggle") == 0)
1952         toggle = true;
1953     else {
1954         ELOG("Unknown bar mode \"%s\", this is a mismatch between code and parser spec.\n", bar_mode);
1955         return false;
1956     }
1957
1958     bool changed_sth = false;
1959     Barconfig *current = NULL;
1960     TAILQ_FOREACH(current, &barconfigs, configs) {
1961         if (bar_id && strcmp(current->id, bar_id) != 0)
1962             continue;
1963
1964         if (toggle)
1965             mode = (current->mode + 1) % 2;
1966
1967         DLOG("Changing bar mode of bar_id '%s' to '%s (%d)'\n", current->id, bar_mode, mode);
1968         current->mode = mode;
1969         changed_sth = true;
1970
1971         if (bar_id)
1972             break;
1973     }
1974
1975     if (bar_id && !changed_sth) {
1976         DLOG("Changing bar mode of bar_id %s failed, bar_id not found.\n", bar_id);
1977         return false;
1978     }
1979
1980     return true;
1981 }
1982
1983 /*
1984  * Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'
1985  *
1986  */
1987 bool cmd_bar_hidden_state(char *bar_hidden_state, char *bar_id) {
1988     int hidden_state = S_SHOW;
1989     bool toggle = false;
1990     if (strcmp(bar_hidden_state, "hide") == 0)
1991         hidden_state = S_HIDE;
1992     else if (strcmp(bar_hidden_state, "show") == 0)
1993         hidden_state = S_SHOW;
1994     else if (strcmp(bar_hidden_state, "toggle") == 0)
1995         toggle = true;
1996     else {
1997         ELOG("Unknown bar state \"%s\", this is a mismatch between code and parser spec.\n", bar_hidden_state);
1998         return false;
1999     }
2000
2001     bool changed_sth = false;
2002     Barconfig *current = NULL;
2003     TAILQ_FOREACH(current, &barconfigs, configs) {
2004         if (bar_id && strcmp(current->id, bar_id) != 0)
2005             continue;
2006
2007         if (toggle)
2008             hidden_state = (current->hidden_state + 1) % 2;
2009
2010         DLOG("Changing bar hidden_state of bar_id '%s' to '%s (%d)'\n", current->id, bar_hidden_state, hidden_state);
2011         current->hidden_state = hidden_state;
2012         changed_sth = true;
2013
2014         if (bar_id)
2015             break;
2016     }
2017
2018     if (bar_id && !changed_sth) {
2019         DLOG("Changing bar hidden_state of bar_id %s failed, bar_id not found.\n", bar_id);
2020         return false;
2021     }
2022
2023     return true;
2024 }
2025
2026 /*
2027  * Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) [<bar_id>]'
2028  *
2029  */
2030 void cmd_bar(I3_CMD, char *bar_type, char *bar_value, char *bar_id) {
2031     bool ret;
2032     if (strcmp(bar_type, "mode") == 0)
2033         ret = cmd_bar_mode(bar_value, bar_id);
2034     else if (strcmp(bar_type, "hidden_state") == 0)
2035         ret = cmd_bar_hidden_state(bar_value, bar_id);
2036     else {
2037         ELOG("Unknown bar option type \"%s\", this is a mismatch between code and parser spec.\n", bar_type);
2038         ret = false;
2039     }
2040
2041     ysuccess(ret);
2042     if (!ret)
2043         return;
2044
2045     update_barconfig();
2046 }
2047
2048 /*
2049  * Implementation of 'shmlog <size>|toggle|on|off'
2050  *
2051  */
2052 void cmd_shmlog(I3_CMD, char *argument) {
2053     if (!strcmp(argument, "toggle"))
2054         /* Toggle shm log, if size is not 0. If it is 0, set it to default. */
2055         shmlog_size = shmlog_size ? -shmlog_size : default_shmlog_size;
2056     else if (!strcmp(argument, "on"))
2057         shmlog_size = default_shmlog_size;
2058     else if (!strcmp(argument, "off"))
2059         shmlog_size = 0;
2060     else {
2061         /* If shm logging now, restart logging with the new size. */
2062         if (shmlog_size > 0) {
2063             shmlog_size = 0;
2064             LOG("Restarting shm logging...\n");
2065             init_logging();
2066         }
2067         shmlog_size = atoi(argument);
2068         /* Make a weakly attempt at ensuring the argument is valid. */
2069         if (shmlog_size <= 0)
2070             shmlog_size = default_shmlog_size;
2071     }
2072     LOG("%s shm logging\n", shmlog_size > 0 ? "Enabling" : "Disabling");
2073     init_logging();
2074     update_shmlog_atom();
2075     // XXX: default reply for now, make this a better reply
2076     ysuccess(true);
2077 }
2078
2079 /*
2080  * Implementation of 'debuglog toggle|on|off'
2081  *
2082  */
2083 void cmd_debuglog(I3_CMD, char *argument) {
2084     bool logging = get_debug_logging();
2085     if (!strcmp(argument, "toggle")) {
2086         LOG("%s debug logging\n", logging ? "Disabling" : "Enabling");
2087         set_debug_logging(!logging);
2088     } else if (!strcmp(argument, "on") && !logging) {
2089         LOG("Enabling debug logging\n");
2090         set_debug_logging(true);
2091     } else if (!strcmp(argument, "off") && logging) {
2092         LOG("Disabling debug logging\n");
2093         set_debug_logging(false);
2094     }
2095     // XXX: default reply for now, make this a better reply
2096     ysuccess(true);
2097 }