*** empty log message ***
[bpt/emacs.git] / src / callproc.c
... / ...
CommitLineData
1/* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,99, 2000, 2001
3 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22
23#include <config.h>
24#include <signal.h>
25#include <errno.h>
26#include <stdio.h>
27
28#ifndef USE_CRT_DLL
29extern int errno;
30#endif
31
32/* Define SIGCHLD as an alias for SIGCLD. */
33
34#if !defined (SIGCHLD) && defined (SIGCLD)
35#define SIGCHLD SIGCLD
36#endif /* SIGCLD */
37
38#include <sys/types.h>
39
40#ifdef HAVE_UNISTD_H
41#include <unistd.h>
42#endif
43
44#include <sys/file.h>
45#ifdef HAVE_FCNTL_H
46#define INCLUDED_FCNTL
47#include <fcntl.h>
48#endif
49
50#ifdef WINDOWSNT
51#define NOMINMAX
52#include <windows.h>
53#include <stdlib.h> /* for proper declaration of environ */
54#include <fcntl.h>
55#include "w32.h"
56#define _P_NOWAIT 1 /* from process.h */
57#endif
58
59#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
60#define INCLUDED_FCNTL
61#include <fcntl.h>
62#include <sys/stat.h>
63#include <sys/param.h>
64#include <errno.h>
65#endif /* MSDOS */
66
67#ifndef O_RDONLY
68#define O_RDONLY 0
69#endif
70
71#ifndef O_WRONLY
72#define O_WRONLY 1
73#endif
74
75#include "lisp.h"
76#include "commands.h"
77#include "buffer.h"
78#include "character.h"
79#include "ccl.h"
80#include "coding.h"
81#include "composite.h"
82#include <epaths.h>
83#include "process.h"
84#include "syssignal.h"
85#include "systty.h"
86
87#ifdef MSDOS
88#include "msdos.h"
89#endif
90
91#ifdef VMS
92extern noshare char **environ;
93#else
94#ifndef USE_CRT_DLL
95extern char **environ;
96#endif
97#endif
98
99#ifdef HAVE_SETPGID
100#if !defined (USG) || defined (BSD_PGRPS)
101#undef setpgrp
102#define setpgrp setpgid
103#endif
104#endif
105
106Lisp_Object Vexec_path, Vexec_directory, Vexec_suffixes;
107Lisp_Object Vdata_directory, Vdoc_directory;
108Lisp_Object Vconfigure_info_directory, Vshared_game_score_directory;
109Lisp_Object Vtemp_file_name_pattern;
110
111Lisp_Object Vshell_file_name;
112
113Lisp_Object Vprocess_environment;
114
115#ifdef DOS_NT
116Lisp_Object Qbuffer_file_type;
117#endif /* DOS_NT */
118
119/* True iff we are about to fork off a synchronous process or if we
120 are waiting for it. */
121int synch_process_alive;
122
123/* Nonzero => this is a string explaining death of synchronous subprocess. */
124char *synch_process_death;
125
126/* If synch_process_death is zero,
127 this is exit code of synchronous subprocess. */
128int synch_process_retcode;
129
130extern Lisp_Object Vdoc_file_name;
131
132extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
133\f
134/* Clean up when exiting Fcall_process.
135 On MSDOS, delete the temporary file on any kind of termination.
136 On Unix, kill the process and any children on termination by signal. */
137
138/* Nonzero if this is termination due to exit. */
139static int call_process_exited;
140
141#ifndef VMS /* VMS version is in vmsproc.c. */
142
143static Lisp_Object
144call_process_kill (fdpid)
145 Lisp_Object fdpid;
146{
147 emacs_close (XFASTINT (Fcar (fdpid)));
148 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
149 synch_process_alive = 0;
150 return Qnil;
151}
152
153Lisp_Object
154call_process_cleanup (fdpid)
155 Lisp_Object fdpid;
156{
157#if defined (MSDOS) || defined (MAC_OS8)
158 /* for MSDOS fdpid is really (fd . tempfile) */
159 register Lisp_Object file;
160 file = Fcdr (fdpid);
161 emacs_close (XFASTINT (Fcar (fdpid)));
162 if (strcmp (SDATA (file), NULL_DEVICE) != 0)
163 unlink (SDATA (file));
164#else /* not MSDOS and not MAC_OS8 */
165 register int pid = XFASTINT (Fcdr (fdpid));
166
167 if (call_process_exited)
168 {
169 emacs_close (XFASTINT (Fcar (fdpid)));
170 return Qnil;
171 }
172
173 if (EMACS_KILLPG (pid, SIGINT) == 0)
174 {
175 int count = SPECPDL_INDEX ();
176 record_unwind_protect (call_process_kill, fdpid);
177 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
178 immediate_quit = 1;
179 QUIT;
180 wait_for_termination (pid);
181 immediate_quit = 0;
182 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
183 message1 ("Waiting for process to die...done");
184 }
185 synch_process_alive = 0;
186 emacs_close (XFASTINT (Fcar (fdpid)));
187#endif /* not MSDOS */
188 return Qnil;
189}
190
191DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
192 doc: /* Call PROGRAM synchronously in separate process.
193The remaining arguments are optional.
194The program's input comes from file INFILE (nil means `/dev/null').
195Insert output in BUFFER before point; t means current buffer;
196 nil for BUFFER means discard it; 0 means discard and don't wait.
197BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
198REAL-BUFFER says what to do with standard output, as above,
199while STDERR-FILE says what to do with standard error in the child.
200STDERR-FILE may be nil (discard standard error output),
201t (mix it with ordinary output), or a file name string.
202
203Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
204Remaining arguments are strings passed as command arguments to PROGRAM.
205
206If BUFFER is 0, `call-process' returns immediately with value nil.
207Otherwise it waits for PROGRAM to terminate
208and returns a numeric exit status or a signal description string.
209If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
210
211usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
212 (nargs, args)
213 int nargs;
214 register Lisp_Object *args;
215{
216 Lisp_Object infile, buffer, current_dir, display, path;
217 int fd[2];
218 int filefd;
219 register int pid;
220 char buf[16384];
221 char *bufptr = buf;
222 int bufsize = 16384;
223 int count = SPECPDL_INDEX ();
224
225 register const unsigned char **new_argv
226 = (const unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
227 struct buffer *old = current_buffer;
228 /* File to use for stderr in the child.
229 t means use same as standard output. */
230 Lisp_Object error_file;
231#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
232 char *outf, *tempfile;
233 int outfilefd;
234#endif
235#ifdef MAC_OS8
236 char *tempfile;
237 int outfilefd;
238#endif
239#if 0
240 int mask;
241#endif
242 struct coding_system process_coding; /* coding-system of process output */
243 struct coding_system argument_coding; /* coding-system of arguments */
244 /* Set to the return value of Ffind_operation_coding_system. */
245 Lisp_Object coding_systems;
246
247 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
248 coding_systems = Qt;
249
250 CHECK_STRING (args[0]);
251
252 error_file = Qt;
253
254#ifndef subprocesses
255 /* Without asynchronous processes we cannot have BUFFER == 0. */
256 if (nargs >= 3
257 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
258 error ("Operating system cannot handle asynchronous subprocesses");
259#endif /* subprocesses */
260
261 /* Decide the coding-system for giving arguments. */
262 {
263 Lisp_Object val, *args2;
264 int i;
265
266 /* If arguments are supplied, we may have to encode them. */
267 if (nargs >= 5)
268 {
269 int must_encode = 0;
270
271 for (i = 4; i < nargs; i++)
272 CHECK_STRING (args[i]);
273
274 for (i = 4; i < nargs; i++)
275 if (STRING_MULTIBYTE (args[i]))
276 must_encode = 1;
277
278 if (!NILP (Vcoding_system_for_write))
279 val = Vcoding_system_for_write;
280 else if (! must_encode)
281 val = Qnil;
282 else
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];
287 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
288 if (CONSP (coding_systems))
289 val = XCDR (coding_systems);
290 else if (CONSP (Vdefault_process_coding_system))
291 val = XCDR (Vdefault_process_coding_system);
292 else
293 val = Qnil;
294 }
295 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
296 }
297 }
298
299 if (nargs >= 2 && ! NILP (args[1]))
300 {
301 infile = Fexpand_file_name (args[1], current_buffer->directory);
302 CHECK_STRING (infile);
303 }
304 else
305 infile = build_string (NULL_DEVICE);
306
307 if (nargs >= 3)
308 {
309 buffer = args[2];
310
311 /* If BUFFER is a list, its meaning is
312 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
313 if (CONSP (buffer))
314 {
315 if (CONSP (XCDR (buffer)))
316 {
317 Lisp_Object stderr_file;
318 stderr_file = XCAR (XCDR (buffer));
319
320 if (NILP (stderr_file) || EQ (Qt, stderr_file))
321 error_file = stderr_file;
322 else
323 error_file = Fexpand_file_name (stderr_file, Qnil);
324 }
325
326 buffer = XCAR (buffer);
327 }
328
329 if (!(EQ (buffer, Qnil)
330 || EQ (buffer, Qt)
331 || INTEGERP (buffer)))
332 {
333 Lisp_Object spec_buffer;
334 spec_buffer = buffer;
335 buffer = Fget_buffer_create (buffer);
336 /* Mention the buffer name for a better error message. */
337 if (NILP (buffer))
338 CHECK_BUFFER (spec_buffer);
339 CHECK_BUFFER (buffer);
340 }
341 }
342 else
343 buffer = Qnil;
344
345 /* Make sure that the child will be able to chdir to the current
346 buffer's current directory, or its unhandled equivalent. We
347 can't just have the child check for an error when it does the
348 chdir, since it's in a vfork.
349
350 We have to GCPRO around this because Fexpand_file_name,
351 Funhandled_file_name_directory, and Ffile_accessible_directory_p
352 might call a file name handling function. The argument list is
353 protected by the caller, so all we really have to worry about is
354 buffer. */
355 {
356 struct gcpro gcpro1, gcpro2, gcpro3;
357
358 current_dir = current_buffer->directory;
359
360 GCPRO3 (infile, buffer, current_dir);
361
362 current_dir
363 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
364 Qnil);
365 if (NILP (Ffile_accessible_directory_p (current_dir)))
366 report_file_error ("Setting current directory",
367 Fcons (current_buffer->directory, Qnil));
368
369 UNGCPRO;
370 }
371
372 display = nargs >= 4 ? args[3] : Qnil;
373
374 filefd = emacs_open (SDATA (infile), O_RDONLY, 0);
375 if (filefd < 0)
376 {
377 report_file_error ("Opening process input file", Fcons (infile, Qnil));
378 }
379 /* Search for program; barf if not found. */
380 {
381 struct gcpro gcpro1;
382
383 GCPRO1 (current_dir);
384 openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK));
385 UNGCPRO;
386 }
387 if (NILP (path))
388 {
389 emacs_close (filefd);
390 report_file_error ("Searching for program", Fcons (args[0], Qnil));
391 }
392
393 /* If program file name starts with /: for quoting a magic name,
394 discard that. */
395 if (SBYTES (path) > 2 && SREF (path, 0) == '/'
396 && SREF (path, 1) == ':')
397 path = Fsubstring (path, make_number (2), Qnil);
398
399 new_argv[0] = SDATA (path);
400 if (nargs > 4)
401 {
402 register int i;
403 struct gcpro gcpro1, gcpro2, gcpro3;
404
405 GCPRO3 (infile, buffer, current_dir);
406 argument_coding.dst_multibyte = 0;
407 for (i = 4; i < nargs; i++)
408 {
409 argument_coding.src_multibyte = STRING_MULTIBYTE (args[i]);
410 if (CODING_REQUIRE_ENCODING (&argument_coding))
411 /* We must encode this argument. */
412 args[i] = encode_coding_string (&argument_coding, args[i], 1);
413 new_argv[i - 3] = SDATA (args[i]);
414 }
415 UNGCPRO;
416 new_argv[nargs - 3] = 0;
417 }
418 else
419 new_argv[1] = 0;
420
421#ifdef MSDOS /* MW, July 1993 */
422 if ((outf = egetenv ("TMPDIR")))
423 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
424 else
425 {
426 tempfile = alloca (20);
427 *tempfile = '\0';
428 }
429 dostounix_filename (tempfile);
430 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
431 strcat (tempfile, "/");
432 strcat (tempfile, "detmp.XXX");
433 mktemp (tempfile);
434
435 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
436 if (outfilefd < 0)
437 {
438 emacs_close (filefd);
439 report_file_error ("Opening process output file",
440 Fcons (build_string (tempfile), Qnil));
441 }
442 fd[0] = filefd;
443 fd[1] = outfilefd;
444#endif /* MSDOS */
445
446#ifdef MAC_OS8
447 /* Since we don't have pipes on the Mac, create a temporary file to
448 hold the output of the subprocess. */
449 tempfile = (char *) alloca (SBYTES (Vtemp_file_name_pattern) + 1);
450 bcopy (SDATA (Vtemp_file_name_pattern), tempfile,
451 SBYTES (Vtemp_file_name_pattern) + 1);
452
453 mktemp (tempfile);
454
455 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
456 if (outfilefd < 0)
457 {
458 close (filefd);
459 report_file_error ("Opening process output file",
460 Fcons (build_string (tempfile), Qnil));
461 }
462 fd[0] = filefd;
463 fd[1] = outfilefd;
464#endif /* MAC_OS8 */
465
466 if (INTEGERP (buffer))
467 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
468 else
469 {
470#ifndef MSDOS
471#ifndef MAC_OS8
472 errno = 0;
473 if (pipe (fd) == -1)
474 {
475 emacs_close (filefd);
476 report_file_error ("Creating process pipe", Qnil);
477 }
478#endif
479#endif
480#if 0
481 /* Replaced by close_process_descs */
482 set_exclusive_use (fd[0]);
483#endif
484 }
485
486 {
487 /* child_setup must clobber environ in systems with true vfork.
488 Protect it from permanent change. */
489 register char **save_environ = environ;
490 register int fd1 = fd[1];
491 int fd_error = fd1;
492
493#if 0 /* Some systems don't have sigblock. */
494 mask = sigblock (sigmask (SIGCHLD));
495#endif
496
497 /* Record that we're about to create a synchronous process. */
498 synch_process_alive = 1;
499
500 /* These vars record information from process termination.
501 Clear them now before process can possibly terminate,
502 to avoid timing error if process terminates soon. */
503 synch_process_death = 0;
504 synch_process_retcode = 0;
505
506 if (NILP (error_file))
507 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
508 else if (STRINGP (error_file))
509 {
510#ifdef DOS_NT
511 fd_error = emacs_open (SDATA (error_file),
512 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
513 S_IREAD | S_IWRITE);
514#else /* not DOS_NT */
515 fd_error = creat (SDATA (error_file), 0666);
516#endif /* not DOS_NT */
517 }
518
519 if (fd_error < 0)
520 {
521 emacs_close (filefd);
522 if (fd[0] != filefd)
523 emacs_close (fd[0]);
524 if (fd1 >= 0)
525 emacs_close (fd1);
526#ifdef MSDOS
527 unlink (tempfile);
528#endif
529 report_file_error ("Cannot redirect stderr",
530 Fcons ((NILP (error_file)
531 ? build_string (NULL_DEVICE) : error_file),
532 Qnil));
533 }
534
535 current_dir = ENCODE_FILE (current_dir);
536
537#ifdef MAC_OS8
538 {
539 /* Call run_mac_command in sysdep.c here directly instead of doing
540 a child_setup as for MSDOS and other platforms. Note that this
541 code does not handle passing the environment to the synchronous
542 Mac subprocess. */
543 char *infn, *outfn, *errfn, *currdn;
544
545 /* close these files so subprocess can write to them */
546 close (outfilefd);
547 if (fd_error != outfilefd)
548 close (fd_error);
549 fd1 = -1; /* No harm in closing that one! */
550
551 infn = SDATA (infile);
552 outfn = tempfile;
553 if (NILP (error_file))
554 errfn = NULL_DEVICE;
555 else if (EQ (Qt, error_file))
556 errfn = outfn;
557 else
558 errfn = SDATA (error_file);
559 currdn = SDATA (current_dir);
560 pid = run_mac_command (new_argv, currdn, infn, outfn, errfn);
561
562 /* Record that the synchronous process exited and note its
563 termination status. */
564 synch_process_alive = 0;
565 synch_process_retcode = pid;
566 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
567 {
568 synchronize_system_messages_locale ();
569 synch_process_death = strerror (errno);
570 }
571
572 /* Since CRLF is converted to LF within `decode_coding', we can
573 always open a file with binary mode. */
574 fd[0] = open (tempfile, O_BINARY);
575 if (fd[0] < 0)
576 {
577 unlink (tempfile);
578 close (filefd);
579 report_file_error ("Cannot re-open temporary file", Qnil);
580 }
581 }
582#else /* not MAC_OS8 */
583#ifdef MSDOS /* MW, July 1993 */
584 /* Note that on MSDOS `child_setup' actually returns the child process
585 exit status, not its PID, so we assign it to `synch_process_retcode'
586 below. */
587 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
588 0, current_dir);
589
590 /* Record that the synchronous process exited and note its
591 termination status. */
592 synch_process_alive = 0;
593 synch_process_retcode = pid;
594 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
595 {
596 synchronize_system_messages_locale ();
597 synch_process_death = strerror (errno);
598 }
599
600 emacs_close (outfilefd);
601 if (fd_error != outfilefd)
602 emacs_close (fd_error);
603 fd1 = -1; /* No harm in closing that one! */
604 /* Since CRLF is converted to LF within `decode_coding', we can
605 always open a file with binary mode. */
606 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
607 if (fd[0] < 0)
608 {
609 unlink (tempfile);
610 emacs_close (filefd);
611 report_file_error ("Cannot re-open temporary file", Qnil);
612 }
613#else /* not MSDOS */
614#ifdef WINDOWSNT
615 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
616 0, current_dir);
617#else /* not WINDOWSNT */
618 pid = vfork ();
619
620 if (pid == 0)
621 {
622 if (fd[0] >= 0)
623 emacs_close (fd[0]);
624#ifdef HAVE_SETSID
625 setsid ();
626#endif
627#if defined (USG) && !defined (BSD_PGRPS)
628 setpgrp ();
629#else
630 setpgrp (pid, pid);
631#endif /* USG */
632 child_setup (filefd, fd1, fd_error, (char **) new_argv,
633 0, current_dir);
634 }
635#endif /* not WINDOWSNT */
636
637 /* The MSDOS case did this already. */
638 if (fd_error >= 0)
639 emacs_close (fd_error);
640#endif /* not MSDOS */
641#endif /* not MAC_OS8 */
642
643 environ = save_environ;
644
645 /* Close most of our fd's, but not fd[0]
646 since we will use that to read input from. */
647 emacs_close (filefd);
648 if (fd1 >= 0 && fd1 != fd_error)
649 emacs_close (fd1);
650 }
651
652 if (pid < 0)
653 {
654 if (fd[0] >= 0)
655 emacs_close (fd[0]);
656 report_file_error ("Doing vfork", Qnil);
657 }
658
659 if (INTEGERP (buffer))
660 {
661 if (fd[0] >= 0)
662 emacs_close (fd[0]);
663#ifndef subprocesses
664 /* If Emacs has been built with asynchronous subprocess support,
665 we don't need to do this, I think because it will then have
666 the facilities for handling SIGCHLD. */
667 wait_without_blocking ();
668#endif /* subprocesses */
669 return Qnil;
670 }
671
672 /* Enable sending signal if user quits below. */
673 call_process_exited = 0;
674
675#if defined(MSDOS) || defined(MAC_OS8)
676 /* MSDOS needs different cleanup information. */
677 record_unwind_protect (call_process_cleanup,
678 Fcons (make_number (fd[0]), build_string (tempfile)));
679#else
680 record_unwind_protect (call_process_cleanup,
681 Fcons (make_number (fd[0]), make_number (pid)));
682#endif /* not MSDOS and not MAC_OS8 */
683
684
685 if (BUFFERP (buffer))
686 Fset_buffer (buffer);
687
688 if (NILP (buffer))
689 {
690 /* If BUFFER is nil, we must read process output once and then
691 discard it, so setup coding system but with nil. */
692 setup_coding_system (Qnil, &process_coding);
693 }
694 else
695 {
696 Lisp_Object val, *args2;
697
698 val = Qnil;
699 if (!NILP (Vcoding_system_for_read))
700 val = Vcoding_system_for_read;
701 else
702 {
703 if (EQ (coding_systems, Qt))
704 {
705 int i;
706
707 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
708 args2[0] = Qcall_process;
709 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
710 coding_systems
711 = Ffind_operation_coding_system (nargs + 1, args2);
712 }
713 if (CONSP (coding_systems))
714 val = XCAR (coding_systems);
715 else if (CONSP (Vdefault_process_coding_system))
716 val = XCAR (Vdefault_process_coding_system);
717 else
718 val = Qnil;
719 }
720 Fcheck_coding_system (val);
721 /* In unibyte mode, character code conversion should not take
722 place but EOL conversion should. So, setup raw-text or one
723 of the subsidiary according to the information just setup. */
724 if (NILP (current_buffer->enable_multibyte_characters)
725 && !NILP (val))
726 val = raw_text_coding_system (val);
727 setup_coding_system (val, &process_coding);
728 }
729
730 immediate_quit = 1;
731 QUIT;
732
733 {
734 register int nread;
735 int first = 1;
736 int total_read = 0;
737 int carryover = 0;
738 int display_on_the_fly = !NILP (display) && INTERACTIVE;
739 struct coding_system saved_coding;
740
741 saved_coding = process_coding;
742 while (1)
743 {
744 /* Repeatedly read until we've filled as much as possible
745 of the buffer size we have. But don't read
746 less than 1024--save that for the next bufferful. */
747 nread = carryover;
748 while (nread < bufsize - 1024)
749 {
750 int this_read = emacs_read (fd[0], bufptr + nread,
751 bufsize - nread);
752
753 if (this_read < 0)
754 goto give_up;
755
756 if (this_read == 0)
757 {
758 process_coding.mode |= CODING_MODE_LAST_BLOCK;
759 break;
760 }
761
762 nread += this_read;
763 total_read += this_read;
764
765 if (display_on_the_fly)
766 break;
767 }
768
769 /* Now NREAD is the total amount of data in the buffer. */
770 immediate_quit = 0;
771
772 if (!NILP (buffer))
773 {
774 if (NILP (current_buffer->enable_multibyte_characters)
775 && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
776 insert_1_both (bufptr, nread, nread, 0, 1, 0);
777 else
778 { /* We have to decode the input. */
779 Lisp_Object buf;
780
781 XSETBUFFER (buf, current_buffer);
782 decode_coding_c_string (&process_coding, bufptr, nread,
783 buf);
784 if (display_on_the_fly
785 && CODING_REQUIRE_DETECTION (&saved_coding)
786 && ! CODING_REQUIRE_DETECTION (&process_coding))
787 {
788 /* We have detected some coding system. But,
789 there's a possibility that the detection was
790 done by insufficient data. So, we give up
791 displaying on the fly. */
792 if (process_coding.produced > 0)
793 del_range_2 (process_coding.dst_pos,
794 process_coding.dst_pos_byte,
795 process_coding.dst_pos
796 + process_coding.produced_char,
797 process_coding.dst_pos_byte
798 + process_coding.produced, 0);
799 display_on_the_fly = 0;
800 process_coding = saved_coding;
801 carryover = nread;
802 continue;
803 }
804
805 TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
806 PT_BYTE + process_coding.produced);
807 carryover = process_coding.carryover_bytes;
808 if (carryover > 0)
809 /* As CARRYOVER should not be that large, we had
810 better avoid overhead of bcopy. */
811 BCOPY_SHORT (process_coding.carryover, bufptr,
812 process_coding.carryover_bytes);
813 }
814 }
815
816 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
817 break;
818
819 /* Make the buffer bigger as we continue to read more data,
820 but not past 64k. */
821 if (bufsize < 64 * 1024 && total_read > 32 * bufsize)
822 {
823 char *tempptr;
824 bufsize *= 2;
825
826 tempptr = (char *) alloca (bufsize);
827 bcopy (bufptr, tempptr, bufsize / 2);
828 bufptr = tempptr;
829 }
830
831 if (!NILP (display) && INTERACTIVE)
832 {
833 if (first)
834 prepare_menu_bars ();
835 first = 0;
836 redisplay_preserve_echo_area (1);
837 }
838 immediate_quit = 1;
839 QUIT;
840 }
841 give_up: ;
842
843 Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
844 /* If the caller required, let the buffer inherit the
845 coding-system used to decode the process output. */
846 if (inherit_process_coding_system)
847 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
848 make_number (total_read));
849 }
850
851 /* Wait for it to terminate, unless it already has. */
852 wait_for_termination (pid);
853
854 immediate_quit = 0;
855
856 set_buffer_internal (old);
857
858 /* Don't kill any children that the subprocess may have left behind
859 when exiting. */
860 call_process_exited = 1;
861
862 unbind_to (count, Qnil);
863
864 if (synch_process_death)
865 return code_convert_string_norecord (build_string (synch_process_death),
866 Vlocale_coding_system, 0);
867 return make_number (synch_process_retcode);
868}
869#endif
870\f
871static Lisp_Object
872delete_temp_file (name)
873 Lisp_Object name;
874{
875 /* Use Fdelete_file (indirectly) because that runs a file name handler.
876 We did that when writing the file, so we should do so when deleting. */
877 internal_delete_file (name);
878 return Qnil;
879}
880
881DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
882 3, MANY, 0,
883 doc: /* Send text from START to END to a synchronous process running PROGRAM.
884The remaining arguments are optional.
885Delete the text if fourth arg DELETE is non-nil.
886
887Insert output in BUFFER before point; t means current buffer;
888 nil for BUFFER means discard it; 0 means discard and don't wait.
889BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
890REAL-BUFFER says what to do with standard output, as above,
891while STDERR-FILE says what to do with standard error in the child.
892STDERR-FILE may be nil (discard standard error output),
893t (mix it with ordinary output), or a file name string.
894
895Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
896Remaining args are passed to PROGRAM at startup as command args.
897
898If BUFFER is 0, `call-process-region' returns immediately with value nil.
899Otherwise it waits for PROGRAM to terminate
900and returns a numeric exit status or a signal description string.
901If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
902
903usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
904 (nargs, args)
905 int nargs;
906 register Lisp_Object *args;
907{
908 struct gcpro gcpro1;
909 Lisp_Object filename_string;
910 register Lisp_Object start, end;
911 int count = SPECPDL_INDEX ();
912 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
913 Lisp_Object coding_systems;
914 Lisp_Object val, *args2;
915 int i;
916#ifdef DOS_NT
917 char *tempfile;
918 char *outf = '\0';
919
920 if ((outf = egetenv ("TMPDIR"))
921 || (outf = egetenv ("TMP"))
922 || (outf = egetenv ("TEMP")))
923 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
924 else
925 {
926 tempfile = alloca (20);
927 *tempfile = '\0';
928 }
929 if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
930 strcat (tempfile, "/");
931 if ('/' == DIRECTORY_SEP)
932 dostounix_filename (tempfile);
933 else
934 unixtodos_filename (tempfile);
935#ifdef WINDOWSNT
936 strcat (tempfile, "emXXXXXX");
937#else
938 strcat (tempfile, "detmp.XXX");
939#endif
940#else /* not DOS_NT */
941 char *tempfile = (char *) alloca (SBYTES (Vtemp_file_name_pattern) + 1);
942 bcopy (SDATA (Vtemp_file_name_pattern), tempfile,
943 SBYTES (Vtemp_file_name_pattern) + 1);
944#endif /* not DOS_NT */
945
946 coding_systems = Qt;
947
948#ifdef HAVE_MKSTEMP
949 {
950 int fd = mkstemp (tempfile);
951 if (fd == -1)
952 report_file_error ("Failed to open temporary file",
953 Fcons (Vtemp_file_name_pattern, Qnil));
954 else
955 close (fd);
956 }
957#else
958 mktemp (tempfile);
959#endif
960
961 filename_string = build_string (tempfile);
962 GCPRO1 (filename_string);
963 start = args[0];
964 end = args[1];
965 /* Decide coding-system of the contents of the temporary file. */
966 if (!NILP (Vcoding_system_for_write))
967 val = Vcoding_system_for_write;
968 else if (NILP (current_buffer->enable_multibyte_characters))
969 val = Qnil;
970 else
971 {
972 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
973 args2[0] = Qcall_process_region;
974 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
975 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
976 if (CONSP (coding_systems))
977 val = XCDR (coding_systems);
978 else if (CONSP (Vdefault_process_coding_system))
979 val = XCDR (Vdefault_process_coding_system);
980 else
981 val = Qnil;
982 }
983
984 {
985 int count1 = SPECPDL_INDEX ();
986
987 specbind (intern ("coding-system-for-write"), val);
988 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
989
990 unbind_to (count1, Qnil);
991 }
992
993 /* Note that Fcall_process takes care of binding
994 coding-system-for-read. */
995
996 record_unwind_protect (delete_temp_file, filename_string);
997
998 if (nargs > 3 && !NILP (args[3]))
999 Fdelete_region (start, end);
1000
1001 if (nargs > 3)
1002 {
1003 args += 2;
1004 nargs -= 2;
1005 }
1006 else
1007 {
1008 args[0] = args[2];
1009 nargs = 2;
1010 }
1011 args[1] = filename_string;
1012
1013 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
1014}
1015\f
1016#ifndef VMS /* VMS version is in vmsproc.c. */
1017
1018static int relocate_fd ();
1019
1020/* This is the last thing run in a newly forked inferior
1021 either synchronous or asynchronous.
1022 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1023 Initialize inferior's priority, pgrp, connected dir and environment.
1024 then exec another program based on new_argv.
1025
1026 This function may change environ for the superior process.
1027 Therefore, the superior process must save and restore the value
1028 of environ around the vfork and the call to this function.
1029
1030 SET_PGRP is nonzero if we should put the subprocess into a separate
1031 process group.
1032
1033 CURRENT_DIR is an elisp string giving the path of the current
1034 directory the subprocess should have. Since we can't really signal
1035 a decent error from within the child, this should be verified as an
1036 executable directory by the parent. */
1037
1038int
1039child_setup (in, out, err, new_argv, set_pgrp, current_dir)
1040 int in, out, err;
1041 register char **new_argv;
1042 int set_pgrp;
1043 Lisp_Object current_dir;
1044{
1045 char **env;
1046 char *pwd_var;
1047#ifdef WINDOWSNT
1048 int cpid;
1049 HANDLE handles[3];
1050#endif /* WINDOWSNT */
1051
1052 int pid = getpid ();
1053
1054#ifdef SET_EMACS_PRIORITY
1055 {
1056 extern EMACS_INT emacs_priority;
1057
1058 if (emacs_priority < 0)
1059 nice (- emacs_priority);
1060 }
1061#endif
1062
1063#ifdef subprocesses
1064 /* Close Emacs's descriptors that this process should not have. */
1065 close_process_descs ();
1066#endif
1067 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1068 we will lose if we call close_load_descs here. */
1069#ifndef DOS_NT
1070 close_load_descs ();
1071#endif
1072
1073 /* Note that use of alloca is always safe here. It's obvious for systems
1074 that do not have true vfork or that have true (stack) alloca.
1075 If using vfork and C_ALLOCA it is safe because that changes
1076 the superior's static variables as if the superior had done alloca
1077 and will be cleaned up in the usual way. */
1078 {
1079 register char *temp;
1080 register int i;
1081
1082 i = SBYTES (current_dir);
1083#ifdef MSDOS
1084 /* MSDOS must have all environment variables malloc'ed, because
1085 low-level libc functions that launch subsidiary processes rely
1086 on that. */
1087 pwd_var = (char *) xmalloc (i + 6);
1088#else
1089 pwd_var = (char *) alloca (i + 6);
1090#endif
1091 temp = pwd_var + 4;
1092 bcopy ("PWD=", pwd_var, 4);
1093 bcopy (SDATA (current_dir), temp, i);
1094 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
1095 temp[i] = 0;
1096
1097#ifndef DOS_NT
1098 /* We can't signal an Elisp error here; we're in a vfork. Since
1099 the callers check the current directory before forking, this
1100 should only return an error if the directory's permissions
1101 are changed between the check and this chdir, but we should
1102 at least check. */
1103 if (chdir (temp) < 0)
1104 _exit (errno);
1105#endif
1106
1107#ifdef DOS_NT
1108 /* Get past the drive letter, so that d:/ is left alone. */
1109 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1110 {
1111 temp += 2;
1112 i -= 2;
1113 }
1114#endif
1115
1116 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
1117 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
1118 temp[--i] = 0;
1119 }
1120
1121 /* Set `env' to a vector of the strings in Vprocess_environment. */
1122 {
1123 register Lisp_Object tem;
1124 register char **new_env;
1125 register int new_length;
1126
1127 new_length = 0;
1128 for (tem = Vprocess_environment;
1129 CONSP (tem) && STRINGP (XCAR (tem));
1130 tem = XCDR (tem))
1131 new_length++;
1132
1133 /* new_length + 2 to include PWD and terminating 0. */
1134 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
1135
1136 /* If we have a PWD envvar, pass one down,
1137 but with corrected value. */
1138 if (getenv ("PWD"))
1139 *new_env++ = pwd_var;
1140
1141 /* Copy the Vprocess_environment strings into new_env. */
1142 for (tem = Vprocess_environment;
1143 CONSP (tem) && STRINGP (XCAR (tem));
1144 tem = XCDR (tem))
1145 {
1146 char **ep = env;
1147 char *string = (char *) SDATA (XCAR (tem));
1148 /* See if this string duplicates any string already in the env.
1149 If so, don't put it in.
1150 When an env var has multiple definitions,
1151 we keep the definition that comes first in process-environment. */
1152 for (; ep != new_env; ep++)
1153 {
1154 char *p = *ep, *q = string;
1155 while (1)
1156 {
1157 if (*q == 0)
1158 /* The string is malformed; might as well drop it. */
1159 goto duplicate;
1160 if (*q != *p)
1161 break;
1162 if (*q == '=')
1163 goto duplicate;
1164 p++, q++;
1165 }
1166 }
1167 *new_env++ = string;
1168 duplicate: ;
1169 }
1170 *new_env = 0;
1171 }
1172#ifdef WINDOWSNT
1173 prepare_standard_handles (in, out, err, handles);
1174 set_process_dir (SDATA (current_dir));
1175#else /* not WINDOWSNT */
1176 /* Make sure that in, out, and err are not actually already in
1177 descriptors zero, one, or two; this could happen if Emacs is
1178 started with its standard in, out, or error closed, as might
1179 happen under X. */
1180 {
1181 int oin = in, oout = out;
1182
1183 /* We have to avoid relocating the same descriptor twice! */
1184
1185 in = relocate_fd (in, 3);
1186
1187 if (out == oin)
1188 out = in;
1189 else
1190 out = relocate_fd (out, 3);
1191
1192 if (err == oin)
1193 err = in;
1194 else if (err == oout)
1195 err = out;
1196 else
1197 err = relocate_fd (err, 3);
1198 }
1199
1200#ifndef MSDOS
1201 emacs_close (0);
1202 emacs_close (1);
1203 emacs_close (2);
1204
1205 dup2 (in, 0);
1206 dup2 (out, 1);
1207 dup2 (err, 2);
1208 emacs_close (in);
1209 emacs_close (out);
1210 emacs_close (err);
1211#endif /* not MSDOS */
1212#endif /* not WINDOWSNT */
1213
1214#if defined(USG) && !defined(BSD_PGRPS)
1215#ifndef SETPGRP_RELEASES_CTTY
1216 setpgrp (); /* No arguments but equivalent in this case */
1217#endif
1218#else
1219 setpgrp (pid, pid);
1220#endif /* USG */
1221 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1222 EMACS_SET_TTY_PGRP (0, &pid);
1223
1224#ifdef MSDOS
1225 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
1226 xfree (pwd_var);
1227 if (pid == -1)
1228 /* An error occurred while trying to run the subprocess. */
1229 report_file_error ("Spawning child process", Qnil);
1230 return pid;
1231#else /* not MSDOS */
1232#ifdef WINDOWSNT
1233 /* Spawn the child. (See ntproc.c:Spawnve). */
1234 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
1235 reset_standard_handles (in, out, err, handles);
1236 if (cpid == -1)
1237 /* An error occurred while trying to spawn the process. */
1238 report_file_error ("Spawning child process", Qnil);
1239 return cpid;
1240#else /* not WINDOWSNT */
1241 /* execvp does not accept an environment arg so the only way
1242 to pass this environment is to set environ. Our caller
1243 is responsible for restoring the ambient value of environ. */
1244 environ = env;
1245 execvp (new_argv[0], new_argv);
1246
1247 emacs_write (1, "Can't exec program: ", 20);
1248 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1249 emacs_write (1, "\n", 1);
1250 _exit (1);
1251#endif /* not WINDOWSNT */
1252#endif /* not MSDOS */
1253}
1254
1255/* Move the file descriptor FD so that its number is not less than MINFD.
1256 If the file descriptor is moved at all, the original is freed. */
1257static int
1258relocate_fd (fd, minfd)
1259 int fd, minfd;
1260{
1261 if (fd >= minfd)
1262 return fd;
1263 else
1264 {
1265 int new = dup (fd);
1266 if (new == -1)
1267 {
1268 char *message1 = "Error while setting up child: ";
1269 char *errmessage = strerror (errno);
1270 char *message2 = "\n";
1271 emacs_write (2, message1, strlen (message1));
1272 emacs_write (2, errmessage, strlen (errmessage));
1273 emacs_write (2, message2, strlen (message2));
1274 _exit (1);
1275 }
1276 /* Note that we hold the original FD open while we recurse,
1277 to guarantee we'll get a new FD if we need it. */
1278 new = relocate_fd (new, minfd);
1279 emacs_close (fd);
1280 return new;
1281 }
1282}
1283
1284static int
1285getenv_internal (var, varlen, value, valuelen)
1286 char *var;
1287 int varlen;
1288 char **value;
1289 int *valuelen;
1290{
1291 Lisp_Object scan;
1292
1293 for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
1294 {
1295 Lisp_Object entry;
1296
1297 entry = XCAR (scan);
1298 if (STRINGP (entry)
1299 && SBYTES (entry) > varlen
1300 && SREF (entry, varlen) == '='
1301#ifdef WINDOWSNT
1302 /* NT environment variables are case insensitive. */
1303 && ! strnicmp (SDATA (entry), var, varlen)
1304#else /* not WINDOWSNT */
1305 && ! bcmp (SDATA (entry), var, varlen)
1306#endif /* not WINDOWSNT */
1307 )
1308 {
1309 *value = (char *) SDATA (entry) + (varlen + 1);
1310 *valuelen = SBYTES (entry) - (varlen + 1);
1311 return 1;
1312 }
1313 }
1314
1315 return 0;
1316}
1317
1318DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0,
1319 doc: /* Return the value of environment variable VAR, as a string.
1320VAR should be a string. Value is nil if VAR is undefined in the environment.
1321This function consults the variable ``process-environment'' for its value. */)
1322 (var)
1323 Lisp_Object var;
1324{
1325 char *value;
1326 int valuelen;
1327
1328 CHECK_STRING (var);
1329 if (getenv_internal (SDATA (var), SBYTES (var),
1330 &value, &valuelen))
1331 return make_string (value, valuelen);
1332 else
1333 return Qnil;
1334}
1335
1336/* A version of getenv that consults process_environment, easily
1337 callable from C. */
1338char *
1339egetenv (var)
1340 char *var;
1341{
1342 char *value;
1343 int valuelen;
1344
1345 if (getenv_internal (var, strlen (var), &value, &valuelen))
1346 return value;
1347 else
1348 return 0;
1349}
1350
1351#endif /* not VMS */
1352\f
1353/* This is run before init_cmdargs. */
1354
1355void
1356init_callproc_1 ()
1357{
1358 char *data_dir = egetenv ("EMACSDATA");
1359 char *doc_dir = egetenv ("EMACSDOC");
1360
1361 Vdata_directory
1362 = Ffile_name_as_directory (build_string (data_dir ? data_dir
1363 : PATH_DATA));
1364 Vdoc_directory
1365 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1366 : PATH_DOC));
1367
1368 /* Check the EMACSPATH environment variable, defaulting to the
1369 PATH_EXEC path from epaths.h. */
1370 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1371 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1372 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1373}
1374
1375/* This is run after init_cmdargs, when Vinstallation_directory is valid. */
1376
1377void
1378init_callproc ()
1379{
1380 char *data_dir = egetenv ("EMACSDATA");
1381
1382 register char * sh;
1383 Lisp_Object tempdir;
1384
1385 if (!NILP (Vinstallation_directory))
1386 {
1387 /* Add to the path the lib-src subdir of the installation dir. */
1388 Lisp_Object tem;
1389 tem = Fexpand_file_name (build_string ("lib-src"),
1390 Vinstallation_directory);
1391#ifndef DOS_NT
1392 /* MSDOS uses wrapped binaries, so don't do this. */
1393 if (NILP (Fmember (tem, Vexec_path)))
1394 {
1395 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1396 Vexec_path = Fcons (tem, Vexec_path);
1397 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1398 }
1399
1400 Vexec_directory = Ffile_name_as_directory (tem);
1401#endif /* not DOS_NT */
1402
1403 /* Maybe use ../etc as well as ../lib-src. */
1404 if (data_dir == 0)
1405 {
1406 tem = Fexpand_file_name (build_string ("etc"),
1407 Vinstallation_directory);
1408 Vdoc_directory = Ffile_name_as_directory (tem);
1409 }
1410 }
1411
1412 /* Look for the files that should be in etc. We don't use
1413 Vinstallation_directory, because these files are never installed
1414 near the executable, and they are never in the build
1415 directory when that's different from the source directory.
1416
1417 Instead, if these files are not in the nominal place, we try the
1418 source directory. */
1419 if (data_dir == 0)
1420 {
1421 Lisp_Object tem, tem1, srcdir;
1422
1423 srcdir = Fexpand_file_name (build_string ("../src/"),
1424 build_string (PATH_DUMPLOADSEARCH));
1425 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1426 tem1 = Ffile_exists_p (tem);
1427 if (!NILP (Fequal (srcdir, Vinvocation_directory)) || NILP (tem1))
1428 {
1429 Lisp_Object newdir;
1430 newdir = Fexpand_file_name (build_string ("../etc/"),
1431 build_string (PATH_DUMPLOADSEARCH));
1432 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1433 tem1 = Ffile_exists_p (tem);
1434 if (!NILP (tem1))
1435 Vdata_directory = newdir;
1436 }
1437 }
1438
1439#ifndef CANNOT_DUMP
1440 if (initialized)
1441#endif
1442 {
1443 tempdir = Fdirectory_file_name (Vexec_directory);
1444 if (access (SDATA (tempdir), 0) < 0)
1445 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1446 Vexec_directory);
1447 }
1448
1449 tempdir = Fdirectory_file_name (Vdata_directory);
1450 if (access (SDATA (tempdir), 0) < 0)
1451 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1452 Vdata_directory);
1453
1454#ifdef VMS
1455 Vshell_file_name = build_string ("*dcl*");
1456#else
1457 sh = (char *) getenv ("SHELL");
1458 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1459#endif
1460
1461#ifdef VMS
1462 Vtemp_file_name_pattern = build_string ("tmp:emacsXXXXXX.");
1463#else
1464 if (getenv ("TMPDIR"))
1465 {
1466 char *dir = getenv ("TMPDIR");
1467 Vtemp_file_name_pattern
1468 = Fexpand_file_name (build_string ("emacsXXXXXX"),
1469 build_string (dir));
1470 }
1471 else
1472 Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
1473#endif
1474
1475#ifdef DOS_NT
1476 Vshared_game_score_directory = Qnil;
1477#else
1478 Vshared_game_score_directory = build_string (PATH_GAME);
1479 if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
1480 Vshared_game_score_directory = Qnil;
1481#endif
1482}
1483
1484void
1485set_process_environment ()
1486{
1487 register char **envp;
1488
1489 Vprocess_environment = Qnil;
1490#ifndef CANNOT_DUMP
1491 if (initialized)
1492#endif
1493 for (envp = environ; *envp; envp++)
1494 Vprocess_environment = Fcons (build_string (*envp),
1495 Vprocess_environment);
1496}
1497
1498void
1499syms_of_callproc ()
1500{
1501#ifdef DOS_NT
1502 Qbuffer_file_type = intern ("buffer-file-type");
1503 staticpro (&Qbuffer_file_type);
1504#endif /* DOS_NT */
1505
1506 DEFVAR_LISP ("shell-file-name", &Vshell_file_name,
1507 doc: /* *File name to load inferior shells from.
1508Initialized from the SHELL environment variable. */);
1509
1510 DEFVAR_LISP ("exec-path", &Vexec_path,
1511 doc: /* *List of directories to search programs to run in subprocesses.
1512Each element is a string (directory name) or nil (try default directory). */);
1513
1514 DEFVAR_LISP ("exec-suffixes", &Vexec_suffixes,
1515 doc: /* *List of suffixes to try to find executable file names.
1516Each element is a string. */);
1517 Vexec_suffixes = Qnil;
1518
1519 DEFVAR_LISP ("exec-directory", &Vexec_directory,
1520 doc: /* Directory for executables for Emacs to invoke.
1521More generally, this includes any architecture-dependent files
1522that are built and installed from the Emacs distribution. */);
1523
1524 DEFVAR_LISP ("data-directory", &Vdata_directory,
1525 doc: /* Directory of machine-independent files that come with GNU Emacs.
1526These are files intended for Emacs to use while it runs. */);
1527
1528 DEFVAR_LISP ("doc-directory", &Vdoc_directory,
1529 doc: /* Directory containing the DOC file that comes with GNU Emacs.
1530This is usually the same as data-directory. */);
1531
1532 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
1533 doc: /* For internal use by the build procedure only.
1534This is the name of the directory in which the build procedure installed
1535Emacs's info files; the default value for Info-default-directory-list
1536includes this. */);
1537 Vconfigure_info_directory = build_string (PATH_INFO);
1538
1539 DEFVAR_LISP ("shared-game-score-directory", &Vshared_game_score_directory,
1540 doc: /* Directory of score files for games which come with GNU Emacs.
1541If this variable is nil, then Emacs is unable to use a shared directory. */);
1542#ifdef DOS_NT
1543 Vshared_game_score_directory = Qnil;
1544#else
1545 Vshared_game_score_directory = build_string (PATH_GAME);
1546#endif
1547
1548 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
1549 doc: /* Pattern for making names for temporary files.
1550This is used by `call-process-region'. */);
1551 /* This variable is initialized in init_callproc. */
1552
1553 DEFVAR_LISP ("process-environment", &Vprocess_environment,
1554 doc: /* List of environment variables for subprocesses to inherit.
1555Each element should be a string of the form ENVVARNAME=VALUE.
1556If multiple entries define the same variable, the first one always
1557takes precedence.
1558The environment which Emacs inherits is placed in this variable
1559when Emacs starts.
1560Non-ASCII characters are encoded according to the initial value of
1561`locale-coding-system', i.e. the elements must normally be decoded for use.
1562See `setenv' and `getenv'. */);
1563
1564#ifndef VMS
1565 defsubr (&Scall_process);
1566 defsubr (&Sgetenv_internal);
1567#endif
1568 defsubr (&Scall_process_region);
1569}