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