Mercurial > emacs
annotate lib-src/emacsserver.c @ 11016:8d8eef563e13
(unlock_kboard): Renamed from unlock_display.
(wrong_kboard_jmpbuf): Renamed from wrong_display_jmpbuf.
(event_to_kboard): Renamed from event_to_perdisplay.
(kbd_buffer_get_event): If no associated kboard, store
current_kboard rather than the first kboard in the global list.
(init_kboard): Renamed from init_perdisplay. Initialize reference count.
(wipe_kboard): Renamed from wipe_perdisplay.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 15 Mar 1995 01:55:24 +0000 |
parents | bb3d25f73eaf |
children | a6d5c39ed964 |
rev | line source |
---|---|
204 | 1 /* Communication subprocess for GNU Emacs acting as server. |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
2 Copyright (C) 1986, 1987, 1992, 1994 Free Software Foundation, Inc. |
204 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
620 | 8 the Free Software Foundation; either version 2, or (at your option) |
204 | 9 any later version. |
10 | |
11 GNU Emacs 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 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 /* The GNU Emacs edit server process is run as a subprocess of Emacs | |
22 under control of the file lisp/server.el. | |
23 This program accepts communication from client (program emacsclient.c) | |
24 and passes their commands (consisting of keyboard characters) | |
25 up to the Emacs which then executes them. */ | |
26 | |
27 #define NO_SHORTNAMES | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4178
diff
changeset
|
28 #include <../src/config.h> |
204 | 29 #undef read |
30 #undef write | |
31 #undef open | |
32 #undef close | |
3393 | 33 #undef signal |
204 | 34 |
35 | |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
36 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
204 | 37 #include <stdio.h> |
38 | |
39 main () | |
40 { | |
41 fprintf (stderr, "Sorry, the Emacs server is supported only on systems\n"); | |
42 fprintf (stderr, "with Berkeley sockets or System V IPC.\n"); | |
43 exit (1); | |
44 } | |
45 | |
46 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
47 | |
48 #if ! defined (HAVE_SYSVIPC) | |
49 /* BSD code is very different from SYSV IPC code */ | |
50 | |
4178
57e52e312188
Include types.h before file.h.
Richard M. Stallman <rms@gnu.org>
parents:
3594
diff
changeset
|
51 #include <sys/types.h> |
204 | 52 #include <sys/file.h> |
53 #include <sys/socket.h> | |
54 #include <sys/signal.h> | |
55 #include <sys/un.h> | |
56 #include <stdio.h> | |
57 #include <errno.h> | |
58 | |
59 extern int errno; | |
60 | |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
61 /* Copied from src/process.c */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
62 #ifdef FD_SET |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
63 /* We could get this from param.h, but better not to depend on finding that. |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
64 And better not to risk that it might define other symbols used in this |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
65 file. */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
66 #ifdef FD_SETSIZE |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
67 #define MAXDESC FD_SETSIZE |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
68 #else |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
69 #define MAXDESC 64 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
70 #endif |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
71 #define SELECT_TYPE fd_set |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
72 #else /* no FD_SET */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
73 #define MAXDESC 32 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
74 #define SELECT_TYPE int |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
75 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
76 /* Define the macros to access a single-int bitmap of descriptors. */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
77 #define FD_SET(n, p) (*(p) |= (1 << (n))) |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
78 #define FD_CLR(n, p) (*(p) &= ~(1 << (n))) |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
79 #define FD_ISSET(n, p) (*(p) & (1 << (n))) |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
80 #define FD_ZERO(p) (*(p) = 0) |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
81 #endif /* no FD_SET */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
82 |
204 | 83 main () |
84 { | |
470 | 85 char system_name[32]; |
204 | 86 int s, infd, fromlen; |
87 struct sockaddr_un server, fromunix; | |
88 char *homedir; | |
89 char *str, string[BUFSIZ], code[BUFSIZ]; | |
90 FILE *infile; | |
91 FILE **openfiles; | |
92 int openfiles_size; | |
93 | |
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
94 #ifndef convex |
204 | 95 char *getenv (); |
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
96 #endif |
204 | 97 |
98 openfiles_size = 20; | |
99 openfiles = (FILE **) malloc (openfiles_size * sizeof (FILE *)); | |
100 if (openfiles == 0) | |
101 abort (); | |
102 | |
103 /* | |
104 * Open up an AF_UNIX socket in this person's home directory | |
105 */ | |
106 | |
107 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
108 { | |
109 perror ("socket"); | |
110 exit (1); | |
111 } | |
112 server.sun_family = AF_UNIX; | |
470 | 113 #ifndef SERVER_HOME_DIR |
114 gethostname (system_name, sizeof (system_name)); | |
115 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); | |
116 | |
117 if (unlink (server.sun_path) == -1 && errno != ENOENT) | |
118 { | |
119 perror ("unlink"); | |
120 exit (1); | |
121 } | |
122 #else | |
123 if ((homedir = getenv ("HOME")) == NULL) | |
204 | 124 { |
125 fprintf (stderr,"No home directory\n"); | |
126 exit (1); | |
127 } | |
128 strcpy (server.sun_path, homedir); | |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
129 strcat (server.sun_path, "/.emacs-server-"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
130 gethostname (system_name, sizeof (system_name)); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
131 strcat (server.sun_path, system_name); |
470 | 132 /* Delete anyone else's old server. */ |
133 unlink (server.sun_path); | |
204 | 134 #endif |
135 | |
3594
aacca1901f73
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
3393
diff
changeset
|
136 if (bind (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) < 0) |
204 | 137 { |
138 perror ("bind"); | |
139 exit (1); | |
140 } | |
141 /* Only this user can send commands to this Emacs. */ | |
142 chmod (server.sun_path, 0600); | |
143 /* | |
144 * Now, just wait for everything to come in.. | |
145 */ | |
146 if (listen (s, 5) < 0) | |
147 { | |
148 perror ("listen"); | |
149 exit (1); | |
150 } | |
151 | |
152 /* Disable sigpipes in case luser kills client... */ | |
153 signal (SIGPIPE, SIG_IGN); | |
154 for (;;) | |
155 { | |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
156 SELECT_TYPE rmask; |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
157 FD_ZERO (&rmask); |
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
158 FD_SET (0, &rmask); |
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
159 FD_SET (s, &rmask); |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
160 if (select (s + 1, &rmask, 0, 0, 0) < 0) |
204 | 161 perror ("select"); |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
162 if (FD_ISSET (s, &rmask)) /* client sends list of filenames */ |
204 | 163 { |
164 fromlen = sizeof (fromunix); | |
165 fromunix.sun_family = AF_UNIX; | |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
166 infd = accept (s, (struct sockaddr *) &fromunix, &fromlen); |
204 | 167 if (infd < 0) |
168 { | |
169 if (errno == EMFILE || errno == ENFILE) | |
170 printf ("Too many clients.\n"); | |
171 else | |
172 perror ("accept"); | |
173 continue; | |
174 } | |
175 | |
176 if (infd >= openfiles_size) | |
177 { | |
178 openfiles_size *= 2; | |
179 openfiles = (FILE **) realloc (openfiles, | |
180 openfiles_size * sizeof (FILE *)); | |
181 if (openfiles == 0) | |
182 abort (); | |
183 } | |
184 | |
185 infile = fdopen (infd, "r+"); /* open stream */ | |
186 if (infile == NULL) | |
187 { | |
188 printf ("Too many clients.\n"); | |
189 write (infd, "Too many clients.\n", 18); | |
190 close (infd); /* Prevent descriptor leak.. */ | |
191 continue; | |
192 } | |
193 str = fgets (string, BUFSIZ, infile); | |
194 if (str == NULL) | |
195 { | |
196 perror ("fgets"); | |
197 close (infd); /* Prevent descriptor leak.. */ | |
198 continue; | |
199 } | |
200 openfiles[infd] = infile; | |
201 printf ("Client: %d %s", infd, string); | |
202 /* If what we read did not end in a newline, | |
203 it means there is more. Keep reading from the socket | |
204 and outputting to Emacs, until we get the newline. */ | |
205 while (string[strlen (string) - 1] != '\n') | |
206 { | |
207 if (fgets (string, BUFSIZ, infile) == 0) | |
208 break; | |
209 printf ("%s", string); | |
210 } | |
211 fflush (stdout); | |
212 fflush (infile); | |
213 continue; | |
214 } | |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
215 else if (FD_ISSET (0, &rmask)) /* emacs sends codeword, fd, and string message */ |
204 | 216 { |
217 /* Read command codeword and fd */ | |
218 clearerr (stdin); | |
219 scanf ("%s %d%*c", code, &infd); | |
220 if (ferror (stdin) || feof (stdin)) | |
221 { | |
222 fprintf (stderr, "server: error reading from standard input\n"); | |
223 exit (1); | |
224 } | |
225 | |
226 /* Transfer text from Emacs to the client, up to a newline. */ | |
227 infile = openfiles[infd]; | |
228 while (1) | |
229 { | |
230 if (fgets (string, BUFSIZ, stdin) == 0) | |
231 break; | |
232 fprintf (infile, "%s", string); | |
233 if (string[strlen (string) - 1] == '\n') | |
234 break; | |
235 } | |
236 fflush (infile); | |
237 | |
238 /* If command is close, close connection to client. */ | |
239 if (strncmp (code, "Close:", 6) == 0) | |
240 if (infd > 2) | |
241 { | |
242 fclose (infile); | |
243 close (infd); | |
244 } | |
245 continue; | |
246 } | |
247 } | |
248 } | |
249 | |
250 #else /* This is the SYSV IPC section */ | |
251 | |
252 #include <sys/types.h> | |
253 #include <sys/signal.h> | |
254 #include <sys/ipc.h> | |
255 #include <sys/msg.h> | |
256 #include <setjmp.h> | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
257 #include <errno.h> |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
258 #include <sys/utsname.h> |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
259 |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
260 struct utsname system_name; |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
261 |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
262 #ifndef errno |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
263 extern int errno; |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
264 #endif |
204 | 265 |
266 jmp_buf msgenv; | |
267 | |
620 | 268 SIGTYPE |
204 | 269 msgcatch () |
270 { | |
271 longjmp (msgenv, 1); | |
272 } | |
273 | |
274 | |
275 /* "THIS has to be fixed. Remember, stderr may not exist...-rlk." | |
276 Incorrect. This program runs as an inferior of Emacs. | |
277 Its stderr always exists--rms. */ | |
278 #include <stdio.h> | |
279 | |
280 main () | |
281 { | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
282 int s, infd, fromlen, ioproc; |
204 | 283 key_t key; |
284 struct msgbuf * msgp = | |
285 (struct msgbuf *) malloc (sizeof *msgp + BUFSIZ); | |
286 struct msqid_ds msg_st; | |
287 int p; | |
288 char *homedir, *getenv (); | |
289 char string[BUFSIZ]; | |
290 FILE *infile; | |
291 | |
292 /* | |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
293 * Create a message queue using ~/.emacs-server as the path for ftok |
204 | 294 */ |
295 if ((homedir = getenv ("HOME")) == NULL) | |
296 { | |
297 fprintf (stderr,"No home directory\n"); | |
298 exit (1); | |
299 } | |
300 strcpy (string, homedir); | |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
301 #ifndef HAVE_LONG_FILE_NAMES |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
302 /* If file names are short, we can't fit the host name. */ |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
303 strcat (string, "/.emacs-server"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
304 #else |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
305 strcat (string, "/.emacs-server-"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
306 uname (&system_name); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
307 strcat (string, system_name.nodename); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
308 #endif |
204 | 309 creat (string, 0600); |
310 key = ftok (string, 1); /* unlikely to be anyone else using it */ | |
311 s = msgget (key, 0600 | IPC_CREAT); | |
312 if (s == -1) | |
313 { | |
314 perror ("msgget"); | |
315 exit (1); | |
316 } | |
317 | |
318 /* Fork so we can close connection even if parent dies */ | |
319 p = fork (); | |
320 if (setjmp (msgenv)) | |
321 { | |
322 msgctl (s, IPC_RMID, 0); | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
323 if (p > 0) |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
324 kill (p, SIGKILL); |
204 | 325 exit (0); |
326 } | |
327 signal (SIGTERM, msgcatch); | |
328 signal (SIGINT, msgcatch); | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
329 signal (SIGHUP, msgcatch); |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
330 if (p > 0) |
204 | 331 { |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
332 /* This is executed in the original process that did the fork above. */ |
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
333 /* Get pid of Emacs itself. */ |
204 | 334 p = getppid (); |
335 setpgrp (); /* Gnu kills process group on exit */ | |
336 while (1) | |
337 { | |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
338 /* Is Emacs still alive? */ |
204 | 339 if (kill (p, 0) < 0) |
340 { | |
341 msgctl (s, IPC_RMID, 0); | |
342 exit (0); | |
343 } | |
344 sleep (10); | |
345 } | |
346 } | |
347 | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
348 /* This is executed in the child made by forking above. |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
349 Call it c1. Make another process, ioproc. */ |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
350 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
351 ioproc = fork (); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
352 if (ioproc == 0) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
353 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
354 /* In process ioproc, wait for text from Emacs, |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
355 and send it to the process c1. |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
356 This way, c1 only has to wait for one source of input. */ |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
357 while (fgets (msgp->mtext, BUFSIZ, stdin)) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
358 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
359 msgp->mtype = 1; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
360 msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
361 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
362 exit (1); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
363 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
364 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
365 /* In the process c1, |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
366 listen for messages from clients and pass them to Emacs. */ |
204 | 367 while (1) |
368 { | |
369 if ((fromlen = msgrcv (s, msgp, BUFSIZ - 1, 1, 0)) < 0) | |
370 { | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
371 #ifdef EINTR |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
372 if (errno == EINTR) |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
373 continue; |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
374 #endif |
204 | 375 perror ("msgrcv"); |
470 | 376 exit (1); |
204 | 377 } |
378 else | |
379 { | |
380 msgctl (s, IPC_STAT, &msg_st); | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
381 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
382 /* Distinguish whether the message came from a client, or from |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
383 ioproc. */ |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
384 if (msg_st.msg_lspid == ioproc) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
385 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
386 char code[BUFSIZ]; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
387 int inproc; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
388 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
389 /* Message from ioproc: tell a client we are done. */ |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
390 msgp->mtext[strlen (msgp->mtext)-1] = 0; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
391 sscanf (msgp->mtext, "%s %d", code, &inproc); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
392 msgp->mtype = inproc; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
393 msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
394 continue; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
395 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
396 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
397 /* This is a request from a client: copy to stdout |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
398 so that Emacs will get it. Include msg_lspid |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
399 so server.el can tell us where to send the reply. */ |
204 | 400 strncpy (string, msgp->mtext, fromlen); |
401 string[fromlen] = 0; /* make sure */ | |
402 /* Newline is part of string.. */ | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
403 printf ("Client: %d %s", msg_st.msg_lspid, string); |
204 | 404 fflush (stdout); |
405 } | |
406 } | |
407 } | |
408 | |
409 #endif /* HAVE_SYSVIPC */ | |
410 | |
411 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ |