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