2 #define I3__FILE__ "load_layout.c"
15 #include <yajl/yajl_common.h>
16 #include <yajl/yajl_gen.h>
17 #include <yajl/yajl_parse.h>
18 #include <yajl/yajl_version.h>
45 LOG(
"creating new swallow\n");
52 DLOG(
"New floating_node\n");
54 json_node =
con_new(NULL, NULL);
56 DLOG(
"Parent is workspace = %p\n", ws);
59 json_node =
con_new(NULL, NULL);
60 json_node->
parent = parent;
72 json_node = json_node->
parent;
84 LOG(
"end of array\n");
90 LOG(
"focus (reverse) %d\n", mapping->
old_id);
95 LOG(
"got it! %p\n", con);
113 static int json_key(
void *ctx,
const unsigned char *val,
unsigned int len) {
115 static int json_key(
void *ctx,
const unsigned char *val,
size_t len) {
117 LOG(
"key: %.*s\n", (
int)len, val);
121 if (strcasecmp(
last_key,
"swallows") == 0)
124 if (strcasecmp(
last_key,
"rect") == 0)
127 if (strcasecmp(
last_key,
"window_rect") == 0)
130 if (strcasecmp(
last_key,
"geometry") == 0)
133 if (strcasecmp(
last_key,
"focus") == 0)
140 static int json_string(
void *ctx,
const unsigned char *val,
size_t len) {
142 static int json_string(
void *ctx,
const unsigned char *val,
unsigned int len) {
144 LOG(
"string: %.*s for key %s\n", (
int)len, val,
last_key);
147 if (strcasecmp(
last_key,
"class") == 0) {
148 current_swallow->
class =
scalloc((len+1) *
sizeof(
char));
149 memcpy(current_swallow->
class, val, len);
151 LOG(
"unhandled yet: swallow\n");
153 if (strcasecmp(
last_key,
"name") == 0) {
155 memcpy(json_node->
name, val, len);
156 }
else if (strcasecmp(
last_key,
"sticky_group") == 0) {
159 LOG(
"sticky_group of this container is %s\n", json_node->
sticky_group);
160 }
else if (strcasecmp(
last_key,
"orientation") == 0) {
169 if (strcasecmp(buf,
"none") == 0 ||
170 strcasecmp(buf,
"horizontal") == 0)
172 else if (strcasecmp(buf,
"vertical") == 0)
174 else LOG(
"Unhandled orientation: %s\n", buf);
178 if (strcasecmp(buf,
"none") != 0)
179 json_node->
split =
true;
181 }
else if (strcasecmp(
last_key,
"border") == 0) {
184 if (strcasecmp(buf,
"none") == 0)
186 else if (strcasecmp(buf,
"1pixel") == 0)
188 else if (strcasecmp(buf,
"normal") == 0)
190 else LOG(
"Unhandled \"border\": %s\n", buf);
192 }
else if (strcasecmp(
last_key,
"layout") == 0) {
195 if (strcasecmp(buf,
"default") == 0)
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;
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);
214 }
else if (strcasecmp(
last_key,
"workspace_layout") == 0) {
217 if (strcasecmp(buf,
"default") == 0)
219 else if (strcasecmp(buf,
"stacked") == 0)
221 else if (strcasecmp(buf,
"tabbed") == 0)
223 else LOG(
"Unhandled \"workspace_layout\": %s\n", buf);
225 }
else if (strcasecmp(
last_key,
"last_split_layout") == 0) {
228 if (strcasecmp(buf,
"splith") == 0)
230 else if (strcasecmp(buf,
"splitv") == 0)
232 else LOG(
"Unhandled \"last_splitlayout\": %s\n", buf);
234 }
else if (strcasecmp(
last_key,
"mark") == 0) {
237 json_node->
mark = buf;
238 }
else if (strcasecmp(
last_key,
"floating") == 0) {
241 if (strcasecmp(buf,
"auto_off") == 0)
242 json_node->
floating = FLOATING_AUTO_OFF;
243 else if (strcasecmp(buf,
"auto_on") == 0)
244 json_node->
floating = FLOATING_AUTO_ON;
245 else if (strcasecmp(buf,
"user_off") == 0)
246 json_node->
floating = FLOATING_USER_OFF;
247 else if (strcasecmp(buf,
"user_on") == 0)
248 json_node->
floating = FLOATING_USER_ON;
250 }
else if (strcasecmp(
last_key,
"scratchpad_state") == 0) {
253 if (strcasecmp(buf,
"none") == 0)
255 else if (strcasecmp(buf,
"fresh") == 0)
257 else if (strcasecmp(buf,
"changed") == 0)
266 static int json_int(
void *ctx,
long long val) {
272 if (strcasecmp(
last_key,
"type") == 0)
273 json_node->
type = val;
275 if (strcasecmp(
last_key,
"fullscreen_mode") == 0)
278 if (strcasecmp(
last_key,
"num") == 0)
279 json_node->
num = val;
286 focus_mapping->
old_id = val;
293 r = &(json_node->
rect);
299 else if (strcasecmp(
last_key,
"y") == 0)
301 else if (strcasecmp(
last_key,
"width") == 0)
303 else if (strcasecmp(
last_key,
"height") == 0)
305 else printf(
"WARNING: unknown key %s in rect\n",
last_key);
306 printf(
"rect now: (%d, %d, %d, %d)\n",
310 if (strcasecmp(
last_key,
"id") == 0) {
311 current_swallow->
id = val;
313 if (strcasecmp(
last_key,
"dock") == 0) {
314 current_swallow->
dock = val;
316 if (strcasecmp(
last_key,
"insert_where") == 0) {
326 if (strcasecmp(
last_key,
"focused") == 0 && val) {
330 if (strcasecmp(
last_key,
"split") == 0)
331 json_node->
split = val;
334 if (strcasecmp(
last_key,
"restart_mode") == 0)
343 if (strcasecmp(
last_key,
"percent") == 0) {
352 if ((f = fopen(filename,
"r")) == NULL) {
353 LOG(
"Cannot open file\n");
356 char *buf = malloc(65535);
357 int n = fread(buf, 1, 65535, f);
358 LOG(
"read %d bytes\n", n);
361 yajl_callbacks callbacks;
362 memset(&callbacks,
'\0',
sizeof(yajl_callbacks));
372 g = yajl_gen_alloc(NULL);
373 hand = yajl_alloc(&callbacks, NULL, (
void*)g);
375 g = yajl_gen_alloc(NULL, NULL);
376 hand = yajl_alloc(&callbacks, NULL, NULL, (
void*)g);
384 setlocale(LC_NUMERIC,
"C");
385 stat = yajl_parse(hand, (
const unsigned char*)buf, n);
386 if (stat != yajl_status_ok)
388 unsigned char * str = yajl_get_error(hand, 1, (
const unsigned char*)buf, n);
389 fprintf(stderr,
"%s\n", (
const char *) str);
390 yajl_free_error(hand, str);
393 setlocale(LC_NUMERIC,
"");
395 yajl_complete_parse(hand);
397 yajl_parse_complete(hand);