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