]> git.sur5r.net Git - i3/i3/blob - src/commands.c
code style fixes for the previous commit
[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     floating_check_size(floating_con);
592 }
593
594 static bool cmd_resize_tiling_direction(I3_CMD, Con *current, char *way, char *direction, int ppt) {
595     LOG("tiling resize\n");
596     /* get the appropriate current container (skip stacked/tabbed cons) */
597     Con *other = NULL;
598     double percentage = 0;
599     while (current->parent->layout == L_STACKED ||
600            current->parent->layout == L_TABBED)
601         current = current->parent;
602
603     /* Then further go up until we find one with the matching orientation. */
604     orientation_t search_orientation =
605         (strcmp(direction, "left") == 0 || strcmp(direction, "right") == 0 ? HORIZ : VERT);
606
607     do {
608         if (con_orientation(current->parent) != search_orientation) {
609             current = current->parent;
610             continue;
611         }
612
613         /* get the default percentage */
614         int children = con_num_children(current->parent);
615         LOG("ins. %d children\n", children);
616         percentage = 1.0 / children;
617         LOG("default percentage = %f\n", percentage);
618
619         orientation_t orientation = con_orientation(current->parent);
620
621         if ((orientation == HORIZ &&
622              (strcmp(direction, "up") == 0 || strcmp(direction, "down") == 0)) ||
623             (orientation == VERT &&
624              (strcmp(direction, "left") == 0 || strcmp(direction, "right") == 0))) {
625             LOG("You cannot resize in that direction. Your focus is in a %s split container currently.\n",
626                 (orientation == HORIZ ? "horizontal" : "vertical"));
627             ysuccess(false);
628             return false;
629         }
630
631         if (strcmp(direction, "up") == 0 || strcmp(direction, "left") == 0) {
632             other = TAILQ_PREV(current, nodes_head, nodes);
633         } else {
634             other = TAILQ_NEXT(current, nodes);
635         }
636         if (other == TAILQ_END(workspaces)) {
637             LOG("No other container in this direction found, trying to look further up in the tree...\n");
638             current = current->parent;
639             continue;
640         }
641         break;
642     } while (current->type != CT_WORKSPACE &&
643              current->type != CT_FLOATING_CON);
644
645     if (other == NULL) {
646         LOG("No other container in this direction found, trying to look further up in the tree...\n");
647         ysuccess(false);
648         return false;
649     }
650
651     LOG("other->percent = %f\n", other->percent);
652     LOG("current->percent before = %f\n", current->percent);
653     if (current->percent == 0.0)
654         current->percent = percentage;
655     if (other->percent == 0.0)
656         other->percent = percentage;
657     double new_current_percent = current->percent + ((double)ppt / 100.0);
658     double new_other_percent = other->percent - ((double)ppt / 100.0);
659     LOG("new_current_percent = %f\n", new_current_percent);
660     LOG("new_other_percent = %f\n", new_other_percent);
661     /* Ensure that the new percentages are positive and greater than
662      * 0.05 to have a reasonable minimum size. */
663     if (definitelyGreaterThan(new_current_percent, 0.05, DBL_EPSILON) &&
664         definitelyGreaterThan(new_other_percent, 0.05, DBL_EPSILON)) {
665         current->percent += ((double)ppt / 100.0);
666         other->percent -= ((double)ppt / 100.0);
667         LOG("current->percent after = %f\n", current->percent);
668         LOG("other->percent after = %f\n", other->percent);
669     } else {
670         LOG("Not resizing, already at minimum size\n");
671     }
672
673     return true;
674 }
675
676 static bool cmd_resize_tiling_width_height(I3_CMD, Con *current, char *way, char *direction, int ppt) {
677     LOG("width/height resize\n");
678     /* get the appropriate current container (skip stacked/tabbed cons) */
679     while (current->parent->layout == L_STACKED ||
680            current->parent->layout == L_TABBED)
681         current = current->parent;
682
683     /* Then further go up until we find one with the matching orientation. */
684     orientation_t search_orientation =
685         (strcmp(direction, "width") == 0 ? HORIZ : VERT);
686
687     while (current->type != CT_WORKSPACE &&
688            current->type != CT_FLOATING_CON &&
689            con_orientation(current->parent) != search_orientation)
690         current = current->parent;
691
692     /* get the default percentage */
693     int children = con_num_children(current->parent);
694     LOG("ins. %d children\n", children);
695     double percentage = 1.0 / children;
696     LOG("default percentage = %f\n", percentage);
697
698     orientation_t orientation = con_orientation(current->parent);
699
700     if ((orientation == HORIZ &&
701          strcmp(direction, "height") == 0) ||
702         (orientation == VERT &&
703          strcmp(direction, "width") == 0)) {
704         LOG("You cannot resize in that direction. Your focus is in a %s split container currently.\n",
705             (orientation == HORIZ ? "horizontal" : "vertical"));
706         ysuccess(false);
707         return false;
708     }
709
710     if (children == 1) {
711         LOG("This is the only container, cannot resize.\n");
712         ysuccess(false);
713         return false;
714     }
715
716     /* Ensure all the other children have a percentage set. */
717     Con *child;
718     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
719         LOG("child->percent = %f (child %p)\n", child->percent, child);
720         if (child->percent == 0.0)
721             child->percent = percentage;
722     }
723
724     double new_current_percent = current->percent + ((double)ppt / 100.0);
725     double subtract_percent = ((double)ppt / 100.0) / (children - 1);
726     LOG("new_current_percent = %f\n", new_current_percent);
727     LOG("subtract_percent = %f\n", subtract_percent);
728     /* Ensure that the new percentages are positive and greater than
729      * 0.05 to have a reasonable minimum size. */
730     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
731         if (child == current)
732             continue;
733         if (!definitelyGreaterThan(child->percent - subtract_percent, 0.05, DBL_EPSILON)) {
734             LOG("Not resizing, already at minimum size (child %p would end up with a size of %.f\n", child, child->percent - subtract_percent);
735             ysuccess(false);
736             return false;
737         }
738     }
739     if (!definitelyGreaterThan(new_current_percent, 0.05, DBL_EPSILON)) {
740         LOG("Not resizing, already at minimum size\n");
741         ysuccess(false);
742         return false;
743     }
744
745     current->percent += ((double)ppt / 100.0);
746     LOG("current->percent after = %f\n", current->percent);
747
748     TAILQ_FOREACH(child, &(current->parent->nodes_head), nodes) {
749         if (child == current)
750             continue;
751         child->percent -= subtract_percent;
752         LOG("child->percent after (%p) = %f\n", child, child->percent);
753     }
754
755     return true;
756 }
757
758 /*
759  * Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
760  *
761  */
762 void cmd_resize(I3_CMD, char *way, char *direction, char *resize_px, char *resize_ppt) {
763     /* resize <grow|shrink> <direction> [<px> px] [or <ppt> ppt] */
764     DLOG("resizing in way %s, direction %s, px %s or ppt %s\n", way, direction, resize_px, resize_ppt);
765     // 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
766     int px = atoi(resize_px);
767     int ppt = atoi(resize_ppt);
768     if (strcmp(way, "shrink") == 0) {
769         px *= -1;
770         ppt *= -1;
771     }
772
773     HANDLE_EMPTY_MATCH;
774
775     owindow *current;
776     TAILQ_FOREACH(current, &owindows, owindows) {
777         Con *floating_con;
778         if ((floating_con = con_inside_floating(current->con))) {
779             cmd_resize_floating(current_match, cmd_output, way, direction, floating_con, px);
780         } else {
781             if (strcmp(direction, "width") == 0 ||
782                 strcmp(direction, "height") == 0) {
783                 if (!cmd_resize_tiling_width_height(current_match, cmd_output, current->con, way, direction, ppt))
784                     return;
785             } else {
786                 if (!cmd_resize_tiling_direction(current_match, cmd_output, current->con, way, direction, ppt))
787                     return;
788             }
789         }
790     }
791
792     cmd_output->needs_tree_render = true;
793     // XXX: default reply for now, make this a better reply
794     ysuccess(true);
795 }
796
797 /*
798  * Implementation of 'border normal|none|1pixel|toggle|pixel'.
799  *
800  */
801 void cmd_border(I3_CMD, char *border_style_str, char *border_width ) {
802     DLOG("border style should be changed to %s with border width %s\n", border_style_str, border_width);
803     owindow *current;
804
805     HANDLE_EMPTY_MATCH;
806
807     TAILQ_FOREACH(current, &owindows, owindows) {
808         DLOG("matching: %p / %s\n", current->con, current->con->name);
809         int border_style = current->con->border_style;
810         char *end;
811         int tmp_border_width = -1;
812         tmp_border_width = strtol(border_width, &end, 10);
813         if (end == border_width) {
814             /* no valid digits found */
815             tmp_border_width = -1;
816         }
817         if (strcmp(border_style_str, "toggle") == 0) {
818             border_style++;
819             border_style %= 3;
820             if (border_style == BS_NORMAL)
821                 tmp_border_width = 2;
822             else if (border_style == BS_NONE)
823                 tmp_border_width = 0;
824             else if (border_style == BS_PIXEL)
825                 tmp_border_width = 1;
826         } else {
827             if (strcmp(border_style_str, "normal") == 0)
828                 border_style = BS_NORMAL;
829             else if (strcmp(border_style_str, "pixel") == 0)
830                 border_style = BS_PIXEL;
831             else if (strcmp(border_style_str, "1pixel") == 0){
832                 border_style = BS_PIXEL;
833                 tmp_border_width = 1;
834             } else if (strcmp(border_style_str, "none") == 0)
835                 border_style = BS_NONE;
836             else {
837                 ELOG("BUG: called with border_style=%s\n", border_style_str);
838                 ysuccess(false);
839                 return;
840             }
841         }
842         con_set_border_style(current->con, border_style, tmp_border_width);
843     }
844
845     cmd_output->needs_tree_render = true;
846     // XXX: default reply for now, make this a better reply
847     ysuccess(true);
848 }
849
850 /*
851  * Implementation of 'nop <comment>'.
852  *
853  */
854 void cmd_nop(I3_CMD, char *comment) {
855     LOG("-------------------------------------------------\n");
856     LOG("  NOP: %s\n", comment);
857     LOG("-------------------------------------------------\n");
858 }
859
860 /*
861  * Implementation of 'append_layout <path>'.
862  *
863  */
864 void cmd_append_layout(I3_CMD, char *path) {
865     LOG("Appending layout \"%s\"\n", path);
866     tree_append_json(path);
867
868     cmd_output->needs_tree_render = true;
869     // XXX: default reply for now, make this a better reply
870     ysuccess(true);
871 }
872
873 /*
874  * Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
875  *
876  */
877 void cmd_workspace(I3_CMD, char *which) {
878     Con *ws;
879
880     DLOG("which=%s\n", which);
881
882     if (strcmp(which, "next") == 0)
883         ws = workspace_next();
884     else if (strcmp(which, "prev") == 0)
885         ws = workspace_prev();
886     else if (strcmp(which, "next_on_output") == 0)
887         ws = workspace_next_on_output();
888     else if (strcmp(which, "prev_on_output") == 0)
889         ws = workspace_prev_on_output();
890     else {
891         ELOG("BUG: called with which=%s\n", which);
892         ysuccess(false);
893         return;
894     }
895
896     workspace_show(ws);
897
898     cmd_output->needs_tree_render = true;
899     // XXX: default reply for now, make this a better reply
900     ysuccess(true);
901 }
902
903 /*
904  * Implementation of 'workspace number <name>'
905  *
906  */
907 void cmd_workspace_number(I3_CMD, char *which) {
908     Con *output, *workspace = NULL;
909
910     char *endptr = NULL;
911     long parsed_num = strtol(which, &endptr, 10);
912     if (parsed_num == LONG_MIN ||
913         parsed_num == LONG_MAX ||
914         parsed_num < 0 ||
915         endptr == which) {
916         LOG("Could not parse initial part of \"%s\" as a number.\n", which);
917         y(map_open);
918         ystr("success");
919         y(bool, false);
920         ystr("error");
921         // TODO: better error message
922         ystr("Could not parse number");
923         y(map_close);
924
925         return;
926     }
927
928     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
929         GREP_FIRST(workspace, output_get_content(output),
930             child->num == parsed_num);
931
932     if (!workspace) {
933         LOG("There is no workspace with number %ld, creating a new one.\n", parsed_num);
934         ysuccess(true);
935         workspace_show_by_name(which);
936         cmd_output->needs_tree_render = true;
937         return;
938     }
939     if (maybe_back_and_forth(cmd_output, workspace->name))
940         return;
941     workspace_show(workspace);
942
943     cmd_output->needs_tree_render = true;
944     // XXX: default reply for now, make this a better reply
945     ysuccess(true);
946 }
947
948 /*
949  * Implementation of 'workspace back_and_forth'.
950  *
951  */
952 void cmd_workspace_back_and_forth(I3_CMD) {
953     workspace_back_and_forth();
954
955     cmd_output->needs_tree_render = true;
956     // XXX: default reply for now, make this a better reply
957     ysuccess(true);
958 }
959
960 /*
961  * Implementation of 'workspace <name>'
962  *
963  */
964 void cmd_workspace_name(I3_CMD, char *name) {
965     if (strncasecmp(name, "__i3_", strlen("__i3_")) == 0) {
966         LOG("You cannot switch to the i3 internal workspaces.\n");
967         ysuccess(false);
968         return;
969     }
970
971     DLOG("should switch to workspace %s\n", name);
972     if (maybe_back_and_forth(cmd_output, name))
973        return;
974     workspace_show_by_name(name);
975
976     cmd_output->needs_tree_render = true;
977     // XXX: default reply for now, make this a better reply
978     ysuccess(true);
979 }
980
981 /*
982  * Implementation of 'mark <mark>'
983  *
984  */
985 void cmd_mark(I3_CMD, char *mark) {
986     DLOG("Clearing all windows which have that mark first\n");
987
988     Con *con;
989     TAILQ_FOREACH(con, &all_cons, all_cons) {
990         if (con->mark && strcmp(con->mark, mark) == 0)
991             FREE(con->mark);
992     }
993
994     DLOG("marking window with str %s\n", mark);
995     owindow *current;
996
997     HANDLE_EMPTY_MATCH;
998
999     TAILQ_FOREACH(current, &owindows, owindows) {
1000         DLOG("matching: %p / %s\n", current->con, current->con->name);
1001         current->con->mark = sstrdup(mark);
1002     }
1003
1004     cmd_output->needs_tree_render = true;
1005     // XXX: default reply for now, make this a better reply
1006     ysuccess(true);
1007 }
1008
1009 /*
1010  * Implementation of 'mode <string>'.
1011  *
1012  */
1013 void cmd_mode(I3_CMD, char *mode) {
1014     DLOG("mode=%s\n", mode);
1015     switch_mode(mode);
1016
1017     // XXX: default reply for now, make this a better reply
1018     ysuccess(true);
1019 }
1020
1021 /*
1022  * Implementation of 'move [window|container] [to] output <str>'.
1023  *
1024  */
1025 void cmd_move_con_to_output(I3_CMD, char *name) {
1026     owindow *current;
1027
1028     DLOG("should move window to output %s\n", name);
1029
1030     HANDLE_EMPTY_MATCH;
1031
1032     /* get the output */
1033     Output *current_output = NULL;
1034     Output *output;
1035
1036     // TODO: fix the handling of criteria
1037     TAILQ_FOREACH(current, &owindows, owindows)
1038         current_output = get_output_containing(current->con->rect.x, current->con->rect.y);
1039
1040     assert(current_output != NULL);
1041
1042     // TODO: clean this up with commands.spec as soon as we switched away from the lex/yacc command parser
1043     if (strcasecmp(name, "up") == 0)
1044         output = get_output_next(D_UP, current_output, CLOSEST_OUTPUT);
1045     else if (strcasecmp(name, "down") == 0)
1046         output = get_output_next(D_DOWN, current_output, CLOSEST_OUTPUT);
1047     else if (strcasecmp(name, "left") == 0)
1048         output = get_output_next(D_LEFT, current_output, CLOSEST_OUTPUT);
1049     else if (strcasecmp(name, "right") == 0)
1050         output = get_output_next(D_RIGHT, current_output, CLOSEST_OUTPUT);
1051     else
1052         output = get_output_by_name(name);
1053
1054     if (!output) {
1055         LOG("No such output found.\n");
1056         ysuccess(false);
1057         return;
1058     }
1059
1060     /* get visible workspace on output */
1061     Con *ws = NULL;
1062     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1063     if (!ws) {
1064         ysuccess(false);
1065         return;
1066     }
1067
1068     TAILQ_FOREACH(current, &owindows, owindows) {
1069         DLOG("matching: %p / %s\n", current->con, current->con->name);
1070         con_move_to_workspace(current->con, ws, true, false);
1071     }
1072
1073     cmd_output->needs_tree_render = true;
1074     // XXX: default reply for now, make this a better reply
1075     ysuccess(true);
1076 }
1077
1078 /*
1079  * Implementation of 'floating enable|disable|toggle'
1080  *
1081  */
1082 void cmd_floating(I3_CMD, char *floating_mode) {
1083     owindow *current;
1084
1085     DLOG("floating_mode=%s\n", floating_mode);
1086
1087     HANDLE_EMPTY_MATCH;
1088
1089     TAILQ_FOREACH(current, &owindows, owindows) {
1090         DLOG("matching: %p / %s\n", current->con, current->con->name);
1091         if (strcmp(floating_mode, "toggle") == 0) {
1092             DLOG("should toggle mode\n");
1093             toggle_floating_mode(current->con, false);
1094         } else {
1095             DLOG("should switch mode to %s\n", floating_mode);
1096             if (strcmp(floating_mode, "enable") == 0) {
1097                 floating_enable(current->con, false);
1098             } else {
1099                 floating_disable(current->con, false);
1100             }
1101         }
1102     }
1103
1104     cmd_output->needs_tree_render = true;
1105     // XXX: default reply for now, make this a better reply
1106     ysuccess(true);
1107 }
1108
1109 /*
1110  * Implementation of 'move workspace to [output] <str>'.
1111  *
1112  */
1113 void cmd_move_workspace_to_output(I3_CMD, char *name) {
1114     DLOG("should move workspace to output %s\n", name);
1115
1116     HANDLE_EMPTY_MATCH;
1117
1118     owindow *current;
1119     TAILQ_FOREACH(current, &owindows, owindows) {
1120         Output *current_output = get_output_containing(current->con->rect.x,
1121                                                        current->con->rect.y);
1122         if (!current_output) {
1123             ELOG("Cannot get current output. This is a bug in i3.\n");
1124             ysuccess(false);
1125             return;
1126         }
1127         Output *output = get_output_from_string(current_output, name);
1128         if (!output) {
1129             ELOG("Could not get output from string \"%s\"\n", name);
1130             ysuccess(false);
1131             return;
1132         }
1133
1134         Con *content = output_get_content(output->con);
1135         LOG("got output %p with content %p\n", output, content);
1136
1137         Con *previously_visible_ws = TAILQ_FIRST(&(content->nodes_head));
1138         LOG("Previously visible workspace = %p / %s\n", previously_visible_ws, previously_visible_ws->name);
1139
1140         Con *ws = con_get_workspace(current->con);
1141         LOG("should move workspace %p / %s\n", ws, ws->name);
1142         bool workspace_was_visible = workspace_is_visible(ws);
1143
1144         if (con_num_children(ws->parent) == 1) {
1145             LOG("Creating a new workspace to replace \"%s\" (last on its output).\n", ws->name);
1146
1147             /* check if we can find a workspace assigned to this output */
1148             bool used_assignment = false;
1149             struct Workspace_Assignment *assignment;
1150             TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1151                 if (strcmp(assignment->output, current_output->name) != 0)
1152                     continue;
1153
1154                 /* check if this workspace is already attached to the tree */
1155                 Con *workspace = NULL, *out;
1156                 TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
1157                     GREP_FIRST(workspace, output_get_content(out),
1158                                !strcasecmp(child->name, assignment->name));
1159                 if (workspace != NULL)
1160                     continue;
1161
1162                 /* so create the workspace referenced to by this assignment */
1163                 LOG("Creating workspace from assignment %s.\n", assignment->name);
1164                 workspace_get(assignment->name, NULL);
1165                 used_assignment = true;
1166                 break;
1167             }
1168
1169             /* if we couldn't create the workspace using an assignment, create
1170              * it on the output */
1171             if (!used_assignment)
1172                 create_workspace_on_output(current_output, ws->parent);
1173
1174             /* notify the IPC listeners */
1175             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
1176         }
1177         DLOG("Detaching\n");
1178
1179         /* detach from the old output and attach to the new output */
1180         Con *old_content = ws->parent;
1181         con_detach(ws);
1182         if (workspace_was_visible) {
1183             /* The workspace which we just detached was visible, so focus
1184              * the next one in the focus-stack. */
1185             Con *focus_ws = TAILQ_FIRST(&(old_content->focus_head));
1186             LOG("workspace was visible, focusing %p / %s now\n", focus_ws, focus_ws->name);
1187             workspace_show(focus_ws);
1188         }
1189         con_attach(ws, content, false);
1190
1191         /* fix the coordinates of the floating containers */
1192         Con *floating_con;
1193         TAILQ_FOREACH(floating_con, &(ws->floating_head), floating_windows)
1194             floating_fix_coordinates(floating_con, &(old_content->rect), &(content->rect));
1195
1196         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"move\"}");
1197         if (workspace_was_visible) {
1198             /* Focus the moved workspace on the destination output. */
1199             workspace_show(ws);
1200         }
1201
1202         /* NB: We cannot simply work with previously_visible_ws since it might
1203          * have been cleaned up by workspace_show() already, depending on the
1204          * focus order/number of other workspaces on the output.
1205          * Instead, we loop through the available workspaces and only work with
1206          * previously_visible_ws if we still find it. */
1207         TAILQ_FOREACH(ws, &(content->nodes_head), nodes) {
1208             if (ws != previously_visible_ws)
1209                 continue;
1210
1211             /* Call the on_remove_child callback of the workspace which previously
1212              * was visible on the destination output. Since it is no longer
1213              * visible, it might need to get cleaned up. */
1214             CALL(previously_visible_ws, on_remove_child);
1215             break;
1216         }
1217     }
1218
1219     cmd_output->needs_tree_render = true;
1220     // XXX: default reply for now, make this a better reply
1221     ysuccess(true);
1222 }
1223
1224 /*
1225  * Implementation of 'split v|h|vertical|horizontal'.
1226  *
1227  */
1228 void cmd_split(I3_CMD, char *direction) {
1229     owindow *current;
1230     /* TODO: use matches */
1231     LOG("splitting in direction %c\n", direction[0]);
1232     if (match_is_empty(current_match))
1233         tree_split(focused, (direction[0] == 'v' ? VERT : HORIZ));
1234     else {
1235         TAILQ_FOREACH(current, &owindows, owindows) {
1236             DLOG("matching: %p / %s\n", current->con, current->con->name);
1237             tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1238         }
1239     }
1240
1241     cmd_output->needs_tree_render = true;
1242     // XXX: default reply for now, make this a better reply
1243     ysuccess(true);
1244 }
1245
1246 /*
1247  * Implementation of 'kill [window|client]'.
1248  *
1249  */
1250 void cmd_kill(I3_CMD, char *kill_mode_str) {
1251     if (kill_mode_str == NULL)
1252         kill_mode_str = "window";
1253     owindow *current;
1254
1255     DLOG("kill_mode=%s\n", kill_mode_str);
1256
1257     int kill_mode;
1258     if (strcmp(kill_mode_str, "window") == 0)
1259         kill_mode = KILL_WINDOW;
1260     else if (strcmp(kill_mode_str, "client") == 0)
1261         kill_mode = KILL_CLIENT;
1262     else {
1263         ELOG("BUG: called with kill_mode=%s\n", kill_mode_str);
1264         ysuccess(false);
1265         return;
1266     }
1267
1268     /* check if the match is empty, not if the result is empty */
1269     if (match_is_empty(current_match))
1270         tree_close_con(kill_mode);
1271     else {
1272         TAILQ_FOREACH(current, &owindows, owindows) {
1273             DLOG("matching: %p / %s\n", current->con, current->con->name);
1274             tree_close(current->con, kill_mode, false, false);
1275         }
1276     }
1277
1278     cmd_output->needs_tree_render = true;
1279     // XXX: default reply for now, make this a better reply
1280     ysuccess(true);
1281 }
1282
1283 /*
1284  * Implementation of 'exec [--no-startup-id] <command>'.
1285  *
1286  */
1287 void cmd_exec(I3_CMD, char *nosn, char *command) {
1288     bool no_startup_id = (nosn != NULL);
1289
1290     DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1291     start_application(command, no_startup_id);
1292
1293     // XXX: default reply for now, make this a better reply
1294     ysuccess(true);
1295 }
1296
1297 /*
1298  * Implementation of 'focus left|right|up|down'.
1299  *
1300  */
1301 void cmd_focus_direction(I3_CMD, char *direction) {
1302     DLOG("direction = *%s*\n", direction);
1303
1304     if (strcmp(direction, "left") == 0)
1305         tree_next('p', HORIZ);
1306     else if (strcmp(direction, "right") == 0)
1307         tree_next('n', HORIZ);
1308     else if (strcmp(direction, "up") == 0)
1309         tree_next('p', VERT);
1310     else if (strcmp(direction, "down") == 0)
1311         tree_next('n', VERT);
1312     else {
1313         ELOG("Invalid focus direction (%s)\n", direction);
1314         ysuccess(false);
1315         return;
1316     }
1317
1318     cmd_output->needs_tree_render = true;
1319     // XXX: default reply for now, make this a better reply
1320     ysuccess(true);
1321 }
1322
1323 /*
1324  * Implementation of 'focus tiling|floating|mode_toggle'.
1325  *
1326  */
1327 void cmd_focus_window_mode(I3_CMD, char *window_mode) {
1328     DLOG("window_mode = %s\n", window_mode);
1329
1330     Con *ws = con_get_workspace(focused);
1331     Con *current;
1332     if (ws != NULL) {
1333         if (strcmp(window_mode, "mode_toggle") == 0) {
1334             current = TAILQ_FIRST(&(ws->focus_head));
1335             if (current != NULL && current->type == CT_FLOATING_CON)
1336                 window_mode = "tiling";
1337             else window_mode = "floating";
1338         }
1339         TAILQ_FOREACH(current, &(ws->focus_head), focused) {
1340             if ((strcmp(window_mode, "floating") == 0 && current->type != CT_FLOATING_CON) ||
1341                 (strcmp(window_mode, "tiling") == 0 && current->type == CT_FLOATING_CON))
1342                 continue;
1343
1344             con_focus(con_descend_focused(current));
1345             break;
1346         }
1347     }
1348
1349     cmd_output->needs_tree_render = true;
1350     // XXX: default reply for now, make this a better reply
1351     ysuccess(true);
1352 }
1353
1354 /*
1355  * Implementation of 'focus parent|child'.
1356  *
1357  */
1358 void cmd_focus_level(I3_CMD, char *level) {
1359     DLOG("level = %s\n", level);
1360     bool success = false;
1361
1362     /* Focusing the parent can only be allowed if the newly
1363      * focused container won't escape the fullscreen container. */
1364     if (strcmp(level, "parent") == 0) {
1365         if (focused && focused->parent) {
1366             if (con_fullscreen_permits_focusing(focused->parent))
1367                 success = level_up();
1368             else
1369                 ELOG("'focus parent': Currently in fullscreen, not going up\n");
1370         }
1371     }
1372
1373     /* Focusing a child should always be allowed. */
1374     else success = level_down();
1375
1376     cmd_output->needs_tree_render = success;
1377     // XXX: default reply for now, make this a better reply
1378     ysuccess(success);
1379 }
1380
1381 /*
1382  * Implementation of 'focus'.
1383  *
1384  */
1385 void cmd_focus(I3_CMD) {
1386     DLOG("current_match = %p\n", current_match);
1387
1388     if (match_is_empty(current_match)) {
1389         ELOG("You have to specify which window/container should be focused.\n");
1390         ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1391
1392         y(map_open);
1393         ystr("success");
1394         y(bool, false);
1395         ystr("error");
1396         ystr("You have to specify which window/container should be focused");
1397         y(map_close);
1398
1399         return;
1400     }
1401
1402     int count = 0;
1403     owindow *current;
1404     TAILQ_FOREACH(current, &owindows, owindows) {
1405         Con *ws = con_get_workspace(current->con);
1406         /* If no workspace could be found, this was a dock window.
1407          * Just skip it, you cannot focus dock windows. */
1408         if (!ws)
1409             continue;
1410
1411         /* Check the fullscreen focus constraints. */
1412         if (!con_fullscreen_permits_focusing(current->con)) {
1413             LOG("Cannot change focus while in fullscreen mode (fullscreen rules).\n");
1414             ysuccess(false);
1415             return;
1416         }
1417
1418         /* If the container is not on the current workspace,
1419          * workspace_show() will switch to a different workspace and (if
1420          * enabled) trigger a mouse pointer warp to the currently focused
1421          * container (!) on the target workspace.
1422          *
1423          * Therefore, before calling workspace_show(), we make sure that
1424          * 'current' will be focused on the workspace. However, we cannot
1425          * just con_focus(current) because then the pointer will not be
1426          * warped at all (the code thinks we are already there).
1427          *
1428          * So we focus 'current' to make it the currently focused window of
1429          * the target workspace, then revert focus. */
1430         Con *currently_focused = focused;
1431         con_focus(current->con);
1432         con_focus(currently_focused);
1433
1434         /* Now switch to the workspace, then focus */
1435         workspace_show(ws);
1436         LOG("focusing %p / %s\n", current->con, current->con->name);
1437         con_focus(current->con);
1438         count++;
1439     }
1440
1441     if (count > 1)
1442         LOG("WARNING: Your criteria for the focus command matches %d containers, "
1443             "while only exactly one container can be focused at a time.\n", count);
1444
1445     cmd_output->needs_tree_render = true;
1446     // XXX: default reply for now, make this a better reply
1447     ysuccess(true);
1448 }
1449
1450 /*
1451  * Implementation of 'fullscreen [global]'.
1452  *
1453  */
1454 void cmd_fullscreen(I3_CMD, char *fullscreen_mode) {
1455     if (fullscreen_mode == NULL)
1456         fullscreen_mode = "output";
1457     DLOG("toggling fullscreen, mode = %s\n", fullscreen_mode);
1458     owindow *current;
1459
1460     HANDLE_EMPTY_MATCH;
1461
1462     TAILQ_FOREACH(current, &owindows, owindows) {
1463         printf("matching: %p / %s\n", current->con, current->con->name);
1464         con_toggle_fullscreen(current->con, (strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT));
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  * Implementation of 'move <direction> [<pixels> [px]]'.
1474  *
1475  */
1476 void cmd_move_direction(I3_CMD, char *direction, char *move_px) {
1477     // 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
1478     int px = atoi(move_px);
1479
1480     /* TODO: make 'move' work with criteria. */
1481     DLOG("moving in direction %s, px %s\n", direction, move_px);
1482     if (con_is_floating(focused)) {
1483         DLOG("floating move with %d pixels\n", px);
1484         Rect newrect = focused->parent->rect;
1485         if (strcmp(direction, "left") == 0) {
1486             newrect.x -= px;
1487         } else if (strcmp(direction, "right") == 0) {
1488             newrect.x += px;
1489         } else if (strcmp(direction, "up") == 0) {
1490             newrect.y -= px;
1491         } else if (strcmp(direction, "down") == 0) {
1492             newrect.y += px;
1493         }
1494         floating_reposition(focused->parent, newrect);
1495     } else {
1496         tree_move((strcmp(direction, "right") == 0 ? D_RIGHT :
1497                    (strcmp(direction, "left") == 0 ? D_LEFT :
1498                     (strcmp(direction, "up") == 0 ? D_UP :
1499                      D_DOWN))));
1500         cmd_output->needs_tree_render = true;
1501     }
1502
1503     // XXX: default reply for now, make this a better reply
1504     ysuccess(true);
1505 }
1506
1507 /*
1508  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1509  *
1510  */
1511 void cmd_layout(I3_CMD, char *layout_str) {
1512     if (strcmp(layout_str, "stacking") == 0)
1513         layout_str = "stacked";
1514     owindow *current;
1515     int layout;
1516     /* default is a special case which will be handled in con_set_layout(). */
1517     if (strcmp(layout_str, "default") == 0)
1518         layout = L_DEFAULT;
1519     else if (strcmp(layout_str, "stacked") == 0)
1520         layout = L_STACKED;
1521     else if (strcmp(layout_str, "tabbed") == 0)
1522         layout = L_TABBED;
1523     else if (strcmp(layout_str, "splitv") == 0)
1524         layout = L_SPLITV;
1525     else if (strcmp(layout_str, "splith") == 0)
1526         layout = L_SPLITH;
1527     else {
1528         ELOG("Unknown layout \"%s\", this is a mismatch between code and parser spec.\n", layout_str);
1529         return;
1530     }
1531
1532     DLOG("changing layout to %s (%d)\n", layout_str, layout);
1533
1534     /* check if the match is empty, not if the result is empty */
1535     if (match_is_empty(current_match))
1536         con_set_layout(focused, layout);
1537     else {
1538         TAILQ_FOREACH(current, &owindows, owindows) {
1539             DLOG("matching: %p / %s\n", current->con, current->con->name);
1540             con_set_layout(current->con, layout);
1541         }
1542     }
1543
1544     cmd_output->needs_tree_render = true;
1545     // XXX: default reply for now, make this a better reply
1546     ysuccess(true);
1547 }
1548
1549 /*
1550  * Implementation of 'layout toggle [all|split]'.
1551  *
1552  */
1553 void cmd_layout_toggle(I3_CMD, char *toggle_mode) {
1554     owindow *current;
1555
1556     if (toggle_mode == NULL)
1557         toggle_mode = "default";
1558
1559     DLOG("toggling layout (mode = %s)\n", toggle_mode);
1560
1561     /* check if the match is empty, not if the result is empty */
1562     if (match_is_empty(current_match))
1563         con_toggle_layout(focused, toggle_mode);
1564     else {
1565         TAILQ_FOREACH(current, &owindows, owindows) {
1566             DLOG("matching: %p / %s\n", current->con, current->con->name);
1567             con_toggle_layout(current->con, toggle_mode);
1568         }
1569     }
1570
1571     cmd_output->needs_tree_render = true;
1572     // XXX: default reply for now, make this a better reply
1573     ysuccess(true);
1574 }
1575
1576 /*
1577  * Implementation of 'exit'.
1578  *
1579  */
1580 void cmd_exit(I3_CMD) {
1581     LOG("Exiting due to user command.\n");
1582     xcb_disconnect(conn);
1583     exit(0);
1584
1585     /* unreached */
1586 }
1587
1588 /*
1589  * Implementation of 'reload'.
1590  *
1591  */
1592 void cmd_reload(I3_CMD) {
1593     LOG("reloading\n");
1594     kill_configerror_nagbar(false);
1595     kill_commanderror_nagbar(false);
1596     load_configuration(conn, NULL, true);
1597     x_set_i3_atoms();
1598     /* Send an IPC event just in case the ws names have changed */
1599     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"reload\"}");
1600
1601     // XXX: default reply for now, make this a better reply
1602     ysuccess(true);
1603 }
1604
1605 /*
1606  * Implementation of 'restart'.
1607  *
1608  */
1609 void cmd_restart(I3_CMD) {
1610     LOG("restarting i3\n");
1611     i3_restart(false);
1612
1613     // XXX: default reply for now, make this a better reply
1614     ysuccess(true);
1615 }
1616
1617 /*
1618  * Implementation of 'open'.
1619  *
1620  */
1621 void cmd_open(I3_CMD) {
1622     LOG("opening new container\n");
1623     Con *con = tree_open_con(NULL, NULL);
1624     con->layout = L_SPLITH;
1625     con_focus(con);
1626
1627     y(map_open);
1628     ystr("success");
1629     y(bool, true);
1630     ystr("id");
1631     y(integer, (long int)con);
1632     y(map_close);
1633
1634     cmd_output->needs_tree_render = true;
1635 }
1636
1637 /*
1638  * Implementation of 'focus output <output>'.
1639  *
1640  */
1641 void cmd_focus_output(I3_CMD, char *name) {
1642     owindow *current;
1643
1644     DLOG("name = %s\n", name);
1645
1646     HANDLE_EMPTY_MATCH;
1647
1648     /* get the output */
1649     Output *current_output = NULL;
1650     Output *output;
1651
1652     TAILQ_FOREACH(current, &owindows, owindows)
1653         current_output = get_output_containing(current->con->rect.x, current->con->rect.y);
1654     assert(current_output != NULL);
1655
1656     output = get_output_from_string(current_output, name);
1657
1658     if (!output) {
1659         LOG("No such output found.\n");
1660         ysuccess(false);
1661         return;
1662     }
1663
1664     /* get visible workspace on output */
1665     Con *ws = NULL;
1666     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1667     if (!ws) {
1668         ysuccess(false);
1669         return;
1670     }
1671
1672     workspace_show(ws);
1673
1674     cmd_output->needs_tree_render = true;
1675     // XXX: default reply for now, make this a better reply
1676     ysuccess(true);
1677 }
1678
1679 /*
1680  * Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
1681  *
1682  */
1683 void cmd_move_window_to_position(I3_CMD, char *method, char *cx, char *cy) {
1684
1685     int x = atoi(cx);
1686     int y = atoi(cy);
1687
1688     if (!con_is_floating(focused)) {
1689         ELOG("Cannot change position. The window/container is not floating\n");
1690         y(map_open);
1691         ystr("success");
1692         y(bool, false);
1693         ystr("error");
1694         ystr("Cannot change position. The window/container is not floating.");
1695         y(map_close);
1696         return;
1697     }
1698
1699     if (strcmp(method, "absolute") == 0) {
1700         focused->parent->rect.x = x;
1701         focused->parent->rect.y = y;
1702
1703         DLOG("moving to absolute position %d %d\n", x, y);
1704         floating_maybe_reassign_ws(focused->parent);
1705         cmd_output->needs_tree_render = true;
1706     }
1707
1708     if (strcmp(method, "position") == 0) {
1709         Rect newrect = focused->parent->rect;
1710
1711         DLOG("moving to position %d %d\n", x, y);
1712         newrect.x = x;
1713         newrect.y = y;
1714
1715         floating_reposition(focused->parent, newrect);
1716     }
1717
1718     // XXX: default reply for now, make this a better reply
1719     ysuccess(true);
1720 }
1721
1722 /*
1723  * Implementation of 'move [window|container] [to] [absolute] position center
1724  *
1725  */
1726 void cmd_move_window_to_center(I3_CMD, char *method) {
1727
1728     if (!con_is_floating(focused)) {
1729         ELOG("Cannot change position. The window/container is not floating\n");
1730         y(map_open);
1731         ystr("success");
1732         y(bool, false);
1733         ystr("error");
1734         ystr("Cannot change position. The window/container is not floating.");
1735         y(map_close);
1736     }
1737
1738     if (strcmp(method, "absolute") == 0) {
1739         Rect *rect = &focused->parent->rect;
1740
1741         DLOG("moving to absolute center\n");
1742         rect->x = croot->rect.width/2 - rect->width/2;
1743         rect->y = croot->rect.height/2 - rect->height/2;
1744
1745         floating_maybe_reassign_ws(focused->parent);
1746         cmd_output->needs_tree_render = true;
1747     }
1748
1749     if (strcmp(method, "position") == 0) {
1750         Rect *wsrect = &con_get_workspace(focused)->rect;
1751         Rect newrect = focused->parent->rect;
1752
1753         DLOG("moving to center\n");
1754         newrect.x = wsrect->width/2 - newrect.width/2;
1755         newrect.y = wsrect->height/2 - newrect.height/2;
1756
1757         floating_reposition(focused->parent, newrect);
1758     }
1759
1760     // XXX: default reply for now, make this a better reply
1761     ysuccess(true);
1762 }
1763
1764 /*
1765  * Implementation of 'move scratchpad'.
1766  *
1767  */
1768 void cmd_move_scratchpad(I3_CMD) {
1769     DLOG("should move window to scratchpad\n");
1770     owindow *current;
1771
1772     HANDLE_EMPTY_MATCH;
1773
1774     TAILQ_FOREACH(current, &owindows, owindows) {
1775         DLOG("matching: %p / %s\n", current->con, current->con->name);
1776         scratchpad_move(current->con);
1777     }
1778
1779     cmd_output->needs_tree_render = true;
1780     // XXX: default reply for now, make this a better reply
1781     ysuccess(true);
1782 }
1783
1784 /*
1785  * Implementation of 'scratchpad show'.
1786  *
1787  */
1788 void cmd_scratchpad_show(I3_CMD) {
1789     DLOG("should show scratchpad window\n");
1790     owindow *current;
1791
1792     if (match_is_empty(current_match)) {
1793         scratchpad_show(NULL);
1794     } else {
1795         TAILQ_FOREACH(current, &owindows, owindows) {
1796             DLOG("matching: %p / %s\n", current->con, current->con->name);
1797             scratchpad_show(current->con);
1798         }
1799     }
1800
1801     cmd_output->needs_tree_render = true;
1802     // XXX: default reply for now, make this a better reply
1803     ysuccess(true);
1804 }
1805
1806 /*
1807  * Implementation of 'rename workspace [<name>] to <name>'
1808  *
1809  */
1810 void cmd_rename_workspace(I3_CMD, char *old_name, char *new_name) {
1811     if (old_name) {
1812         LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1813     } else {
1814         LOG("Renaming current workspace to \"%s\"\n", new_name);
1815     }
1816
1817     Con *output, *workspace = NULL;
1818     if (old_name) {
1819         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1820             GREP_FIRST(workspace, output_get_content(output),
1821                 !strcasecmp(child->name, old_name));
1822     } else {
1823         workspace = con_get_workspace(focused);
1824     }
1825
1826     if (!workspace) {
1827         // TODO: we should include the old workspace name here and use yajl for
1828         // generating the reply.
1829         y(map_open);
1830         ystr("success");
1831         y(bool, false);
1832         ystr("error");
1833         // TODO: better error message
1834         ystr("Old workspace not found");
1835         y(map_close);
1836         return;
1837     }
1838
1839     Con *check_dest = NULL;
1840     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
1841         GREP_FIRST(check_dest, output_get_content(output),
1842             !strcasecmp(child->name, new_name));
1843
1844     if (check_dest != NULL) {
1845         // TODO: we should include the new workspace name here and use yajl for
1846         // generating the reply.
1847         y(map_open);
1848         ystr("success");
1849         y(bool, false);
1850         ystr("error");
1851         // TODO: better error message
1852         ystr("New workspace already exists");
1853         y(map_close);
1854         return;
1855     }
1856
1857     /* Change the name and try to parse it as a number. */
1858     FREE(workspace->name);
1859     workspace->name = sstrdup(new_name);
1860     char *endptr = NULL;
1861     long parsed_num = strtol(new_name, &endptr, 10);
1862     if (parsed_num == LONG_MIN ||
1863         parsed_num == LONG_MAX ||
1864         parsed_num < 0 ||
1865         endptr == new_name)
1866         workspace->num = -1;
1867     else workspace->num = parsed_num;
1868     LOG("num = %d\n", workspace->num);
1869
1870     /* By re-attaching, the sort order will be correct afterwards. */
1871     Con *previously_focused = focused;
1872     Con *parent = workspace->parent;
1873     con_detach(workspace);
1874     con_attach(workspace, parent, false);
1875     /* Restore the previous focus since con_attach messes with the focus. */
1876     con_focus(previously_focused);
1877
1878     cmd_output->needs_tree_render = true;
1879     ysuccess(true);
1880
1881     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"rename\"}");
1882 }