(init_buffer): Use get_current_dir_name.
[bpt/emacs.git] / src / xsmfns.c
CommitLineData
afb4ecad
JD
1/* Session management module for systems which understand the X Session
2 management protocol.
0b5538bd 3 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
afb4ecad
JD
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
afb4ecad
JD
21
22#include <config.h>
23
24#ifdef HAVE_X_SM
25
26#include <X11/SM/SMlib.h>
231d6cfb
JD
27#include <X11/Xlib.h>
28#include <X11/Xutil.h>
29
afb4ecad
JD
30#ifdef HAVE_STRING_H
31#include <string.h>
32#else
33#ifdef HAVE_STRINGS_H
34#include <strings.h>
35#endif
36#endif
37
38#ifdef HAVE_UNISTD_H
39#include <unistd.h>
40#endif
41#ifdef HAVE_STDLIB_H
42#include <stdlib.h>
43#endif
44
45#include <sys/param.h>
656132eb 46#include <stdio.h>
afb4ecad
JD
47
48#include "systime.h"
49#include "sysselect.h"
50#include "lisp.h"
51#include "termhooks.h"
656132eb 52#include "termopts.h"
231d6cfb 53#include "xterm.h"
afb4ecad
JD
54
55#ifndef MAXPATHLEN
56#define MAXPATHLEN 1024
57#endif /* not MAXPATHLEN */
58
59
60/* The user login name. */
61
62extern Lisp_Object Vuser_login_name;
63
3b8f9651 64/* This is the event used when SAVE_SESSION_EVENT occurs. */
afb4ecad
JD
65
66static struct input_event emacs_event;
67
3b8f9651 68/* The descriptor that we use to check for data from the session manager. */
afb4ecad
JD
69
70static int ice_fd = -1;
71
3b8f9651 72/* A flag that says if we are in shutdown interactions or not. */
afb4ecad
JD
73
74static int doing_interact = False;
75
4f2f546e 76/* The session manager object for the session manager connection. */
afb4ecad
JD
77
78static SmcConn smc_conn;
79
4f2f546e
JD
80/* The client session id for this session. */
81
afb4ecad
JD
82static char *client_id;
83
4f2f546e
JD
84/* The full path name to the Emacs program. */
85
afb4ecad
JD
86static char *emacs_program;
87
4f2f546e 88/* The client session id for this session as a lisp object. */
afb4ecad
JD
89
90Lisp_Object Vx_session_id;
91
92/* The id we had the previous session. This is only available if we
4f2f546e 93 have been started by the session manager with SMID_OPT. */
afb4ecad
JD
94
95Lisp_Object Vx_session_previous_id;
96
97/* The option we tell the session manager to start Emacs with when
4f2f546e 98 restarting Emacs. The client_id is appended. */
afb4ecad
JD
99
100#define SMID_OPT "--smid="
101
102
ca2417b9 103/* The option to start Emacs without the splash screen when
4f2f546e 104 restarting Emacs. */
ca2417b9
JD
105
106#define NOSPLASH_OPT "--no-splash"
107
108
afb4ecad
JD
109/* Handle any messages from the session manager. If no connection is
110 open to a session manager, just return 0.
a6950dfa 111 Otherwise returns 1 if SAVE_SESSION_EVENT is stored in buffer BUFP. */
4f2f546e 112
afb4ecad 113int
a6950dfa 114x_session_check_input (bufp)
afb4ecad 115 struct input_event *bufp;
afb4ecad
JD
116{
117 SELECT_TYPE read_fds;
118 EMACS_TIME tmout;
7d0393cf 119
afb4ecad 120 if (ice_fd == -1) return 0;
7d0393cf 121
afb4ecad
JD
122 FD_ZERO (&read_fds);
123 FD_SET (ice_fd, &read_fds);
7d0393cf 124
afb4ecad
JD
125 tmout.tv_sec = 0;
126 tmout.tv_usec = 0;
7d0393cf 127
afb4ecad
JD
128 /* Reset this so wo can check kind after callbacks have been called by
129 IceProcessMessages. The smc_interact_CB sets the kind to
3b8f9651 130 SAVE_SESSION_EVENT, but we don't know beforehand if that callback
4f2f546e 131 will be called. */
3b8f9651 132 emacs_event.kind = NO_EVENT;
afb4ecad
JD
133
134 if (select (ice_fd+1, &read_fds,
135 (SELECT_TYPE *)0, (SELECT_TYPE *)0, &tmout) < 0)
136 {
137 ice_fd = -1;
138 return 0;
139 }
7d0393cf 140
afb4ecad
JD
141
142 if (FD_ISSET (ice_fd, &read_fds))
143 IceProcessMessages (SmcGetIceConnection (smc_conn),
144 (IceReplyWaitInfo *)0, (Bool *)0);
145
7d0393cf 146
afb4ecad 147 /* Check if smc_interact_CB was called and we shall generate a
4f2f546e 148 SAVE_SESSION_EVENT. */
a6950dfa
KS
149 if (emacs_event.kind == NO_EVENT)
150 return 0;
afb4ecad 151
a6950dfa
KS
152 bcopy (&emacs_event, bufp, sizeof (struct input_event));
153 return 1;
afb4ecad
JD
154}
155
4f2f546e
JD
156/* Return non-zero if we have a connection to a session manager. */
157
afb4ecad
JD
158int
159x_session_have_connection ()
160{
161 return ice_fd != -1;
162}
163
164/* This is called when the session manager says it is OK to interact with the
3b8f9651 165 user. Here we set the kind to SAVE_SESSION_EVENT so an event is generated.
4f2f546e
JD
166 Then lisp code can interact with the user. */
167
afb4ecad
JD
168static void
169smc_interact_CB (smcConn, clientData)
170 SmcConn smcConn;
171 SmPointer clientData;
172{
173 doing_interact = True;
3b8f9651 174 emacs_event.kind = SAVE_SESSION_EVENT;
afb4ecad
JD
175}
176
f25dcaa0 177/* This is called when the session manager tells us to save ourselves.
afb4ecad
JD
178 We set the required properties so the session manager can restart us,
179 plus the current working directory property (not mandatory) so we
180 are started in the correct directory.
181
182 If this is a shutdown and we can request to interact with the user,
4f2f546e
JD
183 we do so, because we don't know what the lisp code might do. */
184
afb4ecad
JD
185static void
186smc_save_yourself_CB (smcConn,
187 clientData,
188 saveType,
189 shutdown,
190 interactStyle,
191 fast)
192 SmcConn smcConn;
193 SmPointer clientData;
194 int saveType;
195 Bool shutdown;
196 int interactStyle;
197 Bool fast;
198{
199#define NR_PROPS 5
7d0393cf 200
afb4ecad
JD
201 SmProp *props[NR_PROPS];
202 SmProp prop_ptr[NR_PROPS];
7d0393cf 203
afb4ecad
JD
204 SmPropValue values[20];
205 int val_idx = 0;
206 int props_idx = 0;
7d0393cf 207
afb4ecad
JD
208 char cwd[MAXPATHLEN+1];
209 char *smid_opt;
210
4f2f546e 211 /* How to start a new instance of Emacs. */
afb4ecad
JD
212 props[props_idx] = &prop_ptr[props_idx];
213 props[props_idx]->name = SmCloneCommand;
214 props[props_idx]->type = SmLISTofARRAY8;
215 props[props_idx]->num_vals = 1;
216 props[props_idx]->vals = &values[val_idx++];
217 props[props_idx]->vals[0].length = strlen (emacs_program);
218 props[props_idx]->vals[0].value = emacs_program;
219 ++props_idx;
220
4f2f546e 221 /* The name of the program. */
afb4ecad
JD
222 props[props_idx] = &prop_ptr[props_idx];
223 props[props_idx]->name = SmProgram;
224 props[props_idx]->type = SmARRAY8;
225 props[props_idx]->num_vals = 1;
226 props[props_idx]->vals = &values[val_idx++];
d5db4077
KR
227 props[props_idx]->vals[0].length = strlen (SDATA (Vinvocation_name));
228 props[props_idx]->vals[0].value = SDATA (Vinvocation_name);
afb4ecad 229 ++props_idx;
7d0393cf 230
4f2f546e 231 /* How to restart Emacs (i.e.: /path/to/emacs --smid=xxxx --no-splash). */
afb4ecad
JD
232 props[props_idx] = &prop_ptr[props_idx];
233 props[props_idx]->name = SmRestartCommand;
234 props[props_idx]->type = SmLISTofARRAY8;
4f2f546e 235 props[props_idx]->num_vals = 3; /* /path/to/emacs, --smid=xxx --no-splash */
afb4ecad
JD
236 props[props_idx]->vals = &values[val_idx];
237 props[props_idx]->vals[0].length = strlen (emacs_program);
238 props[props_idx]->vals[0].value = emacs_program;
239
240 smid_opt = xmalloc (strlen (SMID_OPT) + strlen (client_id) + 1);
241 strcpy (smid_opt, SMID_OPT);
242 strcat (smid_opt, client_id);
7d0393cf 243
afb4ecad
JD
244 props[props_idx]->vals[1].length = strlen (smid_opt);
245 props[props_idx]->vals[1].value = smid_opt;
ca2417b9
JD
246
247 props[props_idx]->vals[2].length = strlen (NOSPLASH_OPT);
248 props[props_idx]->vals[2].value = NOSPLASH_OPT;
249 val_idx += 3;
afb4ecad
JD
250 ++props_idx;
251
4f2f546e 252 /* User id. */
afb4ecad
JD
253 props[props_idx] = &prop_ptr[props_idx];
254 props[props_idx]->name = SmUserID;
255 props[props_idx]->type = SmARRAY8;
256 props[props_idx]->num_vals = 1;
257 props[props_idx]->vals = &values[val_idx++];
d5db4077
KR
258 props[props_idx]->vals[0].length = strlen (SDATA (Vuser_login_name));
259 props[props_idx]->vals[0].value = SDATA (Vuser_login_name);
afb4ecad
JD
260 ++props_idx;
261
4f2f546e 262 /* The current directory property, not mandatory. */
afb4ecad
JD
263#ifdef HAVE_GETCWD
264 if (getcwd (cwd, MAXPATHLEN+1) != 0)
265#else
266 if (getwd (cwd) != 0)
267#endif
268 {
269 props[props_idx] = &prop_ptr[props_idx];
270 props[props_idx]->name = SmCurrentDirectory;
271 props[props_idx]->type = SmARRAY8;
272 props[props_idx]->num_vals = 1;
273 props[props_idx]->vals = &values[val_idx++];
274 props[props_idx]->vals[0].length = strlen (cwd);
275 props[props_idx]->vals[0].value = cwd;
276 ++props_idx;
277 }
7d0393cf
JB
278
279
afb4ecad
JD
280 SmcSetProperties (smcConn, props_idx, props);
281
282 xfree (smid_opt);
283
4f2f546e 284 /* See if we maybe shall interact with the user. */
afb4ecad
JD
285 if (interactStyle != SmInteractStyleAny
286 || ! shutdown
287 || saveType == SmSaveLocal
288 || ! SmcInteractRequest (smcConn, SmDialogNormal, smc_interact_CB, 0))
289 {
4f2f546e 290 /* No interaction, we are done saving ourself. */
afb4ecad
JD
291 SmcSaveYourselfDone (smcConn, True);
292 }
293}
294
4f2f546e
JD
295/* According to the SM specification, this shall close the connection. */
296
afb4ecad
JD
297static void
298smc_die_CB (smcConn, clientData)
299 SmcConn smcConn;
300 SmPointer clientData;
301{
302 SmcCloseConnection (smcConn, 0, 0);
303 ice_fd = -1;
304}
305
306/* We don't use the next two but they are mandatory, leave them empty.
307 According to the SM specification, we should not interact with the
308 user between smc_save_yourself_CB is called and until smc_save_complete_CB
309 is called. It seems like a lot of job to implement this and it doesn't
4f2f546e
JD
310 even seem necessary. */
311
afb4ecad
JD
312static void
313smc_save_complete_CB (smcConn, clientData)
314 SmcConn smcConn;
315 SmPointer clientData;
316{
317 /* Empty */
318}
319
320static void
321smc_shutdown_cancelled_CB (smcConn, clientData)
322 SmcConn smcConn;
323 SmPointer clientData;
324{
325 /* Empty */
326}
327
f25dcaa0 328/* Error handlers for SM and ICE. We don't want to exit Emacs just
4f2f546e
JD
329 because there is some error in the session management. */
330
afb4ecad
JD
331static void
332smc_error_handler (smcConn,
333 swap,
334 offendingMinorOpcode,
335 offendingSequence,
336 errorClass,
337 severity,
338 values)
339 SmcConn smcConn;
340 Bool swap;
341 int offendingMinorOpcode;
342 unsigned long offendingSequence;
343 int errorClass;
344 int severity;
345 SmPointer values;
346{
4f2f546e 347 /* Empty */
afb4ecad
JD
348}
349
350static void
351ice_error_handler (iceConn,
352 swap,
353 offendingMinorOpcode,
354 offendingSequence,
355 errorClass,
356 severity,
357 values)
358 IceConn iceConn;
359 Bool swap;
360 int offendingMinorOpcode;
361 unsigned long offendingSequence;
362 int errorClass;
363 int severity;
364 IcePointer values;
365{
4f2f546e 366 /* Empty */
afb4ecad
JD
367}
368
369
370static void
371ice_io_error_handler (iceConn)
372 IceConn iceConn;
373{
4f2f546e 374 /* Connection probably gone. */
afb4ecad
JD
375 ice_fd = -1;
376}
377
378/* This is called when the ICE connection is created or closed. The SM library
4f2f546e
JD
379 uses ICE as it transport protocol. */
380
afb4ecad
JD
381static void
382ice_conn_watch_CB (iceConn, clientData, opening, watchData)
383 IceConn iceConn;
384 IcePointer clientData;
385 Bool opening;
386 IcePointer *watchData;
387{
388 if (! opening)
389 {
390 ice_fd = -1;
391 return;
392 }
7d0393cf 393
afb4ecad
JD
394 ice_fd = IceConnectionNumber (iceConn);
395#ifndef F_SETOWN_BUG
396#ifdef F_SETOWN
397#ifdef F_SETOWN_SOCK_NEG
398 /* stdin is a socket here */
399 fcntl (ice_fd, F_SETOWN, -getpid ());
400#else /* ! defined (F_SETOWN_SOCK_NEG) */
401 fcntl (ice_fd, F_SETOWN, getpid ());
402#endif /* ! defined (F_SETOWN_SOCK_NEG) */
403#endif /* ! defined (F_SETOWN) */
404#endif /* F_SETOWN_BUG */
405
406#ifdef SIGIO
407 if (interrupt_input)
408 init_sigio (ice_fd);
409#endif /* ! defined (SIGIO) */
410}
411
231d6cfb 412/* Create the client leader window. */
4f2f546e 413
231d6cfb
JD
414static void
415create_client_leader_window (dpyinfo, client_id)
416 struct x_display_info *dpyinfo;
417 char *client_id;
418{
419 Window w;
420 XClassHint class_hints;
421 Atom sm_id;
422
423 w = XCreateSimpleWindow (dpyinfo->display,
424 dpyinfo->root_window,
425 -1, -1, 1, 1,
426 CopyFromParent, CopyFromParent, CopyFromParent);
427
428 class_hints.res_name = (char *) SDATA (Vx_resource_name);
429 class_hints.res_class = (char *) SDATA (Vx_resource_class);
430 XSetClassHint (dpyinfo->display, w, &class_hints);
431 XStoreName (dpyinfo->display, w, class_hints.res_name);
432
433 sm_id = XInternAtom (dpyinfo->display, "SM_CLIENT_ID", False);
434 XChangeProperty (dpyinfo->display, w, sm_id, XA_STRING, 8, PropModeReplace,
435 client_id, strlen (client_id));
436
437 dpyinfo->client_leader_window = w;
438}
439
4f2f546e
JD
440/* Try to open a connection to the session manager. */
441
afb4ecad 442void
231d6cfb
JD
443x_session_initialize (dpyinfo)
444 struct x_display_info *dpyinfo;
afb4ecad
JD
445{
446#define SM_ERRORSTRING_LEN 512
447 char errorstring[SM_ERRORSTRING_LEN];
448 char* previous_id = NULL;
449 SmcCallbacks callbacks;
450 int name_len = 0;
7d0393cf 451
afb4ecad 452 /* Check if we where started by the session manager. If so, we will
4f2f546e 453 have a previous id. */
afb4ecad 454 if (! EQ (Vx_session_previous_id, Qnil) && STRINGP (Vx_session_previous_id))
d5db4077 455 previous_id = SDATA (Vx_session_previous_id);
afb4ecad 456
4f2f546e 457 /* Construct the path to the Emacs program. */
afb4ecad 458 if (! EQ (Vinvocation_directory, Qnil))
d5db4077
KR
459 name_len += strlen (SDATA (Vinvocation_directory));
460 name_len += strlen (SDATA (Vinvocation_name));
afb4ecad
JD
461
462 /* This malloc will not be freed, but it is only done once, and hopefully
4f2f546e 463 not very large */
afb4ecad
JD
464 emacs_program = xmalloc (name_len + 1);
465 emacs_program[0] = '\0';
466
467 if (! EQ (Vinvocation_directory, Qnil))
d5db4077
KR
468 strcpy (emacs_program, SDATA (Vinvocation_directory));
469 strcat (emacs_program, SDATA (Vinvocation_name));
7d0393cf 470
afb4ecad 471 /* The SM protocol says all callbacks are mandatory, so set up all
4f2f546e 472 here and in the mask passed to SmcOpenConnection. */
afb4ecad
JD
473 callbacks.save_yourself.callback = smc_save_yourself_CB;
474 callbacks.save_yourself.client_data = 0;
475 callbacks.die.callback = smc_die_CB;
476 callbacks.die.client_data = 0;
477 callbacks.save_complete.callback = smc_save_complete_CB;
478 callbacks.save_complete.client_data = 0;
479 callbacks.shutdown_cancelled.callback = smc_shutdown_cancelled_CB;
480 callbacks.shutdown_cancelled.client_data = 0;
481
4f2f546e 482 /* Set error handlers. */
afb4ecad
JD
483 SmcSetErrorHandler (smc_error_handler);
484 IceSetErrorHandler (ice_error_handler);
485 IceSetIOErrorHandler (ice_io_error_handler);
486
4f2f546e 487 /* Install callback for when connection status changes. */
afb4ecad
JD
488 IceAddConnectionWatch (ice_conn_watch_CB, 0);
489
490 /* Open the connection to the session manager. A failure is not
f25dcaa0 491 critical, it usually means that no session manager is running.
4f2f546e 492 The errorstring is here for debugging. */
afb4ecad
JD
493 smc_conn = SmcOpenConnection (NULL, NULL, 1, 0,
494 (SmcSaveYourselfProcMask|
495 SmcDieProcMask|
496 SmcSaveCompleteProcMask|
497 SmcShutdownCancelledProcMask),
498 &callbacks,
499 previous_id,
500 &client_id,
501 SM_ERRORSTRING_LEN,
502 errorstring);
503
504 if (smc_conn != 0)
231d6cfb
JD
505 {
506 Vx_session_id = make_string (client_id, strlen (client_id));
507
508#ifdef USE_GTK
509 /* GTK creats a leader window by itself, but we need to tell
510 it about our client_id. */
511 gdk_set_sm_client_id (client_id);
512#else
513 create_client_leader_window (dpyinfo, client_id);
514#endif
515 }
afb4ecad
JD
516}
517
518
519DEFUN ("handle-save-session", Fhandle_save_session,
520 Shandle_save_session, 1, 1, "e",
521 doc: /* Handle the save_yourself event from a session manager.
7d0393cf 522A session manager can tell Emacs that the window system is shutting down
afb4ecad
JD
523by sending Emacs a save_yourself message. Emacs executes this function when
524such an event occurs. This function then executes `emacs-session-save'.
525After that, this function informs the session manager that it can continue
526or abort shutting down the window system depending on the return value
527from `emacs-session-save' If the return value is non-nil the session manager
528is told to abort the window system shutdown.
529
530Do not call this function yourself. */)
531 (event)
532 Lisp_Object event;
533{
534 /* Check doing_interact so that we don't do anything if someone called
535 this at the wrong time. */
536 if (doing_interact)
537 {
538 Bool cancel_shutdown = False;
539
540 cancel_shutdown = ! EQ (call0 (intern ("emacs-session-save")), Qnil);
541
542 SmcInteractDone (smc_conn, cancel_shutdown);
543 SmcSaveYourselfDone (smc_conn, True);
544
545 doing_interact = False;
546 }
ad4ace7a
JD
547
548 return Qnil;
afb4ecad
JD
549}
550
551\f
552/***********************************************************************
553 Initialization
554 ***********************************************************************/
555void
556syms_of_xsmfns ()
557{
558 DEFVAR_LISP ("x-session-id", &Vx_session_id,
559 doc: /* The session id Emacs got from the session manager for this session.
560Changing the value does not change the session id used by Emacs.
561The value is nil if no session manager is running.
562See also `x-session-previous-id', `emacs-save-session-functions',
563`emacs-session-save' and `emacs-session-restore'." */);
564 Vx_session_id = Qnil;
565
566 DEFVAR_LISP ("x-session-previous-id", &Vx_session_previous_id,
567 doc: /* The previous session id Emacs got from session manager.
7d0393cf
JB
568If Emacs is running on a window system that has a session manager, the
569session manager gives Emacs a session id. It is feasible for Emacs lisp
570code to use the session id to save configuration in, for example, a file
571with a file name based on the session id. If Emacs is running when the
572window system is shut down, the session manager remembers that Emacs was
afb4ecad
JD
573running and saves the session id Emacs had.
574
7d0393cf
JB
575When the window system is started again, the session manager restarts
576Emacs and hands Emacs the session id it had the last time it was
577running. This is now the previous session id and the value of this
578variable. If configuration was saved in a file as stated above, the
afb4ecad
JD
579previous session id shall be used to reconstruct the file name.
580
7d0393cf 581The session id Emacs has while it is running is in the variable
afb4ecad
JD
582`x-session-id'. The value of this variable and `x-session-id' may be the
583same, depending on how the session manager works.
584
585See also `emacs-save-session-functions', `emacs-session-save' and
586`emacs-session-restore'." */);
587 Vx_session_previous_id = Qnil;
7d0393cf 588
afb4ecad
JD
589 defsubr (&Shandle_save_session);
590}
591
592#endif /* HAVE_X_SM */
ab5796a9
MB
593
594/* arch-tag: 56a2c58c-adfa-430a-b772-130abd29fd2e
595 (do not change this comment) */