Mercurial > emacs
annotate lib-src/emacsclient.c @ 15888:f3afa8fdaf52
(makefile-font-lock-keywords): Catch variable
references that use substitutions.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 20 Aug 1996 20:42:52 +0000 |
parents | 7e712d42d371 |
children | 7284f973fc42 |
rev | line source |
---|---|
493 | 1 /* Client process that communicates with GNU Emacs acting as server. |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
2 Copyright (C) 1986, 1987, 1994 Free Software Foundation, Inc. |
412 | 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 | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
412 | 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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11486
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11486
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
412 | 20 |
21 | |
22 #define NO_SHORTNAMES | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3595
diff
changeset
|
23 #include <../src/config.h> |
412 | 24 #undef read |
25 #undef write | |
26 #undef open | |
27 #undef close | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
28 #undef signal |
412 | 29 |
30 | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
31 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
412 | 32 #include <stdio.h> |
33 | |
34 main (argc, argv) | |
35 int argc; | |
36 char **argv; | |
37 { | |
38 fprintf (stderr, "%s: Sorry, the Emacs server is supported only\n", | |
39 argv[0]); | |
40 fprintf (stderr, "on systems with Berkeley sockets or System V IPC.\n"); | |
41 exit (1); | |
42 } | |
43 | |
44 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
45 | |
11368
91abe61bb495
Test NO_SOCKETS_IN_FILE_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
11232
diff
changeset
|
46 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM) |
412 | 47 /* BSD code is very different from SYSV IPC code */ |
48 | |
49 #include <sys/types.h> | |
50 #include <sys/socket.h> | |
51 #include <sys/un.h> | |
493 | 52 #include <sys/stat.h> |
412 | 53 #include <stdio.h> |
54 #include <errno.h> | |
55 | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
56 extern char *strerror (); |
412 | 57 extern int errno; |
58 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
59 int |
412 | 60 main (argc, argv) |
61 int argc; | |
62 char **argv; | |
63 { | |
64 char system_name[32]; | |
65 int s, i; | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
66 FILE *out, *in; |
412 | 67 struct sockaddr_un server; |
68 char *homedir, *cwd, *str; | |
69 char string[BUFSIZ]; | |
70 | |
71 char *getenv (), *getwd (); | |
11232
c203fc1363d4
[Berkeley sockets version] (main): Declare getcwd.
Richard M. Stallman <rms@gnu.org>
parents:
11030
diff
changeset
|
72 char *getcwd (); |
412 | 73 int geteuid (); |
74 | |
75 if (argc < 2) | |
76 { | |
77 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]); | |
78 exit (1); | |
79 } | |
80 | |
81 /* | |
82 * Open up an AF_UNIX socket in this person's home directory | |
83 */ | |
84 | |
85 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
86 { | |
87 fprintf (stderr, "%s: ", argv[0]); | |
88 perror ("socket"); | |
89 exit (1); | |
90 } | |
91 server.sun_family = AF_UNIX; | |
92 #ifndef SERVER_HOME_DIR | |
493 | 93 { |
94 struct stat statbfr; | |
95 | |
96 gethostname (system_name, sizeof (system_name)); | |
97 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); | |
412 | 98 |
493 | 99 if (stat (server.sun_path, &statbfr) == -1) |
100 { | |
816 | 101 if (errno == ENOENT) |
102 fprintf (stderr, | |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
103 "%s: can't find socket; have you started the server?\n", |
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
104 argv[0]); |
816 | 105 else |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
106 fprintf (stderr, "%s: can't stat %s: %s\n", |
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
107 argv[0], server.sun_path, strerror (errno)); |
493 | 108 exit (1); |
109 } | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
110 if (statbfr.st_uid != geteuid ()) |
493 | 111 { |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
112 fprintf (stderr, "%s: Invalid socket owner\n", argv[0]); |
493 | 113 exit (1); |
114 } | |
115 } | |
412 | 116 #else |
117 if ((homedir = getenv ("HOME")) == NULL) | |
118 { | |
119 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
120 exit (1); | |
121 } | |
122 strcpy (server.sun_path, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
123 strcat (server.sun_path, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
124 gethostname (system_name, sizeof (system_name)); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
125 strcat (server.sun_path, system_name); |
412 | 126 #endif |
127 | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
128 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) |
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
129 < 0) |
412 | 130 { |
131 fprintf (stderr, "%s: ", argv[0]); | |
132 perror ("connect"); | |
133 exit (1); | |
134 } | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
135 |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
136 /* We use the stream OUT to send our command to the server. */ |
412 | 137 if ((out = fdopen (s, "r+")) == NULL) |
138 { | |
139 fprintf (stderr, "%s: ", argv[0]); | |
140 perror ("fdopen"); | |
141 exit (1); | |
142 } | |
143 | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
144 /* We use the stream IN to read the response. |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
145 We used to use just one stream for both output and input |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
146 on the socket, but reversing direction works nonportably: |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
147 on some systems, the output appears as the first input; |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
148 on other systems it does not. */ |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
149 if ((in = fdopen (s, "r+")) == NULL) |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
150 { |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
151 fprintf (stderr, "%s: ", argv[0]); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
152 perror ("fdopen"); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
153 exit (1); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
154 } |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
155 |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
156 #ifdef BSD |
412 | 157 cwd = getwd (string); |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
158 #else |
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
159 cwd = getcwd (string, sizeof string); |
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
160 #endif |
412 | 161 if (cwd == 0) |
162 { | |
163 /* getwd puts message in STRING if it fails. */ | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
164 fprintf (stderr, "%s: %s (%s)\n", argv[0], string, strerror (errno)); |
412 | 165 exit (1); |
166 } | |
167 | |
168 for (i = 1; i < argc; i++) | |
169 { | |
170 if (*argv[i] == '+') | |
171 { | |
172 char *p = argv[i] + 1; | |
173 while (*p >= '0' && *p <= '9') p++; | |
174 if (*p != 0) | |
175 fprintf (out, "%s/", cwd); | |
176 } | |
177 else if (*argv[i] != '/') | |
178 fprintf (out, "%s/", cwd); | |
179 fprintf (out, "%s ", argv[i]); | |
180 } | |
181 fprintf (out, "\n"); | |
182 fflush (out); | |
183 | |
184 printf ("Waiting for Emacs..."); | |
185 fflush (stdout); | |
186 | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
187 /* Now, wait for an answer and print any messages. On some systems, |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
188 the first line we read will actually be the output we just sent. |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
189 We can't predict whether that will happen, so if it does, we |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
190 detect it by recognizing `Client: ' at the beginning. */ |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
191 |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
192 while (str = fgets (string, BUFSIZ, in)) |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
193 printf ("%s", str); |
412 | 194 |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
195 return 0; |
412 | 196 } |
197 | |
198 #else /* This is the SYSV IPC section */ | |
199 | |
200 #include <sys/types.h> | |
201 #include <sys/ipc.h> | |
202 #include <sys/msg.h> | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
203 #include <sys/utsname.h> |
412 | 204 #include <stdio.h> |
205 | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
206 char *getwd (), *getcwd (), *getenv (); |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
207 struct utsname system_name; |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
208 |
412 | 209 main (argc, argv) |
210 int argc; | |
211 char **argv; | |
212 { | |
213 int s; | |
214 key_t key; | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
215 /* Size of text allocated in MSGP. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
216 int size_allocated = BUFSIZ; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
217 /* Amount of text used in MSGP. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
218 int used; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
219 struct msgbuf *msgp |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
220 = (struct msgbuf *) malloc (sizeof (struct msgbuf) + size_allocated); |
412 | 221 struct msqid_ds * msg_st; |
222 char *homedir, buf[BUFSIZ]; | |
223 char gwdirb[BUFSIZ]; | |
224 char *cwd; | |
225 char *temp; | |
8360
e1518247fd63
(main): New local var progname saves argv[0].
Richard M. Stallman <rms@gnu.org>
parents:
8346
diff
changeset
|
226 char *progname = argv[0]; |
412 | 227 |
228 if (argc < 2) | |
229 { | |
230 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]); | |
231 exit (1); | |
232 } | |
233 | |
234 /* | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
235 * Create a message queue using ~/.emacs-server as the path for ftok |
412 | 236 */ |
237 if ((homedir = getenv ("HOME")) == NULL) | |
238 { | |
239 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
240 exit (1); | |
241 } | |
242 strcpy (buf, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
243 #ifndef HAVE_LONG_FILE_NAMES |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
244 /* If file names are short, we can't fit the host name. */ |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
245 strcat (buf, "/.emacs-server"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
246 #else |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
247 strcat (buf, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
248 uname (&system_name); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
249 strcat (buf, system_name.nodename); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
250 #endif |
412 | 251 creat (buf, 0600); |
252 key = ftok (buf, 1); /* unlikely to be anyone else using it */ | |
1031 | 253 s = msgget (key, 0600 | IPC_CREAT); |
412 | 254 if (s == -1) |
255 { | |
256 fprintf (stderr, "%s: ", argv[0]); | |
257 perror ("msgget"); | |
258 exit (1); | |
259 } | |
260 | |
261 /* Determine working dir, so we can prefix it to all the arguments. */ | |
262 #ifdef BSD | |
263 temp = getwd (gwdirb); | |
264 #else | |
265 temp = getcwd (gwdirb, sizeof gwdirb); | |
266 #endif | |
267 | |
268 cwd = gwdirb; | |
269 if (temp != 0) | |
270 { | |
271 /* On some systems, cwd can look like `@machine/...'; | |
272 ignore everything before the first slash in such a case. */ | |
273 while (*cwd && *cwd != '/') | |
274 cwd++; | |
275 strcat (cwd, "/"); | |
276 } | |
277 else | |
278 { | |
11486
fb7c3071c8f0
(main): Add argv[0] to an error message.
Richard M. Stallman <rms@gnu.org>
parents:
11434
diff
changeset
|
279 fprintf (stderr, "%s: %s\n", argv[0], cwd); |
412 | 280 exit (1); |
281 } | |
282 | |
283 msgp->mtext[0] = 0; | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
284 used = 0; |
412 | 285 argc--; argv++; |
286 while (argc) | |
287 { | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
288 int need_cwd = 0; |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
289 char *modified_arg = argv[0]; |
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
290 if (*modified_arg == '+') |
412 | 291 { |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
292 char *p = modified_arg + 1; |
412 | 293 while (*p >= '0' && *p <= '9') p++; |
294 if (*p != 0) | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
295 need_cwd = 1; |
412 | 296 } |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
297 else if (*modified_arg != '/') |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
298 need_cwd = 1; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
299 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
300 if (need_cwd) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
301 used += strlen (cwd); |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
302 used += strlen (modified_arg) + 1; |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
303 while (used + 2 > size_allocated) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
304 { |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
305 size_allocated *= 2; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
306 msgp = (struct msgbuf *) realloc (msgp, |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
307 (sizeof (struct msgbuf) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
308 + size_allocated)); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
309 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
310 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
311 if (need_cwd) |
412 | 312 strcat (msgp->mtext, cwd); |
313 | |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
314 strcat (msgp->mtext, modified_arg); |
412 | 315 strcat (msgp->mtext, " "); |
316 argv++; argc--; | |
317 } | |
318 strcat (msgp->mtext, "\n"); | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
319 #ifdef HPUX /* HPUX has a bug. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
320 if (strlen (msgp->mtext) >= 512) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
321 { |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
322 fprintf (stderr, "%s: args too long for msgsnd\n", progname); |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
323 exit (1); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
324 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
325 #endif |
412 | 326 msgp->mtype = 1; |
327 if (msgsnd (s, msgp, strlen (msgp->mtext)+1, 0) < 0) | |
328 { | |
8360
e1518247fd63
(main): New local var progname saves argv[0].
Richard M. Stallman <rms@gnu.org>
parents:
8346
diff
changeset
|
329 fprintf (stderr, "%s: ", progname); |
412 | 330 perror ("msgsnd"); |
331 exit (1); | |
332 } | |
333 /* | |
334 * Now, wait for an answer | |
335 */ | |
336 printf ("Waiting for Emacs..."); | |
337 fflush (stdout); | |
338 | |
339 msgrcv (s, msgp, BUFSIZ, getpid (), 0); /* wait for anything back */ | |
340 strcpy (buf, msgp->mtext); | |
341 | |
14610
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
342 printf ("\n"); |
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
343 if (*buf) |
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
344 printf ("%s\n", buf); |
412 | 345 exit (0); |
346 } | |
347 | |
348 #endif /* HAVE_SYSVIPC */ | |
349 | |
350 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
5527
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
351 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
352 #ifndef HAVE_STRERROR |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
353 char * |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
354 strerror (errnum) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
355 int errnum; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
356 { |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
357 extern char *sys_errlist[]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
358 extern int sys_nerr; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
359 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
360 if (errnum >= 0 && errnum < sys_nerr) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
361 return sys_errlist[errnum]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
362 return (char *) "Unknown error"; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
363 } |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
364 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
365 #endif /* ! HAVE_STRERROR */ |