]> git.sur5r.net Git - i3/i3/blob - src/tree.c
Rename bind to bindcode
[i3/i3] / src / tree.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4
5 #include "all.h"
6
7 struct Con *croot;
8 struct Con *focused;
9
10 struct all_cons_head all_cons = TAILQ_HEAD_INITIALIZER(all_cons);
11
12 /*
13  * Loads tree from ~/.i3/_restart.json (used for in-place restarts).
14  *
15  */
16 bool tree_restore(const char *path) {
17     char *globbed = resolve_tilde(path);
18
19     if (!path_exists(globbed)) {
20         LOG("%s does not exist, not restoring tree\n", globbed);
21         free(globbed);
22         return false;
23     }
24
25     /* TODO: refactor the following */
26     croot = con_new(NULL);
27     focused = croot;
28
29     tree_append_json(globbed);
30
31     printf("appended tree, using new root\n");
32     croot = TAILQ_FIRST(&(croot->nodes_head));
33     printf("new root = %p\n", croot);
34     Con *out = TAILQ_FIRST(&(croot->nodes_head));
35     printf("out = %p\n", out);
36     Con *ws = TAILQ_FIRST(&(out->nodes_head));
37     printf("ws = %p\n", ws);
38
39     return true;
40 }
41
42 /*
43  * Initializes the tree by creating the root node. The CT_OUTPUT Cons below the
44  * root node are created in randr.c for each Output.
45  *
46  */
47 void tree_init() {
48     croot = con_new(NULL);
49     FREE(croot->name);
50     croot->name = "root";
51     croot->type = CT_ROOT;
52 }
53
54 /*
55  * Opens an empty container in the current container
56  *
57  */
58 Con *tree_open_con(Con *con) {
59     if (con == NULL) {
60         /* every focusable Con has a parent (outputs have parent root) */
61         con = focused->parent;
62         /* If the parent is an output, we are on a workspace. In this case,
63          * the new container needs to be opened as a leaf of the workspace. */
64         if (con->parent->type == CT_OUTPUT && con->type != CT_DOCKAREA) {
65             con = focused;
66         }
67
68         /* If the currently focused container is a floating container, we
69          * attach the new container to the workspace */
70         if (con->type == CT_FLOATING_CON)
71             con = con->parent;
72         DLOG("con = %p\n", con);
73     }
74
75     assert(con != NULL);
76
77     /* 3. create the container and attach it to its parent */
78     Con *new = con_new(con);
79
80     /* 4: re-calculate child->percent for each child */
81     con_fix_percent(con);
82
83     return new;
84 }
85
86 static bool _is_con_mapped(Con *con) {
87     Con *child;
88
89     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
90         if (_is_con_mapped(child))
91             return true;
92
93     return con->mapped;
94 }
95
96 /*
97  * Closes the given container including all children
98  *
99  */
100 void tree_close(Con *con, bool kill_window, bool dont_kill_parent) {
101     bool was_mapped = con->mapped;
102     Con *parent = con->parent;
103
104     if (!was_mapped) {
105         /* Even if the container itself is not mapped, its children may be
106          * mapped (for example split containers don't have a mapped window on
107          * their own but usually contain mapped children). */
108         was_mapped = _is_con_mapped(con);
109     }
110
111     /* Get the container which is next focused */
112     Con *next = con_next_focused(con);
113     DLOG("next = %p, focused = %p\n", next, focused);
114
115     DLOG("closing %p, kill_window = %d\n", con, kill_window);
116     Con *child;
117     /* We cannot use TAILQ_FOREACH because the children get deleted
118      * in their parent’s nodes_head */
119     while (!TAILQ_EMPTY(&(con->nodes_head))) {
120         child = TAILQ_FIRST(&(con->nodes_head));
121         DLOG("killing child=%p\n", child);
122         tree_close(child, kill_window, true);
123     }
124
125     if (con->window != NULL) {
126         if (kill_window) {
127             x_window_kill(con->window->id);
128             return;
129         } else {
130             /* un-parent the window */
131             xcb_reparent_window(conn, con->window->id, root, 0, 0);
132             /* TODO: client_unmap to set state to withdrawn */
133
134         }
135         FREE(con->window->class_class);
136         FREE(con->window->class_instance);
137         FREE(con->window->name_x);
138         FREE(con->window->name_json);
139         free(con->window);
140     }
141
142     /* kill the X11 part of this container */
143     x_con_kill(con);
144
145     con_detach(con);
146     if (con->type != CT_FLOATING_CON) {
147         /* If the container is *not* floating, we might need to re-distribute
148          * percentage values for the resized containers. */
149         con_fix_percent(parent);
150     }
151
152     if (con_is_floating(con)) {
153         Con *ws = con_get_workspace(con);
154         DLOG("Container was floating, killing floating container\n");
155         tree_close(parent, false, false);
156         DLOG("parent container killed\n");
157         if (con == focused) {
158             DLOG("This is the focused container, i need to find another one to focus. I start looking at ws = %p\n", ws);
159             /* go down the focus stack as far as possible */
160             next = con_descend_focused(ws);
161
162             dont_kill_parent = true;
163             DLOG("Alright, focusing %p\n", next);
164         } else {
165             next = NULL;
166         }
167     }
168
169     free(con->name);
170     FREE(con->deco_render_params);
171     TAILQ_REMOVE(&all_cons, con, all_cons);
172     free(con);
173
174     /* in the case of floating windows, we already focused another container
175      * when closing the parent, so we can exit now. */
176     if (!next) {
177         DLOG("No next container, i will just exit now\n");
178         return;
179     }
180
181     if (was_mapped || con == focused) {
182         if (kill_window || !dont_kill_parent || con == focused) {
183             DLOG("focusing %p / %s\n", next, next->name);
184             /* TODO: check if the container (or one of its children) was focused */
185             if (next->type == CT_DOCKAREA) {
186                 /* Instead of focusing the dockarea, we need to restore focus to the workspace */
187                 con_focus(con_descend_focused(output_get_content(next->parent)));
188             } else {
189                 con_focus(next);
190             }
191         }
192         else {
193             DLOG("not focusing because we're not killing anybody");
194         }
195     } else {
196         DLOG("not focusing, was not mapped\n");
197     }
198
199     /* check if the parent container is empty now and close it */
200     if (!dont_kill_parent)
201         CALL(parent, on_remove_child);
202 }
203
204 /*
205  * Closes the current container using tree_close().
206  *
207  */
208 void tree_close_con() {
209     assert(focused != NULL);
210     if (focused->type == CT_WORKSPACE) {
211         LOG("Cannot close workspace\n");
212         return;
213     }
214
215     /* There *should* be no possibility to focus outputs / root container */
216     assert(focused->type != CT_OUTPUT);
217     assert(focused->type != CT_ROOT);
218
219     /* Kill con */
220     tree_close(focused, true, false);
221 }
222
223 /*
224  * Splits (horizontally or vertically) the given container by creating a new
225  * container which contains the old one and the future ones.
226  *
227  */
228 void tree_split(Con *con, orientation_t orientation) {
229     /* for a workspace, we just need to change orientation */
230     if (con->type == CT_WORKSPACE) {
231         DLOG("Workspace, simply changing orientation to %d\n", orientation);
232         con->orientation = orientation;
233         return;
234     }
235
236     Con *parent = con->parent;
237     /* if we are in a container whose parent contains only one
238      * child (its split functionality is unused so far), we just change the
239      * orientation (more intuitive than splitting again) */
240     if (con_num_children(parent) == 1) {
241         parent->orientation = orientation;
242         DLOG("Just changing orientation of existing container\n");
243         return;
244     }
245
246     DLOG("Splitting in orientation %d\n", orientation);
247
248     /* 2: replace it with a new Con */
249     Con *new = con_new(NULL);
250     TAILQ_REPLACE(&(parent->nodes_head), con, new, nodes);
251     TAILQ_REPLACE(&(parent->focus_head), con, new, focused);
252     new->parent = parent;
253     new->orientation = orientation;
254
255     /* 3: swap 'percent' (resize factor) */
256     new->percent = con->percent;
257     con->percent = 0.0;
258
259     /* 4: add it as a child to the new Con */
260     con_attach(con, new, false);
261 }
262
263 /*
264  * Moves focus one level up.
265  *
266  */
267 void level_up() {
268     /* We cannot go up when we are in fullscreen mode at the moment, that would
269      * be totally not intuitive */
270     if (focused->fullscreen_mode != CF_NONE) {
271         LOG("Currently in fullscreen, not going up\n");
272         return;
273     }
274     /* We can focus up to the workspace, but not any higher in the tree */
275     if ((focused->parent->type != CT_CON &&
276         focused->parent->type != CT_WORKSPACE) ||
277         focused->type == CT_WORKSPACE) {
278         LOG("Cannot go up any further\n");
279         return;
280     }
281     con_focus(focused->parent);
282 }
283
284 /*
285  * Moves focus one level down.
286  *
287  */
288 void level_down() {
289     /* Go down the focus stack of the current node */
290     Con *next = TAILQ_FIRST(&(focused->focus_head));
291     if (next == TAILQ_END(&(focused->focus_head))) {
292         printf("cannot go down\n");
293         return;
294     }
295     con_focus(next);
296 }
297
298 static void mark_unmapped(Con *con) {
299     Con *current;
300
301     con->mapped = false;
302     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
303         mark_unmapped(current);
304     if (con->type == CT_WORKSPACE) {
305         /* We need to call mark_unmapped on floating nodes aswell since we can
306          * make containers floating. */
307         TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
308             mark_unmapped(current);
309     }
310 }
311
312 /*
313  * Renders the tree, that is rendering all outputs using render_con() and
314  * pushing the changes to X11 using x_push_changes().
315  *
316  */
317 void tree_render() {
318     if (croot == NULL)
319         return;
320
321     DLOG("-- BEGIN RENDERING --\n");
322     /* Reset map state for all nodes in tree */
323     /* TODO: a nicer method to walk all nodes would be good, maybe? */
324     mark_unmapped(croot);
325     croot->mapped = true;
326
327     /* We start rendering at an output */
328     Con *output;
329     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
330         DLOG("output %p / %s\n", output, output->name);
331         render_con(output, false);
332     }
333     x_push_changes(croot);
334     DLOG("-- END RENDERING --\n");
335 }
336
337 /*
338  * Changes focus in the given way (next/previous) and given orientation
339  * (horizontal/vertical).
340  *
341  */
342 void tree_next(char way, orientation_t orientation) {
343     /* 1: get the first parent with the same orientation */
344     Con *parent = focused->parent;
345     while (focused->type != CT_WORKSPACE &&
346            (con_orientation(parent) != orientation ||
347             con_num_children(parent) == 1)) {
348         LOG("need to go one level further up\n");
349         /* if the current parent is an output, we are at a workspace
350          * and the orientation still does not match */
351         if (parent->type == CT_WORKSPACE)
352             return;
353         parent = parent->parent;
354     }
355     Con *current = TAILQ_FIRST(&(parent->focus_head));
356     assert(current != TAILQ_END(&(parent->focus_head)));
357
358     if (TAILQ_EMPTY(&(parent->nodes_head))) {
359         DLOG("Nothing to focus here, move along...\n");
360         return;
361     }
362
363     /* 2: chose next (or previous) */
364     Con *next;
365     if (way == 'n') {
366         next = TAILQ_NEXT(current, nodes);
367         /* if we are at the end of the list, we need to wrap */
368         if (next == TAILQ_END(&(parent->nodes_head)))
369             next = TAILQ_FIRST(&(parent->nodes_head));
370     } else {
371         next = TAILQ_PREV(current, nodes_head, nodes);
372         /* if we are at the end of the list, we need to wrap */
373         if (next == TAILQ_END(&(parent->nodes_head)))
374             next = TAILQ_LAST(&(parent->nodes_head), nodes_head);
375     }
376
377     /* 3: focus choice comes in here. at the moment we will go down
378      * until we find a window */
379     /* TODO: check for window, atm we only go down as far as possible */
380     con_focus(con_descend_focused(next));
381 }
382
383 /*
384  * tree_flatten() removes pairs of redundant split containers, e.g.:
385  *       [workspace, horizontal]
386  *   [v-split]           [child3]
387  *   [h-split]
388  * [child1] [child2]
389  * In this example, the v-split and h-split container are redundant.
390  * Such a situation can be created by moving containers in a direction which is
391  * not the orientation of their parent container. i3 needs to create a new
392  * split container then and if you move containers this way multiple times,
393  * redundant chains of split-containers can be the result.
394  *
395  */
396 void tree_flatten(Con *con) {
397     Con *current, *child, *parent = con->parent;
398     DLOG("Checking if I can flatten con = %p / %s\n", con, con->name);
399
400     /* We only consider normal containers without windows */
401     if (con->type != CT_CON || con->window != NULL)
402         goto recurse;
403
404     /* Ensure it got only one child */
405     child = TAILQ_FIRST(&(con->nodes_head));
406     if (child == NULL || TAILQ_NEXT(child, nodes) != NULL)
407         goto recurse;
408
409     /* The child must have a different orientation than the con but the same as
410      * the con’s parent to be redundant */
411     if (con->orientation == NO_ORIENTATION ||
412         child->orientation == NO_ORIENTATION ||
413         con->orientation == child->orientation ||
414         child->orientation != parent->orientation)
415         goto recurse;
416
417     DLOG("Alright, I have to flatten this situation now. Stay calm.\n");
418     /* 1: save focus */
419     Con *focus_next = TAILQ_FIRST(&(child->focus_head));
420
421     DLOG("detaching...\n");
422     /* 2: re-attach the children to the parent before con */
423     while (!TAILQ_EMPTY(&(child->nodes_head))) {
424         current = TAILQ_FIRST(&(child->nodes_head));
425         DLOG("detaching current=%p / %s\n", current, current->name);
426         con_detach(current);
427         DLOG("re-attaching\n");
428         /* We don’t use con_attach() here because for a CT_CON, the special
429          * case handling of con_attach() does not trigger. So all it would do
430          * is calling TAILQ_INSERT_AFTER, but with the wrong container. So we
431          * directly use the TAILQ macros. */
432         current->parent = parent;
433         TAILQ_INSERT_BEFORE(con, current, nodes);
434         DLOG("attaching to focus list\n");
435         TAILQ_INSERT_TAIL(&(parent->focus_head), current, focused);
436         current->percent = con->percent;
437     }
438     DLOG("re-attached all\n");
439
440     /* 3: restore focus, if con was focused */
441     if (focus_next != NULL &&
442         TAILQ_FIRST(&(parent->focus_head)) == con) {
443         DLOG("restoring focus to focus_next=%p\n", focus_next);
444         TAILQ_REMOVE(&(parent->focus_head), focus_next, focused);
445         TAILQ_INSERT_HEAD(&(parent->focus_head), focus_next, focused);
446         DLOG("restored focus.\n");
447     }
448
449     /* 4: close the redundant cons */
450     DLOG("closing redundant cons\n");
451     tree_close(con, false, true);
452
453     /* Well, we got to abort the recursion here because we destroyed the
454      * container. However, if tree_flatten() is called sufficiently often,
455      * there can’t be the situation of having two pairs of redundant containers
456      * at once. Therefore, we can safely abort the recursion on this level
457      * after flattening. */
458     return;
459
460 recurse:
461     /* We cannot use normal foreach here because tree_flatten might close the
462      * current container. */
463     current = TAILQ_FIRST(&(con->nodes_head));
464     while (current != NULL) {
465         Con *next = TAILQ_NEXT(current, nodes);
466         tree_flatten(current);
467         current = next;
468     }
469
470     current = TAILQ_FIRST(&(con->floating_head));
471     while (current != NULL) {
472         Con *next = TAILQ_NEXT(current, floating_windows);
473         tree_flatten(current);
474         current = next;
475     }
476 }