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