X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fload_layout.c;h=54735d915b456acaf117744ac9e2001d15dc583f;hb=de94f6da1a9f7d2b9701035b844154658d9d308f;hp=37322c4ea3857f2b92e85f05c5ee843054f8e975;hpb=717ae819c55d2aca9f4bf2e1198e035ca64114ac;p=i3%2Fi3 diff --git a/src/load_layout.c b/src/load_layout.c index 37322c4e..54735d91 100644 --- a/src/load_layout.c +++ b/src/load_layout.c @@ -1,14 +1,20 @@ /* * vim:ts=4:sw=4:expandtab * + * i3 - an improved dynamic tiling window manager + * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) + * + * load_layout.c: Restore (parts of) the layout, for example after an inplace + * restart. + * */ +#include "all.h" + #include #include #include #include -#include "all.h" - /* TODO: refactor the whole parsing thing */ static char *last_key; @@ -18,8 +24,19 @@ static bool parsing_swallows; static bool parsing_rect; static bool parsing_window_rect; static bool parsing_geometry; +static bool parsing_focus; struct Match *current_swallow; +/* This list is used for reordering the focus stack after parsing the 'focus' + * array. */ +struct focus_mapping { + int old_id; + TAILQ_ENTRY(focus_mapping) focus_mappings; +}; + +static TAILQ_HEAD(focus_mappings_head, focus_mapping) focus_mappings = + TAILQ_HEAD_INITIALIZER(focus_mappings); + static int json_start_map(void *ctx) { LOG("start of map, last_key = %s\n", last_key); if (parsing_swallows) { @@ -64,6 +81,29 @@ static int json_end_map(void *ctx) { static int json_end_array(void *ctx) { LOG("end of array\n"); parsing_swallows = false; + if (parsing_focus) { + /* Clear the list of focus mappings */ + struct focus_mapping *mapping; + TAILQ_FOREACH_REVERSE(mapping, &focus_mappings, focus_mappings_head, focus_mappings) { + LOG("focus (reverse) %d\n", mapping->old_id); + Con *con; + TAILQ_FOREACH(con, &(json_node->focus_head), focused) { + if (con->old_id != mapping->old_id) + continue; + LOG("got it! %p\n", con); + /* Move this entry to the top of the focus list. */ + TAILQ_REMOVE(&(json_node->focus_head), con, focused); + TAILQ_INSERT_HEAD(&(json_node->focus_head), con, focused); + break; + } + } + while (!TAILQ_EMPTY(&focus_mappings)) { + mapping = TAILQ_FIRST(&focus_mappings); + TAILQ_REMOVE(&focus_mappings, mapping, focus_mappings); + free(mapping); + } + parsing_focus = false; + } return 1; } @@ -76,15 +116,21 @@ static int json_key(void *ctx, const unsigned char *val, size_t len) { FREE(last_key); last_key = scalloc((len+1) * sizeof(char)); memcpy(last_key, val, len); - if (strcasecmp(last_key, "swallows") == 0) { + if (strcasecmp(last_key, "swallows") == 0) parsing_swallows = true; - } + if (strcasecmp(last_key, "rect") == 0) parsing_rect = true; + if (strcasecmp(last_key, "window_rect") == 0) parsing_window_rect = true; + if (strcasecmp(last_key, "geometry") == 0) parsing_geometry = true; + + if (strcasecmp(last_key, "focus") == 0) + parsing_focus = true; + return 1; } @@ -110,19 +156,29 @@ static int json_string(void *ctx, const unsigned char *val, unsigned int len) { memcpy(json_node->sticky_group, val, len); LOG("sticky_group of this container is %s\n", json_node->sticky_group); } else if (strcasecmp(last_key, "orientation") == 0) { + /* Upgrade path from older versions of i3 (doing an inplace restart + * to a newer version): + * "orientation" is dumped before "layout". Therefore, we store + * whether the orientation was horizontal or vertical in the + * last_split_layout. When we then encounter layout == "default", + * we will use the last_split_layout as layout instead. */ char *buf = NULL; - asprintf(&buf, "%.*s", (int)len, val); - if (strcasecmp(buf, "none") == 0) - json_node->orientation = NO_ORIENTATION; - else if (strcasecmp(buf, "horizontal") == 0) - json_node->orientation = HORIZ; + sasprintf(&buf, "%.*s", (int)len, val); + if (strcasecmp(buf, "none") == 0 || + strcasecmp(buf, "horizontal") == 0) + json_node->last_split_layout = L_SPLITH; else if (strcasecmp(buf, "vertical") == 0) - json_node->orientation = VERT; + json_node->last_split_layout = L_SPLITV; else LOG("Unhandled orientation: %s\n", buf); + + /* What used to be an implicit check whether orientation != + * NO_ORIENTATION is now a proper separate flag. */ + if (strcasecmp(buf, "none") != 0) + json_node->split = true; free(buf); } else if (strcasecmp(last_key, "border") == 0) { char *buf = NULL; - asprintf(&buf, "%.*s", (int)len, val); + sasprintf(&buf, "%.*s", (int)len, val); if (strcasecmp(buf, "none") == 0) json_node->border_style = BS_NONE; else if (strcasecmp(buf, "1pixel") == 0) @@ -133,23 +189,61 @@ static int json_string(void *ctx, const unsigned char *val, unsigned int len) { free(buf); } else if (strcasecmp(last_key, "layout") == 0) { char *buf = NULL; - asprintf(&buf, "%.*s", (int)len, val); + sasprintf(&buf, "%.*s", (int)len, val); if (strcasecmp(buf, "default") == 0) - json_node->layout = L_DEFAULT; + /* This set above when we read "orientation". */ + json_node->layout = json_node->last_split_layout; else if (strcasecmp(buf, "stacked") == 0) json_node->layout = L_STACKED; else if (strcasecmp(buf, "tabbed") == 0) json_node->layout = L_TABBED; - else if (strcasecmp(buf, "dockarea") == 0) + else if (strcasecmp(buf, "dockarea") == 0) { json_node->layout = L_DOCKAREA; - else if (strcasecmp(buf, "output") == 0) + /* Necessary for migrating from older versions of i3. */ + json_node->split = false; + } else if (strcasecmp(buf, "output") == 0) json_node->layout = L_OUTPUT; + else if (strcasecmp(buf, "splith") == 0) + json_node->layout = L_SPLITH; + else if (strcasecmp(buf, "splitv") == 0) + json_node->layout = L_SPLITV; else LOG("Unhandled \"layout\": %s\n", buf); free(buf); + } else if (strcasecmp(last_key, "last_split_layout") == 0) { + char *buf = NULL; + sasprintf(&buf, "%.*s", (int)len, val); + if (strcasecmp(buf, "splith") == 0) + json_node->last_split_layout = L_SPLITH; + else if (strcasecmp(buf, "splitv") == 0) + json_node->last_split_layout = L_SPLITV; + else LOG("Unhandled \"last_splitlayout\": %s\n", buf); + free(buf); } else if (strcasecmp(last_key, "mark") == 0) { char *buf = NULL; - asprintf(&buf, "%.*s", (int)len, val); + sasprintf(&buf, "%.*s", (int)len, val); json_node->mark = buf; + } else if (strcasecmp(last_key, "floating") == 0) { + char *buf = NULL; + sasprintf(&buf, "%.*s", (int)len, val); + if (strcasecmp(buf, "auto_off") == 0) + json_node->floating = FLOATING_AUTO_OFF; + else if (strcasecmp(buf, "auto_on") == 0) + json_node->floating = FLOATING_AUTO_ON; + else if (strcasecmp(buf, "user_off") == 0) + json_node->floating = FLOATING_USER_OFF; + else if (strcasecmp(buf, "user_on") == 0) + json_node->floating = FLOATING_USER_ON; + free(buf); + } else if (strcasecmp(last_key, "scratchpad_state") == 0) { + char *buf = NULL; + sasprintf(&buf, "%.*s", (int)len, val); + if (strcasecmp(buf, "none") == 0) + json_node->scratchpad_state = SCRATCHPAD_NONE; + else if (strcasecmp(buf, "fresh") == 0) + json_node->scratchpad_state = SCRATCHPAD_FRESH; + else if (strcasecmp(buf, "changed") == 0) + json_node->scratchpad_state = SCRATCHPAD_CHANGED; + free(buf); } } return 1; @@ -162,15 +256,24 @@ static int json_int(void *ctx, long long val) { static int json_int(void *ctx, long val) { LOG("int %ld for key %s\n", val, last_key); #endif - if (strcasecmp(last_key, "type") == 0) { + if (strcasecmp(last_key, "type") == 0) json_node->type = val; - } - if (strcasecmp(last_key, "fullscreen_mode") == 0) { + + if (strcasecmp(last_key, "fullscreen_mode") == 0) json_node->fullscreen_mode = val; - } + if (strcasecmp(last_key, "num") == 0) json_node->num = val; + if (!parsing_swallows && strcasecmp(last_key, "id") == 0) + json_node->old_id = val; + + if (parsing_focus) { + struct focus_mapping *focus_mapping = scalloc(sizeof(struct focus_mapping)); + focus_mapping->old_id = val; + TAILQ_INSERT_TAIL(&focus_mappings, focus_mapping, focus_mappings); + } + if (parsing_rect || parsing_window_rect || parsing_geometry) { Rect *r; if (parsing_rect) @@ -211,6 +314,14 @@ static int json_bool(void *ctx, int val) { to_focus = json_node; } + if (strcasecmp(last_key, "split") == 0) + json_node->split = val; + + if (parsing_swallows) { + if (strcasecmp(last_key, "restart_mode") == 0) + current_swallow->restart_mode = val; + } + return 1; }