(hol-loaddefs): Load this rather than explicit autoloads.
[emacs.git] / src / callproc.c
blobfdd1ee7988cc28e5aec30da653c936e6b87bf314
1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #include <config.h>
25 #include <signal.h>
26 #include <errno.h>
27 #include <stdio.h>
29 #ifndef USE_CRT_DLL
30 extern int errno;
31 #endif
33 /* Define SIGCHLD as an alias for SIGCLD. */
35 #if !defined (SIGCHLD) && defined (SIGCLD)
36 #define SIGCHLD SIGCLD
37 #endif /* SIGCLD */
39 #include <sys/types.h>
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
45 #include <sys/file.h>
46 #ifdef HAVE_FCNTL_H
47 #define INCLUDED_FCNTL
48 #include <fcntl.h>
49 #endif
51 #ifdef WINDOWSNT
52 #define NOMINMAX
53 #include <windows.h>
54 #include <stdlib.h> /* for proper declaration of environ */
55 #include <fcntl.h>
56 #include "w32.h"
57 #define _P_NOWAIT 1 /* from process.h */
58 #endif
60 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
61 #define INCLUDED_FCNTL
62 #include <fcntl.h>
63 #include <sys/stat.h>
64 #include <sys/param.h>
65 #include <errno.h>
66 #endif /* MSDOS */
68 #ifndef O_RDONLY
69 #define O_RDONLY 0
70 #endif
72 #ifndef O_WRONLY
73 #define O_WRONLY 1
74 #endif
76 #include "lisp.h"
77 #include "commands.h"
78 #include "buffer.h"
79 #include "character.h"
80 #include "ccl.h"
81 #include "coding.h"
82 #include "composite.h"
83 #include <epaths.h>
84 #include "process.h"
85 #include "syssignal.h"
86 #include "systty.h"
87 #include "blockinput.h"
88 #include "frame.h"
89 #include "termhooks.h"
91 #ifdef MSDOS
92 #include "msdos.h"
93 #endif
95 #ifdef VMS
96 extern noshare char **environ;
97 #else
98 #ifndef USE_CRT_DLL
99 extern char **environ;
100 #endif
101 #endif
103 #ifdef HAVE_SETPGID
104 #if !defined (USG) || defined (BSD_PGRPS)
105 #undef setpgrp
106 #define setpgrp setpgid
107 #endif
108 #endif
110 Lisp_Object Vexec_path, Vexec_directory, Vexec_suffixes;
111 Lisp_Object Vdata_directory, Vdoc_directory;
112 Lisp_Object Vconfigure_info_directory, Vshared_game_score_directory;
113 Lisp_Object Vtemp_file_name_pattern;
115 Lisp_Object Vshell_file_name;
117 Lisp_Object Vprocess_environment, Vinitial_environment;
119 #ifdef DOS_NT
120 Lisp_Object Qbuffer_file_type;
121 #endif /* DOS_NT */
123 /* True if we are about to fork off a synchronous process or if we
124 are waiting for it. */
125 int synch_process_alive;
127 /* Nonzero => this is a string explaining death of synchronous subprocess. */
128 char *synch_process_death;
130 /* Nonzero => this is the signal number that terminated the subprocess. */
131 int synch_process_termsig;
133 /* If synch_process_death is zero,
134 this is exit code of synchronous subprocess. */
135 int synch_process_retcode;
138 /* Clean up when exiting Fcall_process.
139 On MSDOS, delete the temporary file on any kind of termination.
140 On Unix, kill the process and any children on termination by signal. */
142 /* Nonzero if this is termination due to exit. */
143 static int call_process_exited;
145 EXFUN (Fgetenv_internal, 2);
147 #ifndef VMS /* VMS version is in vmsproc.c. */
149 static Lisp_Object
150 call_process_kill (fdpid)
151 Lisp_Object fdpid;
153 emacs_close (XFASTINT (Fcar (fdpid)));
154 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
155 synch_process_alive = 0;
156 return Qnil;
159 Lisp_Object
160 call_process_cleanup (fdpid)
161 Lisp_Object fdpid;
163 #if defined (MSDOS)
164 /* for MSDOS fdpid is really (fd . tempfile) */
165 register Lisp_Object file;
166 file = Fcdr (fdpid);
167 emacs_close (XFASTINT (Fcar (fdpid)));
168 if (strcmp (SDATA (file), NULL_DEVICE) != 0)
169 unlink (SDATA (file));
170 #else /* not MSDOS */
171 register int pid = XFASTINT (Fcdr (fdpid));
173 if (call_process_exited)
175 emacs_close (XFASTINT (Fcar (fdpid)));
176 return Qnil;
179 if (EMACS_KILLPG (pid, SIGINT) == 0)
181 int count = SPECPDL_INDEX ();
182 record_unwind_protect (call_process_kill, fdpid);
183 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
184 immediate_quit = 1;
185 QUIT;
186 wait_for_termination (pid);
187 immediate_quit = 0;
188 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
189 message1 ("Waiting for process to die...done");
191 synch_process_alive = 0;
192 emacs_close (XFASTINT (Fcar (fdpid)));
193 #endif /* not MSDOS */
194 return Qnil;
197 DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
198 doc: /* Call PROGRAM synchronously in separate process.
199 The remaining arguments are optional.
200 The program's input comes from file INFILE (nil means `/dev/null').
201 Insert output in BUFFER before point; t means current buffer;
202 nil for BUFFER means discard it; 0 means discard and don't wait.
203 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
204 REAL-BUFFER says what to do with standard output, as above,
205 while STDERR-FILE says what to do with standard error in the child.
206 STDERR-FILE may be nil (discard standard error output),
207 t (mix it with ordinary output), or a file name string.
209 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
210 Remaining arguments are strings passed as command arguments to PROGRAM.
212 If executable PROGRAM can't be found as an executable, `call-process'
213 signals a Lisp error. `call-process' reports errors in execution of
214 the program only through its return and output.
216 If BUFFER is 0, `call-process' returns immediately with value nil.
217 Otherwise it waits for PROGRAM to terminate
218 and returns a numeric exit status or a signal description string.
219 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
221 usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
222 (nargs, args)
223 int nargs;
224 register Lisp_Object *args;
226 Lisp_Object infile, buffer, current_dir, path;
227 int display_p;
228 int fd[2];
229 int filefd;
230 register int pid;
231 #define CALLPROC_BUFFER_SIZE_MIN (16 * 1024)
232 #define CALLPROC_BUFFER_SIZE_MAX (4 * CALLPROC_BUFFER_SIZE_MIN)
233 char buf[CALLPROC_BUFFER_SIZE_MAX];
234 int bufsize = CALLPROC_BUFFER_SIZE_MIN;
235 int count = SPECPDL_INDEX ();
237 register const unsigned char **new_argv
238 = (const unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
239 struct buffer *old = current_buffer;
240 /* File to use for stderr in the child.
241 t means use same as standard output. */
242 Lisp_Object error_file;
243 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
244 char *outf, *tempfile;
245 int outfilefd;
246 #endif
247 #if 0
248 int mask;
249 #endif
250 struct coding_system process_coding; /* coding-system of process output */
251 struct coding_system argument_coding; /* coding-system of arguments */
252 /* Set to the return value of Ffind_operation_coding_system. */
253 Lisp_Object coding_systems;
255 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
256 coding_systems = Qt;
258 CHECK_STRING (args[0]);
260 error_file = Qt;
262 #ifndef subprocesses
263 /* Without asynchronous processes we cannot have BUFFER == 0. */
264 if (nargs >= 3
265 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
266 error ("Operating system cannot handle asynchronous subprocesses");
267 #endif /* subprocesses */
269 /* Decide the coding-system for giving arguments. */
271 Lisp_Object val, *args2;
272 int i;
274 /* If arguments are supplied, we may have to encode them. */
275 if (nargs >= 5)
277 int must_encode = 0;
278 Lisp_Object coding_attrs;
280 for (i = 4; i < nargs; i++)
281 CHECK_STRING (args[i]);
283 for (i = 4; i < nargs; i++)
284 if (STRING_MULTIBYTE (args[i]))
285 must_encode = 1;
287 if (!NILP (Vcoding_system_for_write))
288 val = Vcoding_system_for_write;
289 else if (! must_encode)
290 val = Qnil;
291 else
293 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
294 args2[0] = Qcall_process;
295 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
296 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
297 if (CONSP (coding_systems))
298 val = XCDR (coding_systems);
299 else if (CONSP (Vdefault_process_coding_system))
300 val = XCDR (Vdefault_process_coding_system);
301 else
302 val = Qnil;
304 val = coding_inherit_eol_type (val, Qnil);
305 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
306 coding_attrs = CODING_ID_ATTRS (argument_coding.id);
307 if (NILP (CODING_ATTR_ASCII_COMPAT (coding_attrs)))
309 /* We should not use an ASCII incompatible coding system. */
310 val = raw_text_coding_system (val);
311 setup_coding_system (val, &argument_coding);
316 if (nargs >= 2 && ! NILP (args[1]))
318 infile = Fexpand_file_name (args[1], current_buffer->directory);
319 CHECK_STRING (infile);
321 else
322 infile = build_string (NULL_DEVICE);
324 if (nargs >= 3)
326 buffer = args[2];
328 /* If BUFFER is a list, its meaning is
329 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
330 if (CONSP (buffer))
332 if (CONSP (XCDR (buffer)))
334 Lisp_Object stderr_file;
335 stderr_file = XCAR (XCDR (buffer));
337 if (NILP (stderr_file) || EQ (Qt, stderr_file))
338 error_file = stderr_file;
339 else
340 error_file = Fexpand_file_name (stderr_file, Qnil);
343 buffer = XCAR (buffer);
346 if (!(EQ (buffer, Qnil)
347 || EQ (buffer, Qt)
348 || INTEGERP (buffer)))
350 Lisp_Object spec_buffer;
351 spec_buffer = buffer;
352 buffer = Fget_buffer_create (buffer);
353 /* Mention the buffer name for a better error message. */
354 if (NILP (buffer))
355 CHECK_BUFFER (spec_buffer);
356 CHECK_BUFFER (buffer);
359 else
360 buffer = Qnil;
362 /* Make sure that the child will be able to chdir to the current
363 buffer's current directory, or its unhandled equivalent. We
364 can't just have the child check for an error when it does the
365 chdir, since it's in a vfork.
367 We have to GCPRO around this because Fexpand_file_name,
368 Funhandled_file_name_directory, and Ffile_accessible_directory_p
369 might call a file name handling function. The argument list is
370 protected by the caller, so all we really have to worry about is
371 buffer. */
373 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
375 current_dir = current_buffer->directory;
377 GCPRO4 (infile, buffer, current_dir, error_file);
379 current_dir = Funhandled_file_name_directory (current_dir);
380 if (NILP (current_dir))
381 /* If the file name handler says that current_dir is unreachable, use
382 a sensible default. */
383 current_dir = build_string ("~/");
384 current_dir = expand_and_dir_to_file (current_dir, Qnil);
385 if (NILP (Ffile_accessible_directory_p (current_dir)))
386 report_file_error ("Setting current directory",
387 Fcons (current_buffer->directory, Qnil));
389 if (STRING_MULTIBYTE (infile))
390 infile = ENCODE_FILE (infile);
391 if (STRING_MULTIBYTE (current_dir))
392 current_dir = ENCODE_FILE (current_dir);
393 if (STRINGP (error_file) && STRING_MULTIBYTE (error_file))
394 error_file = ENCODE_FILE (error_file);
395 UNGCPRO;
398 display_p = INTERACTIVE && nargs >= 4 && !NILP (args[3]);
400 filefd = emacs_open (SDATA (infile), O_RDONLY, 0);
401 if (filefd < 0)
403 infile = DECODE_FILE (infile);
404 report_file_error ("Opening process input file", Fcons (infile, Qnil));
406 /* Search for program; barf if not found. */
408 struct gcpro gcpro1;
410 GCPRO1 (current_dir);
411 openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK));
412 UNGCPRO;
414 if (NILP (path))
416 emacs_close (filefd);
417 report_file_error ("Searching for program", Fcons (args[0], Qnil));
420 /* If program file name starts with /: for quoting a magic name,
421 discard that. */
422 if (SBYTES (path) > 2 && SREF (path, 0) == '/'
423 && SREF (path, 1) == ':')
424 path = Fsubstring (path, make_number (2), Qnil);
426 new_argv[0] = SDATA (path);
427 if (nargs > 4)
429 register int i;
430 struct gcpro gcpro1, gcpro2, gcpro3;
432 GCPRO3 (infile, buffer, current_dir);
433 argument_coding.dst_multibyte = 0;
434 for (i = 4; i < nargs; i++)
436 argument_coding.src_multibyte = STRING_MULTIBYTE (args[i]);
437 if (CODING_REQUIRE_ENCODING (&argument_coding))
438 /* We must encode this argument. */
439 args[i] = encode_coding_string (&argument_coding, args[i], 1);
440 new_argv[i - 3] = SDATA (args[i]);
442 UNGCPRO;
443 new_argv[nargs - 3] = 0;
445 else
446 new_argv[1] = 0;
448 #ifdef MSDOS /* MW, July 1993 */
449 if ((outf = egetenv ("TMPDIR")))
450 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
451 else
453 tempfile = alloca (20);
454 *tempfile = '\0';
456 dostounix_filename (tempfile);
457 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
458 strcat (tempfile, "/");
459 strcat (tempfile, "detmp.XXX");
460 mktemp (tempfile);
462 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
463 if (outfilefd < 0)
465 emacs_close (filefd);
466 report_file_error ("Opening process output file",
467 Fcons (build_string (tempfile), Qnil));
469 fd[0] = filefd;
470 fd[1] = outfilefd;
471 #endif /* MSDOS */
473 if (INTEGERP (buffer))
474 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
475 else
477 #ifndef MSDOS
478 errno = 0;
479 if (pipe (fd) == -1)
481 emacs_close (filefd);
482 report_file_error ("Creating process pipe", Qnil);
484 #endif
485 #if 0
486 /* Replaced by close_process_descs */
487 set_exclusive_use (fd[0]);
488 #endif
492 /* child_setup must clobber environ in systems with true vfork.
493 Protect it from permanent change. */
494 register char **save_environ = environ;
495 register int fd1 = fd[1];
496 int fd_error = fd1;
498 #if 0 /* Some systems don't have sigblock. */
499 mask = sigblock (sigmask (SIGCHLD));
500 #endif
502 /* Record that we're about to create a synchronous process. */
503 synch_process_alive = 1;
505 /* These vars record information from process termination.
506 Clear them now before process can possibly terminate,
507 to avoid timing error if process terminates soon. */
508 synch_process_death = 0;
509 synch_process_retcode = 0;
510 synch_process_termsig = 0;
512 if (NILP (error_file))
513 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
514 else if (STRINGP (error_file))
516 #ifdef DOS_NT
517 fd_error = emacs_open (SDATA (error_file),
518 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
519 S_IREAD | S_IWRITE);
520 #else /* not DOS_NT */
521 fd_error = creat (SDATA (error_file), 0666);
522 #endif /* not DOS_NT */
525 if (fd_error < 0)
527 emacs_close (filefd);
528 if (fd[0] != filefd)
529 emacs_close (fd[0]);
530 if (fd1 >= 0)
531 emacs_close (fd1);
532 #ifdef MSDOS
533 unlink (tempfile);
534 #endif
535 if (NILP (error_file))
536 error_file = build_string (NULL_DEVICE);
537 else if (STRINGP (error_file))
538 error_file = DECODE_FILE (error_file);
539 report_file_error ("Cannot redirect stderr", Fcons (error_file, Qnil));
542 #ifdef MSDOS /* MW, July 1993 */
543 /* Note that on MSDOS `child_setup' actually returns the child process
544 exit status, not its PID, so we assign it to `synch_process_retcode'
545 below. */
546 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
547 0, current_dir);
549 /* Record that the synchronous process exited and note its
550 termination status. */
551 synch_process_alive = 0;
552 synch_process_retcode = pid;
553 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
555 synchronize_system_messages_locale ();
556 synch_process_death = strerror (errno);
559 emacs_close (outfilefd);
560 if (fd_error != outfilefd)
561 emacs_close (fd_error);
562 fd1 = -1; /* No harm in closing that one! */
563 /* Since CRLF is converted to LF within `decode_coding', we can
564 always open a file with binary mode. */
565 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
566 if (fd[0] < 0)
568 unlink (tempfile);
569 emacs_close (filefd);
570 report_file_error ("Cannot re-open temporary file", Qnil);
572 #else /* not MSDOS */
573 #ifdef WINDOWSNT
574 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
575 0, current_dir);
576 #else /* not WINDOWSNT */
577 BLOCK_INPUT;
579 pid = vfork ();
581 if (pid == 0)
583 if (fd[0] >= 0)
584 emacs_close (fd[0]);
585 #ifdef HAVE_SETSID
586 setsid ();
587 #endif
588 #if defined (USG) && !defined (BSD_PGRPS)
589 setpgrp ();
590 #else
591 setpgrp (pid, pid);
592 #endif /* USG */
593 child_setup (filefd, fd1, fd_error, (char **) new_argv,
594 0, current_dir);
597 UNBLOCK_INPUT;
598 #endif /* not WINDOWSNT */
600 /* The MSDOS case did this already. */
601 if (fd_error >= 0)
602 emacs_close (fd_error);
603 #endif /* not MSDOS */
605 environ = save_environ;
607 /* Close most of our fd's, but not fd[0]
608 since we will use that to read input from. */
609 emacs_close (filefd);
610 if (fd1 >= 0 && fd1 != fd_error)
611 emacs_close (fd1);
614 if (pid < 0)
616 if (fd[0] >= 0)
617 emacs_close (fd[0]);
618 report_file_error ("Doing vfork", Qnil);
621 if (INTEGERP (buffer))
623 if (fd[0] >= 0)
624 emacs_close (fd[0]);
625 #ifndef subprocesses
626 /* If Emacs has been built with asynchronous subprocess support,
627 we don't need to do this, I think because it will then have
628 the facilities for handling SIGCHLD. */
629 wait_without_blocking ();
630 #endif /* subprocesses */
631 return Qnil;
634 /* Enable sending signal if user quits below. */
635 call_process_exited = 0;
637 #if defined(MSDOS)
638 /* MSDOS needs different cleanup information. */
639 record_unwind_protect (call_process_cleanup,
640 Fcons (make_number (fd[0]), build_string (tempfile)));
641 #else
642 record_unwind_protect (call_process_cleanup,
643 Fcons (make_number (fd[0]), make_number (pid)));
644 #endif /* not MSDOS */
647 if (BUFFERP (buffer))
648 Fset_buffer (buffer);
650 if (NILP (buffer))
652 /* If BUFFER is nil, we must read process output once and then
653 discard it, so setup coding system but with nil. */
654 setup_coding_system (Qnil, &process_coding);
656 else
658 Lisp_Object val, *args2;
660 val = Qnil;
661 if (!NILP (Vcoding_system_for_read))
662 val = Vcoding_system_for_read;
663 else
665 if (EQ (coding_systems, Qt))
667 int i;
669 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
670 args2[0] = Qcall_process;
671 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
672 coding_systems
673 = Ffind_operation_coding_system (nargs + 1, args2);
675 if (CONSP (coding_systems))
676 val = XCAR (coding_systems);
677 else if (CONSP (Vdefault_process_coding_system))
678 val = XCAR (Vdefault_process_coding_system);
679 else
680 val = Qnil;
682 Fcheck_coding_system (val);
683 /* In unibyte mode, character code conversion should not take
684 place but EOL conversion should. So, setup raw-text or one
685 of the subsidiary according to the information just setup. */
686 if (NILP (current_buffer->enable_multibyte_characters)
687 && !NILP (val))
688 val = raw_text_coding_system (val);
689 setup_coding_system (val, &process_coding);
692 immediate_quit = 1;
693 QUIT;
696 register int nread;
697 int first = 1;
698 int total_read = 0;
699 int carryover = 0;
700 int display_on_the_fly = display_p;
701 struct coding_system saved_coding;
703 saved_coding = process_coding;
704 while (1)
706 /* Repeatedly read until we've filled as much as possible
707 of the buffer size we have. But don't read
708 less than 1024--save that for the next bufferful. */
709 nread = carryover;
710 while (nread < bufsize - 1024)
712 int this_read = emacs_read (fd[0], buf + nread,
713 bufsize - nread);
715 if (this_read < 0)
716 goto give_up;
718 if (this_read == 0)
720 process_coding.mode |= CODING_MODE_LAST_BLOCK;
721 break;
724 nread += this_read;
725 total_read += this_read;
727 if (display_on_the_fly)
728 break;
731 /* Now NREAD is the total amount of data in the buffer. */
732 immediate_quit = 0;
734 if (!NILP (buffer))
736 if (NILP (current_buffer->enable_multibyte_characters)
737 && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
738 insert_1_both (buf, nread, nread, 0, 1, 0);
739 else
740 { /* We have to decode the input. */
741 Lisp_Object curbuf;
743 XSETBUFFER (curbuf, current_buffer);
744 decode_coding_c_string (&process_coding, buf, nread,
745 curbuf);
746 if (display_on_the_fly
747 && CODING_REQUIRE_DETECTION (&saved_coding)
748 && ! CODING_REQUIRE_DETECTION (&process_coding))
750 /* We have detected some coding system. But,
751 there's a possibility that the detection was
752 done by insufficient data. So, we give up
753 displaying on the fly. */
754 if (process_coding.produced > 0)
755 del_range_2 (process_coding.dst_pos,
756 process_coding.dst_pos_byte,
757 process_coding.dst_pos
758 + process_coding.produced_char,
759 process_coding.dst_pos_byte
760 + process_coding.produced, 0);
761 display_on_the_fly = 0;
762 process_coding = saved_coding;
763 carryover = nread;
764 /* This is to make the above condition always
765 fails in the future. */
766 saved_coding.common_flags
767 &= ~CODING_REQUIRE_DETECTION_MASK;
768 continue;
771 TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
772 PT_BYTE + process_coding.produced);
773 carryover = process_coding.carryover_bytes;
774 if (carryover > 0)
775 /* As CARRYOVER should not be that large, we had
776 better avoid overhead of bcopy. */
777 BCOPY_SHORT (process_coding.carryover, buf,
778 process_coding.carryover_bytes);
782 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
783 break;
785 #if (CALLPROC_BUFFER_SIZE_MIN != CALLPROC_BUFFER_SIZE_MAX)
786 /* Make the buffer bigger as we continue to read more data,
787 but not past CALLPROC_BUFFER_SIZE_MAX. */
788 if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
789 if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
790 bufsize = CALLPROC_BUFFER_SIZE_MAX;
791 #endif
793 if (display_p)
795 if (first)
796 prepare_menu_bars ();
797 first = 0;
798 redisplay_preserve_echo_area (1);
799 /* This variable might have been set to 0 for code
800 detection. In that case, we set it back to 1 because
801 we should have already detected a coding system. */
802 display_on_the_fly = 1;
804 immediate_quit = 1;
805 QUIT;
807 give_up: ;
809 Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
810 /* If the caller required, let the buffer inherit the
811 coding-system used to decode the process output. */
812 if (inherit_process_coding_system)
813 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
814 make_number (total_read));
817 /* Wait for it to terminate, unless it already has. */
818 wait_for_termination (pid);
820 immediate_quit = 0;
822 set_buffer_internal (old);
824 /* Don't kill any children that the subprocess may have left behind
825 when exiting. */
826 call_process_exited = 1;
828 unbind_to (count, Qnil);
830 if (synch_process_termsig)
832 char *signame;
834 synchronize_system_messages_locale ();
835 signame = strsignal (synch_process_termsig);
837 if (signame == 0)
838 signame = "unknown";
840 synch_process_death = signame;
843 if (synch_process_death)
844 return code_convert_string_norecord (build_string (synch_process_death),
845 Vlocale_coding_system, 0);
846 return make_number (synch_process_retcode);
848 #endif
850 static Lisp_Object
851 delete_temp_file (name)
852 Lisp_Object name;
854 /* Suppress jka-compr handling, etc. */
855 int count = SPECPDL_INDEX ();
856 specbind (intern ("file-name-handler-alist"), Qnil);
857 internal_delete_file (name);
858 unbind_to (count, Qnil);
859 return Qnil;
862 DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
863 3, MANY, 0,
864 doc: /* Send text from START to END to a synchronous process running PROGRAM.
865 The remaining arguments are optional.
866 Delete the text if fourth arg DELETE is non-nil.
868 Insert output in BUFFER before point; t means current buffer;
869 nil for BUFFER means discard it; 0 means discard and don't wait.
870 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
871 REAL-BUFFER says what to do with standard output, as above,
872 while STDERR-FILE says what to do with standard error in the child.
873 STDERR-FILE may be nil (discard standard error output),
874 t (mix it with ordinary output), or a file name string.
876 Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
877 Remaining args are passed to PROGRAM at startup as command args.
879 If BUFFER is 0, `call-process-region' returns immediately with value nil.
880 Otherwise it waits for PROGRAM to terminate
881 and returns a numeric exit status or a signal description string.
882 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
884 usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
885 (nargs, args)
886 int nargs;
887 register Lisp_Object *args;
889 struct gcpro gcpro1;
890 Lisp_Object filename_string;
891 register Lisp_Object start, end;
892 int count = SPECPDL_INDEX ();
893 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
894 Lisp_Object coding_systems;
895 Lisp_Object val, *args2;
896 int i;
897 #ifdef DOS_NT
898 char *tempfile;
899 char *outf = '\0';
901 if ((outf = egetenv ("TMPDIR"))
902 || (outf = egetenv ("TMP"))
903 || (outf = egetenv ("TEMP")))
904 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
905 else
907 tempfile = alloca (20);
908 *tempfile = '\0';
910 if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
911 strcat (tempfile, "/");
912 if ('/' == DIRECTORY_SEP)
913 dostounix_filename (tempfile);
914 else
915 unixtodos_filename (tempfile);
916 #ifdef WINDOWSNT
917 strcat (tempfile, "emXXXXXX");
918 #else
919 strcat (tempfile, "detmp.XXX");
920 #endif
921 #else /* not DOS_NT */
922 char *tempfile = (char *) alloca (SBYTES (Vtemp_file_name_pattern) + 1);
923 bcopy (SDATA (Vtemp_file_name_pattern), tempfile,
924 SBYTES (Vtemp_file_name_pattern) + 1);
925 #endif /* not DOS_NT */
927 coding_systems = Qt;
929 #ifdef HAVE_MKSTEMP
931 int fd;
933 BLOCK_INPUT;
934 fd = mkstemp (tempfile);
935 UNBLOCK_INPUT;
936 if (fd == -1)
937 report_file_error ("Failed to open temporary file",
938 Fcons (Vtemp_file_name_pattern, Qnil));
939 else
940 close (fd);
942 #else
943 mktemp (tempfile);
944 #endif
946 filename_string = build_string (tempfile);
947 GCPRO1 (filename_string);
948 start = args[0];
949 end = args[1];
950 /* Decide coding-system of the contents of the temporary file. */
951 if (!NILP (Vcoding_system_for_write))
952 val = Vcoding_system_for_write;
953 else if (NILP (current_buffer->enable_multibyte_characters))
954 val = Qnil;
955 else
957 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
958 args2[0] = Qcall_process_region;
959 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
960 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
961 if (CONSP (coding_systems))
962 val = XCDR (coding_systems);
963 else if (CONSP (Vdefault_process_coding_system))
964 val = XCDR (Vdefault_process_coding_system);
965 else
966 val = Qnil;
970 int count1 = SPECPDL_INDEX ();
972 specbind (intern ("coding-system-for-write"), val);
973 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
974 happen to get a ".Z" suffix. */
975 specbind (intern ("file-name-handler-alist"), Qnil);
976 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
978 unbind_to (count1, Qnil);
981 /* Note that Fcall_process takes care of binding
982 coding-system-for-read. */
984 record_unwind_protect (delete_temp_file, filename_string);
986 if (nargs > 3 && !NILP (args[3]))
987 Fdelete_region (start, end);
989 if (nargs > 3)
991 args += 2;
992 nargs -= 2;
994 else
996 args[0] = args[2];
997 nargs = 2;
999 args[1] = filename_string;
1001 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
1004 #ifndef VMS /* VMS version is in vmsproc.c. */
1006 static int relocate_fd ();
1008 static char **
1009 add_env (char **env, char **new_env, char *string)
1011 char **ep;
1012 int ok = 1;
1013 if (string == NULL)
1014 return new_env;
1016 /* See if this string duplicates any string already in the env.
1017 If so, don't put it in.
1018 When an env var has multiple definitions,
1019 we keep the definition that comes first in process-environment. */
1020 for (ep = env; ok && ep != new_env; ep++)
1022 char *p = *ep, *q = string;
1023 while (ok)
1025 if (*q != *p)
1026 break;
1027 if (*q == 0)
1028 /* The string is a lone variable name; keep it for now, we
1029 will remove it later. It is a placeholder for a
1030 variable that is not to be included in the environment. */
1031 break;
1032 if (*q == '=')
1033 ok = 0;
1034 p++, q++;
1037 if (ok)
1038 *new_env++ = string;
1039 return new_env;
1042 /* This is the last thing run in a newly forked inferior
1043 either synchronous or asynchronous.
1044 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1045 Initialize inferior's priority, pgrp, connected dir and environment.
1046 then exec another program based on new_argv.
1048 This function may change environ for the superior process.
1049 Therefore, the superior process must save and restore the value
1050 of environ around the vfork and the call to this function.
1052 SET_PGRP is nonzero if we should put the subprocess into a separate
1053 process group.
1055 CURRENT_DIR is an elisp string giving the path of the current
1056 directory the subprocess should have. Since we can't really signal
1057 a decent error from within the child, this should be verified as an
1058 executable directory by the parent. */
1061 child_setup (in, out, err, new_argv, set_pgrp, current_dir)
1062 int in, out, err;
1063 register char **new_argv;
1064 int set_pgrp;
1065 Lisp_Object current_dir;
1067 char **env;
1068 char *pwd_var;
1069 #ifdef WINDOWSNT
1070 int cpid;
1071 HANDLE handles[3];
1072 #endif /* WINDOWSNT */
1074 int pid = getpid ();
1076 #ifdef SET_EMACS_PRIORITY
1078 extern EMACS_INT emacs_priority;
1080 if (emacs_priority < 0)
1081 nice (- emacs_priority);
1083 #endif
1085 #ifdef subprocesses
1086 /* Close Emacs's descriptors that this process should not have. */
1087 close_process_descs ();
1088 #endif
1089 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1090 we will lose if we call close_load_descs here. */
1091 #ifndef DOS_NT
1092 close_load_descs ();
1093 #endif
1095 /* Note that use of alloca is always safe here. It's obvious for systems
1096 that do not have true vfork or that have true (stack) alloca.
1097 If using vfork and C_ALLOCA (when Emacs used to include
1098 src/alloca.c) it is safe because that changes the superior's
1099 static variables as if the superior had done alloca and will be
1100 cleaned up in the usual way. */
1102 register char *temp;
1103 register int i;
1105 i = SBYTES (current_dir);
1106 #ifdef MSDOS
1107 /* MSDOS must have all environment variables malloc'ed, because
1108 low-level libc functions that launch subsidiary processes rely
1109 on that. */
1110 pwd_var = (char *) xmalloc (i + 6);
1111 #else
1112 pwd_var = (char *) alloca (i + 6);
1113 #endif
1114 temp = pwd_var + 4;
1115 bcopy ("PWD=", pwd_var, 4);
1116 bcopy (SDATA (current_dir), temp, i);
1117 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
1118 temp[i] = 0;
1120 #ifndef DOS_NT
1121 /* We can't signal an Elisp error here; we're in a vfork. Since
1122 the callers check the current directory before forking, this
1123 should only return an error if the directory's permissions
1124 are changed between the check and this chdir, but we should
1125 at least check. */
1126 if (chdir (temp) < 0)
1127 _exit (errno);
1128 #endif
1130 #ifdef DOS_NT
1131 /* Get past the drive letter, so that d:/ is left alone. */
1132 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1134 temp += 2;
1135 i -= 2;
1137 #endif
1139 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
1140 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
1141 temp[--i] = 0;
1144 /* Set `env' to a vector of the strings in the environment. */
1146 register Lisp_Object tem;
1147 register char **new_env;
1148 char **p, **q;
1149 register int new_length;
1150 Lisp_Object display = Qnil;
1152 new_length = 0;
1154 for (tem = Vprocess_environment;
1155 CONSP (tem) && STRINGP (XCAR (tem));
1156 tem = XCDR (tem))
1158 if (strncmp (SDATA (XCAR (tem)), "DISPLAY", 7) == 0
1159 && (SDATA (XCAR (tem)) [7] == '\0'
1160 || SDATA (XCAR (tem)) [7] == '='))
1161 /* DISPLAY is specified in process-environment. */
1162 display = Qt;
1163 new_length++;
1166 /* If not provided yet, use the frame's DISPLAY. */
1167 if (NILP (display))
1169 Lisp_Object tmp = Fframe_parameter (selected_frame, Qdisplay);
1170 if (!STRINGP (tmp) && CONSP (Vinitial_environment))
1171 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1172 tmp = Fgetenv_internal (build_string ("DISPLAY"),
1173 Vinitial_environment);
1174 if (STRINGP (tmp))
1176 display = tmp;
1177 new_length++;
1181 /* new_length + 2 to include PWD and terminating 0. */
1182 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
1183 /* If we have a PWD envvar, pass one down,
1184 but with corrected value. */
1185 if (egetenv ("PWD"))
1186 *new_env++ = pwd_var;
1188 if (STRINGP (display))
1190 int vlen = strlen ("DISPLAY=") + strlen (SDATA (display)) + 1;
1191 char *vdata = (char *) alloca (vlen);
1192 strcpy (vdata, "DISPLAY=");
1193 strcat (vdata, SDATA (display));
1194 new_env = add_env (env, new_env, vdata);
1197 /* Overrides. */
1198 for (tem = Vprocess_environment;
1199 CONSP (tem) && STRINGP (XCAR (tem));
1200 tem = XCDR (tem))
1201 new_env = add_env (env, new_env, SDATA (XCAR (tem)));
1203 *new_env = 0;
1205 /* Remove variable names without values. */
1206 p = q = env;
1207 while (*p != 0)
1209 while (*q != 0 && strchr (*q, '=') == NULL)
1210 q++;
1211 *p = *q++;
1212 if (*p != 0)
1213 p++;
1218 #ifdef WINDOWSNT
1219 prepare_standard_handles (in, out, err, handles);
1220 set_process_dir (SDATA (current_dir));
1221 #else /* not WINDOWSNT */
1222 /* Make sure that in, out, and err are not actually already in
1223 descriptors zero, one, or two; this could happen if Emacs is
1224 started with its standard in, out, or error closed, as might
1225 happen under X. */
1227 int oin = in, oout = out;
1229 /* We have to avoid relocating the same descriptor twice! */
1231 in = relocate_fd (in, 3);
1233 if (out == oin)
1234 out = in;
1235 else
1236 out = relocate_fd (out, 3);
1238 if (err == oin)
1239 err = in;
1240 else if (err == oout)
1241 err = out;
1242 else
1243 err = relocate_fd (err, 3);
1246 #ifndef MSDOS
1247 emacs_close (0);
1248 emacs_close (1);
1249 emacs_close (2);
1251 dup2 (in, 0);
1252 dup2 (out, 1);
1253 dup2 (err, 2);
1254 emacs_close (in);
1255 emacs_close (out);
1256 emacs_close (err);
1257 #endif /* not MSDOS */
1258 #endif /* not WINDOWSNT */
1260 #if defined(USG) && !defined(BSD_PGRPS)
1261 #ifndef SETPGRP_RELEASES_CTTY
1262 setpgrp (); /* No arguments but equivalent in this case */
1263 #endif
1264 #else
1265 setpgrp (pid, pid);
1266 #endif /* USG */
1267 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1268 EMACS_SET_TTY_PGRP (0, &pid);
1270 #ifdef MSDOS
1271 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
1272 xfree (pwd_var);
1273 if (pid == -1)
1274 /* An error occurred while trying to run the subprocess. */
1275 report_file_error ("Spawning child process", Qnil);
1276 return pid;
1277 #else /* not MSDOS */
1278 #ifdef WINDOWSNT
1279 /* Spawn the child. (See ntproc.c:Spawnve). */
1280 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
1281 reset_standard_handles (in, out, err, handles);
1282 if (cpid == -1)
1283 /* An error occurred while trying to spawn the process. */
1284 report_file_error ("Spawning child process", Qnil);
1285 return cpid;
1286 #else /* not WINDOWSNT */
1287 /* execvp does not accept an environment arg so the only way
1288 to pass this environment is to set environ. Our caller
1289 is responsible for restoring the ambient value of environ. */
1290 environ = env;
1291 execvp (new_argv[0], new_argv);
1293 emacs_write (1, "Can't exec program: ", 20);
1294 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1295 emacs_write (1, "\n", 1);
1296 _exit (1);
1297 #endif /* not WINDOWSNT */
1298 #endif /* not MSDOS */
1301 /* Move the file descriptor FD so that its number is not less than MINFD.
1302 If the file descriptor is moved at all, the original is freed. */
1303 static int
1304 relocate_fd (fd, minfd)
1305 int fd, minfd;
1307 if (fd >= minfd)
1308 return fd;
1309 else
1311 int new = dup (fd);
1312 if (new == -1)
1314 char *message1 = "Error while setting up child: ";
1315 char *errmessage = strerror (errno);
1316 char *message2 = "\n";
1317 emacs_write (2, message1, strlen (message1));
1318 emacs_write (2, errmessage, strlen (errmessage));
1319 emacs_write (2, message2, strlen (message2));
1320 _exit (1);
1322 /* Note that we hold the original FD open while we recurse,
1323 to guarantee we'll get a new FD if we need it. */
1324 new = relocate_fd (new, minfd);
1325 emacs_close (fd);
1326 return new;
1330 static int
1331 getenv_internal_1 (var, varlen, value, valuelen, env)
1332 char *var;
1333 int varlen;
1334 char **value;
1335 int *valuelen;
1336 Lisp_Object env;
1338 for (; CONSP (env); env = XCDR (env))
1340 Lisp_Object entry = XCAR (env);
1341 if (STRINGP (entry)
1342 && SBYTES (entry) >= varlen
1343 #ifdef WINDOWSNT
1344 /* NT environment variables are case insensitive. */
1345 && ! strnicmp (SDATA (entry), var, varlen)
1346 #else /* not WINDOWSNT */
1347 && ! bcmp (SDATA (entry), var, varlen)
1348 #endif /* not WINDOWSNT */
1351 if (SBYTES (entry) > varlen && SREF (entry, varlen) == '=')
1353 *value = (char *) SDATA (entry) + (varlen + 1);
1354 *valuelen = SBYTES (entry) - (varlen + 1);
1355 return 1;
1357 else if (SBYTES (entry) == varlen)
1359 /* Lone variable names in Vprocess_environment mean that
1360 variable should be removed from the environment. */
1361 *value = NULL;
1362 return 1;
1366 return 0;
1369 static int
1370 getenv_internal (var, varlen, value, valuelen, frame)
1371 char *var;
1372 int varlen;
1373 char **value;
1374 int *valuelen;
1375 Lisp_Object frame;
1377 /* Try to find VAR in Vprocess_environment first. */
1378 if (getenv_internal_1 (var, varlen, value, valuelen,
1379 Vprocess_environment))
1380 return *value ? 1 : 0;
1382 /* For DISPLAY try to get the values from the frame or the initial env. */
1383 if (strcmp (var, "DISPLAY") == 0)
1385 Lisp_Object display
1386 = Fframe_parameter (NILP (frame) ? selected_frame : frame, Qdisplay);
1387 if (STRINGP (display))
1389 *value = (char *) SDATA (display);
1390 *valuelen = SBYTES (display);
1391 return 1;
1393 /* If still not found, Look for DISPLAY in Vinitial_environment. */
1394 if (getenv_internal_1 (var, varlen, value, valuelen,
1395 Vinitial_environment))
1396 return *value ? 1 : 0;
1399 return 0;
1402 DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 2, 0,
1403 doc: /* Get the value of environment variable VARIABLE.
1404 VARIABLE should be a string. Value is nil if VARIABLE is undefined in
1405 the environment. Otherwise, value is a string.
1407 This function searches `process-environment' for VARIABLE. If it is
1408 not found there, then it continues the search in the environment list
1409 of the selected frame.
1411 If optional parameter ENV is a list, then search this list instead of
1412 `process-environment', and return t when encountering a negative entry.
1414 If it is a frame, then this function will ignore `process-environment' and
1415 will simply look up the variable in that frame's environment. */)
1416 (variable, env)
1417 Lisp_Object variable, env;
1419 char *value;
1420 int valuelen;
1422 CHECK_STRING (variable);
1423 if (CONSP (env))
1425 if (getenv_internal_1 (SDATA (variable), SBYTES (variable),
1426 &value, &valuelen, env))
1427 return value ? make_string (value, valuelen) : Qt;
1428 else
1429 return Qnil;
1431 else if (getenv_internal (SDATA (variable), SBYTES (variable),
1432 &value, &valuelen, env))
1433 return make_string (value, valuelen);
1434 else
1435 return Qnil;
1438 /* A version of getenv that consults the Lisp environment lists,
1439 easily callable from C. */
1440 char *
1441 egetenv (var)
1442 char *var;
1444 char *value;
1445 int valuelen;
1447 if (getenv_internal (var, strlen (var), &value, &valuelen, Qnil))
1448 return value;
1449 else
1450 return 0;
1453 #endif /* not VMS */
1455 /* This is run before init_cmdargs. */
1457 void
1458 init_callproc_1 ()
1460 char *data_dir = egetenv ("EMACSDATA");
1461 char *doc_dir = egetenv ("EMACSDOC");
1463 Vdata_directory
1464 = Ffile_name_as_directory (build_string (data_dir ? data_dir
1465 : PATH_DATA));
1466 Vdoc_directory
1467 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1468 : PATH_DOC));
1470 /* Check the EMACSPATH environment variable, defaulting to the
1471 PATH_EXEC path from epaths.h. */
1472 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1473 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1474 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1477 /* This is run after init_cmdargs, when Vinstallation_directory is valid. */
1479 void
1480 init_callproc ()
1482 char *data_dir = egetenv ("EMACSDATA");
1484 register char * sh;
1485 Lisp_Object tempdir;
1487 if (!NILP (Vinstallation_directory))
1489 /* Add to the path the lib-src subdir of the installation dir. */
1490 Lisp_Object tem;
1491 tem = Fexpand_file_name (build_string ("lib-src"),
1492 Vinstallation_directory);
1493 #ifndef DOS_NT
1494 /* MSDOS uses wrapped binaries, so don't do this. */
1495 if (NILP (Fmember (tem, Vexec_path)))
1497 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1498 Vexec_path = Fcons (tem, Vexec_path);
1499 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1502 Vexec_directory = Ffile_name_as_directory (tem);
1503 #endif /* not DOS_NT */
1505 /* Maybe use ../etc as well as ../lib-src. */
1506 if (data_dir == 0)
1508 tem = Fexpand_file_name (build_string ("etc"),
1509 Vinstallation_directory);
1510 Vdoc_directory = Ffile_name_as_directory (tem);
1514 /* Look for the files that should be in etc. We don't use
1515 Vinstallation_directory, because these files are never installed
1516 near the executable, and they are never in the build
1517 directory when that's different from the source directory.
1519 Instead, if these files are not in the nominal place, we try the
1520 source directory. */
1521 if (data_dir == 0)
1523 Lisp_Object tem, tem1, srcdir;
1525 srcdir = Fexpand_file_name (build_string ("../src/"),
1526 build_string (PATH_DUMPLOADSEARCH));
1527 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1528 tem1 = Ffile_exists_p (tem);
1529 if (!NILP (Fequal (srcdir, Vinvocation_directory)) || NILP (tem1))
1531 Lisp_Object newdir;
1532 newdir = Fexpand_file_name (build_string ("../etc/"),
1533 build_string (PATH_DUMPLOADSEARCH));
1534 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1535 tem1 = Ffile_exists_p (tem);
1536 if (!NILP (tem1))
1537 Vdata_directory = newdir;
1541 #ifndef CANNOT_DUMP
1542 if (initialized)
1543 #endif
1545 tempdir = Fdirectory_file_name (Vexec_directory);
1546 if (access (SDATA (tempdir), 0) < 0)
1547 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1548 Vexec_directory);
1551 tempdir = Fdirectory_file_name (Vdata_directory);
1552 if (access (SDATA (tempdir), 0) < 0)
1553 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1554 Vdata_directory);
1556 #ifdef VMS
1557 Vshell_file_name = build_string ("*dcl*");
1558 #else
1559 sh = (char *) getenv ("SHELL");
1560 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1561 #endif
1563 #ifdef VMS
1564 Vtemp_file_name_pattern = build_string ("tmp:emacsXXXXXX.");
1565 #else
1566 if (getenv ("TMPDIR"))
1568 char *dir = getenv ("TMPDIR");
1569 Vtemp_file_name_pattern
1570 = Fexpand_file_name (build_string ("emacsXXXXXX"),
1571 build_string (dir));
1573 else
1574 Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
1575 #endif
1577 #ifdef DOS_NT
1578 Vshared_game_score_directory = Qnil;
1579 #else
1580 Vshared_game_score_directory = build_string (PATH_GAME);
1581 if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
1582 Vshared_game_score_directory = Qnil;
1583 #endif
1586 void
1587 set_initial_environment ()
1589 register char **envp;
1590 #ifndef CANNOT_DUMP
1591 if (initialized)
1592 #endif
1594 for (envp = environ; *envp; envp++)
1595 Vprocess_environment = Fcons (build_string (*envp),
1596 Vprocess_environment);
1597 /* Ideally, the `copy' shouldn't be necessary, but it seems it's frequent
1598 to use `delete' and friends on process-environment. */
1599 Vinitial_environment = Fcopy_sequence (Vprocess_environment);
1603 void
1604 syms_of_callproc ()
1606 #ifdef DOS_NT
1607 Qbuffer_file_type = intern ("buffer-file-type");
1608 staticpro (&Qbuffer_file_type);
1609 #endif /* DOS_NT */
1611 DEFVAR_LISP ("shell-file-name", &Vshell_file_name,
1612 doc: /* *File name to load inferior shells from.
1613 Initialized from the SHELL environment variable, or to a system-dependent
1614 default if SHELL is not set. */);
1616 DEFVAR_LISP ("exec-path", &Vexec_path,
1617 doc: /* *List of directories to search programs to run in subprocesses.
1618 Each element is a string (directory name) or nil (try default directory). */);
1620 DEFVAR_LISP ("exec-suffixes", &Vexec_suffixes,
1621 doc: /* *List of suffixes to try to find executable file names.
1622 Each element is a string. */);
1623 Vexec_suffixes = Qnil;
1625 DEFVAR_LISP ("exec-directory", &Vexec_directory,
1626 doc: /* Directory for executables for Emacs to invoke.
1627 More generally, this includes any architecture-dependent files
1628 that are built and installed from the Emacs distribution. */);
1630 DEFVAR_LISP ("data-directory", &Vdata_directory,
1631 doc: /* Directory of machine-independent files that come with GNU Emacs.
1632 These are files intended for Emacs to use while it runs. */);
1634 DEFVAR_LISP ("doc-directory", &Vdoc_directory,
1635 doc: /* Directory containing the DOC file that comes with GNU Emacs.
1636 This is usually the same as `data-directory'. */);
1638 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
1639 doc: /* For internal use by the build procedure only.
1640 This is the name of the directory in which the build procedure installed
1641 Emacs's info files; the default value for `Info-default-directory-list'
1642 includes this. */);
1643 Vconfigure_info_directory = build_string (PATH_INFO);
1645 DEFVAR_LISP ("shared-game-score-directory", &Vshared_game_score_directory,
1646 doc: /* Directory of score files for games which come with GNU Emacs.
1647 If this variable is nil, then Emacs is unable to use a shared directory. */);
1648 #ifdef DOS_NT
1649 Vshared_game_score_directory = Qnil;
1650 #else
1651 Vshared_game_score_directory = build_string (PATH_GAME);
1652 #endif
1654 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
1655 doc: /* Pattern for making names for temporary files.
1656 This is used by `call-process-region'. */);
1657 /* This variable is initialized in init_callproc. */
1659 DEFVAR_LISP ("initial-environment", &Vinitial_environment,
1660 doc: /* List of environment variables inherited from the parent process.
1661 Each element should be a string of the form ENVVARNAME=VALUE.
1662 The elements must normally be decoded (using `locale-coding-system') for use. */);
1663 Vinitial_environment = Qnil;
1665 DEFVAR_LISP ("process-environment", &Vprocess_environment,
1666 doc: /* List of overridden environment variables for subprocesses to inherit.
1667 Each element should be a string of the form ENVVARNAME=VALUE.
1669 Entries in this list take precedence to those in the frame-local
1670 environments. Therefore, let-binding `process-environment' is an easy
1671 way to temporarily change the value of an environment variable,
1672 irrespective of where it comes from. To use `process-environment' to
1673 remove an environment variable, include only its name in the list,
1674 without "=VALUE".
1676 This variable is set to nil when Emacs starts.
1678 If multiple entries define the same variable, the first one always
1679 takes precedence.
1681 Non-ASCII characters are encoded according to the initial value of
1682 `locale-coding-system', i.e. the elements must normally be decoded for
1683 use.
1685 See `setenv' and `getenv'. */);
1686 Vprocess_environment = Qnil;
1688 #ifndef VMS
1689 defsubr (&Scall_process);
1690 defsubr (&Sgetenv_internal);
1691 #endif
1692 defsubr (&Scall_process_region);
1695 /* arch-tag: 769b8045-1df7-4d2b-8968-e3fb49017f95
1696 (do not change this comment) */