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