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