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