]> git.sur5r.net Git - i3/i3/blob - src/load_layout.c
Merge branch 'master' into next
[i3/i3] / src / load_layout.c
1 #undef I3__FILE__
2 #define I3__FILE__ "load_layout.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  * load_layout.c: Restore (parts of) the layout, for example after an inplace
10  *                restart.
11  *
12  */
13 #include "all.h"
14
15 #include <yajl/yajl_common.h>
16 #include <yajl/yajl_gen.h>
17 #include <yajl/yajl_parse.h>
18 #include <yajl/yajl_version.h>
19
20 /* TODO: refactor the whole parsing thing */
21
22 static char *last_key;
23 static Con *json_node;
24 static Con *to_focus;
25 static bool parsing_swallows;
26 static bool parsing_rect;
27 static bool parsing_window_rect;
28 static bool parsing_geometry;
29 static bool parsing_focus;
30 struct Match *current_swallow;
31
32 /* This list is used for reordering the focus stack after parsing the 'focus'
33  * array. */
34 struct focus_mapping {
35     int old_id;
36     TAILQ_ENTRY(focus_mapping) focus_mappings;
37 };
38
39 static TAILQ_HEAD(focus_mappings_head, focus_mapping) focus_mappings =
40   TAILQ_HEAD_INITIALIZER(focus_mappings);
41
42 static int json_start_map(void *ctx) {
43     LOG("start of map, last_key = %s\n", last_key);
44     if (parsing_swallows) {
45         LOG("creating new swallow\n");
46         current_swallow = smalloc(sizeof(Match));
47         match_init(current_swallow);
48         TAILQ_INSERT_TAIL(&(json_node->swallow_head), current_swallow, matches);
49     } else {
50         if (!parsing_rect && !parsing_window_rect && !parsing_geometry) {
51             if (last_key && strcasecmp(last_key, "floating_nodes") == 0) {
52                 DLOG("New floating_node\n");
53                 Con *ws = con_get_workspace(json_node);
54                 json_node = con_new(NULL, NULL);
55                 json_node->parent = ws;
56                 DLOG("Parent is workspace = %p\n", ws);
57             } else {
58                 Con *parent = json_node;
59                 json_node = con_new(NULL, NULL);
60                 json_node->parent = parent;
61             }
62         }
63     }
64     return 1;
65 }
66
67 static int json_end_map(void *ctx) {
68     LOG("end of map\n");
69     if (!parsing_swallows && !parsing_rect && !parsing_window_rect && !parsing_geometry) {
70         LOG("attaching\n");
71         con_attach(json_node, json_node->parent, true);
72         json_node = json_node->parent;
73     }
74     if (parsing_rect)
75         parsing_rect = false;
76     if (parsing_window_rect)
77         parsing_window_rect = false;
78     if (parsing_geometry)
79         parsing_geometry = false;
80     return 1;
81 }
82
83 static int json_end_array(void *ctx) {
84     LOG("end of array\n");
85     parsing_swallows = false;
86     if (parsing_focus) {
87         /* Clear the list of focus mappings */
88         struct focus_mapping *mapping;
89         TAILQ_FOREACH_REVERSE(mapping, &focus_mappings, focus_mappings_head, focus_mappings) {
90             LOG("focus (reverse) %d\n", mapping->old_id);
91             Con *con;
92             TAILQ_FOREACH(con, &(json_node->focus_head), focused) {
93                 if (con->old_id != mapping->old_id)
94                     continue;
95                 LOG("got it! %p\n", con);
96                 /* Move this entry to the top of the focus list. */
97                 TAILQ_REMOVE(&(json_node->focus_head), con, focused);
98                 TAILQ_INSERT_HEAD(&(json_node->focus_head), con, focused);
99                 break;
100             }
101         }
102         while (!TAILQ_EMPTY(&focus_mappings)) {
103             mapping = TAILQ_FIRST(&focus_mappings);
104             TAILQ_REMOVE(&focus_mappings, mapping, focus_mappings);
105             free(mapping);
106         }
107         parsing_focus = false;
108     }
109     return 1;
110 }
111
112 #if YAJL_MAJOR < 2
113 static int json_key(void *ctx, const unsigned char *val, unsigned int len) {
114 #else
115 static int json_key(void *ctx, const unsigned char *val, size_t len) {
116 #endif
117     LOG("key: %.*s\n", (int)len, val);
118     FREE(last_key);
119     last_key = scalloc((len+1) * sizeof(char));
120     memcpy(last_key, val, len);
121     if (strcasecmp(last_key, "swallows") == 0)
122         parsing_swallows = true;
123
124     if (strcasecmp(last_key, "rect") == 0)
125         parsing_rect = true;
126
127     if (strcasecmp(last_key, "window_rect") == 0)
128         parsing_window_rect = true;
129
130     if (strcasecmp(last_key, "geometry") == 0)
131         parsing_geometry = true;
132
133     if (strcasecmp(last_key, "focus") == 0)
134         parsing_focus = true;
135
136     return 1;
137 }
138
139 #if YAJL_MAJOR >= 2
140 static int json_string(void *ctx, const unsigned char *val, size_t len) {
141 #else
142 static int json_string(void *ctx, const unsigned char *val, unsigned int len) {
143 #endif
144     LOG("string: %.*s for key %s\n", (int)len, val, last_key);
145     if (parsing_swallows) {
146         /* TODO: the other swallowing keys */
147         if (strcasecmp(last_key, "class") == 0) {
148             current_swallow->class = scalloc((len+1) * sizeof(char));
149             memcpy(current_swallow->class, val, len);
150         }
151         LOG("unhandled yet: swallow\n");
152     } else {
153         if (strcasecmp(last_key, "name") == 0) {
154             json_node->name = scalloc((len+1) * sizeof(char));
155             memcpy(json_node->name, val, len);
156         } else if (strcasecmp(last_key, "sticky_group") == 0) {
157             json_node->sticky_group = scalloc((len+1) * sizeof(char));
158             memcpy(json_node->sticky_group, val, len);
159             LOG("sticky_group of this container is %s\n", json_node->sticky_group);
160         } else if (strcasecmp(last_key, "orientation") == 0) {
161             /* Upgrade path from older versions of i3 (doing an inplace restart
162              * to a newer version):
163              * "orientation" is dumped before "layout". Therefore, we store
164              * whether the orientation was horizontal or vertical in the
165              * last_split_layout. When we then encounter layout == "default",
166              * we will use the last_split_layout as layout instead. */
167             char *buf = NULL;
168             sasprintf(&buf, "%.*s", (int)len, val);
169             if (strcasecmp(buf, "none") == 0 ||
170                 strcasecmp(buf, "horizontal") == 0)
171                 json_node->last_split_layout = L_SPLITH;
172             else if (strcasecmp(buf, "vertical") == 0)
173                 json_node->last_split_layout = L_SPLITV;
174             else LOG("Unhandled orientation: %s\n", buf);
175
176             /* What used to be an implicit check whether orientation !=
177              * NO_ORIENTATION is now a proper separate flag. */
178             if (strcasecmp(buf, "none") != 0)
179                 json_node->split = true;
180             free(buf);
181         } else if (strcasecmp(last_key, "border") == 0) {
182             char *buf = NULL;
183             sasprintf(&buf, "%.*s", (int)len, val);
184             if (strcasecmp(buf, "none") == 0)
185                 json_node->border_style = BS_NONE;
186             else if (strcasecmp(buf, "1pixel") == 0)
187                 json_node->border_style = BS_1PIXEL;
188             else if (strcasecmp(buf, "normal") == 0)
189                 json_node->border_style = BS_NORMAL;
190             else LOG("Unhandled \"border\": %s\n", buf);
191             free(buf);
192         } else if (strcasecmp(last_key, "layout") == 0) {
193             char *buf = NULL;
194             sasprintf(&buf, "%.*s", (int)len, val);
195             if (strcasecmp(buf, "default") == 0)
196                 /* This set above when we read "orientation". */
197                 json_node->layout = json_node->last_split_layout;
198             else if (strcasecmp(buf, "stacked") == 0)
199                 json_node->layout = L_STACKED;
200             else if (strcasecmp(buf, "tabbed") == 0)
201                 json_node->layout = L_TABBED;
202             else if (strcasecmp(buf, "dockarea") == 0) {
203                 json_node->layout = L_DOCKAREA;
204                 /* Necessary for migrating from older versions of i3. */
205                 json_node->split = false;
206             } else if (strcasecmp(buf, "output") == 0)
207                 json_node->layout = L_OUTPUT;
208             else if (strcasecmp(buf, "splith") == 0)
209                 json_node->layout = L_SPLITH;
210             else if (strcasecmp(buf, "splitv") == 0)
211                 json_node->layout = L_SPLITV;
212             else LOG("Unhandled \"layout\": %s\n", buf);
213             free(buf);
214         } else if (strcasecmp(last_key, "last_split_layout") == 0) {
215             char *buf = NULL;
216             sasprintf(&buf, "%.*s", (int)len, val);
217             if (strcasecmp(buf, "splith") == 0)
218                 json_node->last_split_layout = L_SPLITH;
219             else if (strcasecmp(buf, "splitv") == 0)
220                 json_node->last_split_layout = L_SPLITV;
221             else LOG("Unhandled \"last_splitlayout\": %s\n", buf);
222             free(buf);
223         } else if (strcasecmp(last_key, "mark") == 0) {
224             char *buf = NULL;
225             sasprintf(&buf, "%.*s", (int)len, val);
226             json_node->mark = buf;
227         } else if (strcasecmp(last_key, "floating") == 0) {
228             char *buf = NULL;
229             sasprintf(&buf, "%.*s", (int)len, val);
230             if (strcasecmp(buf, "auto_off") == 0)
231                 json_node->floating = FLOATING_AUTO_OFF;
232             else if (strcasecmp(buf, "auto_on") == 0)
233                 json_node->floating = FLOATING_AUTO_ON;
234             else if (strcasecmp(buf, "user_off") == 0)
235                 json_node->floating = FLOATING_USER_OFF;
236             else if (strcasecmp(buf, "user_on") == 0)
237                 json_node->floating = FLOATING_USER_ON;
238             free(buf);
239         } else if (strcasecmp(last_key, "scratchpad_state") == 0) {
240             char *buf = NULL;
241             sasprintf(&buf, "%.*s", (int)len, val);
242             if (strcasecmp(buf, "none") == 0)
243                 json_node->scratchpad_state = SCRATCHPAD_NONE;
244             else if (strcasecmp(buf, "fresh") == 0)
245                 json_node->scratchpad_state = SCRATCHPAD_FRESH;
246             else if (strcasecmp(buf, "changed") == 0)
247                 json_node->scratchpad_state = SCRATCHPAD_CHANGED;
248             free(buf);
249         }
250     }
251     return 1;
252 }
253
254 #if YAJL_MAJOR >= 2
255 static int json_int(void *ctx, long long val) {
256     LOG("int %lld for key %s\n", val, last_key);
257 #else
258 static int json_int(void *ctx, long val) {
259     LOG("int %ld for key %s\n", val, last_key);
260 #endif
261     if (strcasecmp(last_key, "type") == 0)
262         json_node->type = val;
263
264     if (strcasecmp(last_key, "fullscreen_mode") == 0)
265         json_node->fullscreen_mode = val;
266
267     if (strcasecmp(last_key, "num") == 0)
268         json_node->num = val;
269
270     if (!parsing_swallows && strcasecmp(last_key, "id") == 0)
271         json_node->old_id = val;
272
273     if (parsing_focus) {
274         struct focus_mapping *focus_mapping = scalloc(sizeof(struct focus_mapping));
275         focus_mapping->old_id = val;
276         TAILQ_INSERT_TAIL(&focus_mappings, focus_mapping, focus_mappings);
277     }
278
279     if (parsing_rect || parsing_window_rect || parsing_geometry) {
280         Rect *r;
281         if (parsing_rect)
282             r = &(json_node->rect);
283         else if (parsing_window_rect)
284             r = &(json_node->window_rect);
285         else r = &(json_node->geometry);
286         if (strcasecmp(last_key, "x") == 0)
287             r->x = val;
288         else if (strcasecmp(last_key, "y") == 0)
289             r->y = val;
290         else if (strcasecmp(last_key, "width") == 0)
291             r->width = val;
292         else if (strcasecmp(last_key, "height") == 0)
293             r->height = val;
294         else printf("WARNING: unknown key %s in rect\n", last_key);
295         printf("rect now: (%d, %d, %d, %d)\n",
296                 r->x, r->y, r->width, r->height);
297     }
298     if (parsing_swallows) {
299         if (strcasecmp(last_key, "id") == 0) {
300             current_swallow->id = val;
301         }
302         if (strcasecmp(last_key, "dock") == 0) {
303             current_swallow->dock = val;
304         }
305         if (strcasecmp(last_key, "insert_where") == 0) {
306             current_swallow->insert_where = val;
307         }
308     }
309
310     return 1;
311 }
312
313 static int json_bool(void *ctx, int val) {
314     LOG("bool %d for key %s\n", val, last_key);
315     if (strcasecmp(last_key, "focused") == 0 && val) {
316         to_focus = json_node;
317     }
318
319     if (strcasecmp(last_key, "split") == 0)
320         json_node->split = val;
321
322     if (parsing_swallows) {
323         if (strcasecmp(last_key, "restart_mode") == 0)
324             current_swallow->restart_mode = val;
325     }
326
327     return 1;
328 }
329
330 static int json_double(void *ctx, double val) {
331     LOG("double %f for key %s\n", val, last_key);
332     if (strcasecmp(last_key, "percent") == 0) {
333         json_node->percent = val;
334     }
335     return 1;
336 }
337
338 void tree_append_json(const char *filename) {
339     /* TODO: percent of other windows are not correctly fixed at the moment */
340     FILE *f;
341     if ((f = fopen(filename, "r")) == NULL) {
342         LOG("Cannot open file\n");
343         return;
344     }
345     char *buf = malloc(65535); /* TODO */
346     int n = fread(buf, 1, 65535, f);
347     LOG("read %d bytes\n", n);
348     yajl_gen g;
349     yajl_handle hand;
350     yajl_callbacks callbacks;
351     memset(&callbacks, '\0', sizeof(yajl_callbacks));
352     callbacks.yajl_start_map = json_start_map;
353     callbacks.yajl_end_map = json_end_map;
354     callbacks.yajl_end_array = json_end_array;
355     callbacks.yajl_string = json_string;
356     callbacks.yajl_map_key = json_key;
357     callbacks.yajl_integer = json_int;
358     callbacks.yajl_double = json_double;
359     callbacks.yajl_boolean = json_bool;
360 #if YAJL_MAJOR >= 2
361     g = yajl_gen_alloc(NULL);
362     hand = yajl_alloc(&callbacks, NULL, (void*)g);
363 #else
364     g = yajl_gen_alloc(NULL, NULL);
365     hand = yajl_alloc(&callbacks, NULL, NULL, (void*)g);
366 #endif
367     yajl_status stat;
368     json_node = focused;
369     to_focus = NULL;
370     parsing_rect = false;
371     parsing_window_rect = false;
372     parsing_geometry = false;
373     setlocale(LC_NUMERIC, "C");
374     stat = yajl_parse(hand, (const unsigned char*)buf, n);
375     if (stat != yajl_status_ok)
376     {
377         unsigned char * str = yajl_get_error(hand, 1, (const unsigned char*)buf, n);
378         fprintf(stderr, "%s\n", (const char *) str);
379         yajl_free_error(hand, str);
380     }
381
382     setlocale(LC_NUMERIC, "");
383 #if YAJL_MAJOR >= 2
384     yajl_complete_parse(hand);
385 #else
386     yajl_parse_complete(hand);
387 #endif
388
389     fclose(f);
390     if (to_focus)
391         con_focus(to_focus);
392 }