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