]> git.sur5r.net Git - i3/i3/blob - src/tree.c
tree_append_json: fix memory leaks
[i3/i3] / src / tree.c
1 #undef I3__FILE__
2 #define I3__FILE__ "tree.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * tree.c: Everything that primarily modifies the layout tree data structure.
10  *
11  */
12 #include "all.h"
13
14 struct Con *croot;
15 struct Con *focused;
16
17 struct all_cons_head all_cons = TAILQ_HEAD_INITIALIZER(all_cons);
18
19 /*
20  * Create the pseudo-output __i3. Output-independent workspaces such as
21  * __i3_scratch will live there.
22  *
23  */
24 static Con *_create___i3(void) {
25     Con *__i3 = con_new(croot, NULL);
26     FREE(__i3->name);
27     __i3->name = sstrdup("__i3");
28     __i3->type = CT_OUTPUT;
29     __i3->layout = L_OUTPUT;
30     con_fix_percent(croot);
31     x_set_name(__i3, "[i3 con] pseudo-output __i3");
32     /* For retaining the correct position/size of a scratchpad window, the
33      * dimensions of the real outputs should be multiples of the __i3
34      * pseudo-output. Ensuring that is the job of scratchpad_fix_resolution()
35      * which gets called after this function and after detecting all the
36      * outputs (or whenever an output changes). */
37     __i3->rect.width = 1280;
38     __i3->rect.height = 1024;
39
40     /* Add a content container. */
41     DLOG("adding main content container\n");
42     Con *content = con_new(NULL, NULL);
43     content->type = CT_CON;
44     FREE(content->name);
45     content->name = sstrdup("content");
46     content->layout = L_SPLITH;
47
48     x_set_name(content, "[i3 con] content __i3");
49     con_attach(content, __i3, false);
50
51     /* Attach the __i3_scratch workspace. */
52     Con *ws = con_new(NULL, NULL);
53     ws->type = CT_WORKSPACE;
54     ws->num = -1;
55     ws->name = sstrdup("__i3_scratch");
56     ws->layout = L_SPLITH;
57     con_attach(ws, content, false);
58     x_set_name(ws, "[i3 con] workspace __i3_scratch");
59     ws->fullscreen_mode = CF_OUTPUT;
60
61     return __i3;
62 }
63
64 /*
65  * Loads tree from 'path' (used for in-place restarts).
66  *
67  */
68 bool tree_restore(const char *path, xcb_get_geometry_reply_t *geometry) {
69     char *globbed = resolve_tilde(path);
70
71     if (!path_exists(globbed)) {
72         LOG("%s does not exist, not restoring tree\n", globbed);
73         free(globbed);
74         return false;
75     }
76
77     /* TODO: refactor the following */
78     croot = con_new(NULL, NULL);
79     croot->rect = (Rect){
80         geometry->x,
81         geometry->y,
82         geometry->width,
83         geometry->height};
84     focused = croot;
85
86     tree_append_json(focused, globbed, NULL);
87     free(globbed);
88
89     DLOG("appended tree, using new root\n");
90     croot = TAILQ_FIRST(&(croot->nodes_head));
91     DLOG("new root = %p\n", croot);
92     Con *out = TAILQ_FIRST(&(croot->nodes_head));
93     DLOG("out = %p\n", out);
94     Con *ws = TAILQ_FIRST(&(out->nodes_head));
95     DLOG("ws = %p\n", ws);
96
97     /* For in-place restarting into v4.2, we need to make sure the new
98      * pseudo-output __i3 is present. */
99     if (strcmp(out->name, "__i3") != 0) {
100         DLOG("Adding pseudo-output __i3 during inplace restart\n");
101         Con *__i3 = _create___i3();
102         /* Ensure that it is the first output, other places in the code make
103          * that assumption. */
104         TAILQ_REMOVE(&(croot->nodes_head), __i3, nodes);
105         TAILQ_INSERT_HEAD(&(croot->nodes_head), __i3, nodes);
106     }
107
108     restore_open_placeholder_windows(croot);
109
110     return true;
111 }
112
113 /*
114  * Initializes the tree by creating the root node. The CT_OUTPUT Cons below the
115  * root node are created in randr.c for each Output.
116  *
117  */
118 void tree_init(xcb_get_geometry_reply_t *geometry) {
119     croot = con_new(NULL, NULL);
120     FREE(croot->name);
121     croot->name = "root";
122     croot->type = CT_ROOT;
123     croot->layout = L_SPLITH;
124     croot->rect = (Rect){
125         geometry->x,
126         geometry->y,
127         geometry->width,
128         geometry->height};
129
130     _create___i3();
131 }
132
133 /*
134  * Opens an empty container in the current container
135  *
136  */
137 Con *tree_open_con(Con *con, i3Window *window) {
138     if (con == NULL) {
139         /* every focusable Con has a parent (outputs have parent root) */
140         con = focused->parent;
141         /* If the parent is an output, we are on a workspace. In this case,
142          * the new container needs to be opened as a leaf of the workspace. */
143         if (con->parent->type == CT_OUTPUT && con->type != CT_DOCKAREA) {
144             con = focused;
145         }
146
147         /* If the currently focused container is a floating container, we
148          * attach the new container to the currently focused spot in its
149          * workspace. */
150         if (con->type == CT_FLOATING_CON) {
151             con = con_descend_tiling_focused(con->parent);
152             if (con->type != CT_WORKSPACE)
153                 con = con->parent;
154         }
155         DLOG("con = %p\n", con);
156     }
157
158     assert(con != NULL);
159
160     /* 3. create the container and attach it to its parent */
161     Con *new = con_new(con, window);
162     new->layout = L_SPLITH;
163
164     /* 4: re-calculate child->percent for each child */
165     con_fix_percent(con);
166
167     return new;
168 }
169
170 static bool _is_con_mapped(Con *con) {
171     Con *child;
172
173     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
174     if (_is_con_mapped(child))
175         return true;
176
177     return con->mapped;
178 }
179
180 /*
181  * Closes the given container including all children.
182  * Returns true if the container was killed or false if just WM_DELETE was sent
183  * and the window is expected to kill itself.
184  *
185  * The dont_kill_parent flag is specified when the function calls itself
186  * recursively while deleting a containers children.
187  *
188  * The force_set_focus flag is specified in the case of killing a floating
189  * window: tree_close_internal() will be invoked for the CT_FLOATINGCON (the parent
190  * container) and focus should be set there.
191  *
192  */
193 bool tree_close_internal(Con *con, kill_window_t kill_window, bool dont_kill_parent, bool force_set_focus) {
194     bool was_mapped = con->mapped;
195     Con *parent = con->parent;
196
197     if (!was_mapped) {
198         /* Even if the container itself is not mapped, its children may be
199          * mapped (for example split containers don't have a mapped window on
200          * their own but usually contain mapped children). */
201         was_mapped = _is_con_mapped(con);
202     }
203
204     /* remove the urgency hint of the workspace (if set) */
205     if (con->urgent) {
206         con_set_urgency(con, false);
207         con_update_parents_urgency(con);
208         workspace_update_urgent_flag(con_get_workspace(con));
209     }
210
211     /* Get the container which is next focused */
212     Con *next = con_next_focused(con);
213     DLOG("next = %p, focused = %p\n", next, focused);
214
215     DLOG("closing %p, kill_window = %d\n", con, kill_window);
216     Con *child, *nextchild;
217     bool abort_kill = false;
218     /* We cannot use TAILQ_FOREACH because the children get deleted
219      * in their parent’s nodes_head */
220     for (child = TAILQ_FIRST(&(con->nodes_head)); child;) {
221         nextchild = TAILQ_NEXT(child, nodes);
222         DLOG("killing child=%p\n", child);
223         if (!tree_close_internal(child, kill_window, true, false))
224             abort_kill = true;
225         child = nextchild;
226     }
227
228     if (abort_kill) {
229         DLOG("One of the children could not be killed immediately (WM_DELETE sent), aborting.\n");
230         return false;
231     }
232
233     if (con->window != NULL) {
234         if (kill_window != DONT_KILL_WINDOW) {
235             x_window_kill(con->window->id, kill_window);
236             return false;
237         } else {
238             xcb_void_cookie_t cookie;
239             /* Ignore any further events by clearing the event mask,
240              * unmap the window,
241              * then reparent it to the root window. */
242             xcb_change_window_attributes(conn, con->window->id,
243                                          XCB_CW_EVENT_MASK, (uint32_t[]){XCB_NONE});
244             xcb_unmap_window(conn, con->window->id);
245             cookie = xcb_reparent_window(conn, con->window->id, root, 0, 0);
246
247             /* Ignore X11 errors for the ReparentWindow request.
248              * X11 Errors are returned when the window was already destroyed */
249             add_ignore_event(cookie.sequence, 0);
250
251             /* We are no longer handling this window, thus set WM_STATE to
252              * WM_STATE_WITHDRAWN (see ICCCM 4.1.3.1) */
253             long data[] = {XCB_ICCCM_WM_STATE_WITHDRAWN, XCB_NONE};
254             cookie = xcb_change_property(conn, XCB_PROP_MODE_REPLACE,
255                                          con->window->id, A_WM_STATE, A_WM_STATE, 32, 2, data);
256
257             /* Remove the window from the save set. All windows in the save set
258              * will be mapped when i3 closes its connection (e.g. when
259              * restarting). This is not what we want, since some apps keep
260              * unmapped windows around and don’t expect them to suddenly be
261              * mapped. See http://bugs.i3wm.org/1617 */
262             xcb_change_save_set(conn, XCB_SET_MODE_DELETE, con->window->id);
263
264             /* Ignore X11 errors for the ReparentWindow request.
265              * X11 Errors are returned when the window was already destroyed */
266             add_ignore_event(cookie.sequence, 0);
267         }
268         ipc_send_window_event("close", con);
269         FREE(con->window->class_class);
270         FREE(con->window->class_instance);
271         i3string_free(con->window->name);
272         FREE(con->window->ran_assignments);
273         FREE(con->window);
274     }
275
276     Con *ws = con_get_workspace(con);
277
278     /* Figure out which container to focus next before detaching 'con'. */
279     if (con_is_floating(con)) {
280         if (con == focused) {
281             DLOG("This is the focused container, i need to find another one to focus. I start looking at ws = %p\n", ws);
282             next = con_next_focused(parent);
283
284             dont_kill_parent = true;
285             DLOG("Alright, focusing %p\n", next);
286         } else {
287             next = NULL;
288         }
289     }
290
291     /* Detach the container so that it will not be rendered anymore. */
292     con_detach(con);
293
294     /* disable urgency timer, if needed */
295     if (con->urgency_timer != NULL) {
296         DLOG("Removing urgency timer of con %p\n", con);
297         workspace_update_urgent_flag(ws);
298         ev_timer_stop(main_loop, con->urgency_timer);
299         FREE(con->urgency_timer);
300     }
301
302     if (con->type != CT_FLOATING_CON) {
303         /* If the container is *not* floating, we might need to re-distribute
304          * percentage values for the resized containers. */
305         con_fix_percent(parent);
306     }
307
308     /* Render the tree so that the surrounding containers take up the space
309      * which 'con' does no longer occupy. If we don’t render here, there will
310      * be a gap in our containers and that could trigger an EnterNotify for an
311      * underlying container, see ticket #660.
312      *
313      * Rendering has to be avoided when dont_kill_parent is set (when
314      * tree_close_internal calls itself recursively) because the tree is in a
315      * non-renderable state during that time. */
316     if (!dont_kill_parent)
317         tree_render();
318
319     /* kill the X11 part of this container */
320     x_con_kill(con);
321
322     if (con_is_floating(con)) {
323         DLOG("Container was floating, killing floating container\n");
324         tree_close_internal(parent, DONT_KILL_WINDOW, false, (con == focused));
325         DLOG("parent container killed\n");
326     }
327
328     free(con->name);
329     FREE(con->deco_render_params);
330     TAILQ_REMOVE(&all_cons, con, all_cons);
331     free(con);
332
333     /* in the case of floating windows, we already focused another container
334      * when closing the parent, so we can exit now. */
335     if (!next) {
336         DLOG("No next container, i will just exit now\n");
337         return true;
338     }
339
340     if (was_mapped || con == focused) {
341         if ((kill_window != DONT_KILL_WINDOW) || !dont_kill_parent || con == focused) {
342             DLOG("focusing %p / %s\n", next, next->name);
343             if (next->type == CT_DOCKAREA) {
344                 /* Instead of focusing the dockarea, we need to restore focus to the workspace */
345                 con_focus(con_descend_focused(output_get_content(next->parent)));
346             } else {
347                 if (!force_set_focus && con != focused)
348                     DLOG("not changing focus, the container was not focused before\n");
349                 else
350                     con_focus(next);
351             }
352         } else {
353             DLOG("not focusing because we're not killing anybody\n");
354         }
355     } else {
356         DLOG("not focusing, was not mapped\n");
357     }
358
359     /* check if the parent container is empty now and close it */
360     if (!dont_kill_parent)
361         CALL(parent, on_remove_child);
362
363     return true;
364 }
365
366 /*
367  * Splits (horizontally or vertically) the given container by creating a new
368  * container which contains the old one and the future ones.
369  *
370  */
371 void tree_split(Con *con, orientation_t orientation) {
372     if (con_is_floating(con)) {
373         DLOG("Floating containers can't be split.\n");
374         return;
375     }
376
377     if (con->type == CT_WORKSPACE) {
378         if (con_num_children(con) < 2) {
379             DLOG("Just changing orientation of workspace\n");
380             con->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
381             return;
382         } else {
383             /* if there is more than one container on the workspace
384              * move them into a new container and handle this instead */
385             con = workspace_encapsulate(con);
386         }
387     }
388
389     Con *parent = con->parent;
390
391     /* Force re-rendering to make the indicator border visible. */
392     con_force_split_parents_redraw(con);
393
394     /* if we are in a container whose parent contains only one
395      * child (its split functionality is unused so far), we just change the
396      * orientation (more intuitive than splitting again) */
397     if (con_num_children(parent) == 1 &&
398         (parent->layout == L_SPLITH ||
399          parent->layout == L_SPLITV)) {
400         parent->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
401         DLOG("Just changing orientation of existing container\n");
402         return;
403     }
404
405     DLOG("Splitting in orientation %d\n", orientation);
406
407     /* 2: replace it with a new Con */
408     Con *new = con_new(NULL, NULL);
409     TAILQ_REPLACE(&(parent->nodes_head), con, new, nodes);
410     TAILQ_REPLACE(&(parent->focus_head), con, new, focused);
411     new->parent = parent;
412     new->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
413
414     /* 3: swap 'percent' (resize factor) */
415     new->percent = con->percent;
416     con->percent = 0.0;
417
418     /* 4: add it as a child to the new Con */
419     con_attach(con, new, false);
420 }
421
422 /*
423  * Moves focus one level up. Returns true if focus changed.
424  *
425  */
426 bool level_up(void) {
427     /* Skip over floating containers and go directly to the grandparent
428      * (which should always be a workspace) */
429     if (focused->parent->type == CT_FLOATING_CON) {
430         con_focus(focused->parent->parent);
431         return true;
432     }
433
434     /* We can focus up to the workspace, but not any higher in the tree */
435     if ((focused->parent->type != CT_CON &&
436          focused->parent->type != CT_WORKSPACE) ||
437         focused->type == CT_WORKSPACE) {
438         ELOG("'focus parent': Focus is already on the workspace, cannot go higher than that.\n");
439         return false;
440     }
441     con_focus(focused->parent);
442     return true;
443 }
444
445 /*
446  * Moves focus one level down. Returns true if focus changed.
447  *
448  */
449 bool level_down(void) {
450     /* Go down the focus stack of the current node */
451     Con *next = TAILQ_FIRST(&(focused->focus_head));
452     if (next == TAILQ_END(&(focused->focus_head))) {
453         DLOG("cannot go down\n");
454         return false;
455     } else if (next->type == CT_FLOATING_CON) {
456         /* Floating cons shouldn't be directly focused; try immediately
457          * going to the grandchild of the focused con. */
458         Con *child = TAILQ_FIRST(&(next->focus_head));
459         if (child == TAILQ_END(&(next->focus_head))) {
460             DLOG("cannot go down\n");
461             return false;
462         } else
463             next = TAILQ_FIRST(&(next->focus_head));
464     }
465
466     con_focus(next);
467     return true;
468 }
469
470 static void mark_unmapped(Con *con) {
471     Con *current;
472
473     con->mapped = false;
474     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
475     mark_unmapped(current);
476     if (con->type == CT_WORKSPACE) {
477         /* We need to call mark_unmapped on floating nodes aswell since we can
478          * make containers floating. */
479         TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
480         mark_unmapped(current);
481     }
482 }
483
484 /*
485  * Renders the tree, that is rendering all outputs using render_con() and
486  * pushing the changes to X11 using x_push_changes().
487  *
488  */
489 void tree_render(void) {
490     if (croot == NULL)
491         return;
492
493     DLOG("-- BEGIN RENDERING --\n");
494     /* Reset map state for all nodes in tree */
495     /* TODO: a nicer method to walk all nodes would be good, maybe? */
496     mark_unmapped(croot);
497     croot->mapped = true;
498
499     render_con(croot, false);
500
501     x_push_changes(croot);
502     DLOG("-- END RENDERING --\n");
503 }
504
505 /*
506  * Recursive function to walk the tree until a con can be found to focus.
507  *
508  */
509 static bool _tree_next(Con *con, char way, orientation_t orientation, bool wrap) {
510     /* When dealing with fullscreen containers, it's necessary to go up to the
511      * workspace level, because 'focus $dir' will start at the con's real
512      * position in the tree, and it may not be possible to get to the edge
513      * normally due to fullscreen focusing restrictions. */
514     if (con->fullscreen_mode == CF_OUTPUT && con->type != CT_WORKSPACE)
515         con = con_get_workspace(con);
516
517     /* Stop recursing at workspaces after attempting to switch to next
518      * workspace if possible. */
519     if (con->type == CT_WORKSPACE) {
520         if (con_get_fullscreen_con(con, CF_GLOBAL)) {
521             DLOG("Cannot change workspace while in global fullscreen mode.\n");
522             return false;
523         }
524         Output *current_output = get_output_containing(con->rect.x, con->rect.y);
525         Output *next_output;
526
527         if (!current_output)
528             return false;
529         DLOG("Current output is %s\n", current_output->name);
530
531         /* Try to find next output */
532         direction_t direction;
533         if (way == 'n' && orientation == HORIZ)
534             direction = D_RIGHT;
535         else if (way == 'p' && orientation == HORIZ)
536             direction = D_LEFT;
537         else if (way == 'n' && orientation == VERT)
538             direction = D_DOWN;
539         else if (way == 'p' && orientation == VERT)
540             direction = D_UP;
541         else
542             return false;
543
544         next_output = get_output_next(direction, current_output, CLOSEST_OUTPUT);
545         if (!next_output)
546             return false;
547         DLOG("Next output is %s\n", next_output->name);
548
549         /* Find visible workspace on next output */
550         Con *workspace = NULL;
551         GREP_FIRST(workspace, output_get_content(next_output->con), workspace_is_visible(child));
552
553         /* Show next workspace and focus appropriate container if possible. */
554         if (!workspace)
555             return false;
556
557         workspace_show(workspace);
558
559         /* If a workspace has an active fullscreen container, one of its
560          * children should always be focused. The above workspace_show()
561          * should be adequate for that, so return. */
562         if (con_get_fullscreen_con(workspace, CF_OUTPUT))
563             return true;
564
565         Con *focus = con_descend_direction(workspace, direction);
566
567         /* special case: if there was no tiling con to focus and the workspace
568          * has a floating con in the focus stack, focus the top of the focus
569          * stack (which may be floating) */
570         if (focus == workspace)
571             focus = con_descend_focused(workspace);
572
573         if (focus) {
574             con_focus(focus);
575             x_set_warp_to(&(focus->rect));
576         }
577         return true;
578     }
579
580     Con *parent = con->parent;
581
582     if (con->type == CT_FLOATING_CON) {
583         if (orientation != HORIZ)
584             return false;
585
586         /* left/right focuses the previous/next floating container */
587         Con *next;
588         if (way == 'n')
589             next = TAILQ_NEXT(con, floating_windows);
590         else
591             next = TAILQ_PREV(con, floating_head, floating_windows);
592
593         /* If there is no next/previous container, wrap */
594         if (!next) {
595             if (way == 'n')
596                 next = TAILQ_FIRST(&(parent->floating_head));
597             else
598                 next = TAILQ_LAST(&(parent->floating_head), floating_head);
599         }
600
601         /* Still no next/previous container? bail out */
602         if (!next)
603             return false;
604
605         /* Raise the floating window on top of other windows preserving
606          * relative stack order */
607         while (TAILQ_LAST(&(parent->floating_head), floating_head) != next) {
608             Con *last = TAILQ_LAST(&(parent->floating_head), floating_head);
609             TAILQ_REMOVE(&(parent->floating_head), last, floating_windows);
610             TAILQ_INSERT_HEAD(&(parent->floating_head), last, floating_windows);
611         }
612
613         con_focus(con_descend_focused(next));
614         return true;
615     }
616
617     /* If the orientation does not match or there is no other con to focus, we
618      * need to go higher in the hierarchy */
619     if (con_orientation(parent) != orientation ||
620         con_num_children(parent) == 1)
621         return _tree_next(parent, way, orientation, wrap);
622
623     Con *current = TAILQ_FIRST(&(parent->focus_head));
624     /* TODO: when can the following happen (except for floating windows, which
625      * are handled above)? */
626     if (TAILQ_EMPTY(&(parent->nodes_head))) {
627         DLOG("nothing to focus\n");
628         return false;
629     }
630
631     Con *next;
632     if (way == 'n')
633         next = TAILQ_NEXT(current, nodes);
634     else
635         next = TAILQ_PREV(current, nodes_head, nodes);
636
637     if (!next) {
638         if (!config.force_focus_wrapping) {
639             /* If there is no next/previous container, we check if we can focus one
640              * when going higher (without wrapping, though). If so, we are done, if
641              * not, we wrap */
642             if (_tree_next(parent, way, orientation, false))
643                 return true;
644
645             if (!wrap)
646                 return false;
647         }
648
649         if (way == 'n')
650             next = TAILQ_FIRST(&(parent->nodes_head));
651         else
652             next = TAILQ_LAST(&(parent->nodes_head), nodes_head);
653     }
654
655     /* Don't violate fullscreen focus restrictions. */
656     if (!con_fullscreen_permits_focusing(next))
657         return false;
658
659     /* 3: focus choice comes in here. at the moment we will go down
660      * until we find a window */
661     /* TODO: check for window, atm we only go down as far as possible */
662     con_focus(con_descend_focused(next));
663     return true;
664 }
665
666 /*
667  * Changes focus in the given way (next/previous) and given orientation
668  * (horizontal/vertical).
669  *
670  */
671 void tree_next(char way, orientation_t orientation) {
672     _tree_next(focused, way, orientation, true);
673 }
674
675 /*
676  * tree_flatten() removes pairs of redundant split containers, e.g.:
677  *       [workspace, horizontal]
678  *   [v-split]           [child3]
679  *   [h-split]
680  * [child1] [child2]
681  * In this example, the v-split and h-split container are redundant.
682  * Such a situation can be created by moving containers in a direction which is
683  * not the orientation of their parent container. i3 needs to create a new
684  * split container then and if you move containers this way multiple times,
685  * redundant chains of split-containers can be the result.
686  *
687  */
688 void tree_flatten(Con *con) {
689     Con *current, *child, *parent = con->parent;
690     DLOG("Checking if I can flatten con = %p / %s\n", con, con->name);
691
692     /* We only consider normal containers without windows */
693     if (con->type != CT_CON ||
694         parent->layout == L_OUTPUT || /* con == "content" */
695         con->window != NULL)
696         goto recurse;
697
698     /* Ensure it got only one child */
699     child = TAILQ_FIRST(&(con->nodes_head));
700     if (child == NULL || TAILQ_NEXT(child, nodes) != NULL)
701         goto recurse;
702
703     DLOG("child = %p, con = %p, parent = %p\n", child, con, parent);
704
705     /* The child must have a different orientation than the con but the same as
706      * the con’s parent to be redundant */
707     if (!con_is_split(con) ||
708         !con_is_split(child) ||
709         (con->layout != L_SPLITH && con->layout != L_SPLITV) ||
710         (child->layout != L_SPLITH && child->layout != L_SPLITV) ||
711         con_orientation(con) == con_orientation(child) ||
712         con_orientation(child) != con_orientation(parent))
713         goto recurse;
714
715     DLOG("Alright, I have to flatten this situation now. Stay calm.\n");
716     /* 1: save focus */
717     Con *focus_next = TAILQ_FIRST(&(child->focus_head));
718
719     DLOG("detaching...\n");
720     /* 2: re-attach the children to the parent before con */
721     while (!TAILQ_EMPTY(&(child->nodes_head))) {
722         current = TAILQ_FIRST(&(child->nodes_head));
723         DLOG("detaching current=%p / %s\n", current, current->name);
724         con_detach(current);
725         DLOG("re-attaching\n");
726         /* We don’t use con_attach() here because for a CT_CON, the special
727          * case handling of con_attach() does not trigger. So all it would do
728          * is calling TAILQ_INSERT_AFTER, but with the wrong container. So we
729          * directly use the TAILQ macros. */
730         current->parent = parent;
731         TAILQ_INSERT_BEFORE(con, current, nodes);
732         DLOG("attaching to focus list\n");
733         TAILQ_INSERT_TAIL(&(parent->focus_head), current, focused);
734         current->percent = con->percent;
735     }
736     DLOG("re-attached all\n");
737
738     /* 3: restore focus, if con was focused */
739     if (focus_next != NULL &&
740         TAILQ_FIRST(&(parent->focus_head)) == con) {
741         DLOG("restoring focus to focus_next=%p\n", focus_next);
742         TAILQ_REMOVE(&(parent->focus_head), focus_next, focused);
743         TAILQ_INSERT_HEAD(&(parent->focus_head), focus_next, focused);
744         DLOG("restored focus.\n");
745     }
746
747     /* 4: close the redundant cons */
748     DLOG("closing redundant cons\n");
749     tree_close_internal(con, DONT_KILL_WINDOW, true, false);
750
751     /* Well, we got to abort the recursion here because we destroyed the
752      * container. However, if tree_flatten() is called sufficiently often,
753      * there can’t be the situation of having two pairs of redundant containers
754      * at once. Therefore, we can safely abort the recursion on this level
755      * after flattening. */
756     return;
757
758 recurse:
759     /* We cannot use normal foreach here because tree_flatten might close the
760      * current container. */
761     current = TAILQ_FIRST(&(con->nodes_head));
762     while (current != NULL) {
763         Con *next = TAILQ_NEXT(current, nodes);
764         tree_flatten(current);
765         current = next;
766     }
767
768     current = TAILQ_FIRST(&(con->floating_head));
769     while (current != NULL) {
770         Con *next = TAILQ_NEXT(current, floating_windows);
771         tree_flatten(current);
772         current = next;
773     }
774 }