]> git.sur5r.net Git - i3/i3/blob - src/load_layout.c
Merge branch 'master' into next
[i3/i3] / src / load_layout.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  */
5 #include <yajl/yajl_common.h>
6 #include <yajl/yajl_gen.h>
7 #include <yajl/yajl_parse.h>
8 #include <yajl/yajl_version.h>
9
10 #include "all.h"
11
12 /* TODO: refactor the whole parsing thing */
13
14 static char *last_key;
15 static Con *json_node;
16 static Con *to_focus;
17 static bool parsing_swallows;
18 static bool parsing_rect;
19 static bool parsing_window_rect;
20 static bool parsing_geometry;
21 struct Match *current_swallow;
22
23 static int json_start_map(void *ctx) {
24     LOG("start of map, last_key = %s\n", last_key);
25     if (parsing_swallows) {
26         LOG("creating new swallow\n");
27         current_swallow = smalloc(sizeof(Match));
28         match_init(current_swallow);
29         TAILQ_INSERT_TAIL(&(json_node->swallow_head), current_swallow, matches);
30     } else {
31         if (!parsing_rect && !parsing_window_rect && !parsing_geometry) {
32             if (last_key && strcasecmp(last_key, "floating_nodes") == 0) {
33                 DLOG("New floating_node\n");
34                 Con *ws = con_get_workspace(json_node);
35                 json_node = con_new(NULL, NULL);
36                 json_node->parent = ws;
37                 DLOG("Parent is workspace = %p\n", ws);
38             } else {
39                 Con *parent = json_node;
40                 json_node = con_new(NULL, NULL);
41                 json_node->parent = parent;
42             }
43         }
44     }
45     return 1;
46 }
47
48 static int json_end_map(void *ctx) {
49     LOG("end of map\n");
50     if (!parsing_swallows && !parsing_rect && !parsing_window_rect && !parsing_geometry) {
51         LOG("attaching\n");
52         con_attach(json_node, json_node->parent, true);
53         json_node = json_node->parent;
54     }
55     if (parsing_rect)
56         parsing_rect = false;
57     if (parsing_window_rect)
58         parsing_window_rect = false;
59     if (parsing_geometry)
60         parsing_geometry = false;
61     return 1;
62 }
63
64 static int json_end_array(void *ctx) {
65     LOG("end of array\n");
66     parsing_swallows = false;
67     return 1;
68 }
69
70 #if YAJL_MAJOR < 2
71 static int json_key(void *ctx, const unsigned char *val, unsigned int len) {
72 #else
73 static int json_key(void *ctx, const unsigned char *val, size_t len) {
74 #endif
75     LOG("key: %.*s\n", (int)len, val);
76     FREE(last_key);
77     last_key = scalloc((len+1) * sizeof(char));
78     memcpy(last_key, val, len);
79     if (strcasecmp(last_key, "swallows") == 0) {
80         parsing_swallows = true;
81     }
82     if (strcasecmp(last_key, "rect") == 0)
83         parsing_rect = true;
84     if (strcasecmp(last_key, "window_rect") == 0)
85         parsing_window_rect = true;
86     if (strcasecmp(last_key, "geometry") == 0)
87         parsing_geometry = true;
88     return 1;
89 }
90
91 #if YAJL_MAJOR >= 2
92 static int json_string(void *ctx, const unsigned char *val, size_t len) {
93 #else
94 static int json_string(void *ctx, const unsigned char *val, unsigned int len) {
95 #endif
96     LOG("string: %.*s for key %s\n", len, val, last_key);
97     if (parsing_swallows) {
98         /* TODO: the other swallowing keys */
99         if (strcasecmp(last_key, "class") == 0) {
100             current_swallow->class = scalloc((len+1) * sizeof(char));
101             memcpy(current_swallow->class, val, len);
102         }
103         LOG("unhandled yet: swallow\n");
104     } else {
105         if (strcasecmp(last_key, "name") == 0) {
106             json_node->name = scalloc((len+1) * sizeof(char));
107             memcpy(json_node->name, val, len);
108         } else if (strcasecmp(last_key, "sticky_group") == 0) {
109             json_node->sticky_group = scalloc((len+1) * sizeof(char));
110             memcpy(json_node->sticky_group, val, len);
111             LOG("sticky_group of this container is %s\n", json_node->sticky_group);
112         } else if (strcasecmp(last_key, "orientation") == 0) {
113             char *buf = NULL;
114             asprintf(&buf, "%.*s", (int)len, val);
115             if (strcasecmp(buf, "none") == 0)
116                 json_node->orientation = NO_ORIENTATION;
117             else if (strcasecmp(buf, "horizontal") == 0)
118                 json_node->orientation = HORIZ;
119             else if (strcasecmp(buf, "vertical") == 0)
120                 json_node->orientation = VERT;
121             else LOG("Unhandled orientation: %s\n", buf);
122             free(buf);
123         } else if (strcasecmp(last_key, "border") == 0) {
124             char *buf = NULL;
125             asprintf(&buf, "%.*s", (int)len, val);
126             if (strcasecmp(buf, "none") == 0)
127                 json_node->border_style = BS_NONE;
128             else if (strcasecmp(buf, "1pixel") == 0)
129                 json_node->border_style = BS_1PIXEL;
130             else if (strcasecmp(buf, "normal") == 0)
131                 json_node->border_style = BS_NORMAL;
132             else LOG("Unhandled \"border\": %s\n", buf);
133             free(buf);
134         } else if (strcasecmp(last_key, "layout") == 0) {
135             char *buf = NULL;
136             asprintf(&buf, "%.*s", (int)len, val);
137             if (strcasecmp(buf, "default") == 0)
138                 json_node->layout = L_DEFAULT;
139             else if (strcasecmp(buf, "stacked") == 0)
140                 json_node->layout = L_STACKED;
141             else if (strcasecmp(buf, "tabbed") == 0)
142                 json_node->layout = L_TABBED;
143             else if (strcasecmp(buf, "dockarea") == 0)
144                 json_node->layout = L_DOCKAREA;
145             else if (strcasecmp(buf, "output") == 0)
146                 json_node->layout = L_OUTPUT;
147             else LOG("Unhandled \"layout\": %s\n", buf);
148             free(buf);
149         } else if (strcasecmp(last_key, "mark") == 0) {
150             char *buf = NULL;
151             asprintf(&buf, "%.*s", (int)len, val);
152             json_node->mark = buf;
153         }
154     }
155     return 1;
156 }
157
158 #if YAJL_MAJOR >= 2
159 static int json_int(void *ctx, long long val) {
160     LOG("int %lld for key %s\n", val, last_key);
161 #else
162 static int json_int(void *ctx, long val) {
163     LOG("int %ld for key %s\n", val, last_key);
164 #endif
165     if (strcasecmp(last_key, "type") == 0) {
166         json_node->type = val;
167     }
168     if (strcasecmp(last_key, "fullscreen_mode") == 0) {
169         json_node->fullscreen_mode = val;
170     }
171     if (strcasecmp(last_key, "num") == 0)
172         json_node->num = val;
173
174     if (parsing_rect || parsing_window_rect || parsing_geometry) {
175         Rect *r;
176         if (parsing_rect)
177             r = &(json_node->rect);
178         else if (parsing_window_rect)
179             r = &(json_node->window_rect);
180         else r = &(json_node->geometry);
181         if (strcasecmp(last_key, "x") == 0)
182             r->x = val;
183         else if (strcasecmp(last_key, "y") == 0)
184             r->y = val;
185         else if (strcasecmp(last_key, "width") == 0)
186             r->width = val;
187         else if (strcasecmp(last_key, "height") == 0)
188             r->height = val;
189         else printf("WARNING: unknown key %s in rect\n", last_key);
190         printf("rect now: (%d, %d, %d, %d)\n",
191                 r->x, r->y, r->width, r->height);
192     }
193     if (parsing_swallows) {
194         if (strcasecmp(last_key, "id") == 0) {
195             current_swallow->id = val;
196         }
197         if (strcasecmp(last_key, "dock") == 0) {
198             current_swallow->dock = val;
199         }
200         if (strcasecmp(last_key, "insert_where") == 0) {
201             current_swallow->insert_where = val;
202         }
203     }
204
205     return 1;
206 }
207
208 static int json_bool(void *ctx, int val) {
209     LOG("bool %d for key %s\n", val, last_key);
210     if (strcasecmp(last_key, "focused") == 0 && val) {
211         to_focus = json_node;
212     }
213
214     return 1;
215 }
216
217 static int json_double(void *ctx, double val) {
218     LOG("double %f for key %s\n", val, last_key);
219     if (strcasecmp(last_key, "percent") == 0) {
220         json_node->percent = val;
221     }
222     return 1;
223 }
224
225 void tree_append_json(const char *filename) {
226     /* TODO: percent of other windows are not correctly fixed at the moment */
227     FILE *f;
228     if ((f = fopen(filename, "r")) == NULL) {
229         LOG("Cannot open file\n");
230         return;
231     }
232     char *buf = malloc(65535); /* TODO */
233     int n = fread(buf, 1, 65535, f);
234     LOG("read %d bytes\n", n);
235     yajl_gen g;
236     yajl_handle hand;
237     yajl_callbacks callbacks;
238     memset(&callbacks, '\0', sizeof(yajl_callbacks));
239     callbacks.yajl_start_map = json_start_map;
240     callbacks.yajl_end_map = json_end_map;
241     callbacks.yajl_end_array = json_end_array;
242     callbacks.yajl_string = json_string;
243     callbacks.yajl_map_key = json_key;
244     callbacks.yajl_integer = json_int;
245     callbacks.yajl_double = json_double;
246     callbacks.yajl_boolean = json_bool;
247 #if YAJL_MAJOR >= 2
248     g = yajl_gen_alloc(NULL);
249     hand = yajl_alloc(&callbacks, NULL, (void*)g);
250 #else
251     g = yajl_gen_alloc(NULL, NULL);
252     hand = yajl_alloc(&callbacks, NULL, NULL, (void*)g);
253 #endif
254     yajl_status stat;
255     json_node = focused;
256     to_focus = NULL;
257     parsing_rect = false;
258     parsing_window_rect = false;
259     parsing_geometry = false;
260     setlocale(LC_NUMERIC, "C");
261     stat = yajl_parse(hand, (const unsigned char*)buf, n);
262     if (stat != yajl_status_ok)
263     {
264         unsigned char * str = yajl_get_error(hand, 1, (const unsigned char*)buf, n);
265         fprintf(stderr, "%s\n", (const char *) str);
266         yajl_free_error(hand, str);
267     }
268
269     setlocale(LC_NUMERIC, "");
270 #if YAJL_MAJOR >= 2
271     yajl_complete_parse(hand);
272 #else
273     yajl_parse_complete(hand);
274 #endif
275
276     fclose(f);
277     if (to_focus)
278         con_focus(to_focus);
279 }