]> git.sur5r.net Git - i3/i3/blob - src/load_layout.c
remove useless checks, size_t != ssize_t :)
[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);
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);
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, false);
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         }
124     }
125     return 1;
126 }
127
128 #if YAJL_MAJOR >= 2
129 static int json_int(void *ctx, long long val) {
130 #else
131 static int json_int(void *ctx, long val) {
132 #endif
133     LOG("int %d for key %s\n", val, last_key);
134     if (strcasecmp(last_key, "layout") == 0) {
135         json_node->layout = val;
136     }
137     if (strcasecmp(last_key, "type") == 0) {
138         json_node->type = val;
139     }
140     if (strcasecmp(last_key, "fullscreen_mode") == 0) {
141         json_node->fullscreen_mode = val;
142     }
143     if (strcasecmp(last_key, "focused") == 0 && val == 1) {
144         to_focus = json_node;
145     }
146
147     if (strcasecmp(last_key, "num") == 0)
148         json_node->num = val;
149
150     if (parsing_rect || parsing_window_rect || parsing_geometry) {
151         Rect *r;
152         if (parsing_rect)
153             r = &(json_node->rect);
154         else if (parsing_window_rect)
155             r = &(json_node->window_rect);
156         else r = &(json_node->geometry);
157         if (strcasecmp(last_key, "x") == 0)
158             r->x = val;
159         else if (strcasecmp(last_key, "y") == 0)
160             r->y = val;
161         else if (strcasecmp(last_key, "width") == 0)
162             r->width = val;
163         else if (strcasecmp(last_key, "height") == 0)
164             r->height = val;
165         else printf("WARNING: unknown key %s in rect\n", last_key);
166         printf("rect now: (%d, %d, %d, %d)\n",
167                 r->x, r->y, r->width, r->height);
168     }
169     if (parsing_swallows) {
170         if (strcasecmp(last_key, "id") == 0) {
171             current_swallow->id = val;
172         }
173         if (strcasecmp(last_key, "dock") == 0) {
174             current_swallow->dock = val;
175         }
176         if (strcasecmp(last_key, "insert_where") == 0) {
177             current_swallow->insert_where = val;
178         }
179     }
180
181     return 1;
182 }
183
184 static int json_double(void *ctx, double val) {
185     LOG("double %f for key %s\n", val, last_key);
186     if (strcasecmp(last_key, "percent") == 0) {
187         json_node->percent = val;
188     }
189     return 1;
190 }
191
192 void tree_append_json(const char *filename) {
193     /* TODO: percent of other windows are not correctly fixed at the moment */
194     FILE *f;
195     if ((f = fopen(filename, "r")) == NULL) {
196         LOG("Cannot open file\n");
197         return;
198     }
199     char *buf = malloc(65535); /* TODO */
200     int n = fread(buf, 1, 65535, f);
201     LOG("read %d bytes\n", n);
202     yajl_gen g;
203     yajl_handle hand;
204     yajl_callbacks callbacks;
205     memset(&callbacks, '\0', sizeof(yajl_callbacks));
206     callbacks.yajl_start_map = json_start_map;
207     callbacks.yajl_end_map = json_end_map;
208     callbacks.yajl_end_array = json_end_array;
209     callbacks.yajl_string = json_string;
210     callbacks.yajl_map_key = json_key;
211     callbacks.yajl_integer = json_int;
212     callbacks.yajl_double = json_double;
213 #if YAJL_MAJOR >= 2
214     g = yajl_gen_alloc(NULL);
215     hand = yajl_alloc(&callbacks, NULL, (void*)g);
216 #else
217     g = yajl_gen_alloc(NULL, NULL);
218     hand = yajl_alloc(&callbacks, NULL, NULL, (void*)g);
219 #endif
220     yajl_status stat;
221     json_node = focused;
222     to_focus = NULL;
223     parsing_rect = false;
224     parsing_window_rect = false;
225     parsing_geometry = false;
226     setlocale(LC_NUMERIC, "C");
227     stat = yajl_parse(hand, (const unsigned char*)buf, n);
228     if (stat != yajl_status_ok)
229     {
230         unsigned char * str = yajl_get_error(hand, 1, (const unsigned char*)buf, n);
231         fprintf(stderr, "%s\n", (const char *) str);
232         yajl_free_error(hand, str);
233     }
234
235     setlocale(LC_NUMERIC, "");
236 #if YAJL_MAJOR >= 2
237     yajl_complete_parse(hand);
238 #else
239     yajl_parse_complete(hand);
240 #endif
241
242     fclose(f);
243     if (to_focus)
244         con_focus(to_focus);
245 }