]> git.sur5r.net Git - i3/i3/blob - src/tree.c
Implement 'split'
[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
14  *
15  */
16 bool tree_restore() {
17     char *globbed = glob_path("~/.i3/_restart.json");
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     char *old_restart = glob_path("~/.i3/_restart.json.old");
31     unlink(old_restart);
32     rename(globbed, old_restart);
33     free(globbed);
34     free(old_restart);
35
36     printf("appended tree, using new root\n");
37     croot = TAILQ_FIRST(&(croot->nodes_head));
38     printf("new root = %p\n", croot);
39     Con *out = TAILQ_FIRST(&(croot->nodes_head));
40     printf("out = %p\n", out);
41     Con *ws = TAILQ_FIRST(&(out->nodes_head));
42     printf("ws = %p\n", ws);
43     con_focus(ws);
44
45     return true;
46 }
47
48 /*
49  * Initializes the tree by creating the root node, adding all RandR outputs
50  * to the tree (that means randr_init() has to be called before) and
51  * assigning a workspace to each RandR output.
52  *
53  */
54 void tree_init() {
55     Output *output;
56
57     croot = con_new(NULL);
58     croot->name = "root";
59     croot->type = CT_ROOT;
60
61     Con *ws;
62     /* add the outputs */
63     TAILQ_FOREACH(output, &outputs, outputs) {
64         if (!output->active)
65             continue;
66
67         Con *oc = con_new(croot);
68         oc->name = strdup(output->name);
69         oc->type = CT_OUTPUT;
70         oc->rect = output->rect;
71
72         /* add a workspace to this output */
73         ws = con_new(oc);
74         ws->name = strdup("1");
75         ws->fullscreen_mode = CF_OUTPUT;
76     }
77
78     con_focus(ws);
79 }
80
81 /*
82  * Opens an empty container in the current container
83  *
84  */
85 Con *tree_open_con(Con *con) {
86     if (con == NULL) {
87         /* every focusable Con has a parent (outputs have parent root) */
88         con = focused->parent;
89         /* If the parent is an output, we are on a workspace. In this case,
90          * the new container needs to be opened as a leaf of the workspace. */
91         if (con->type == CT_OUTPUT)
92             con = focused;
93     }
94
95     assert(con != NULL);
96
97     /* 3: re-calculate child->percent for each child */
98     con_fix_percent(con, WINDOW_ADD);
99
100     /* 4: add a new container leaf to this con */
101     Con *new = con_new(con);
102     con_focus(new);
103
104     return new;
105 }
106
107 /*
108  * Closes the given container including all children
109  *
110  */
111 void tree_close(Con *con) {
112     /* TODO: check floating clients and adjust old_parent if necessary */
113
114     /* Get the container which is next focused */
115     Con *next;
116     if (con->type == CT_FLOATING_CON) {
117         next = TAILQ_NEXT(con, floating_windows);
118         if (next == TAILQ_END(&(con->parent->floating_head)))
119             next = con->parent;
120     } else {
121         next = TAILQ_NEXT(con, focused);
122         if (next == TAILQ_END(&(con->parent->nodes_head)))
123             next = con->parent;
124     }
125
126     LOG("closing %p\n", con);
127     Con *child;
128     /* We cannot use TAILQ_FOREACH because the children get deleted
129      * in their parent’s nodes_head */
130     while (!TAILQ_EMPTY(&(con->nodes_head))) {
131         child = TAILQ_FIRST(&(con->nodes_head));
132         tree_close(child);
133     }
134
135     /* kill the X11 part of this container */
136     x_con_kill(con);
137
138     con_detach(con);
139     con_fix_percent(con->parent, WINDOW_REMOVE);
140
141     if (con->window != NULL) {
142         x_window_kill(con->window->id);
143         free(con->window);
144     }
145     free(con->name);
146     TAILQ_REMOVE(&all_cons, con, all_cons);
147     free(con);
148
149     /* TODO: check if the container (or one of its children) was focused */
150     con_focus(next);
151 }
152
153 void tree_close_con() {
154     assert(focused != NULL);
155     if (focused->parent->type == CT_OUTPUT) {
156         LOG("Cannot close workspace\n");
157         return;
158     }
159
160     /* Kill con */
161     tree_close(focused);
162 }
163
164 /*
165  * Splits (horizontally or vertically) the given container by creating a new
166  * container which contains the old one and the future ones.
167  *
168  */
169 void tree_split(Con *con, orientation_t orientation) {
170     /* for a workspace, we just need to change orientation */
171     if (con->parent->type == CT_OUTPUT) {
172         con->orientation = orientation;
173         return;
174     }
175     /* 2: replace it with a new Con */
176     Con *new = con_new(NULL);
177     Con *parent = con->parent;
178     TAILQ_REPLACE(&(parent->nodes_head), con, new, nodes);
179     TAILQ_REPLACE(&(parent->focus_head), con, new, focused);
180     new->parent = parent;
181     new->orientation = orientation;
182
183     /* 3: add it as a child to the new Con */
184     con_attach(con, new);
185 }
186
187 void level_up() {
188     /* We can focus up to the workspace, but not any higher in the tree */
189     if (focused->parent->type != CT_CON) {
190         printf("cannot go up\n");
191         return;
192     }
193     con_focus(focused->parent);
194 }
195
196 void level_down() {
197     /* Go down the focus stack of the current node */
198     Con *next = TAILQ_FIRST(&(focused->focus_head));
199     if (next == TAILQ_END(&(focused->focus_head))) {
200         printf("cannot go down\n");
201         return;
202     }
203     con_focus(next);
204 }
205
206 static void mark_unmapped(Con *con) {
207     Con *current;
208
209     con->mapped = false;
210     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
211         mark_unmapped(current);
212 }
213
214 void tree_render() {
215     if (croot == NULL)
216         return;
217
218     printf("-- BEGIN RENDERING --\n");
219     /* Reset map state for all nodes in tree */
220     /* TODO: a nicer method to walk all nodes would be good, maybe? */
221     mark_unmapped(croot);
222     croot->mapped = true;
223
224     /* We start rendering at an output */
225     Con *output;
226     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
227         printf("output %p / %s\n", output, output->name);
228         render_con(output);
229     }
230     x_push_changes(croot);
231     printf("-- END RENDERING --\n");
232 }
233
234 void tree_next(char way, orientation_t orientation) {
235     /* 1: get the first parent with the same orientation */
236     Con *parent = focused->parent;
237     while (parent->orientation != orientation) {
238         LOG("need to go one level further up\n");
239         /* if the current parent is an output, we are at a workspace
240          * and the orientation still does not match */
241         if (parent->parent->type == CT_OUTPUT)
242             return;
243         parent = parent->parent;
244     }
245     Con *current = TAILQ_FIRST(&(parent->focus_head));
246     assert(current != TAILQ_END(&(parent->focus_head)));
247
248     /* 2: chose next (or previous) */
249     Con *next;
250     if (way == 'n') {
251         next = TAILQ_NEXT(current, nodes);
252         /* if we are at the end of the list, we need to wrap */
253         if (next == TAILQ_END(&(parent->nodes_head)))
254             next = TAILQ_FIRST(&(parent->nodes_head));
255     } else {
256         next = TAILQ_PREV(current, nodes_head, nodes);
257         /* if we are at the end of the list, we need to wrap */
258         if (next == TAILQ_END(&(parent->nodes_head)))
259             next = TAILQ_LAST(&(parent->nodes_head), nodes_head);
260     }
261
262     /* 3: focus choice comes in here. at the moment we will go down
263      * until we find a window */
264     /* TODO: check for window, atm we only go down as far as possible */
265     while (!TAILQ_EMPTY(&(next->focus_head)))
266         next = TAILQ_FIRST(&(next->focus_head));
267
268     con_focus(next);
269 }
270
271 void tree_move(char way, orientation_t orientation) {
272     /* 1: get the first parent with the same orientation */
273     Con *parent = focused->parent;
274     bool level_changed = false;
275     while (parent->orientation != orientation) {
276         LOG("need to go one level further up\n");
277         /* if the current parent is an output, we are at a workspace
278          * and the orientation still does not match */
279         if (parent->parent->type == CT_OUTPUT)
280             return;
281         parent = parent->parent;
282         level_changed = true;
283     }
284     Con *current = TAILQ_FIRST(&(parent->focus_head));
285     assert(current != TAILQ_END(&(parent->focus_head)));
286
287     /* 2: chose next (or previous) */
288     Con *next = current;
289     if (way == 'n') {
290         LOG("i would insert it after %p / %s\n", next, next->name);
291         if (!level_changed) {
292             next = TAILQ_NEXT(next, nodes);
293             if (next == TAILQ_END(&(next->parent->nodes_head))) {
294                 LOG("cannot move further to the right\n");
295                 return;
296             }
297         }
298
299         con_detach(focused);
300         focused->parent = next->parent;
301
302         TAILQ_INSERT_AFTER(&(next->parent->nodes_head), next, focused, nodes);
303         TAILQ_INSERT_HEAD(&(next->parent->focus_head), focused, focused);
304         /* TODO: don’t influence focus handling? */
305     } else {
306         LOG("i would insert it before %p / %s\n", current, current->name);
307         if (!level_changed) {
308             next = TAILQ_PREV(next, nodes_head, nodes);
309             if (next == TAILQ_END(&(next->parent->nodes_head))) {
310                 LOG("cannot move further\n");
311                 return;
312             }
313         }
314
315         con_detach(focused);
316         focused->parent = next->parent;
317
318         TAILQ_INSERT_BEFORE(next, focused, nodes);
319         TAILQ_INSERT_HEAD(&(next->parent->focus_head), focused, focused);
320         /* TODO: don’t influence focus handling? */
321     }
322 }