if sm is disabled, there is nothing to shutdown, so don't go trying to free things...
[dana/openbox.git] / openbox / session.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    session.c for the Openbox window manager
4    Copyright (c) 2003        Ben Jansens
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 /* This session code is largely inspired by metacity code. */
20
21 #ifndef USE_SM
22
23 #include "session.h"
24 #include "client.h"
25
26 GList *session_saved_state;
27
28 void session_startup(gint argc, gchar **argv) {}
29 void session_shutdown() {}
30 GList* session_state_find(ObClient *c) { return NULL; }
31 gboolean session_state_cmp(ObSessionState *s, ObClient *c) { return FALSE; }
32 void session_state_free(ObSessionState *state) {}
33
34 #else
35
36 #include "debug.h"
37 #include "openbox.h"
38 #include "session.h"
39 #include "client.h"
40 #include "prop.h"
41 #include "gettext.h"
42 #include "parser/parse.h"
43
44 #include <time.h>
45 #include <errno.h>
46 #include <stdio.h>
47
48 #ifdef HAVE_UNISTD_H
49 #  include <sys/types.h>
50 #  include <unistd.h>
51 #endif
52
53 #include <X11/SM/SMlib.h>
54
55 GList *session_saved_state;
56
57 static gboolean    sm_disable;
58 static SmcConn     sm_conn;
59 static gchar      *save_file;
60 static gchar      *sm_id;
61 static gint        sm_argc;
62 static gchar     **sm_argv;
63 static gchar      *sm_sessions_path;
64
65 static void session_load(gchar *path);
66 static gboolean session_save();
67
68 static void sm_save_yourself(SmcConn conn, SmPointer data, gint save_type,
69                              Bool shutdown, gint interact_style, Bool fast);
70 static void sm_die(SmcConn conn, SmPointer data);
71 static void sm_save_complete(SmcConn conn, SmPointer data);
72 static void sm_shutdown_cancelled(SmcConn conn, SmPointer data);
73
74 static void save_commands()
75 {
76     SmProp *props[2];
77     SmProp prop_cmd = { SmCloneCommand, SmLISTofARRAY8, 1, };
78     SmProp prop_res = { SmRestartCommand, SmLISTofARRAY8, };
79     gint i;
80
81     prop_cmd.vals = g_new(SmPropValue, sm_argc);
82     prop_cmd.num_vals = sm_argc;
83     for (i = 0; i < sm_argc; ++i) {
84         prop_cmd.vals[i].value = sm_argv[i];
85         prop_cmd.vals[i].length = strlen(sm_argv[i]);
86     }
87
88     prop_res.vals = g_new(SmPropValue, sm_argc + 2);
89     prop_res.num_vals = sm_argc + 2;
90     for (i = 0; i < sm_argc; ++i) { 
91         prop_res.vals[i].value = sm_argv[i];
92         prop_res.vals[i].length = strlen(sm_argv[i]);
93     }
94
95     prop_res.vals[i].value = "--sm-save-file";
96     prop_res.vals[i++].length = strlen("--sm-save-file");
97     prop_res.vals[i].value = save_file;
98     prop_res.vals[i++].length = strlen(save_file);
99
100     props[0] = &prop_res;
101     props[1] = &prop_cmd;
102     SmcSetProperties(sm_conn, 2, props);
103
104     g_free(prop_res.vals);
105     g_free(prop_cmd.vals);
106 }
107
108 static void remove_args(gint *argc, gchar ***argv, gint index, gint num)
109 {
110     gint i;
111
112     for (i = index; i < index + num; ++i)
113         (*argv)[i] = (*argv)[i+num];
114     *argc -= num;
115 }
116
117 static void parse_args(gint *argc, gchar ***argv)
118 {
119     gint i;
120
121     for (i = 1; i < *argc; ++i) {
122         if (!strcmp((*argv)[i], "--sm-client-id")) {
123             if (i == *argc - 1) /* no args left */
124                 g_printerr(_("--sm-client-id requires an argument\n"));
125             else {
126                 sm_id = g_strdup((*argv)[i+1]);
127                 remove_args(argc, argv, i, 2);
128                 ++i;
129             }
130         } else if (!strcmp((*argv)[i], "--sm-save-file")) {
131             if (i == *argc - 1) /* no args left */
132                 g_printerr(_("--sm-save-file requires an argument\n"));
133             else {
134                 save_file = g_strdup((*argv)[i+1]);
135                 remove_args(argc, argv, i, 2);
136                 ++i;
137             }
138         } else if (!strcmp((*argv)[i], "--sm-disable")) {
139             sm_disable = TRUE;
140             remove_args(argc, argv, i, 1);
141         }
142     }
143 }
144
145 void session_startup(gint argc, gchar **argv)
146 {
147 #define SM_ERR_LEN 1024
148
149     SmcCallbacks cb;
150     gchar sm_err[SM_ERR_LEN];
151     gint i;
152
153     sm_argc = argc;
154     sm_argv = g_new(gchar*, argc);
155     for (i = 0; i < argc; ++i)
156         sm_argv[i] = argv[i];
157
158     parse_args(&sm_argc, &sm_argv);
159
160     if (sm_disable) {
161         g_free(sm_argv);
162         return;
163     }
164
165     sm_sessions_path = g_build_filename(parse_xdg_data_home_path(),
166                                         "openbox", "sessions", NULL);
167     if (!parse_mkdir_path(sm_sessions_path, 0700))
168         g_warning(_("Unable to make directory '%s': %s"),
169                   sm_sessions_path, g_strerror(errno));
170
171     if (save_file)
172         session_load(save_file);
173     else {
174         gchar *filename;
175
176         /* this algo is from metacity */
177         filename = g_strdup_printf("%d-%d-%u.obs",
178                                    (gint) time(NULL),
179                                    (gint) getpid(),
180                                    g_random_int());
181         save_file = g_build_filename(sm_sessions_path, filename, NULL);
182         g_free(filename);
183     }
184
185     cb.save_yourself.callback = sm_save_yourself;
186     cb.save_yourself.client_data = NULL;
187
188     cb.die.callback = sm_die;
189     cb.die.client_data = NULL;
190
191     cb.save_complete.callback = sm_save_complete;
192     cb.save_complete.client_data = NULL;
193
194     cb.shutdown_cancelled.callback = sm_shutdown_cancelled;
195     cb.shutdown_cancelled.client_data = NULL;
196
197     sm_conn = SmcOpenConnection(NULL, NULL, 1, 0,
198                                 SmcSaveYourselfProcMask |
199                                 SmcDieProcMask |
200                                 SmcSaveCompleteProcMask |
201                                 SmcShutdownCancelledProcMask,
202                                 &cb, sm_id, &sm_id,
203                                 SM_ERR_LEN, sm_err);
204     if (sm_conn == NULL)
205         ob_debug("Failed to connect to session manager: %s\n", sm_err);
206     else {
207         SmPropValue val_prog;
208         SmPropValue val_uid;
209         SmPropValue val_hint; 
210         SmPropValue val_pri;
211         SmPropValue val_pid;
212         SmProp prop_prog = { SmProgram, SmARRAY8, 1, };
213         SmProp prop_uid = { SmUserID, SmARRAY8, 1, };
214         SmProp prop_hint = { SmRestartStyleHint, SmCARD8, 1, };
215         SmProp prop_pid = { SmProcessID, SmARRAY8, 1, };
216         SmProp prop_pri = { "_GSM_Priority", SmCARD8, 1, };
217         SmProp *props[6];
218         gchar hint, pri;
219         gchar pid[32];
220
221         val_prog.value = sm_argv[0];
222         val_prog.length = strlen(sm_argv[0]);
223
224         val_uid.value = g_strdup(g_get_user_name());
225         val_uid.length = strlen(val_uid.value);
226
227         hint = SmRestartImmediately;
228         val_hint.value = &hint;
229         val_hint.length = 1;
230
231         g_snprintf(pid, sizeof(pid), "%ld", (glong) getpid());
232         val_pid.value = pid;
233         val_pid.length = strlen(pid);
234
235         /* priority with gnome-session-manager, low to run before other apps */
236         pri = 20;
237         val_pri.value = &pri;
238         val_pri.length = 1;
239
240         prop_prog.vals = &val_prog;
241         prop_uid.vals = &val_uid;
242         prop_hint.vals = &val_hint;
243         prop_pid.vals = &val_pid;
244         prop_pri.vals = &val_pri;
245
246         props[0] = &prop_prog;
247         props[1] = &prop_uid;
248         props[2] = &prop_hint;
249         props[3] = &prop_pid;
250         props[4] = &prop_pri;
251
252         SmcSetProperties(sm_conn, 5, props);
253
254         g_free(val_uid.value);
255
256         save_commands();
257     }
258 }
259
260 void session_shutdown()
261 {
262     if (sm_disable)
263         return;
264
265     g_free(sm_sessions_path);
266     g_free(save_file);
267     g_free(sm_id);
268     g_free(sm_argv);
269
270     if (sm_conn) {
271         SmPropValue val_hint;
272         SmProp prop_hint = { SmRestartStyleHint, SmCARD8, 1, };
273         SmProp *props[1];
274         gulong hint;
275
276         /* when we exit, we want to reset this to a more friendly state */
277         hint = SmRestartIfRunning;
278         val_hint.value = &hint;
279         val_hint.length = 1;
280
281         prop_hint.vals = &val_hint;
282
283         props[0] = &prop_hint;
284
285         SmcSetProperties(sm_conn, 1, props);
286
287         SmcCloseConnection(sm_conn, 0, NULL);
288
289         while (session_saved_state) {
290             session_state_free(session_saved_state->data);
291             session_saved_state = g_list_delete_link(session_saved_state,
292                                                      session_saved_state);
293         }
294     }
295 }
296
297 static void sm_save_yourself_phase2(SmcConn conn, SmPointer data)
298 {
299     gboolean success;
300
301     success = session_save();
302     save_commands();
303
304     SmcSaveYourselfDone(conn, success);
305 }
306
307 static void sm_save_yourself(SmcConn conn, SmPointer data, gint save_type,
308                              Bool shutdown, gint interact_style, Bool fast)
309 {
310     if (!SmcRequestSaveYourselfPhase2(conn, sm_save_yourself_phase2, data)) {
311         ob_debug("SAVE YOURSELF PHASE 2 failed\n");
312         SmcSaveYourselfDone(conn, FALSE);
313     }
314 }
315
316 static void sm_die(SmcConn conn, SmPointer data)
317 {
318     ob_exit(0);
319 }
320
321 static void sm_save_complete(SmcConn conn, SmPointer data)
322 {
323 }
324
325 static void sm_shutdown_cancelled(SmcConn conn, SmPointer data)
326 {
327 }
328
329 static gboolean session_save()
330 {
331     FILE *f;
332     GList *it;
333     gboolean success = TRUE;
334
335     f = fopen(save_file, "w");
336     if (!f) {
337         success = FALSE;
338         g_warning("unable to save the session to %s: %s",
339                   save_file, g_strerror(errno));
340     } else {
341         guint stack_pos = 0;
342
343         fprintf(f, "<?xml version=\"1.0\"?>\n\n");
344         fprintf(f, "<openbox_session id=\"%s\">\n\n", sm_id);
345
346         for (it = stacking_list; it; it = g_list_next(it)) {
347             gint prex, prey, prew, preh;
348             ObClient *c;
349             gchar *t;
350
351             if (WINDOW_IS_CLIENT(it->data))
352                 c = WINDOW_AS_CLIENT(it->data);
353             else
354                 continue;
355
356             if (!client_normal(c))
357                 continue;
358
359             if (!c->sm_client_id)
360                 continue;
361
362             prex = c->area.x;
363             prey = c->area.y;
364             prew = c->area.width;
365             preh = c->area.height;
366             if (c->fullscreen) {
367                 prex = c->pre_fullscreen_area.x;
368                 prey = c->pre_fullscreen_area.x;
369                 prew = c->pre_fullscreen_area.width;
370                 preh = c->pre_fullscreen_area.height;
371             }
372             if (c->max_horz) {
373                 prex = c->pre_max_area.x;
374                 prew = c->pre_max_area.width;
375             }
376             if (c->max_vert) {
377                 prey = c->pre_max_area.y;
378                 preh = c->pre_max_area.height;
379             }
380
381             fprintf(f, "<window id=\"%s\">\n", c->sm_client_id);
382
383             t = g_markup_escape_text(c->name, -1);
384             fprintf(f, "\t<name>%s</name>\n", t);
385             g_free(t);
386
387             t = g_markup_escape_text(c->class, -1);
388             fprintf(f, "\t<class>%s</class>\n", t);
389             g_free(t);
390
391             t = g_markup_escape_text(c->role, -1);
392             fprintf(f, "\t<role>%s</role>\n", t);
393             g_free(t);
394
395             fprintf(f, "\t<desktop>%d</desktop>\n", c->desktop);
396             fprintf(f, "\t<stacking>%d</stacking>\n", stack_pos);
397             fprintf(f, "\t<x>%d</x>\n", prex);
398             fprintf(f, "\t<y>%d</y>\n", prey);
399             fprintf(f, "\t<width>%d</width>\n", prew);
400             fprintf(f, "\t<height>%d</height>\n", preh);
401             if (c->shaded)
402                 fprintf(f, "\t<shaded />\n");
403             if (c->iconic)
404                 fprintf(f, "\t<iconic />\n");
405             if (c->skip_pager)
406                 fprintf(f, "\t<skip_pager />\n");
407             if (c->skip_taskbar)
408                 fprintf(f, "\t<skip_taskbar />\n");
409             if (c->fullscreen)
410                 fprintf(f, "\t<fullscreen />\n");
411             if (c->above)
412                 fprintf(f, "\t<above />\n");
413             if (c->below)
414                 fprintf(f, "\t<below />\n");
415             if (c->max_horz)
416                 fprintf(f, "\t<max_horz />\n");
417             if (c->max_vert)
418                 fprintf(f, "\t<max_vert />\n");
419             fprintf(f, "</window>\n\n");
420
421             ++stack_pos;
422         }
423
424         fprintf(f, "</openbox_session>\n");
425
426         if (fflush(f)) {
427             success = FALSE;
428             g_warning("error while saving the session to %s: %s",
429                       save_file, g_strerror(errno));
430         }
431         fclose(f);
432     }
433
434     return success;
435 }
436
437 void session_state_free(ObSessionState *state)
438 {
439     if (state) {
440         g_free(state->id);
441         g_free(state->name);
442         g_free(state->class);
443         g_free(state->role);
444
445         g_free(state);
446     }
447 }
448
449 gboolean session_state_cmp(ObSessionState *s, ObClient *c)
450 {
451     return (c->sm_client_id &&
452             !strcmp(s->id, c->sm_client_id) &&
453             !strcmp(s->name, c->name) &&
454             !strcmp(s->class, c->class) &&
455             !strcmp(s->role, c->role));
456 }
457
458 GList* session_state_find(ObClient *c)
459 {
460     GList *it;
461
462     for (it = session_saved_state; it; it = g_list_next(it)) {
463         ObSessionState *s = it->data;
464         if (!s->matched && session_state_cmp(s, c)) {
465             s->matched = TRUE;
466             break;
467         }
468     }
469     return it;
470 }
471
472 static gint stack_sort(const ObSessionState *s1, const ObSessionState *s2)
473 {
474     return s1->stacking - s2->stacking;
475 }
476
477 static void session_load(gchar *path)
478 {
479     xmlDocPtr doc;
480     xmlNodePtr node, n;
481     gchar *id;
482
483     if (!parse_load(path, "openbox_session", &doc, &node))
484         return;
485
486     if (!parse_attr_string("id", node, &id))
487         return;
488     g_free(sm_id);
489     sm_id = id;
490
491     node = parse_find_node("window", node->children);
492     while (node) {
493         ObSessionState *state;
494
495         state = g_new0(ObSessionState, 1);
496
497         if (!parse_attr_string("id", node, &state->id))
498             goto session_load_bail;
499         if (!(n = parse_find_node("name", node->children)))
500             goto session_load_bail;
501         state->name = parse_string(doc, n);
502         if (!(n = parse_find_node("class", node->children)))
503             goto session_load_bail;
504         state->class = parse_string(doc, n);
505         if (!(n = parse_find_node("role", node->children)))
506             goto session_load_bail;
507         state->role = parse_string(doc, n);
508         if (!(n = parse_find_node("stacking", node->children)))
509             goto session_load_bail;
510         state->stacking = parse_int(doc, n);
511         if (!(n = parse_find_node("desktop", node->children)))
512             goto session_load_bail;
513         state->desktop = parse_int(doc, n);
514         if (!(n = parse_find_node("x", node->children)))
515             goto session_load_bail;
516         state->x = parse_int(doc, n);
517         if (!(n = parse_find_node("y", node->children)))
518             goto session_load_bail;
519         state->y = parse_int(doc, n);
520         if (!(n = parse_find_node("width", node->children)))
521             goto session_load_bail;
522         state->w = parse_int(doc, n);
523         if (!(n = parse_find_node("height", node->children)))
524             goto session_load_bail;
525         state->h = parse_int(doc, n);
526
527         state->shaded =
528             parse_find_node("shaded", node->children) != NULL;
529         state->iconic =
530             parse_find_node("iconic", node->children) != NULL;
531         state->skip_pager =
532             parse_find_node("skip_pager", node->children) != NULL;
533         state->skip_taskbar =
534             parse_find_node("skip_taskbar", node->children) != NULL;
535         state->fullscreen =
536             parse_find_node("fullscreen", node->children) != NULL;
537         state->above =
538             parse_find_node("above", node->children) != NULL;
539         state->below =
540             parse_find_node("below", node->children) != NULL;
541         state->max_horz =
542             parse_find_node("max_horz", node->children) != NULL;
543         state->max_vert =
544             parse_find_node("max_vert", node->children) != NULL;
545         
546         /* save this */
547         session_saved_state = g_list_prepend(session_saved_state, state);
548         goto session_load_ok;
549
550     session_load_bail:
551         session_state_free(state);
552
553     session_load_ok:
554
555         node = parse_find_node("window", node->next);
556     }
557
558     /* sort them by their stacking order */
559     session_saved_state = g_list_sort(session_saved_state,
560                                       (GCompareFunc)stack_sort);
561
562     xmlFreeDoc(doc);
563 }
564
565 #endif