Change the custom group to `hypermedia'.
[bpt/emacs.git] / src / callproc.c
CommitLineData
80856e74 1/* Synchronous subprocess invocation for GNU Emacs.
f8c25f1b 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
80856e74
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
826c56ac 8the Free Software Foundation; either version 2, or (at your option)
80856e74
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
80856e74
JB
20
21
22#include <signal.h>
e576cab4 23#include <errno.h>
80856e74 24
18160b98 25#include <config.h>
565620a5 26#include <stdio.h>
80856e74 27
426b37ae 28extern int errno;
826c56ac 29extern char *strerror ();
426b37ae 30
80856e74
JB
31/* Define SIGCHLD as an alias for SIGCLD. */
32
33#if !defined (SIGCHLD) && defined (SIGCLD)
34#define SIGCHLD SIGCLD
35#endif /* SIGCLD */
36
37#include <sys/types.h>
88a64fef 38
80856e74
JB
39#include <sys/file.h>
40#ifdef USG5
472e83fe 41#define INCLUDED_FCNTL
80856e74
JB
42#include <fcntl.h>
43#endif
44
bad95d8f
RS
45#ifdef WINDOWSNT
46#define NOMINMAX
47#include <windows.h>
48#include <stdlib.h> /* for proper declaration of environ */
49#include <fcntl.h>
489f9371 50#include "w32.h"
bad95d8f
RS
51#define _P_NOWAIT 1 /* from process.h */
52#endif
53
7e6c2178 54#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
00353d4f 55#include "msdos.h"
472e83fe 56#define INCLUDED_FCNTL
7e6c2178
RS
57#include <fcntl.h>
58#include <sys/stat.h>
59#include <sys/param.h>
60#include <errno.h>
61#endif /* MSDOS */
62
80856e74
JB
63#ifndef O_RDONLY
64#define O_RDONLY 0
65#endif
66
67#ifndef O_WRONLY
68#define O_WRONLY 1
69#endif
70
71#include "lisp.h"
72#include "commands.h"
73#include "buffer.h"
32d08644
KH
74#include "charset.h"
75#include "coding.h"
2a6b3537 76#include <paths.h>
80856e74 77#include "process.h"
d177f194 78#include "syssignal.h"
a129418f 79#include "systty.h"
80856e74
JB
80
81#ifdef VMS
82extern noshare char **environ;
83#else
84extern char **environ;
85#endif
86
87#define max(a, b) ((a) > (b) ? (a) : (b))
88
bad95d8f 89#ifdef DOS_NT
093650fe
RS
90/* When we are starting external processes we need to know whether they
91 take binary input (no conversion) or text input (\n is converted to
92 \r\n). Similar for output: if newlines are written as \r\n then it's
93 text process output, otherwise it's binary. */
94Lisp_Object Vbinary_process_input;
95Lisp_Object Vbinary_process_output;
bad95d8f 96#endif /* DOS_NT */
7e6c2178 97
35a2f4b8 98Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory;
ed61592a 99Lisp_Object Vconfigure_info_directory;
8abd035b 100Lisp_Object Vtemp_file_name_pattern;
80856e74
JB
101
102Lisp_Object Vshell_file_name;
103
80856e74 104Lisp_Object Vprocess_environment;
80856e74 105
bad95d8f 106#ifdef DOS_NT
093650fe 107Lisp_Object Qbuffer_file_type;
bad95d8f 108#endif /* DOS_NT */
093650fe 109
80856e74
JB
110/* True iff we are about to fork off a synchronous process or if we
111 are waiting for it. */
112int synch_process_alive;
113
114/* Nonzero => this is a string explaining death of synchronous subprocess. */
115char *synch_process_death;
116
117/* If synch_process_death is zero,
118 this is exit code of synchronous subprocess. */
119int synch_process_retcode;
8de15d69
RS
120
121extern Lisp_Object Vdoc_file_name;
80856e74 122\f
37d54121
RS
123/* Clean up when exiting Fcall_process.
124 On MSDOS, delete the temporary file on any kind of termination.
125 On Unix, kill the process and any children on termination by signal. */
126
127/* Nonzero if this is termination due to exit. */
128static int call_process_exited;
129
80856e74
JB
130#ifndef VMS /* VMS version is in vmsproc.c. */
131
d177f194
JB
132static Lisp_Object
133call_process_kill (fdpid)
134 Lisp_Object fdpid;
135{
136 close (XFASTINT (Fcar (fdpid)));
137 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
138 synch_process_alive = 0;
139 return Qnil;
140}
141
80856e74
JB
142Lisp_Object
143call_process_cleanup (fdpid)
144 Lisp_Object fdpid;
145{
7e6c2178
RS
146#ifdef MSDOS
147 /* for MSDOS fdpid is really (fd . tempfile) */
c1350752
KH
148 register Lisp_Object file;
149 file = Fcdr (fdpid);
7e6c2178
RS
150 close (XFASTINT (Fcar (fdpid)));
151 if (strcmp (XSTRING (file)-> data, NULL_DEVICE) != 0)
152 unlink (XSTRING (file)->data);
153#else /* not MSDOS */
d177f194
JB
154 register int pid = XFASTINT (Fcdr (fdpid));
155
6b6e798b 156
37d54121 157 if (call_process_exited)
6b6e798b
RS
158 {
159 close (XFASTINT (Fcar (fdpid)));
160 return Qnil;
161 }
37d54121 162
d177f194
JB
163 if (EMACS_KILLPG (pid, SIGINT) == 0)
164 {
165 int count = specpdl_ptr - specpdl;
166 record_unwind_protect (call_process_kill, fdpid);
167 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
168 immediate_quit = 1;
169 QUIT;
170 wait_for_termination (pid);
171 immediate_quit = 0;
172 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
173 message1 ("Waiting for process to die...done");
174 }
80856e74 175 synch_process_alive = 0;
d177f194 176 close (XFASTINT (Fcar (fdpid)));
7e6c2178 177#endif /* not MSDOS */
80856e74
JB
178 return Qnil;
179}
180
181DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
182 "Call PROGRAM synchronously in separate process.\n\
183The program's input comes from file INFILE (nil means `/dev/null').\n\
184Insert output in BUFFER before point; t means current buffer;\n\
185 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
39eaa782
RS
186BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,\n\
187REAL-BUFFER says what to do with standard output, as above,\n\
188while STDERR-FILE says what to do with standard error in the child.\n\
189STDERR-FILE may be nil (discard standard error output),\n\
190t (mix it with ordinary output), or a file name string.\n\
191\n\
80856e74
JB
192Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
193Remaining arguments are strings passed as command arguments to PROGRAM.\n\
39eaa782
RS
194\n\
195If BUFFER is 0, `call-process' returns immediately with value nil.\n\
196Otherwise it waits for PROGRAM to terminate\n\
e576cab4 197and returns a numeric exit status or a signal description string.\n\
d177f194 198If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
80856e74
JB
199 (nargs, args)
200 int nargs;
201 register Lisp_Object *args;
202{
58616e67 203 Lisp_Object infile, buffer, current_dir, display, path;
80856e74
JB
204 int fd[2];
205 int filefd;
206 register int pid;
6e3bfbb2
RS
207 char buf[16384];
208 char *bufptr = buf;
209 int bufsize = 16384;
80856e74
JB
210 int count = specpdl_ptr - specpdl;
211 register unsigned char **new_argv
212 = (unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
213 struct buffer *old = current_buffer;
39eaa782
RS
214 /* File to use for stderr in the child.
215 t means use same as standard output. */
216 Lisp_Object error_file;
7e6c2178
RS
217#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
218 char *outf, *tempfile;
219 int outfilefd;
220#endif
80856e74
JB
221#if 0
222 int mask;
223#endif
32d08644
KH
224 struct coding_system process_coding; /* coding-system of process output */
225 struct coding_system argument_coding; /* coding-system of arguments */
226
80856e74
JB
227 CHECK_STRING (args[0], 0);
228
39eaa782
RS
229 error_file = Qt;
230
7e6c2178
RS
231#ifndef subprocesses
232 /* Without asynchronous processes we cannot have BUFFER == 0. */
d50d3dc8 233 if (nargs >= 3 && INTEGERP (args[2]))
7e6c2178
RS
234 error ("Operating system cannot handle asynchronous subprocesses");
235#endif /* subprocesses */
236
32d08644
KH
237 /* Decide the coding-system for giving arguments and reading process
238 output. */
239 {
240 Lisp_Object val, *args2;
08ee4e87 241 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
32d08644
KH
242 Lisp_Object coding_systems = Qt;
243 int i;
244
245 /* If arguments are supplied, we may have to encode them. */
246 if (nargs >= 5)
247 {
beacaab3
KH
248 if (!NILP (Vcoding_system_for_write))
249 val = Vcoding_system_for_write;
250 else if (NILP (current_buffer->enable_multibyte_characters))
251 val = Qnil;
252 else
32d08644
KH
253 {
254 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
255 args2[0] = Qcall_process;
256 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
08ee4e87 257 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
776b95cb
KH
258 if (CONSP (coding_systems))
259 val = XCONS (coding_systems)->cdr;
260 else if (CONSP (Vdefault_process_coding_system))
261 val = XCONS (Vdefault_process_coding_system)->cdr;
beacaab3
KH
262 else
263 val = Qnil;
32d08644
KH
264 }
265 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
266 }
267
268 /* If BUFFER is nil, we must read process output once and then
269 discard it, so setup coding system but with nil. If BUFFER is
270 an integer, we can discard it without reading. */
271 if (nargs < 3 || NILP (args[2]))
272 setup_coding_system (Qnil, &process_coding);
273 else if (!INTEGERP (args[2]))
274 {
beacaab3
KH
275 val = Qnil;
276 if (!NILP (Vcoding_system_for_read))
277 val = Vcoding_system_for_read;
278 else if (NILP (current_buffer->enable_multibyte_characters))
279 val = Qemacs_mule;
280 else
32d08644
KH
281 {
282 if (!EQ (coding_systems, Qt))
283 {
284 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
285 args2[0] = Qcall_process;
286 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
08ee4e87
KH
287 coding_systems
288 = Ffind_operation_coding_system (nargs + 1, args2);
32d08644 289 }
776b95cb
KH
290 if (CONSP (coding_systems))
291 val = XCONS (coding_systems)->car;
292 else if (CONSP (Vdefault_process_coding_system))
293 val = XCONS (Vdefault_process_coding_system)->car;
beacaab3
KH
294 else
295 val = Qnil;
32d08644
KH
296 }
297 setup_coding_system (Fcheck_coding_system (val), &process_coding);
c49f3d5a
RS
298#ifdef MSDOS
299 /* On MSDOS, if the user did not ask for binary,
300 treat it as "text" which means doing CRLF conversion. */
301 /* FIXME: this probably should be moved into the guts of
302 `Ffind_operation_coding_system' for the case of `call-process'. */
303 if (NILP (Vbinary_process_output))
304 {
305 process_coding.eol_type = CODING_EOL_CRLF;
306 if (process_coding.type == coding_type_no_conversion)
307 /* FIXME: should we set type to undecided? */
308 process_coding.type = coding_type_emacs_mule;
309 }
310#endif
32d08644
KH
311 }
312 }
313
e576cab4
JB
314 if (nargs >= 2 && ! NILP (args[1]))
315 {
316 infile = Fexpand_file_name (args[1], current_buffer->directory);
317 CHECK_STRING (infile, 1);
318 }
80856e74 319 else
5437e9f9 320 infile = build_string (NULL_DEVICE);
80856e74 321
e576cab4
JB
322 if (nargs >= 3)
323 {
39eaa782
RS
324 buffer = args[2];
325
326 /* If BUFFER is a list, its meaning is
327 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
328 if (CONSP (buffer))
329 {
330 if (CONSP (XCONS (buffer)->cdr))
45be8a1e 331 {
a9d4f28a 332 Lisp_Object stderr_file;
45be8a1e
RS
333 stderr_file = XCONS (XCONS (buffer)->cdr)->car;
334
335 if (NILP (stderr_file) || EQ (Qt, stderr_file))
336 error_file = stderr_file;
337 else
338 error_file = Fexpand_file_name (stderr_file, Qnil);
339 }
340
39eaa782
RS
341 buffer = XCONS (buffer)->car;
342 }
044512ed 343
39eaa782
RS
344 if (!(EQ (buffer, Qnil)
345 || EQ (buffer, Qt)
346 || XFASTINT (buffer) == 0))
e576cab4 347 {
39eaa782
RS
348 Lisp_Object spec_buffer;
349 spec_buffer = buffer;
350 buffer = Fget_buffer (buffer);
351 /* Mention the buffer name for a better error message. */
352 if (NILP (buffer))
353 CHECK_BUFFER (spec_buffer, 2);
e576cab4
JB
354 CHECK_BUFFER (buffer, 2);
355 }
356 }
357 else
358 buffer = Qnil;
80856e74 359
58616e67
JB
360 /* Make sure that the child will be able to chdir to the current
361 buffer's current directory, or its unhandled equivalent. We
362 can't just have the child check for an error when it does the
363 chdir, since it's in a vfork.
364
365 We have to GCPRO around this because Fexpand_file_name,
366 Funhandled_file_name_directory, and Ffile_accessible_directory_p
367 might call a file name handling function. The argument list is
368 protected by the caller, so all we really have to worry about is
369 buffer. */
370 {
371 struct gcpro gcpro1, gcpro2, gcpro3;
372
373 current_dir = current_buffer->directory;
374
375 GCPRO3 (infile, buffer, current_dir);
376
c52b0b34
KH
377 current_dir
378 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
379 Qnil);
58616e67
JB
380 if (NILP (Ffile_accessible_directory_p (current_dir)))
381 report_file_error ("Setting current directory",
382 Fcons (current_buffer->directory, Qnil));
383
384 UNGCPRO;
385 }
386
e576cab4 387 display = nargs >= 4 ? args[3] : Qnil;
80856e74 388
e576cab4 389 filefd = open (XSTRING (infile)->data, O_RDONLY, 0);
80856e74
JB
390 if (filefd < 0)
391 {
e576cab4 392 report_file_error ("Opening process input file", Fcons (infile, Qnil));
80856e74
JB
393 }
394 /* Search for program; barf if not found. */
c52b0b34
KH
395 {
396 struct gcpro gcpro1;
397
398 GCPRO1 (current_dir);
399 openp (Vexec_path, args[0], EXEC_SUFFIXES, &path, 1);
400 UNGCPRO;
401 }
012c6fcb 402 if (NILP (path))
80856e74
JB
403 {
404 close (filefd);
405 report_file_error ("Searching for program", Fcons (args[0], Qnil));
406 }
407 new_argv[0] = XSTRING (path)->data;
c52b0b34
KH
408 {
409 register int i;
410 for (i = 4; i < nargs; i++)
411 {
412 CHECK_STRING (args[i], i);
32d08644
KH
413 if (argument_coding.type == coding_type_no_conversion)
414 new_argv[i - 3] = XSTRING (args[i])->data;
415 else
416 {
417 /* We must encode the arguments. */
418 int size = encoding_buffer_size (&argument_coding,
419 XSTRING (args[i])->size);
420 int produced, dummy;
02e08311 421 unsigned char *dummy1 = (unsigned char *) alloca (size);
32d08644 422
67b50bf7 423 /* The Irix 4.0 compiler barfs if we eliminate dummy. */
02e08311 424 new_argv[i - 3] = dummy1;
32d08644
KH
425 produced = encode_coding (&argument_coding,
426 XSTRING (args[i])->data, new_argv[i - 3],
427 XSTRING (args[i])->size, size, &dummy);
428 new_argv[i - 3][produced] = 0;
429 }
c52b0b34
KH
430 }
431 new_argv[i - 3] = 0;
432 }
80856e74 433
7e6c2178 434#ifdef MSDOS /* MW, July 1993 */
7e6c2178
RS
435 if ((outf = egetenv ("TMP")) || (outf = egetenv ("TEMP")))
436 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
437 else
438 {
439 tempfile = alloca (20);
440 *tempfile = '\0';
441 }
442 dostounix_filename (tempfile);
443 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
444 strcat (tempfile, "/");
445 strcat (tempfile, "detmp.XXX");
446 mktemp (tempfile);
447
448 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
449 if (outfilefd < 0)
450 {
451 close (filefd);
6f89d28a
MB
452 report_file_error ("Opening process output file",
453 Fcons (build_string (tempfile), Qnil));
7e6c2178 454 }
6f89d28a 455 fd[0] = filefd;
2610078a 456 fd[1] = outfilefd;
6f89d28a 457#endif /* MSDOS */
7e6c2178 458
d50d3dc8 459 if (INTEGERP (buffer))
5437e9f9 460 fd[1] = open (NULL_DEVICE, O_WRONLY), fd[0] = -1;
80856e74
JB
461 else
462 {
7e6c2178 463#ifndef MSDOS
80856e74 464 pipe (fd);
7e6c2178 465#endif
80856e74
JB
466#if 0
467 /* Replaced by close_process_descs */
468 set_exclusive_use (fd[0]);
469#endif
470 }
471
472 {
473 /* child_setup must clobber environ in systems with true vfork.
474 Protect it from permanent change. */
475 register char **save_environ = environ;
476 register int fd1 = fd[1];
39eaa782 477 int fd_error = fd1;
80856e74
JB
478
479#if 0 /* Some systems don't have sigblock. */
e065a56e 480 mask = sigblock (sigmask (SIGCHLD));
80856e74
JB
481#endif
482
483 /* Record that we're about to create a synchronous process. */
484 synch_process_alive = 1;
485
5c03767e
RS
486 /* These vars record information from process termination.
487 Clear them now before process can possibly terminate,
488 to avoid timing error if process terminates soon. */
489 synch_process_death = 0;
490 synch_process_retcode = 0;
491
39eaa782
RS
492 if (NILP (error_file))
493 fd_error = open (NULL_DEVICE, O_WRONLY);
494 else if (STRINGP (error_file))
495 {
496#ifdef DOS_NT
497 fd_error = open (XSTRING (error_file)->data,
498 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
499 S_IREAD | S_IWRITE);
500#else /* not DOS_NT */
501 fd_error = creat (XSTRING (error_file)->data, 0666);
502#endif /* not DOS_NT */
503 }
504
505 if (fd_error < 0)
506 {
507 close (filefd);
6f89d28a
MB
508 if (fd[0] != filefd)
509 close (fd[0]);
39eaa782
RS
510 if (fd1 >= 0)
511 close (fd1);
6f89d28a
MB
512#ifdef MSDOS
513 unlink (tempfile);
514#endif
515 report_file_error ("Cannot redirect stderr",
516 Fcons ((NILP (error_file)
517 ? build_string (NULL_DEVICE) : error_file),
518 Qnil));
39eaa782 519 }
2610078a
KH
520#ifdef MSDOS /* MW, July 1993 */
521 /* ??? Someone who knows MSDOG needs to check whether this properly
522 closes all descriptors that it opens.
523
524 Note that run_msdos_command() actually returns the child process
525 exit status, not its PID, so we assign it to `synch_process_retcode'
526 below. */
527 pid = run_msdos_command (new_argv, current_dir,
528 filefd, outfilefd, fd_error);
39eaa782 529
2610078a
KH
530 /* Record that the synchronous process exited and note its
531 termination status. */
532 synch_process_alive = 0;
533 synch_process_retcode = pid;
534 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
535 synch_process_death = strerror(errno);
536
537 close (outfilefd);
538 if (fd_error != outfilefd)
539 close (fd_error);
540 fd1 = -1; /* No harm in closing that one! */
32d08644
KH
541 /* Since CRLF is converted to LF within `decode_coding', we can
542 always open a file with binary mode. */
543 fd[0] = open (tempfile, O_BINARY);
2610078a
KH
544 if (fd[0] < 0)
545 {
546 unlink (tempfile);
547 close (filefd);
548 report_file_error ("Cannot re-open temporary file", Qnil);
549 }
550#else /* not MSDOS */
bad95d8f 551#ifdef WINDOWSNT
39eaa782 552 pid = child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir);
bad95d8f 553#else /* not WINDOWSNT */
80856e74
JB
554 pid = vfork ();
555
556 if (pid == 0)
557 {
558 if (fd[0] >= 0)
559 close (fd[0]);
1e7963c7
RS
560#ifdef HAVE_SETSID
561 setsid ();
562#endif
563#if defined (USG) && !defined (BSD_PGRPS)
80856e74
JB
564 setpgrp ();
565#else
566 setpgrp (pid, pid);
567#endif /* USG */
39eaa782 568 child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir);
80856e74 569 }
bad95d8f 570#endif /* not WINDOWSNT */
cd5f8f60
RS
571
572 /* The MSDOS case did this already. */
573 if (fd_error >= 0)
574 close (fd_error);
2610078a 575#endif /* not MSDOS */
80856e74 576
80856e74
JB
577 environ = save_environ;
578
6b6e798b
RS
579 /* Close most of our fd's, but not fd[0]
580 since we will use that to read input from. */
80856e74 581 close (filefd);
799abb26 582 if (fd1 >= 0 && fd1 != fd_error)
7e6c2178 583 close (fd1);
80856e74
JB
584 }
585
586 if (pid < 0)
587 {
6b6e798b
RS
588 if (fd[0] >= 0)
589 close (fd[0]);
80856e74
JB
590 report_file_error ("Doing vfork", Qnil);
591 }
592
d50d3dc8 593 if (INTEGERP (buffer))
80856e74 594 {
6b6e798b
RS
595 if (fd[0] >= 0)
596 close (fd[0]);
80856e74 597#ifndef subprocesses
e576cab4
JB
598 /* If Emacs has been built with asynchronous subprocess support,
599 we don't need to do this, I think because it will then have
600 the facilities for handling SIGCHLD. */
80856e74
JB
601 wait_without_blocking ();
602#endif /* subprocesses */
80856e74
JB
603 return Qnil;
604 }
605
6b6e798b 606 /* Enable sending signal if user quits below. */
37d54121
RS
607 call_process_exited = 0;
608
7e6c2178
RS
609#ifdef MSDOS
610 /* MSDOS needs different cleanup information. */
611 record_unwind_protect (call_process_cleanup,
612 Fcons (make_number (fd[0]), build_string (tempfile)));
613#else
80856e74
JB
614 record_unwind_protect (call_process_cleanup,
615 Fcons (make_number (fd[0]), make_number (pid)));
7e6c2178 616#endif /* not MSDOS */
80856e74
JB
617
618
d50d3dc8 619 if (BUFFERP (buffer))
80856e74
JB
620 Fset_buffer (buffer);
621
622 immediate_quit = 1;
623 QUIT;
624
625 {
626 register int nread;
0ad477db 627 int first = 1;
6e3bfbb2 628 int total_read = 0;
80856e74 629
60558b19 630 while (1)
80856e74 631 {
60558b19
RS
632 /* Repeatedly read until we've filled as much as possible
633 of the buffer size we have. But don't read
8e6208c5 634 less than 1024--save that for the next bufferful. */
60558b19 635
32d08644 636 nread = process_coding.carryover_size; /* This value is initially 0. */
60558b19 637 while (nread < bufsize - 1024)
00fb3e95 638 {
60558b19
RS
639 int this_read
640 = read (fd[0], bufptr + nread, bufsize - nread);
641
642 if (this_read < 0)
643 goto give_up;
644
645 if (this_read == 0)
646 goto give_up_1;
647
648 nread += this_read;
00fb3e95 649 }
60558b19
RS
650
651 give_up_1:
652
653 /* Now NREAD is the total amount of data in the buffer. */
654 if (nread == 0)
32d08644
KH
655 /* Here, just tell decode_coding that we are processing the
656 last block. We break the loop after decoding. */
657 process_coding.last_block = 1;
60558b19 658
80856e74 659 immediate_quit = 0;
6e3bfbb2
RS
660 total_read += nread;
661
012c6fcb 662 if (!NILP (buffer))
32d08644
KH
663 {
664 if (process_coding.type == coding_type_no_conversion)
665 insert (bufptr, nread);
666 else
667 { /* We have to decode the input. */
668 int size = decoding_buffer_size (&process_coding, bufsize);
669 char *decoding_buf = get_conversion_buffer (size);
670 int dummy;
671
672 nread = decode_coding (&process_coding, bufptr, decoding_buf,
673 nread, size, &dummy);
674 if (nread > 0)
675 insert (decoding_buf, nread);
676 }
677 }
678
679 if (process_coding.last_block)
680 break;
6e3bfbb2
RS
681
682 /* Make the buffer bigger as we continue to read more data,
683 but not past 64k. */
684 if (bufsize < 64 * 1024 && total_read > 32 * bufsize)
685 {
686 bufsize *= 2;
687 bufptr = (char *) alloca (bufsize);
688 }
689
32d08644
KH
690 if (!NILP (buffer) && process_coding.carryover_size > 0)
691 /* We have carryover in the last decoding. It should be
692 processed again after reading more data. */
693 bcopy (process_coding.carryover, bufptr,
694 process_coding.carryover_size);
695
012c6fcb 696 if (!NILP (display) && INTERACTIVE)
0ad477db
RS
697 {
698 if (first)
699 prepare_menu_bars ();
700 first = 0;
701 redisplay_preserve_echo_area ();
702 }
80856e74
JB
703 immediate_quit = 1;
704 QUIT;
705 }
60558b19 706 give_up: ;
80856e74
JB
707 }
708
709 /* Wait for it to terminate, unless it already has. */
710 wait_for_termination (pid);
711
712 immediate_quit = 0;
713
714 set_buffer_internal (old);
715
37d54121
RS
716 /* Don't kill any children that the subprocess may have left behind
717 when exiting. */
718 call_process_exited = 1;
719
80856e74
JB
720 unbind_to (count, Qnil);
721
80856e74
JB
722 if (synch_process_death)
723 return build_string (synch_process_death);
724 return make_number (synch_process_retcode);
725}
726#endif
727\f
9fefd2ba 728static Lisp_Object
80856e74
JB
729delete_temp_file (name)
730 Lisp_Object name;
731{
2e3dc201 732 /* Use Fdelete_file (indirectly) because that runs a file name handler.
59750d69 733 We did that when writing the file, so we should do so when deleting. */
2e3dc201 734 internal_delete_file (name);
80856e74
JB
735}
736
737DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
738 3, MANY, 0,
739 "Send text from START to END to a synchronous process running PROGRAM.\n\
740Delete the text if fourth arg DELETE is non-nil.\n\
39eaa782 741\n\
80856e74
JB
742Insert output in BUFFER before point; t means current buffer;\n\
743 nil for BUFFER means discard it; 0 means discard and don't wait.\n\
39eaa782
RS
744BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,\n\
745REAL-BUFFER says what to do with standard output, as above,\n\
746while STDERR-FILE says what to do with standard error in the child.\n\
747STDERR-FILE may be nil (discard standard error output),\n\
748t (mix it with ordinary output), or a file name string.\n\
749\n\
80856e74
JB
750Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.\n\
751Remaining args are passed to PROGRAM at startup as command args.\n\
39eaa782
RS
752\n\
753If BUFFER is nil, `call-process-region' returns immediately with value nil.\n\
754Otherwise it waits for PROGRAM to terminate\n\
e576cab4 755and returns a numeric exit status or a signal description string.\n\
d177f194 756If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
80856e74
JB
757 (nargs, args)
758 int nargs;
759 register Lisp_Object *args;
760{
39323a7e
KH
761 struct gcpro gcpro1;
762 Lisp_Object filename_string;
763 register Lisp_Object start, end;
d3e81d0a 764 int count = specpdl_ptr - specpdl;
08ee4e87 765 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
32d08644
KH
766 Lisp_Object coding_systems = Qt;
767 Lisp_Object val, *args2;
768 int i;
bad95d8f 769#ifdef DOS_NT
7e6c2178 770 char *tempfile;
7e6c2178
RS
771 char *outf = '\0';
772
773 if ((outf = egetenv ("TMP")) || (outf = egetenv ("TEMP")))
774 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
775 else
776 {
777 tempfile = alloca (20);
778 *tempfile = '\0';
779 }
0774fcf8 780 if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
7e6c2178 781 strcat (tempfile, "/");
5711b547
RS
782 if ('/' == DIRECTORY_SEP)
783 dostounix_filename (tempfile);
784 else
785 unixtodos_filename (tempfile);
0774fcf8
RS
786#ifdef WINDOWSNT
787 strcat (tempfile, "emXXXXXX");
788#else
7e6c2178 789 strcat (tempfile, "detmp.XXX");
0774fcf8 790#endif
bad95d8f 791#else /* not DOS_NT */
8abd035b
RS
792 char *tempfile = (char *) alloca (XSTRING (Vtemp_file_name_pattern)->size + 1);
793 bcopy (XSTRING (Vtemp_file_name_pattern)->data, tempfile,
794 XSTRING (Vtemp_file_name_pattern)->size + 1);
bad95d8f 795#endif /* not DOS_NT */
7e6c2178 796
80856e74
JB
797 mktemp (tempfile);
798
799 filename_string = build_string (tempfile);
39323a7e 800 GCPRO1 (filename_string);
80856e74
JB
801 start = args[0];
802 end = args[1];
32d08644 803 /* Decide coding-system of the contents of the temporary file. */
bad95d8f 804#ifdef DOS_NT
093650fe 805 specbind (Qbuffer_file_type, Vbinary_process_input);
32d08644
KH
806 if (NILP (Vbinary_process_input))
807 val = Qnil;
808 else
809#endif
beacaab3
KH
810 {
811 if (!NILP (Vcoding_system_for_write))
812 val = Vcoding_system_for_write;
813 else if (NILP (current_buffer->enable_multibyte_characters))
814 val = Qnil;
815 else
816 {
817 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
818 args2[0] = Qcall_process_region;
819 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
820 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
821 if (CONSP (coding_systems))
822 val = XCONS (coding_systems)->cdr;
823 else if (CONSP (Vdefault_process_coding_system))
0384b4b7 824 val = XCONS (Vdefault_process_coding_system)->cdr;
beacaab3
KH
825 else
826 val = Qnil;
827 }
828 }
32d08644 829 specbind (intern ("coding-system-for-write"), val);
776b95cb 830 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil);
32d08644
KH
831
832#ifdef DOS_NT
833 if (NILP (Vbinary_process_input))
834 val = Qnil;
835 else
836#endif
beacaab3
KH
837 {
838 if (!NILP (Vcoding_system_for_read))
839 val = Vcoding_system_for_read;
840 else if (NILP (current_buffer->enable_multibyte_characters))
841 val = Qemacs_mule;
842 else
843 {
844 if (EQ (coding_systems, Qt))
845 {
846 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
847 args2[0] = Qcall_process_region;
848 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
849 coding_systems = Ffind_operation_coding_system (nargs + 1,
850 args2);
851 }
852 val = CONSP (coding_systems) ? XCONS (coding_systems)->car : Qnil;
853 }
854 }
32d08644 855 specbind (intern ("coding-system-for-read"), val);
093650fe 856
80856e74
JB
857 record_unwind_protect (delete_temp_file, filename_string);
858
012c6fcb 859 if (!NILP (args[3]))
80856e74
JB
860 Fdelete_region (start, end);
861
862 args[3] = filename_string;
80856e74 863
39323a7e 864 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs - 2, args + 2)));
80856e74
JB
865}
866\f
867#ifndef VMS /* VMS version is in vmsproc.c. */
868
869/* This is the last thing run in a newly forked inferior
870 either synchronous or asynchronous.
871 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
872 Initialize inferior's priority, pgrp, connected dir and environment.
873 then exec another program based on new_argv.
874
875 This function may change environ for the superior process.
876 Therefore, the superior process must save and restore the value
877 of environ around the vfork and the call to this function.
878
879 ENV is the environment for the subprocess.
880
881 SET_PGRP is nonzero if we should put the subprocess into a separate
e576cab4
JB
882 process group.
883
884 CURRENT_DIR is an elisp string giving the path of the current
885 directory the subprocess should have. Since we can't really signal
886 a decent error from within the child, this should be verified as an
887 executable directory by the parent. */
80856e74 888
e576cab4 889child_setup (in, out, err, new_argv, set_pgrp, current_dir)
80856e74
JB
890 int in, out, err;
891 register char **new_argv;
80856e74 892 int set_pgrp;
e576cab4 893 Lisp_Object current_dir;
80856e74 894{
7e6c2178
RS
895#ifdef MSDOS
896 /* The MSDOS port of gcc cannot fork, vfork, ... so we must call system
897 instead. */
898#else /* not MSDOS */
e576cab4 899 char **env;
7fcf7f05 900 char *pwd_var;
bad95d8f
RS
901#ifdef WINDOWSNT
902 int cpid;
4252a4bd 903 HANDLE handles[3];
bad95d8f 904#endif /* WINDOWSNT */
e576cab4 905
33abe2d9 906 int pid = getpid ();
80856e74 907
68d10241 908#ifdef SET_EMACS_PRIORITY
4f0b9d49
JB
909 {
910 extern int emacs_priority;
911
68d10241
RS
912 if (emacs_priority < 0)
913 nice (- emacs_priority);
4f0b9d49 914 }
5b633aeb 915#endif
80856e74
JB
916
917#ifdef subprocesses
918 /* Close Emacs's descriptors that this process should not have. */
919 close_process_descs ();
920#endif
4458cebe 921 close_load_descs ();
80856e74
JB
922
923 /* Note that use of alloca is always safe here. It's obvious for systems
924 that do not have true vfork or that have true (stack) alloca.
925 If using vfork and C_ALLOCA it is safe because that changes
926 the superior's static variables as if the superior had done alloca
927 and will be cleaned up in the usual way. */
e576cab4 928 {
7fcf7f05 929 register char *temp;
e576cab4 930 register int i;
77d78be1 931
e576cab4 932 i = XSTRING (current_dir)->size;
7fcf7f05
RS
933 pwd_var = (char *) alloca (i + 6);
934 temp = pwd_var + 4;
935 bcopy ("PWD=", pwd_var, 4);
e576cab4 936 bcopy (XSTRING (current_dir)->data, temp, i);
bad95d8f 937 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
e576cab4
JB
938 temp[i] = 0;
939
940 /* We can't signal an Elisp error here; we're in a vfork. Since
941 the callers check the current directory before forking, this
942 should only return an error if the directory's permissions
943 are changed between the check and this chdir, but we should
944 at least check. */
945 if (chdir (temp) < 0)
20b25e46 946 _exit (errno);
7fcf7f05
RS
947
948 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
bad95d8f 949 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
7fcf7f05 950 temp[--i] = 0;
e576cab4 951 }
80856e74 952
80856e74
JB
953 /* Set `env' to a vector of the strings in Vprocess_environment. */
954 {
955 register Lisp_Object tem;
956 register char **new_env;
957 register int new_length;
958
959 new_length = 0;
960 for (tem = Vprocess_environment;
d50d3dc8 961 CONSP (tem) && STRINGP (XCONS (tem)->car);
80856e74
JB
962 tem = XCONS (tem)->cdr)
963 new_length++;
964
7fcf7f05
RS
965 /* new_length + 2 to include PWD and terminating 0. */
966 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
967
968 /* If we have a PWD envvar, pass one down,
969 but with corrected value. */
970 if (getenv ("PWD"))
971 *new_env++ = pwd_var;
80856e74 972
cd9565ba 973 /* Copy the Vprocess_environment strings into new_env. */
80856e74 974 for (tem = Vprocess_environment;
d50d3dc8 975 CONSP (tem) && STRINGP (XCONS (tem)->car);
80856e74 976 tem = XCONS (tem)->cdr)
cd9565ba
RS
977 {
978 char **ep = env;
979 char *string = (char *) XSTRING (XCONS (tem)->car)->data;
980 /* See if this string duplicates any string already in the env.
981 If so, don't put it in.
982 When an env var has multiple definitions,
983 we keep the definition that comes first in process-environment. */
984 for (; ep != new_env; ep++)
985 {
986 char *p = *ep, *q = string;
987 while (1)
988 {
989 if (*q == 0)
990 /* The string is malformed; might as well drop it. */
991 goto duplicate;
992 if (*q != *p)
993 break;
994 if (*q == '=')
995 goto duplicate;
996 p++, q++;
997 }
998 }
999 *new_env++ = string;
1000 duplicate: ;
1001 }
80856e74
JB
1002 *new_env = 0;
1003 }
bad95d8f
RS
1004#ifdef WINDOWSNT
1005 prepare_standard_handles (in, out, err, handles);
1006#else /* not WINDOWSNT */
426b37ae
JB
1007 /* Make sure that in, out, and err are not actually already in
1008 descriptors zero, one, or two; this could happen if Emacs is
7e6c2178 1009 started with its standard in, out, or error closed, as might
426b37ae 1010 happen under X. */
f29f9e4a
RS
1011 {
1012 int oin = in, oout = out;
1013
1014 /* We have to avoid relocating the same descriptor twice! */
1015
1016 in = relocate_fd (in, 3);
1017
1018 if (out == oin)
1019 out = in;
1020 else
3e9367e7 1021 out = relocate_fd (out, 3);
f29f9e4a
RS
1022
1023 if (err == oin)
1024 err = in;
1025 else if (err == oout)
1026 err = out;
1027 else
3e9367e7 1028 err = relocate_fd (err, 3);
f29f9e4a 1029 }
426b37ae 1030
80856e74
JB
1031 close (0);
1032 close (1);
1033 close (2);
1034
1035 dup2 (in, 0);
1036 dup2 (out, 1);
1037 dup2 (err, 2);
1038 close (in);
1039 close (out);
1040 close (err);
bad95d8f 1041#endif /* not WINDOWSNT */
80856e74 1042
6b2cd868 1043#if defined(USG) && !defined(BSD_PGRPS)
fdba8590 1044#ifndef SETPGRP_RELEASES_CTTY
e576cab4 1045 setpgrp (); /* No arguments but equivalent in this case */
fdba8590 1046#endif
e576cab4
JB
1047#else
1048 setpgrp (pid, pid);
1049#endif /* USG */
a129418f
RS
1050 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1051 EMACS_SET_TTY_PGRP (0, &pid);
80856e74
JB
1052
1053#ifdef vipc
1054 something missing here;
1055#endif /* vipc */
1056
bad95d8f
RS
1057#ifdef WINDOWSNT
1058 /* Spawn the child. (See ntproc.c:Spawnve). */
1059 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
ff27bfbe
KH
1060 if (cpid == -1)
1061 /* An error occurred while trying to spawn the process. */
1062 report_file_error ("Spawning child process", Qnil);
bad95d8f
RS
1063 reset_standard_handles (in, out, err, handles);
1064 return cpid;
1065#else /* not WINDOWSNT */
80856e74
JB
1066 /* execvp does not accept an environment arg so the only way
1067 to pass this environment is to set environ. Our caller
1068 is responsible for restoring the ambient value of environ. */
1069 environ = env;
1070 execvp (new_argv[0], new_argv);
1071
f040c0ba 1072 write (1, "Can't exec program: ", 20);
80856e74 1073 write (1, new_argv[0], strlen (new_argv[0]));
d20b8af6 1074 write (1, "\n", 1);
80856e74 1075 _exit (1);
bad95d8f 1076#endif /* not WINDOWSNT */
7e6c2178 1077#endif /* not MSDOS */
80856e74
JB
1078}
1079
426b37ae
JB
1080/* Move the file descriptor FD so that its number is not less than MIN.
1081 If the file descriptor is moved at all, the original is freed. */
1082int
1083relocate_fd (fd, min)
1084 int fd, min;
1085{
1086 if (fd >= min)
1087 return fd;
1088 else
1089 {
1090 int new = dup (fd);
1091 if (new == -1)
1092 {
20c018a0 1093 char *message1 = "Error while setting up child: ";
826c56ac 1094 char *errmessage = strerror (errno);
20c018a0
JB
1095 char *message2 = "\n";
1096 write (2, message1, strlen (message1));
826c56ac 1097 write (2, errmessage, strlen (errmessage));
20c018a0 1098 write (2, message2, strlen (message2));
426b37ae
JB
1099 _exit (1);
1100 }
1101 /* Note that we hold the original FD open while we recurse,
1102 to guarantee we'll get a new FD if we need it. */
1103 new = relocate_fd (new, min);
1104 close (fd);
1105 return new;
1106 }
1107}
1108
012c6fcb
JA
1109static int
1110getenv_internal (var, varlen, value, valuelen)
1111 char *var;
1112 int varlen;
1113 char **value;
1114 int *valuelen;
1115{
1116 Lisp_Object scan;
1117
1118 for (scan = Vprocess_environment; CONSP (scan); scan = XCONS (scan)->cdr)
1119 {
c1350752
KH
1120 Lisp_Object entry;
1121
1122 entry = XCONS (scan)->car;
d50d3dc8 1123 if (STRINGP (entry)
012c6fcb
JA
1124 && XSTRING (entry)->size > varlen
1125 && XSTRING (entry)->data[varlen] == '='
bad95d8f
RS
1126#ifdef WINDOWSNT
1127 /* NT environment variables are case insensitive. */
a9971c6d 1128 && ! strnicmp (XSTRING (entry)->data, var, varlen)
bad95d8f 1129#else /* not WINDOWSNT */
a9971c6d 1130 && ! bcmp (XSTRING (entry)->data, var, varlen)
bad95d8f 1131#endif /* not WINDOWSNT */
a9971c6d 1132 )
012c6fcb
JA
1133 {
1134 *value = (char *) XSTRING (entry)->data + (varlen + 1);
1135 *valuelen = XSTRING (entry)->size - (varlen + 1);
1136 return 1;
1137 }
1138 }
1139
1140 return 0;
1141}
1142
0ad477db 1143DEFUN ("getenv", Fgetenv, Sgetenv, 1, 1, 0,
012c6fcb
JA
1144 "Return the value of environment variable VAR, as a string.\n\
1145VAR should be a string. Value is nil if VAR is undefined in the environment.\n\
1146This function consults the variable ``process-environment'' for its value.")
1147 (var)
1148 Lisp_Object var;
1149{
1150 char *value;
1151 int valuelen;
1152
1153 CHECK_STRING (var, 0);
1154 if (getenv_internal (XSTRING (var)->data, XSTRING (var)->size,
1155 &value, &valuelen))
1156 return make_string (value, valuelen);
1157 else
1158 return Qnil;
1159}
1160
1161/* A version of getenv that consults process_environment, easily
e576cab4 1162 callable from C. */
012c6fcb
JA
1163char *
1164egetenv (var)
e576cab4 1165 char *var;
012c6fcb
JA
1166{
1167 char *value;
1168 int valuelen;
1169
1170 if (getenv_internal (var, strlen (var), &value, &valuelen))
1171 return value;
1172 else
1173 return 0;
1174}
1175
80856e74
JB
1176#endif /* not VMS */
1177\f
8de15d69 1178/* This is run before init_cmdargs. */
7e6c2178 1179
8de15d69
RS
1180init_callproc_1 ()
1181{
1182 char *data_dir = egetenv ("EMACSDATA");
35a2f4b8
KH
1183 char *doc_dir = egetenv ("EMACSDOC");
1184
8de15d69 1185 Vdata_directory
7e6c2178 1186 = Ffile_name_as_directory (build_string (data_dir ? data_dir
8de15d69 1187 : PATH_DATA));
35a2f4b8
KH
1188 Vdoc_directory
1189 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1190 : PATH_DOC));
9453ea7b 1191
e576cab4
JB
1192 /* Check the EMACSPATH environment variable, defaulting to the
1193 PATH_EXEC path from paths.h. */
1194 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
80856e74
JB
1195 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1196 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
8de15d69
RS
1197}
1198
e17f7533 1199/* This is run after init_cmdargs, when Vinstallation_directory is valid. */
8de15d69
RS
1200
1201init_callproc ()
1202{
1203 char *data_dir = egetenv ("EMACSDATA");
1204
1205 register char * sh;
1206 Lisp_Object tempdir;
1207
05630743 1208 if (initialized && !NILP (Vinstallation_directory))
8de15d69 1209 {
05630743
RS
1210 /* Add to the path the lib-src subdir of the installation dir. */
1211 Lisp_Object tem;
1212 tem = Fexpand_file_name (build_string ("lib-src"),
1213 Vinstallation_directory);
1214 if (NILP (Fmember (tem, Vexec_path)))
8de15d69 1215 {
bad95d8f 1216#ifndef DOS_NT
1a6640ec 1217 /* MSDOS uses wrapped binaries, so don't do this. */
8de15d69
RS
1218 Vexec_path = nconc2 (Vexec_path, Fcons (tem, Qnil));
1219 Vexec_directory = Ffile_name_as_directory (tem);
bad95d8f 1220#endif /* not DOS_NT */
e17f7533 1221 }
8de15d69 1222
e17f7533
RS
1223 /* Maybe use ../etc as well as ../lib-src. */
1224 if (data_dir == 0)
1225 {
1226 tem = Fexpand_file_name (build_string ("etc"),
1227 Vinstallation_directory);
1228 Vdoc_directory = Ffile_name_as_directory (tem);
8de15d69
RS
1229 }
1230 }
7e933683
RS
1231
1232 /* Look for the files that should be in etc. We don't use
1233 Vinstallation_directory, because these files are never installed
e17f7533 1234 near the executable, and they are never in the build
7e933683
RS
1235 directory when that's different from the source directory.
1236
1237 Instead, if these files are not in the nominal place, we try the
1238 source directory. */
1239 if (data_dir == 0)
1240 {
1241 Lisp_Object tem, tem1, newdir;
1242
1243 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1244 tem1 = Ffile_exists_p (tem);
1245 if (NILP (tem1))
1246 {
1247 newdir = Fexpand_file_name (build_string ("../etc/"),
1248 build_string (PATH_DUMPLOADSEARCH));
1249 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1250 tem1 = Ffile_exists_p (tem);
1251 if (!NILP (tem1))
1252 Vdata_directory = newdir;
1253 }
1254 }
80856e74 1255
d883eb62
RS
1256#ifndef CANNOT_DUMP
1257 if (initialized)
1258#endif
1259 {
1260 tempdir = Fdirectory_file_name (Vexec_directory);
1261 if (access (XSTRING (tempdir)->data, 0) < 0)
1262 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1263 Vexec_directory);
1264 }
80856e74 1265
e576cab4
JB
1266 tempdir = Fdirectory_file_name (Vdata_directory);
1267 if (access (XSTRING (tempdir)->data, 0) < 0)
76d5c6cf
RS
1268 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1269 Vdata_directory);
e576cab4 1270
80856e74
JB
1271#ifdef VMS
1272 Vshell_file_name = build_string ("*dcl*");
1273#else
e576cab4 1274 sh = (char *) getenv ("SHELL");
80856e74
JB
1275 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1276#endif
8abd035b
RS
1277
1278#ifdef VMS
1279 Vtemp_file_name_pattern = build_string ("tmp:emacsXXXXXX.");
1280#else
1281 if (getenv ("TMPDIR"))
1282 {
1283 char *dir = getenv ("TMPDIR");
1284 Vtemp_file_name_pattern
1285 = Fexpand_file_name (build_string ("emacsXXXXXX"),
1286 build_string (dir));
1287 }
1288 else
1289 Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
1290#endif
9fefd2ba
JB
1291}
1292
1293set_process_environment ()
1294{
1295 register char **envp;
80856e74 1296
80856e74
JB
1297 Vprocess_environment = Qnil;
1298#ifndef CANNOT_DUMP
1299 if (initialized)
1300#endif
1301 for (envp = environ; *envp; envp++)
1302 Vprocess_environment = Fcons (build_string (*envp),
1303 Vprocess_environment);
80856e74
JB
1304}
1305
1306syms_of_callproc ()
1307{
bad95d8f 1308#ifdef DOS_NT
093650fe
RS
1309 Qbuffer_file_type = intern ("buffer-file-type");
1310 staticpro (&Qbuffer_file_type);
1311
1312 DEFVAR_LISP ("binary-process-input", &Vbinary_process_input,
1313 "*If non-nil then new subprocesses are assumed to take binary input.");
1314 Vbinary_process_input = Qnil;
1315
1316 DEFVAR_LISP ("binary-process-output", &Vbinary_process_output,
7e6c2178 1317 "*If non-nil then new subprocesses are assumed to produce binary output.");
093650fe 1318 Vbinary_process_output = Qnil;
bad95d8f 1319#endif /* DOS_NT */
7e6c2178 1320
80856e74
JB
1321 DEFVAR_LISP ("shell-file-name", &Vshell_file_name,
1322 "*File name to load inferior shells from.\n\
1323Initialized from the SHELL environment variable.");
1324
1325 DEFVAR_LISP ("exec-path", &Vexec_path,
1326 "*List of directories to search programs to run in subprocesses.\n\
1327Each element is a string (directory name) or nil (try default directory).");
1328
1329 DEFVAR_LISP ("exec-directory", &Vexec_directory,
e576cab4
JB
1330 "Directory of architecture-dependent files that come with GNU Emacs,\n\
1331especially executable programs intended for Emacs to invoke.");
1332
1333 DEFVAR_LISP ("data-directory", &Vdata_directory,
1334 "Directory of architecture-independent files that come with GNU Emacs,\n\
1335intended for Emacs to use.");
80856e74 1336
35a2f4b8
KH
1337 DEFVAR_LISP ("doc-directory", &Vdoc_directory,
1338 "Directory containing the DOC file that comes with GNU Emacs.\n\
1339This is usually the same as data-directory.");
1340
ed61592a
JB
1341 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
1342 "For internal use by the build procedure only.\n\
1343This is the name of the directory in which the build procedure installed\n\
1344Emacs's info files; the default value for Info-default-directory-list\n\
1345includes this.");
1346 Vconfigure_info_directory = build_string (PATH_INFO);
1347
8abd035b
RS
1348 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
1349 "Pattern for making names for temporary files.\n\
1350This is used by `call-process-region'.");
0537ec48 1351 /* This variable is initialized in init_callproc. */
8abd035b 1352
80856e74 1353 DEFVAR_LISP ("process-environment", &Vprocess_environment,
e576cab4
JB
1354 "List of environment variables for subprocesses to inherit.\n\
1355Each element should be a string of the form ENVVARNAME=VALUE.\n\
1356The environment which Emacs inherits is placed in this variable\n\
1357when Emacs starts.");
80856e74
JB
1358
1359#ifndef VMS
1360 defsubr (&Scall_process);
012c6fcb 1361 defsubr (&Sgetenv);
986ffb24 1362#endif
e576cab4 1363 defsubr (&Scall_process_region);
80856e74 1364}