X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fsession.c;h=4cf6f1cd36bf5e785ed0f956b19940b17a1896f2;hb=ec9dd7fdd7531d2ca951a0b812bf8e63b6e9a377;hp=95028ec2bbf94e77b5488814a9950150c08703c2;hpb=7da335f944257f81e2adfe7924430d1996d1af6d;p=chaz%2Fopenbox diff --git a/openbox/session.c b/openbox/session.c index 95028ec2..4cf6f1cd 100644 --- a/openbox/session.c +++ b/openbox/session.c @@ -2,9 +2,17 @@ #ifndef USE_SM +#include "session.h" +#include "client.h" + +GList *session_saved_state; + void session_load(char *path) {} void session_startup(int argc, char **argv) {} void session_shutdown() {} +GList* session_state_find(ObClient *c) { return NULL; } +gboolean session_state_cmp(ObSessionState *s, ObClient *c) { return FALSE; } +void session_state_free(ObSessionState *state) {} #else @@ -26,6 +34,8 @@ void session_shutdown() {} #include +GList *session_saved_state; + static SmcConn sm_conn; static gchar *save_file; static gint sm_argc; @@ -184,8 +194,6 @@ void session_startup(int argc, char **argv) g_free(val_uid.value); save_commands(); - - ob_debug("Connected to session manager with id %s\n", ob_sm_id); } } @@ -211,15 +219,20 @@ void session_shutdown() SmcSetProperties(sm_conn, 1, props); SmcCloseConnection(sm_conn, 0, NULL); + + while (session_saved_state) { + session_state_free(session_saved_state->data); + session_saved_state = g_list_delete_link(session_saved_state, + session_saved_state); + } } } -static void sm_save_yourself(SmcConn conn, SmPointer data, int save_type, - Bool shutdown, int interact_style, Bool fast) +static void sm_save_yourself_phase2(SmcConn conn, SmPointer data) { gboolean success; - ob_debug("got SAVE YOURSELF from session manager\n"); + ob_debug("got SAVE YOURSELF PHASE 2 from session manager\n"); success = session_save(); save_commands(); @@ -227,6 +240,17 @@ static void sm_save_yourself(SmcConn conn, SmPointer data, int save_type, SmcSaveYourselfDone(conn, success); } +static void sm_save_yourself(SmcConn conn, SmPointer data, int save_type, + Bool shutdown, int interact_style, Bool fast) +{ + ob_debug("got SAVE YOURSELF from session manager\n"); + + if (!SmcRequestSaveYourselfPhase2(conn, sm_save_yourself_phase2, data)) { + ob_debug("SAVE YOURSELF PHASE 2 failed\n"); + SmcSaveYourselfDone(conn, FALSE); + } +} + static void sm_die(SmcConn conn, SmPointer data) { ob_exit(); @@ -265,18 +289,29 @@ static gboolean session_save() g_warning("unable to save the session to %s: %s", save_file, strerror(errno)); } else { + guint stack_pos = 0; + fprintf(f, "\n\n"); fprintf(f, "\n\n", ob_sm_id); - for (it = client_list; it; it = g_list_next(it)) { + for (it = stacking_list; it; it = g_list_next(it)) { guint num; gint32 *dimensions; gint prex, prey, prew, preh; - ObClient *c = it->data; + ObClient *c; + gchar *client_id, *t; + + if (WINDOW_IS_CLIENT(it->data)) + c = WINDOW_AS_CLIENT(it->data); + else + continue; if (!client_normal(c)) continue; + if (!(client_id = client_get_sm_client_id(c))) + continue; + prex = c->area.x; prey = c->area.y; prew = c->area.width; @@ -292,15 +327,22 @@ static gboolean session_save() g_free(dimensions); } - fprintf(f, "\n", - g_markup_escape_text("XXX", -1)); - fprintf(f, "\t%s\n", - g_markup_escape_text(c->name, -1)); - fprintf(f, "\t%s\n", - g_markup_escape_text(c->class, -1)); - fprintf(f, "\t%s\n", - g_markup_escape_text(c->role, -1)); + fprintf(f, "\n", client_id); + + t = g_markup_escape_text(c->name, -1); + fprintf(f, "\t%s\n", t); + g_free(t); + + t = g_markup_escape_text(c->class, -1); + fprintf(f, "\t%s\n", t); + g_free(t); + + t = g_markup_escape_text(c->role, -1); + fprintf(f, "\t%s\n", t); + g_free(t); + fprintf(f, "\t%d\n", c->desktop); + fprintf(f, "\t%d\n", stack_pos); fprintf(f, "\t%d\n", prex); fprintf(f, "\t%d\n", prey); fprintf(f, "\t%d\n", prew); @@ -324,6 +366,10 @@ static gboolean session_save() if (c->max_vert) fprintf(f, "\t\n"); fprintf(f, "\n\n"); + + ++stack_pos; + + g_free(client_id); } fprintf(f, "\n"); @@ -339,6 +385,57 @@ static gboolean session_save() return success; } +void session_state_free(ObSessionState *state) +{ + if (state) { + g_free(state->id); + g_free(state->name); + g_free(state->class); + g_free(state->role); + + g_free(state); + } +} + +gboolean session_state_cmp(ObSessionState *s, ObClient *c) +{ + gchar *client_id; + + if (!(client_id = client_get_sm_client_id(c))) + return FALSE; + if (strcmp(s->id, client_id)) { + g_free(client_id); + return FALSE; + } + g_free(client_id); + if (strcmp(s->name, c->name)) + return FALSE; + if (strcmp(s->class, c->class)) + return FALSE; + if (strcmp(s->role, c->role)) + return FALSE; + return TRUE; +} + +GList* session_state_find(ObClient *c) +{ + GList *it; + + for (it = session_saved_state; it; it = g_list_next(it)) { + ObSessionState *s = it->data; + if (!s->matched && session_state_cmp(s, c)) { + s->matched = TRUE; + break; + } + } + return it; +} + +static gint stack_sort(const ObSessionState *s1, const ObSessionState *s2) +{ + return s1->stacking - s2->stacking; +} + void session_load(char *path) { xmlDocPtr doc; @@ -354,64 +451,76 @@ void session_load(char *path) node = parse_find_node("window", node->xmlChildrenNode); while (node) { - gchar *id, *name, *class, *role; - guint desktop; - gint x, y, w, h; - gboolean shaded, iconic, skip_pager, skip_taskbar, fullscreen; - gboolean above, below, max_horz, max_vert; + ObSessionState *state; + + state = g_new0(ObSessionState, 1); - if (!parse_attr_string("id", node, &id)) + if (!parse_attr_string("id", node, &state->id)) goto session_load_bail; if (!(n = parse_find_node("name", node->xmlChildrenNode))) goto session_load_bail; - name = parse_string(doc, n); + state->name = parse_string(doc, n); if (!(n = parse_find_node("class", node->xmlChildrenNode))) goto session_load_bail; - class = parse_string(doc, n); + state->class = parse_string(doc, n); if (!(n = parse_find_node("role", node->xmlChildrenNode))) goto session_load_bail; - role = parse_string(doc, n); + state->role = parse_string(doc, n); + if (!(n = parse_find_node("stacking", node->xmlChildrenNode))) + goto session_load_bail; + state->stacking = parse_int(doc, n); if (!(n = parse_find_node("desktop", node->xmlChildrenNode))) goto session_load_bail; - desktop = parse_int(doc, n); + state->desktop = parse_int(doc, n); if (!(n = parse_find_node("x", node->xmlChildrenNode))) goto session_load_bail; - x = parse_int(doc, n); + state->x = parse_int(doc, n); if (!(n = parse_find_node("y", node->xmlChildrenNode))) goto session_load_bail; - y = parse_int(doc, n); + state->y = parse_int(doc, n); if (!(n = parse_find_node("width", node->xmlChildrenNode))) goto session_load_bail; - w = parse_int(doc, n); + state->w = parse_int(doc, n); if (!(n = parse_find_node("height", node->xmlChildrenNode))) goto session_load_bail; - h = parse_int(doc, n); - - shaded = parse_find_node("shaded", node->xmlChildrenNode) != NULL; - iconic = parse_find_node("iconic", node->xmlChildrenNode) != NULL; - skip_pager = parse_find_node("skip_pager", node->xmlChildrenNode) - != NULL; - skip_taskbar = parse_find_node("skip_taskbar", node->xmlChildrenNode) - != NULL; - fullscreen = parse_find_node("fullscreen", node->xmlChildrenNode) - != NULL; - above = parse_find_node("above", node->xmlChildrenNode) != NULL; - below = parse_find_node("below", node->xmlChildrenNode) != NULL; - max_horz = parse_find_node("max_horz", node->xmlChildrenNode) != NULL; - max_vert = parse_find_node("max_vert", node->xmlChildrenNode) != NULL; + state->h = parse_int(doc, n); + + state->shaded = + parse_find_node("shaded", node->xmlChildrenNode) != NULL; + state->iconic = + parse_find_node("iconic", node->xmlChildrenNode) != NULL; + state->skip_pager = + parse_find_node("skip_pager", node->xmlChildrenNode) != NULL; + state->skip_taskbar = + parse_find_node("skip_taskbar", node->xmlChildrenNode) != NULL; + state->fullscreen = + parse_find_node("fullscreen", node->xmlChildrenNode) != NULL; + state->above = + parse_find_node("above", node->xmlChildrenNode) != NULL; + state->below = + parse_find_node("below", node->xmlChildrenNode) != NULL; + state->max_horz = + parse_find_node("max_horz", node->xmlChildrenNode) != NULL; + state->max_vert = + parse_find_node("max_vert", node->xmlChildrenNode) != NULL; - g_message("read session window %s", name); - - /* XXX save this */ + /* save this */ + session_saved_state = g_list_prepend(session_saved_state, state); + goto session_load_ok; session_load_bail: + session_state_free(state); + + session_load_ok: node = parse_find_node("window", node->next); } - xmlFreeDoc(doc); + /* sort them by their stacking order */ + session_saved_state = g_list_sort(session_saved_state, + (GCompareFunc)stack_sort); - unlink(path); + xmlFreeDoc(doc); } #endif