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