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