Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / xsmfns.c
blob9a31f518f3086eb4fd1ac08561bad50870ee39ed
1 /* Session management module for systems which understand the X Session
2 management protocol.
4 Copyright (C) 2002-2014 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #ifdef HAVE_X_SM
25 #include <X11/SM/SMlib.h>
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
29 #include <unistd.h>
30 #include <sys/param.h>
31 #include <stdio.h>
33 #include "lisp.h"
34 #include "systime.h"
35 #include "sysselect.h"
36 #include "frame.h"
37 #include "termhooks.h"
38 #include "xterm.h"
39 #include "process.h"
40 #include "keyboard.h"
42 #if defined USE_GTK && !defined HAVE_GTK3
43 #define gdk_x11_set_sm_client_id(w) gdk_set_sm_client_id (w)
44 #endif
46 /* This is the event used when SAVE_SESSION_EVENT occurs. */
48 static struct input_event emacs_event;
50 /* The descriptor that we use to check for data from the session manager. */
52 static int ice_fd;
54 /* A flag that says if we are in shutdown interactions or not. */
56 static int doing_interact;
58 /* The session manager object for the session manager connection. */
60 static SmcConn smc_conn;
62 /* The client session id for this session. */
64 static char *client_id;
66 /* The full path name to the Emacs program. */
68 static char *emacs_program;
70 /* The option we tell the session manager to start Emacs with when
71 restarting Emacs. The client_id is appended. */
73 #define SMID_OPT "--smid="
76 /* The option to start Emacs without the splash screen when
77 restarting Emacs. */
79 static char NOSPLASH_OPT[] = "--no-splash";
81 /* The option to make Emacs start in the given directory. */
83 #define CHDIR_OPT "--chdir="
85 static void
86 ice_connection_closed (void)
88 if (ice_fd >= 0)
89 delete_read_fd (ice_fd);
90 ice_fd = -1;
94 /* Handle any messages from the session manager. If no connection is
95 open to a session manager, just return. */
97 static void
98 x_session_check_input (int fd, void *data)
100 int ret;
102 if (ice_fd == -1) return;
104 /* Reset this so wo can check kind after callbacks have been called by
105 IceProcessMessages. The smc_interact_CB sets the kind to
106 SAVE_SESSION_EVENT, but we don't know beforehand if that callback
107 will be called. */
108 emacs_event.kind = NO_EVENT;
110 ret = IceProcessMessages (SmcGetIceConnection (smc_conn), 0, 0);
111 if (ret != IceProcessMessagesSuccess)
113 /* Either IO error or Connection closed. */
114 if (ret == IceProcessMessagesIOError)
115 IceCloseConnection (SmcGetIceConnection (smc_conn));
117 ice_connection_closed ();
120 /* Check if smc_interact_CB was called and we shall generate a
121 SAVE_SESSION_EVENT. */
122 if (emacs_event.kind != NO_EVENT)
123 kbd_buffer_store_event (&emacs_event);
126 /* Return non-zero if we have a connection to a session manager. */
129 x_session_have_connection (void)
131 return ice_fd != -1;
134 /* This is called when the session manager says it is OK to interact with the
135 user. Here we set the kind to SAVE_SESSION_EVENT so an event is generated.
136 Then lisp code can interact with the user. */
138 static void
139 smc_interact_CB (SmcConn smcConn, SmPointer clientData)
141 doing_interact = True;
142 emacs_event.kind = SAVE_SESSION_EVENT;
143 emacs_event.arg = Qnil;
146 /* This is called when the session manager tells us to save ourselves.
147 We set the required properties so the session manager can restart us,
148 plus the current working directory property (not mandatory) so we
149 are started in the correct directory.
151 If this is a shutdown and we can request to interact with the user,
152 we do so, because we don't know what the lisp code might do. */
154 static void
155 smc_save_yourself_CB (SmcConn smcConn,
156 SmPointer clientData,
157 int saveType,
158 Bool shutdown,
159 int interactStyle,
160 Bool fast)
162 #define NR_PROPS 5
164 SmProp *props[NR_PROPS];
165 SmProp prop_ptr[NR_PROPS];
167 SmPropValue values[20], *vp;
168 int val_idx = 0, vp_idx = 0;
169 int props_idx = 0;
170 int i;
171 char *cwd = get_current_dir_name ();
172 char *smid_opt, *chdir_opt = NULL;
174 /* How to start a new instance of Emacs. */
175 props[props_idx] = &prop_ptr[props_idx];
176 props[props_idx]->name = xstrdup (SmCloneCommand);
177 props[props_idx]->type = xstrdup (SmLISTofARRAY8);
178 props[props_idx]->num_vals = 1;
179 props[props_idx]->vals = &values[val_idx++];
180 props[props_idx]->vals[0].length = strlen (emacs_program);
181 props[props_idx]->vals[0].value = emacs_program;
182 ++props_idx;
184 /* The name of the program. */
185 props[props_idx] = &prop_ptr[props_idx];
186 props[props_idx]->name = xstrdup (SmProgram);
187 props[props_idx]->type = xstrdup (SmARRAY8);
188 props[props_idx]->num_vals = 1;
189 props[props_idx]->vals = &values[val_idx++];
190 props[props_idx]->vals[0].length = SBYTES (Vinvocation_name);
191 props[props_idx]->vals[0].value = SDATA (Vinvocation_name);
192 ++props_idx;
194 /* User id. */
195 props[props_idx] = &prop_ptr[props_idx];
196 props[props_idx]->name = xstrdup (SmUserID);
197 props[props_idx]->type = xstrdup (SmARRAY8);
198 props[props_idx]->num_vals = 1;
199 props[props_idx]->vals = &values[val_idx++];
200 props[props_idx]->vals[0].length = SBYTES (Vuser_login_name);
201 props[props_idx]->vals[0].value = SDATA (Vuser_login_name);
202 ++props_idx;
205 if (cwd)
207 props[props_idx] = &prop_ptr[props_idx];
208 props[props_idx]->name = xstrdup (SmCurrentDirectory);
209 props[props_idx]->type = xstrdup (SmARRAY8);
210 props[props_idx]->num_vals = 1;
211 props[props_idx]->vals = &values[val_idx++];
212 props[props_idx]->vals[0].length = strlen (cwd);
213 props[props_idx]->vals[0].value = cwd;
214 ++props_idx;
218 /* How to restart Emacs. */
219 props[props_idx] = &prop_ptr[props_idx];
220 props[props_idx]->name = xstrdup (SmRestartCommand);
221 props[props_idx]->type = xstrdup (SmLISTofARRAY8);
222 /* /path/to/emacs, --smid=xxx --no-splash --chdir=dir ... */
223 if (INT_MAX - 3 < initial_argc)
224 memory_full (SIZE_MAX);
225 i = 3 + initial_argc;
226 props[props_idx]->num_vals = i;
227 vp = xnmalloc (i, sizeof *vp);
228 props[props_idx]->vals = vp;
229 props[props_idx]->vals[vp_idx].length = strlen (emacs_program);
230 props[props_idx]->vals[vp_idx++].value = emacs_program;
232 smid_opt = xmalloc (strlen (SMID_OPT) + strlen (client_id) + 1);
233 strcpy (smid_opt, SMID_OPT);
234 strcat (smid_opt, client_id);
236 props[props_idx]->vals[vp_idx].length = strlen (smid_opt);
237 props[props_idx]->vals[vp_idx++].value = smid_opt;
239 props[props_idx]->vals[vp_idx].length = strlen (NOSPLASH_OPT);
240 props[props_idx]->vals[vp_idx++].value = NOSPLASH_OPT;
242 if (cwd)
244 chdir_opt = xmalloc (strlen (CHDIR_OPT) + strlen (cwd) + 1);
245 strcpy (chdir_opt, CHDIR_OPT);
246 strcat (chdir_opt, cwd);
248 props[props_idx]->vals[vp_idx].length = strlen (chdir_opt);
249 props[props_idx]->vals[vp_idx++].value = chdir_opt;
252 for (i = 1; i < initial_argc; ++i)
254 props[props_idx]->vals[vp_idx].length = strlen (initial_argv[i]);
255 props[props_idx]->vals[vp_idx++].value = initial_argv[i];
258 ++props_idx;
260 SmcSetProperties (smcConn, props_idx, props);
262 xfree (smid_opt);
263 xfree (chdir_opt);
264 xfree (cwd);
265 xfree (vp);
267 for (i = 0; i < props_idx; ++i)
269 xfree (props[i]->type);
270 xfree (props[i]->name);
273 /* See if we maybe shall interact with the user. */
274 if (interactStyle != SmInteractStyleAny
275 || ! shutdown
276 || saveType == SmSaveLocal
277 || ! SmcInteractRequest (smcConn, SmDialogNormal, smc_interact_CB, 0))
279 /* No interaction, we are done saving ourself. */
280 SmcSaveYourselfDone (smcConn, True);
284 /* According to the SM specification, this shall close the connection. */
286 static void
287 smc_die_CB (SmcConn smcConn, SmPointer clientData)
289 emacs_event.kind = SAVE_SESSION_EVENT;
290 emacs_event.arg = Qt;
293 /* We don't use the next two but they are mandatory, leave them empty.
294 According to the SM specification, we should not interact with the
295 user between smc_save_yourself_CB is called and until smc_save_complete_CB
296 is called. It seems like a lot of job to implement this and it doesn't
297 even seem necessary. */
299 static void
300 smc_save_complete_CB (SmcConn smcConn, SmPointer clientData)
302 /* Empty */
305 static void
306 smc_shutdown_cancelled_CB (SmcConn smcConn, SmPointer clientData)
308 /* Empty */
311 /* Error handlers for SM and ICE. We don't want to exit Emacs just
312 because there is some error in the session management. */
314 static void
315 smc_error_handler (SmcConn smcConn,
316 Bool swap,
317 int offendingMinorOpcode,
318 unsigned long offendingSequence,
319 int errorClass,
320 int severity,
321 SmPointer values)
323 /* Empty */
326 static void
327 ice_error_handler (IceConn iceConn,
328 Bool swap,
329 int offendingMinorOpcode,
330 unsigned long offendingSequence,
331 int errorClass,
332 int severity,
333 IcePointer values)
335 /* Empty */
339 static void
340 ice_io_error_handler (IceConn iceConn)
342 /* Connection probably gone. */
343 ice_connection_closed ();
346 /* This is called when the ICE connection is created or closed. The SM library
347 uses ICE as it transport protocol. */
349 static void
350 ice_conn_watch_CB (IceConn iceConn, IcePointer clientData,
351 int opening, IcePointer *watchData)
353 if (! opening)
355 ice_connection_closed ();
356 return;
359 ice_fd = IceConnectionNumber (iceConn);
360 add_read_fd (ice_fd, x_session_check_input, NULL);
363 /* Create the client leader window. */
365 #ifndef USE_GTK
366 static void
367 create_client_leader_window (struct x_display_info *dpyinfo, char *client_ID)
369 Window w;
370 XClassHint class_hints;
372 w = XCreateSimpleWindow (dpyinfo->display,
373 dpyinfo->root_window,
374 -1, -1, 1, 1,
375 CopyFromParent, CopyFromParent, CopyFromParent);
377 class_hints.res_name = SSDATA (Vx_resource_name);
378 class_hints.res_class = SSDATA (Vx_resource_class);
379 XSetClassHint (dpyinfo->display, w, &class_hints);
380 XStoreName (dpyinfo->display, w, class_hints.res_name);
382 XChangeProperty (dpyinfo->display, w, dpyinfo->Xatom_SM_CLIENT_ID,
383 XA_STRING, 8, PropModeReplace,
384 (unsigned char *) client_ID, strlen (client_ID));
386 dpyinfo->client_leader_window = w;
388 #endif /* ! USE_GTK */
391 /* Try to open a connection to the session manager. */
393 void
394 x_session_initialize (struct x_display_info *dpyinfo)
396 #define SM_ERRORSTRING_LEN 512
397 char errorstring[SM_ERRORSTRING_LEN];
398 char* previous_id = NULL;
399 SmcCallbacks callbacks;
400 ptrdiff_t name_len = 0;
402 ice_fd = -1;
403 doing_interact = False;
405 /* Check if we where started by the session manager. If so, we will
406 have a previous id. */
407 if (! EQ (Vx_session_previous_id, Qnil) && STRINGP (Vx_session_previous_id))
408 previous_id = SSDATA (Vx_session_previous_id);
410 /* Construct the path to the Emacs program. */
411 if (! EQ (Vinvocation_directory, Qnil))
412 name_len += SBYTES (Vinvocation_directory);
413 name_len += SBYTES (Vinvocation_name);
415 /* This malloc will not be freed, but it is only done once, and hopefully
416 not very large */
417 emacs_program = xmalloc (name_len + 1);
418 emacs_program[0] = '\0';
420 if (! EQ (Vinvocation_directory, Qnil))
421 strcpy (emacs_program, SSDATA (Vinvocation_directory));
422 strcat (emacs_program, SSDATA (Vinvocation_name));
424 /* The SM protocol says all callbacks are mandatory, so set up all
425 here and in the mask passed to SmcOpenConnection. */
426 callbacks.save_yourself.callback = smc_save_yourself_CB;
427 callbacks.save_yourself.client_data = 0;
428 callbacks.die.callback = smc_die_CB;
429 callbacks.die.client_data = 0;
430 callbacks.save_complete.callback = smc_save_complete_CB;
431 callbacks.save_complete.client_data = 0;
432 callbacks.shutdown_cancelled.callback = smc_shutdown_cancelled_CB;
433 callbacks.shutdown_cancelled.client_data = 0;
435 /* Set error handlers. */
436 SmcSetErrorHandler (smc_error_handler);
437 IceSetErrorHandler (ice_error_handler);
438 IceSetIOErrorHandler (ice_io_error_handler);
440 /* Install callback for when connection status changes. */
441 IceAddConnectionWatch (ice_conn_watch_CB, 0);
443 /* Open the connection to the session manager. A failure is not
444 critical, it usually means that no session manager is running.
445 The errorstring is here for debugging. */
446 smc_conn = SmcOpenConnection (NULL, NULL, 1, 0,
447 (SmcSaveYourselfProcMask|
448 SmcDieProcMask|
449 SmcSaveCompleteProcMask|
450 SmcShutdownCancelledProcMask),
451 &callbacks,
452 previous_id,
453 &client_id,
454 SM_ERRORSTRING_LEN,
455 errorstring);
457 if (smc_conn != 0)
459 Vx_session_id = build_string (client_id);
461 #ifdef USE_GTK
462 /* GTK creates a leader window by itself, but we need to tell
463 it about our client_id. */
464 gdk_x11_set_sm_client_id (client_id);
465 #else
466 create_client_leader_window (dpyinfo, client_id);
467 #endif
471 /* Ensure that the session manager is not contacted again. */
473 void
474 x_session_close (void)
476 ice_connection_closed ();
480 DEFUN ("handle-save-session", Fhandle_save_session,
481 Shandle_save_session, 1, 1, "e",
482 doc: /* Handle the save_yourself event from a session manager.
483 A session manager can tell Emacs that the window system is shutting down
484 by sending Emacs a save_yourself message. Emacs executes this function when
485 such an event occurs. This function then executes `emacs-session-save'.
486 After that, this function informs the session manager that it can continue
487 or abort shutting down the window system depending on the return value
488 from `emacs-session-save' If the return value is non-nil the session manager
489 is told to abort the window system shutdown.
491 Do not call this function yourself. */)
492 (Lisp_Object event)
494 int kill_emacs = CONSP (event) && CONSP (XCDR (event))
495 && EQ (Qt, XCAR (XCDR (event)));
497 /* Check doing_interact so that we don't do anything if someone called
498 this at the wrong time. */
499 if (doing_interact && ! kill_emacs)
501 Bool cancel_shutdown = False;
503 cancel_shutdown = ! EQ (call0 (intern ("emacs-session-save")), Qnil);
505 SmcInteractDone (smc_conn, cancel_shutdown);
506 SmcSaveYourselfDone (smc_conn, True);
508 doing_interact = False;
510 else if (kill_emacs)
512 /* We should not do user interaction here, but it is not easy to
513 prevent. Fix this in next version. */
514 Fkill_emacs (Qnil);
516 #if 0
517 /* This will not be reached, but we want kill-emacs-hook to be run. */
518 SmcCloseConnection (smc_conn, 0, 0);
519 ice_connection_closed ();
520 #endif
523 return Qnil;
528 /***********************************************************************
529 Initialization
530 ***********************************************************************/
531 void
532 syms_of_xsmfns (void)
534 DEFVAR_LISP ("x-session-id", Vx_session_id,
535 doc: /* The session id Emacs got from the session manager for this session.
536 Changing the value does not change the session id used by Emacs.
537 The value is nil if no session manager is running.
538 See also `x-session-previous-id', `emacs-save-session-functions',
539 `emacs-session-save' and `emacs-session-restore'." */);
540 Vx_session_id = Qnil;
542 DEFVAR_LISP ("x-session-previous-id", Vx_session_previous_id,
543 doc: /* The previous session id Emacs got from session manager.
544 If Emacs is running on a window system that has a session manager, the
545 session manager gives Emacs a session id. It is feasible for Emacs Lisp
546 code to use the session id to save configuration in, for example, a file
547 with a file name based on the session id. If Emacs is running when the
548 window system is shut down, the session manager remembers that Emacs was
549 running and saves the session id Emacs had.
551 When the window system is started again, the session manager restarts
552 Emacs and hands Emacs the session id it had the last time it was
553 running. This is now the previous session id and the value of this
554 variable. If configuration was saved in a file as stated above, the
555 previous session id shall be used to reconstruct the file name.
557 The session id Emacs has while it is running is in the variable
558 `x-session-id'. The value of this variable and `x-session-id' may be the
559 same, depending on how the session manager works.
561 See also `emacs-save-session-functions', `emacs-session-save' and
562 `emacs-session-restore'." */);
563 Vx_session_previous_id = Qnil;
565 defsubr (&Shandle_save_session);
568 #endif /* HAVE_X_SM */