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