(wait_reading_process_input): When exiting because
[bpt/emacs.git] / src / process.c
1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 1996
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <signal.h>
24
25 #include <config.h>
26
27 /* This file is split into two parts by the following preprocessor
28 conditional. The 'then' clause contains all of the support for
29 asynchronous subprocesses. The 'else' clause contains stub
30 versions of some of the asynchronous subprocess routines that are
31 often called elsewhere in Emacs, so we don't have to #ifdef the
32 sections that call them. */
33
34 \f
35 #ifdef subprocesses
36
37 #include <stdio.h>
38 #include <errno.h>
39 #include <setjmp.h>
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
41 #include <sys/file.h>
42 #include <sys/stat.h>
43 #ifdef HAVE_UNISTD_H
44 #include <unistd.h>
45 #endif
46
47 #ifdef WINDOWSNT
48 #include <stdlib.h>
49 #include <fcntl.h>
50 #endif /* not WINDOWSNT */
51
52 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
53 #include <sys/socket.h>
54 #include <netdb.h>
55 #include <netinet/in.h>
56 #include <arpa/inet.h>
57 #ifdef NEED_NET_ERRNO_H
58 #include <net/errno.h>
59 #endif /* NEED_NET_ERRNO_H */
60 #endif /* HAVE_SOCKETS */
61
62 /* TERM is a poor-man's SLIP, used on Linux. */
63 #ifdef TERM
64 #include <client.h>
65 #endif
66
67 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
68 #ifdef HAVE_BROKEN_INET_ADDR
69 #define IN_ADDR struct in_addr
70 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
71 #else
72 #define IN_ADDR unsigned long
73 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
74 #endif
75
76 #if defined(BSD_SYSTEM) || defined(STRIDE)
77 #include <sys/ioctl.h>
78 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
79 #include <fcntl.h>
80 #endif /* HAVE_PTYS and no O_NDELAY */
81 #endif /* BSD_SYSTEM || STRIDE */
82
83 #ifdef BROKEN_O_NONBLOCK
84 #undef O_NONBLOCK
85 #endif /* BROKEN_O_NONBLOCK */
86
87 #ifdef NEED_BSDTTY
88 #include <bsdtty.h>
89 #endif
90
91 #ifdef IRIS
92 #include <sys/sysmacros.h> /* for "minor" */
93 #endif /* not IRIS */
94
95 #include "systime.h"
96 #include "systty.h"
97
98 #include "lisp.h"
99 #include "window.h"
100 #include "buffer.h"
101 #include "charset.h"
102 #include "coding.h"
103 #include "process.h"
104 #include "termhooks.h"
105 #include "termopts.h"
106 #include "commands.h"
107 #include "frame.h"
108 #include "blockinput.h"
109
110 Lisp_Object Qprocessp;
111 Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed;
112 Lisp_Object Qlast_nonmenu_event;
113 /* Qexit is declared and initialized in eval.c. */
114
115 /* a process object is a network connection when its childp field is neither
116 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */
117
118 #ifdef HAVE_SOCKETS
119 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
120 #else
121 #define NETCONN_P(p) 0
122 #endif /* HAVE_SOCKETS */
123
124 /* Define first descriptor number available for subprocesses. */
125 #ifdef VMS
126 #define FIRST_PROC_DESC 1
127 #else /* Not VMS */
128 #define FIRST_PROC_DESC 3
129 #endif
130
131 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
132 testing SIGCHLD. */
133
134 #if !defined (SIGCHLD) && defined (SIGCLD)
135 #define SIGCHLD SIGCLD
136 #endif /* SIGCLD */
137
138 #include "syssignal.h"
139
140 #include "syswait.h"
141
142 extern int errno;
143 extern char *strerror ();
144 #ifdef VMS
145 extern char *sys_errlist[];
146 #endif
147
148 #ifndef HAVE_H_ERRNO
149 extern int h_errno;
150 #endif
151
152 #ifndef SYS_SIGLIST_DECLARED
153 #ifndef VMS
154 #ifndef BSD4_1
155 #ifndef WINDOWSNT
156 #ifndef LINUX
157 extern char *sys_siglist[];
158 #endif /* not LINUX */
159 #else /* BSD4_1 */
160 char *sys_siglist[] =
161 {
162 "bum signal!!",
163 "hangup",
164 "interrupt",
165 "quit",
166 "illegal instruction",
167 "trace trap",
168 "iot instruction",
169 "emt instruction",
170 "floating point exception",
171 "kill",
172 "bus error",
173 "segmentation violation",
174 "bad argument to system call",
175 "write on a pipe with no one to read it",
176 "alarm clock",
177 "software termination signal from kill",
178 "status signal",
179 "sendable stop signal not from tty",
180 "stop signal from tty",
181 "continue a stopped process",
182 "child status has changed",
183 "background read attempted from control tty",
184 "background write attempted from control tty",
185 "input record available at control tty",
186 "exceeded CPU time limit",
187 "exceeded file size limit"
188 };
189 #endif /* not WINDOWSNT */
190 #endif
191 #endif /* VMS */
192 #endif /* ! SYS_SIGLIST_DECLARED */
193
194 /* t means use pty, nil means use a pipe,
195 maybe other values to come. */
196 static Lisp_Object Vprocess_connection_type;
197
198 #ifdef SKTPAIR
199 #ifndef HAVE_SOCKETS
200 #include <sys/socket.h>
201 #endif
202 #endif /* SKTPAIR */
203
204 /* These next two vars are non-static since sysdep.c uses them in the
205 emulation of `select'. */
206 /* Number of events of change of status of a process. */
207 int process_tick;
208 /* Number of events for which the user or sentinel has been notified. */
209 int update_tick;
210
211 #include "sysselect.h"
212
213 /* If we support a window system, turn on the code to poll periodically
214 to detect C-g. It isn't actually used when doing interrupt input. */
215 #ifdef HAVE_WINDOW_SYSTEM
216 #define POLL_FOR_INPUT
217 #endif
218
219 /* Mask of bits indicating the descriptors that we wait for input on. */
220
221 static SELECT_TYPE input_wait_mask;
222
223 /* Mask that excludes keyboard input descriptor (s). */
224
225 static SELECT_TYPE non_keyboard_wait_mask;
226
227 /* Mask that excludes process input descriptor (s). */
228
229 static SELECT_TYPE non_process_wait_mask;
230
231 /* The largest descriptor currently in use for a process object. */
232 static int max_process_desc;
233
234 /* The largest descriptor currently in use for keyboard input. */
235 static int max_keyboard_desc;
236
237 /* Nonzero means delete a process right away if it exits. */
238 static int delete_exited_processes;
239
240 /* Indexed by descriptor, gives the process (if any) for that descriptor */
241 Lisp_Object chan_process[MAXDESC];
242
243 /* Alist of elements (NAME . PROCESS) */
244 Lisp_Object Vprocess_alist;
245
246 /* Buffered-ahead input char from process, indexed by channel.
247 -1 means empty (no char is buffered).
248 Used on sys V where the only way to tell if there is any
249 output from the process is to read at least one char.
250 Always -1 on systems that support FIONREAD. */
251
252 /* Don't make static; need to access externally. */
253 int proc_buffered_char[MAXDESC];
254
255 /* Table of `struct coding-system' for each process. */
256 static struct coding_system *proc_decode_coding_system[MAXDESC];
257 static struct coding_system *proc_encode_coding_system[MAXDESC];
258
259 static Lisp_Object get_process ();
260
261 extern EMACS_TIME timer_check ();
262 extern int timers_run;
263
264 /* Maximum number of bytes to send to a pty without an eof. */
265 static int pty_max_bytes;
266
267 #ifdef HAVE_PTYS
268 /* The file name of the pty opened by allocate_pty. */
269
270 static char pty_name[24];
271 #endif
272 \f
273 /* Compute the Lisp form of the process status, p->status, from
274 the numeric status that was returned by `wait'. */
275
276 Lisp_Object status_convert ();
277
278 update_status (p)
279 struct Lisp_Process *p;
280 {
281 union { int i; WAITTYPE wt; } u;
282 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
283 p->status = status_convert (u.wt);
284 p->raw_status_low = Qnil;
285 p->raw_status_high = Qnil;
286 }
287
288 /* Convert a process status word in Unix format to
289 the list that we use internally. */
290
291 Lisp_Object
292 status_convert (w)
293 WAITTYPE w;
294 {
295 if (WIFSTOPPED (w))
296 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
297 else if (WIFEXITED (w))
298 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
299 WCOREDUMP (w) ? Qt : Qnil));
300 else if (WIFSIGNALED (w))
301 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
302 WCOREDUMP (w) ? Qt : Qnil));
303 else
304 return Qrun;
305 }
306
307 /* Given a status-list, extract the three pieces of information
308 and store them individually through the three pointers. */
309
310 void
311 decode_status (l, symbol, code, coredump)
312 Lisp_Object l;
313 Lisp_Object *symbol;
314 int *code;
315 int *coredump;
316 {
317 Lisp_Object tem;
318
319 if (SYMBOLP (l))
320 {
321 *symbol = l;
322 *code = 0;
323 *coredump = 0;
324 }
325 else
326 {
327 *symbol = XCONS (l)->car;
328 tem = XCONS (l)->cdr;
329 *code = XFASTINT (XCONS (tem)->car);
330 tem = XCONS (tem)->cdr;
331 *coredump = !NILP (tem);
332 }
333 }
334
335 /* Return a string describing a process status list. */
336
337 Lisp_Object
338 status_message (status)
339 Lisp_Object status;
340 {
341 Lisp_Object symbol;
342 int code, coredump;
343 Lisp_Object string, string2;
344
345 decode_status (status, &symbol, &code, &coredump);
346
347 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
348 {
349 char *signame = 0;
350 if (code < NSIG)
351 {
352 #ifndef VMS
353 /* Cast to suppress warning if the table has const char *. */
354 signame = (char *) sys_siglist[code];
355 #else
356 signame = sys_errlist[code];
357 #endif
358 }
359 if (signame == 0)
360 signame = "unknown";
361 string = build_string (signame);
362 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
363 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
364 return concat2 (string, string2);
365 }
366 else if (EQ (symbol, Qexit))
367 {
368 if (code == 0)
369 return build_string ("finished\n");
370 string = Fnumber_to_string (make_number (code));
371 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
372 return concat2 (build_string ("exited abnormally with code "),
373 concat2 (string, string2));
374 }
375 else
376 return Fcopy_sequence (Fsymbol_name (symbol));
377 }
378 \f
379 #ifdef HAVE_PTYS
380
381 /* Open an available pty, returning a file descriptor.
382 Return -1 on failure.
383 The file name of the terminal corresponding to the pty
384 is left in the variable pty_name. */
385
386 int
387 allocate_pty ()
388 {
389 struct stat stb;
390 register c, i;
391 int fd;
392
393 /* Some systems name their pseudoterminals so that there are gaps in
394 the usual sequence - for example, on HP9000/S700 systems, there
395 are no pseudoterminals with names ending in 'f'. So we wait for
396 three failures in a row before deciding that we've reached the
397 end of the ptys. */
398 int failed_count = 0;
399
400 #ifdef PTY_ITERATION
401 PTY_ITERATION
402 #else
403 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
404 for (i = 0; i < 16; i++)
405 #endif
406 {
407 #ifdef PTY_NAME_SPRINTF
408 PTY_NAME_SPRINTF
409 #else
410 sprintf (pty_name, "/dev/pty%c%x", c, i);
411 #endif /* no PTY_NAME_SPRINTF */
412
413 #ifdef PTY_OPEN
414 PTY_OPEN;
415 #else /* no PTY_OPEN */
416 #ifdef IRIS
417 /* Unusual IRIS code */
418 *ptyv = open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
419 if (fd < 0)
420 return -1;
421 if (fstat (fd, &stb) < 0)
422 return -1;
423 #else /* not IRIS */
424 if (stat (pty_name, &stb) < 0)
425 {
426 failed_count++;
427 if (failed_count >= 3)
428 return -1;
429 }
430 else
431 failed_count = 0;
432 #ifdef O_NONBLOCK
433 fd = open (pty_name, O_RDWR | O_NONBLOCK, 0);
434 #else
435 fd = open (pty_name, O_RDWR | O_NDELAY, 0);
436 #endif
437 #endif /* not IRIS */
438 #endif /* no PTY_OPEN */
439
440 if (fd >= 0)
441 {
442 /* check to make certain that both sides are available
443 this avoids a nasty yet stupid bug in rlogins */
444 #ifdef PTY_TTY_NAME_SPRINTF
445 PTY_TTY_NAME_SPRINTF
446 #else
447 sprintf (pty_name, "/dev/tty%c%x", c, i);
448 #endif /* no PTY_TTY_NAME_SPRINTF */
449 #ifndef UNIPLUS
450 if (access (pty_name, 6) != 0)
451 {
452 close (fd);
453 #if !defined(IRIS) && !defined(__sgi)
454 continue;
455 #else
456 return -1;
457 #endif /* IRIS */
458 }
459 #endif /* not UNIPLUS */
460 setup_pty (fd);
461 return fd;
462 }
463 }
464 return -1;
465 }
466 #endif /* HAVE_PTYS */
467 \f
468 Lisp_Object
469 make_process (name)
470 Lisp_Object name;
471 {
472 struct Lisp_Vector *vec;
473 register Lisp_Object val, tem, name1;
474 register struct Lisp_Process *p;
475 char suffix[10];
476 register int i;
477
478 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct Lisp_Process));
479 for (i = 0; i < VECSIZE (struct Lisp_Process); i++)
480 vec->contents[i] = Qnil;
481 vec->size = VECSIZE (struct Lisp_Process);
482 p = (struct Lisp_Process *)vec;
483
484 XSETINT (p->infd, -1);
485 XSETINT (p->outfd, -1);
486 XSETFASTINT (p->pid, 0);
487 XSETFASTINT (p->tick, 0);
488 XSETFASTINT (p->update_tick, 0);
489 p->raw_status_low = Qnil;
490 p->raw_status_high = Qnil;
491 p->status = Qrun;
492 p->mark = Fmake_marker ();
493
494 /* If name is already in use, modify it until it is unused. */
495
496 name1 = name;
497 for (i = 1; ; i++)
498 {
499 tem = Fget_process (name1);
500 if (NILP (tem)) break;
501 sprintf (suffix, "<%d>", i);
502 name1 = concat2 (name, build_string (suffix));
503 }
504 name = name1;
505 p->name = name;
506 XSETPROCESS (val, p);
507 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
508 return val;
509 }
510
511 remove_process (proc)
512 register Lisp_Object proc;
513 {
514 register Lisp_Object pair;
515
516 pair = Frassq (proc, Vprocess_alist);
517 Vprocess_alist = Fdelq (pair, Vprocess_alist);
518
519 deactivate_process (proc);
520 }
521 \f
522 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
523 "Return t if OBJECT is a process.")
524 (object)
525 Lisp_Object object;
526 {
527 return PROCESSP (object) ? Qt : Qnil;
528 }
529
530 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
531 "Return the process named NAME, or nil if there is none.")
532 (name)
533 register Lisp_Object name;
534 {
535 if (PROCESSP (name))
536 return name;
537 CHECK_STRING (name, 0);
538 return Fcdr (Fassoc (name, Vprocess_alist));
539 }
540
541 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
542 "Return the (or, a) process associated with BUFFER.\n\
543 BUFFER may be a buffer or the name of one.")
544 (buffer)
545 register Lisp_Object buffer;
546 {
547 register Lisp_Object buf, tail, proc;
548
549 if (NILP (buffer)) return Qnil;
550 buf = Fget_buffer (buffer);
551 if (NILP (buf)) return Qnil;
552
553 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
554 {
555 proc = Fcdr (Fcar (tail));
556 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
557 return proc;
558 }
559 return Qnil;
560 }
561
562 /* This is how commands for the user decode process arguments. It
563 accepts a process, a process name, a buffer, a buffer name, or nil.
564 Buffers denote the first process in the buffer, and nil denotes the
565 current buffer. */
566
567 static Lisp_Object
568 get_process (name)
569 register Lisp_Object name;
570 {
571 register Lisp_Object proc, obj;
572 if (STRINGP (name))
573 {
574 obj = Fget_process (name);
575 if (NILP (obj))
576 obj = Fget_buffer (name);
577 if (NILP (obj))
578 error ("Process %s does not exist", XSTRING (name)->data);
579 }
580 else if (NILP (name))
581 obj = Fcurrent_buffer ();
582 else
583 obj = name;
584
585 /* Now obj should be either a buffer object or a process object.
586 */
587 if (BUFFERP (obj))
588 {
589 proc = Fget_buffer_process (obj);
590 if (NILP (proc))
591 error ("Buffer %s has no process", XSTRING (XBUFFER (obj)->name)->data);
592 }
593 else
594 {
595 CHECK_PROCESS (obj, 0);
596 proc = obj;
597 }
598 return proc;
599 }
600
601 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
602 "Delete PROCESS: kill it and forget about it immediately.\n\
603 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
604 nil, indicating the current buffer's process.")
605 (process)
606 register Lisp_Object process;
607 {
608 process = get_process (process);
609 XPROCESS (process)->raw_status_low = Qnil;
610 XPROCESS (process)->raw_status_high = Qnil;
611 if (NETCONN_P (process))
612 {
613 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
614 XSETINT (XPROCESS (process)->tick, ++process_tick);
615 }
616 else if (XINT (XPROCESS (process)->infd) >= 0)
617 {
618 Fkill_process (process, Qnil);
619 /* Do this now, since remove_process will make sigchld_handler do nothing. */
620 XPROCESS (process)->status
621 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
622 XSETINT (XPROCESS (process)->tick, ++process_tick);
623 status_notify ();
624 }
625 remove_process (process);
626 return Qnil;
627 }
628 \f
629 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
630 "Return the status of PROCESS: a symbol, one of these:\n\
631 run -- for a process that is running.\n\
632 stop -- for a process stopped but continuable.\n\
633 exit -- for a process that has exited.\n\
634 signal -- for a process that has got a fatal signal.\n\
635 open -- for a network stream connection that is open.\n\
636 closed -- for a network stream connection that is closed.\n\
637 nil -- if arg is a process name and no such process exists.\n\
638 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
639 nil, indicating the current buffer's process.")
640 (process)
641 register Lisp_Object process;
642 {
643 register struct Lisp_Process *p;
644 register Lisp_Object status;
645
646 if (STRINGP (process))
647 process = Fget_process (process);
648 else
649 process = get_process (process);
650
651 if (NILP (process))
652 return process;
653
654 p = XPROCESS (process);
655 if (!NILP (p->raw_status_low))
656 update_status (p);
657 status = p->status;
658 if (CONSP (status))
659 status = XCONS (status)->car;
660 if (NETCONN_P (process))
661 {
662 if (EQ (status, Qrun))
663 status = Qopen;
664 else if (EQ (status, Qexit))
665 status = Qclosed;
666 }
667 return status;
668 }
669
670 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
671 1, 1, 0,
672 "Return the exit status of PROCESS or the signal number that killed it.\n\
673 If PROCESS has not yet exited or died, return 0.")
674 (process)
675 register Lisp_Object process;
676 {
677 CHECK_PROCESS (process, 0);
678 if (!NILP (XPROCESS (process)->raw_status_low))
679 update_status (XPROCESS (process));
680 if (CONSP (XPROCESS (process)->status))
681 return XCONS (XCONS (XPROCESS (process)->status)->cdr)->car;
682 return make_number (0);
683 }
684
685 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
686 "Return the process id of PROCESS.\n\
687 This is the pid of the Unix process which PROCESS uses or talks to.\n\
688 For a network connection, this value is nil.")
689 (process)
690 register Lisp_Object process;
691 {
692 CHECK_PROCESS (process, 0);
693 return XPROCESS (process)->pid;
694 }
695
696 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
697 "Return the name of PROCESS, as a string.\n\
698 This is the name of the program invoked in PROCESS,\n\
699 possibly modified to make it unique among process names.")
700 (process)
701 register Lisp_Object process;
702 {
703 CHECK_PROCESS (process, 0);
704 return XPROCESS (process)->name;
705 }
706
707 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
708 "Return the command that was executed to start PROCESS.\n\
709 This is a list of strings, the first string being the program executed\n\
710 and the rest of the strings being the arguments given to it.\n\
711 For a non-child channel, this is nil.")
712 (process)
713 register Lisp_Object process;
714 {
715 CHECK_PROCESS (process, 0);
716 return XPROCESS (process)->command;
717 }
718
719 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
720 "Return the name of the terminal PROCESS uses, or nil if none.\n\
721 This is the terminal that the process itself reads and writes on,\n\
722 not the name of the pty that Emacs uses to talk with that terminal.")
723 (process)
724 register Lisp_Object process;
725 {
726 CHECK_PROCESS (process, 0);
727 return XPROCESS (process)->tty_name;
728 }
729
730 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
731 2, 2, 0,
732 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
733 (process, buffer)
734 register Lisp_Object process, buffer;
735 {
736 CHECK_PROCESS (process, 0);
737 if (!NILP (buffer))
738 CHECK_BUFFER (buffer, 1);
739 XPROCESS (process)->buffer = buffer;
740 return buffer;
741 }
742
743 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
744 1, 1, 0,
745 "Return the buffer PROCESS is associated with.\n\
746 Output from PROCESS is inserted in this buffer\n\
747 unless PROCESS has a filter.")
748 (process)
749 register Lisp_Object process;
750 {
751 CHECK_PROCESS (process, 0);
752 return XPROCESS (process)->buffer;
753 }
754
755 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
756 1, 1, 0,
757 "Return the marker for the end of the last output from PROCESS.")
758 (process)
759 register Lisp_Object process;
760 {
761 CHECK_PROCESS (process, 0);
762 return XPROCESS (process)->mark;
763 }
764
765 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
766 2, 2, 0,
767 "Give PROCESS the filter function FILTER; nil means no filter.\n\
768 t means stop accepting output from the process.\n\
769 When a process has a filter, each time it does output\n\
770 the entire string of output is passed to the filter.\n\
771 The filter gets two arguments: the process and the string of output.\n\
772 If the process has a filter, its buffer is not used for output.")
773 (process, filter)
774 register Lisp_Object process, filter;
775 {
776 CHECK_PROCESS (process, 0);
777 if (EQ (filter, Qt))
778 {
779 FD_CLR (XINT (XPROCESS (process)->infd), &input_wait_mask);
780 FD_CLR (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask);
781 }
782 else if (EQ (XPROCESS (process)->filter, Qt))
783 {
784 FD_SET (XINT (XPROCESS (process)->infd), &input_wait_mask);
785 FD_SET (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask);
786 }
787 XPROCESS (process)->filter = filter;
788 return filter;
789 }
790
791 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
792 1, 1, 0,
793 "Returns the filter function of PROCESS; nil if none.\n\
794 See `set-process-filter' for more info on filter functions.")
795 (process)
796 register Lisp_Object process;
797 {
798 CHECK_PROCESS (process, 0);
799 return XPROCESS (process)->filter;
800 }
801
802 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
803 2, 2, 0,
804 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
805 The sentinel is called as a function when the process changes state.\n\
806 It gets two arguments: the process, and a string describing the change.")
807 (process, sentinel)
808 register Lisp_Object process, sentinel;
809 {
810 CHECK_PROCESS (process, 0);
811 XPROCESS (process)->sentinel = sentinel;
812 return sentinel;
813 }
814
815 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
816 1, 1, 0,
817 "Return the sentinel of PROCESS; nil if none.\n\
818 See `set-process-sentinel' for more info on sentinels.")
819 (process)
820 register Lisp_Object process;
821 {
822 CHECK_PROCESS (process, 0);
823 return XPROCESS (process)->sentinel;
824 }
825
826 DEFUN ("set-process-window-size", Fset_process_window_size,
827 Sset_process_window_size, 3, 3, 0,
828 "Tell PROCESS that it has logical window size HEIGHT and WIDTH.")
829 (process, height, width)
830 register Lisp_Object process, height, width;
831 {
832 CHECK_PROCESS (process, 0);
833 CHECK_NATNUM (height, 0);
834 CHECK_NATNUM (width, 0);
835 if (set_window_size (XINT (XPROCESS (process)->infd),
836 XINT (height), XINT(width)) <= 0)
837 return Qnil;
838 else
839 return Qt;
840 }
841
842 DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
843 Sprocess_kill_without_query, 1, 2, 0,
844 "Say no query needed if PROCESS is running when Emacs is exited.\n\
845 Optional second argument if non-nil says to require a query.\n\
846 Value is t if a query was formerly required.")
847 (process, value)
848 register Lisp_Object process, value;
849 {
850 Lisp_Object tem;
851
852 CHECK_PROCESS (process, 0);
853 tem = XPROCESS (process)->kill_without_query;
854 XPROCESS (process)->kill_without_query = Fnull (value);
855
856 return Fnull (tem);
857 }
858
859 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
860 1, 1, 0,
861 "Return the contact info of PROCESS; t for a real child.\n\
862 For a net connection, the value is a cons cell of the form (HOST SERVICE).")
863 (process)
864 register Lisp_Object process;
865 {
866 CHECK_PROCESS (process, 0);
867 return XPROCESS (process)->childp;
868 }
869
870 #if 0 /* Turned off because we don't currently record this info
871 in the process. Perhaps add it. */
872 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
873 "Return the connection type of `PROCESS'.\n\
874 The value is `nil' for a pipe,\n\
875 `t' or `pty' for a pty, or `stream' for a socket connection.")
876 (process)
877 Lisp_Object process;
878 {
879 return XPROCESS (process)->type;
880 }
881 #endif
882 \f
883 Lisp_Object
884 list_processes_1 ()
885 {
886 register Lisp_Object tail, tem;
887 Lisp_Object proc, minspace, tem1;
888 register struct buffer *old = current_buffer;
889 register struct Lisp_Process *p;
890 register int state;
891 char tembuf[80];
892
893 XSETFASTINT (minspace, 1);
894
895 set_buffer_internal (XBUFFER (Vstandard_output));
896 Fbuffer_disable_undo (Vstandard_output);
897
898 current_buffer->truncate_lines = Qt;
899
900 write_string ("\
901 Proc Status Buffer Tty Command\n\
902 ---- ------ ------ --- -------\n", -1);
903
904 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
905 {
906 Lisp_Object symbol;
907
908 proc = Fcdr (Fcar (tail));
909 p = XPROCESS (proc);
910 if (NILP (p->childp))
911 continue;
912
913 Finsert (1, &p->name);
914 Findent_to (make_number (13), minspace);
915
916 if (!NILP (p->raw_status_low))
917 update_status (p);
918 symbol = p->status;
919 if (CONSP (p->status))
920 symbol = XCONS (p->status)->car;
921
922
923 if (EQ (symbol, Qsignal))
924 {
925 Lisp_Object tem;
926 tem = Fcar (Fcdr (p->status));
927 #ifdef VMS
928 if (XINT (tem) < NSIG)
929 write_string (sys_errlist [XINT (tem)], -1);
930 else
931 #endif
932 Fprinc (symbol, Qnil);
933 }
934 else if (NETCONN_P (proc))
935 {
936 if (EQ (symbol, Qrun))
937 write_string ("open", -1);
938 else if (EQ (symbol, Qexit))
939 write_string ("closed", -1);
940 else
941 Fprinc (symbol, Qnil);
942 }
943 else
944 Fprinc (symbol, Qnil);
945
946 if (EQ (symbol, Qexit))
947 {
948 Lisp_Object tem;
949 tem = Fcar (Fcdr (p->status));
950 if (XFASTINT (tem))
951 {
952 sprintf (tembuf, " %d", (int) XFASTINT (tem));
953 write_string (tembuf, -1);
954 }
955 }
956
957 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
958 remove_process (proc);
959
960 Findent_to (make_number (22), minspace);
961 if (NILP (p->buffer))
962 insert_string ("(none)");
963 else if (NILP (XBUFFER (p->buffer)->name))
964 insert_string ("(Killed)");
965 else
966 Finsert (1, &XBUFFER (p->buffer)->name);
967
968 Findent_to (make_number (37), minspace);
969
970 if (STRINGP (p->tty_name))
971 Finsert (1, &p->tty_name);
972 else
973 insert_string ("(none)");
974
975 Findent_to (make_number (49), minspace);
976
977 if (NETCONN_P (proc))
978 {
979 sprintf (tembuf, "(network stream connection to %s)\n",
980 XSTRING (XCONS (p->childp)->car)->data);
981 insert_string (tembuf);
982 }
983 else
984 {
985 tem = p->command;
986 while (1)
987 {
988 tem1 = Fcar (tem);
989 Finsert (1, &tem1);
990 tem = Fcdr (tem);
991 if (NILP (tem))
992 break;
993 insert_string (" ");
994 }
995 insert_string ("\n");
996 }
997 }
998 return Qnil;
999 }
1000
1001 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
1002 "Display a list of all processes.\n\
1003 \(Any processes listed as Exited or Signaled are actually eliminated\n\
1004 after the listing is made.)")
1005 ()
1006 {
1007 internal_with_output_to_temp_buffer ("*Process List*",
1008 list_processes_1, Qnil);
1009 return Qnil;
1010 }
1011
1012 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
1013 "Return a list of all processes.")
1014 ()
1015 {
1016 return Fmapcar (Qcdr, Vprocess_alist);
1017 }
1018 \f
1019 /* Starting asynchronous inferior processes. */
1020
1021 static Lisp_Object start_process_unwind ();
1022
1023 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1024 "Start a program in a subprocess. Return the process object for it.\n\
1025 Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
1026 NAME is name for process. It is modified if necessary to make it unique.\n\
1027 BUFFER is the buffer or (buffer-name) to associate with the process.\n\
1028 Process output goes at end of that buffer, unless you specify\n\
1029 an output stream or filter function to handle the output.\n\
1030 BUFFER may be also nil, meaning that this process is not associated\n\
1031 with any buffer.\n\
1032 Third arg is program file name. It is searched for as in the shell.\n\
1033 Remaining arguments are strings to give program as arguments.")
1034 (nargs, args)
1035 int nargs;
1036 register Lisp_Object *args;
1037 {
1038 Lisp_Object buffer, name, program, proc, current_dir, tem;
1039 #ifdef VMS
1040 register unsigned char *new_argv;
1041 int len;
1042 #else
1043 register unsigned char **new_argv;
1044 #endif
1045 register int i;
1046 int count = specpdl_ptr - specpdl;
1047
1048 buffer = args[1];
1049 if (!NILP (buffer))
1050 buffer = Fget_buffer_create (buffer);
1051
1052 /* Make sure that the child will be able to chdir to the current
1053 buffer's current directory, or its unhandled equivalent. We
1054 can't just have the child check for an error when it does the
1055 chdir, since it's in a vfork.
1056
1057 We have to GCPRO around this because Fexpand_file_name and
1058 Funhandled_file_name_directory might call a file name handling
1059 function. The argument list is protected by the caller, so all
1060 we really have to worry about is buffer. */
1061 {
1062 struct gcpro gcpro1, gcpro2;
1063
1064 current_dir = current_buffer->directory;
1065
1066 GCPRO2 (buffer, current_dir);
1067
1068 current_dir
1069 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
1070 Qnil);
1071 if (NILP (Ffile_accessible_directory_p (current_dir)))
1072 report_file_error ("Setting current directory",
1073 Fcons (current_buffer->directory, Qnil));
1074
1075 UNGCPRO;
1076 }
1077
1078 name = args[0];
1079 CHECK_STRING (name, 0);
1080
1081 program = args[2];
1082
1083 CHECK_STRING (program, 2);
1084
1085 #ifdef VMS
1086 /* Make a one member argv with all args concatenated
1087 together separated by a blank. */
1088 len = XSTRING (program)->size + 2;
1089 for (i = 3; i < nargs; i++)
1090 {
1091 tem = args[i];
1092 CHECK_STRING (tem, i);
1093 len += XSTRING (tem)->size + 1; /* count the blank */
1094 }
1095 new_argv = (unsigned char *) alloca (len);
1096 strcpy (new_argv, XSTRING (program)->data);
1097 for (i = 3; i < nargs; i++)
1098 {
1099 tem = args[i];
1100 CHECK_STRING (tem, i);
1101 strcat (new_argv, " ");
1102 strcat (new_argv, XSTRING (tem)->data);
1103 }
1104 /* Need to add code here to check for program existence on VMS */
1105
1106 #else /* not VMS */
1107 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
1108
1109 /* If program file name is not absolute, search our path for it */
1110 if (!IS_DIRECTORY_SEP (XSTRING (program)->data[0])
1111 && !(XSTRING (program)->size > 1
1112 && IS_DEVICE_SEP (XSTRING (program)->data[1])))
1113 {
1114 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1115
1116 tem = Qnil;
1117 GCPRO4 (name, program, buffer, current_dir);
1118 openp (Vexec_path, program, EXEC_SUFFIXES, &tem, 1);
1119 UNGCPRO;
1120 if (NILP (tem))
1121 report_file_error ("Searching for program", Fcons (program, Qnil));
1122 tem = Fexpand_file_name (tem, Qnil);
1123 new_argv[0] = XSTRING (tem)->data;
1124 }
1125 else
1126 {
1127 if (!NILP (Ffile_directory_p (program)))
1128 error ("Specified program for new process is a directory");
1129
1130 new_argv[0] = XSTRING (program)->data;
1131 }
1132
1133 for (i = 3; i < nargs; i++)
1134 {
1135 tem = args[i];
1136 CHECK_STRING (tem, i);
1137 new_argv[i - 2] = XSTRING (tem)->data;
1138 }
1139 new_argv[i - 2] = 0;
1140 #endif /* not VMS */
1141
1142 proc = make_process (name);
1143 /* If an error occurs and we can't start the process, we want to
1144 remove it from the process list. This means that each error
1145 check in create_process doesn't need to call remove_process
1146 itself; it's all taken care of here. */
1147 record_unwind_protect (start_process_unwind, proc);
1148
1149 XPROCESS (proc)->childp = Qt;
1150 XPROCESS (proc)->command_channel_p = Qnil;
1151 XPROCESS (proc)->buffer = buffer;
1152 XPROCESS (proc)->sentinel = Qnil;
1153 XPROCESS (proc)->filter = Qnil;
1154 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1155
1156 /* Make the process marker point into the process buffer (if any). */
1157 if (!NILP (buffer))
1158 Fset_marker (XPROCESS (proc)->mark,
1159 make_number (BUF_ZV (XBUFFER (buffer))), buffer);
1160
1161 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters)
1162 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters))
1163 {
1164 XPROCESS (proc)->decode_coding_system = Qnil;
1165 XPROCESS (proc)->encode_coding_system = Qnil;
1166 }
1167 else
1168 {
1169 /* Setup coding systems for communicating with the process. */
1170 /* Qt denotes that we have not yet called Ffind_coding_system. */
1171 Lisp_Object coding_systems = Qt;
1172 Lisp_Object val, *args2;
1173 struct gcpro gcpro1;
1174
1175 if (NILP (val = Vcoding_system_for_read))
1176 {
1177 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1178 args2[0] = Qstart_process;
1179 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1180 GCPRO1 (proc);
1181 coding_systems = Ffind_coding_system (nargs + 1, args2);
1182 UNGCPRO;
1183 if (CONSP (coding_systems))
1184 val = XCONS (coding_systems)->car;
1185 else if (CONSP (Vdefault_process_coding_system))
1186 val = XCONS (Vdefault_process_coding_system)->car;
1187 }
1188 XPROCESS (proc)->decode_coding_system = val;
1189
1190 if (NILP (val = Vcoding_system_for_write))
1191 {
1192 if (EQ (coding_systems, Qt))
1193 {
1194 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
1195 args2[0] = Qstart_process;
1196 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1197 GCPRO1 (proc);
1198 coding_systems = Ffind_coding_system (nargs + 1, args2);
1199 UNGCPRO;
1200 }
1201 if (CONSP (coding_systems))
1202 val = XCONS (coding_systems)->cdr;
1203 else if (CONSP (Vdefault_process_coding_system))
1204 val = XCONS (Vdefault_process_coding_system)->cdr;
1205 }
1206 XPROCESS (proc)->encode_coding_system = val;
1207 }
1208
1209 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1210 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1211
1212 create_process (proc, new_argv, current_dir);
1213
1214 return unbind_to (count, proc);
1215 }
1216
1217 /* This function is the unwind_protect form for Fstart_process. If
1218 PROC doesn't have its pid set, then we know someone has signaled
1219 an error and the process wasn't started successfully, so we should
1220 remove it from the process list. */
1221 static Lisp_Object
1222 start_process_unwind (proc)
1223 Lisp_Object proc;
1224 {
1225 if (!PROCESSP (proc))
1226 abort ();
1227
1228 /* Was PROC started successfully? */
1229 if (XINT (XPROCESS (proc)->pid) <= 0)
1230 remove_process (proc);
1231
1232 return Qnil;
1233 }
1234
1235
1236 SIGTYPE
1237 create_process_1 (signo)
1238 int signo;
1239 {
1240 #if defined (USG) && !defined (POSIX_SIGNALS)
1241 /* USG systems forget handlers when they are used;
1242 must reestablish each time */
1243 signal (signo, create_process_1);
1244 #endif /* USG */
1245 }
1246
1247 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1248 #ifdef USG
1249 #ifdef SIGCHLD
1250 /* Mimic blocking of signals on system V, which doesn't really have it. */
1251
1252 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1253 int sigchld_deferred;
1254
1255 SIGTYPE
1256 create_process_sigchld ()
1257 {
1258 signal (SIGCHLD, create_process_sigchld);
1259
1260 sigchld_deferred = 1;
1261 }
1262 #endif
1263 #endif
1264 #endif
1265
1266 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1267 create_process (process, new_argv, current_dir)
1268 Lisp_Object process;
1269 char **new_argv;
1270 Lisp_Object current_dir;
1271 {
1272 int pid, inchannel, outchannel;
1273 int sv[2];
1274 #ifdef POSIX_SIGNALS
1275 sigset_t procmask;
1276 sigset_t blocked;
1277 struct sigaction sigint_action;
1278 struct sigaction sigquit_action;
1279 #ifdef AIX
1280 struct sigaction sighup_action;
1281 #endif
1282 #else /* !POSIX_SIGNALS */
1283 #ifdef SIGCHLD
1284 SIGTYPE (*sigchld)();
1285 #endif
1286 #endif /* !POSIX_SIGNALS */
1287 /* Use volatile to protect variables from being clobbered by longjmp. */
1288 volatile int forkin, forkout;
1289 volatile int pty_flag = 0;
1290 extern char **environ;
1291
1292 inchannel = outchannel = -1;
1293
1294 #ifdef HAVE_PTYS
1295 if (!NILP (Vprocess_connection_type))
1296 outchannel = inchannel = allocate_pty ();
1297
1298 if (inchannel >= 0)
1299 {
1300 #ifndef USG
1301 /* On USG systems it does not work to open the pty's tty here
1302 and then close and reopen it in the child. */
1303 #ifdef O_NOCTTY
1304 /* Don't let this terminal become our controlling terminal
1305 (in case we don't have one). */
1306 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0);
1307 #else
1308 forkout = forkin = open (pty_name, O_RDWR, 0);
1309 #endif
1310 if (forkin < 0)
1311 report_file_error ("Opening pty", Qnil);
1312 #else
1313 forkin = forkout = -1;
1314 #endif /* not USG */
1315 pty_flag = 1;
1316 }
1317 else
1318 #endif /* HAVE_PTYS */
1319 #ifdef SKTPAIR
1320 {
1321 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1322 report_file_error ("Opening socketpair", Qnil);
1323 outchannel = inchannel = sv[0];
1324 forkout = forkin = sv[1];
1325 }
1326 #else /* not SKTPAIR */
1327 {
1328 pipe (sv);
1329 inchannel = sv[0];
1330 forkout = sv[1];
1331 pipe (sv);
1332 outchannel = sv[1];
1333 forkin = sv[0];
1334 }
1335 #endif /* not SKTPAIR */
1336
1337 #if 0
1338 /* Replaced by close_process_descs */
1339 set_exclusive_use (inchannel);
1340 set_exclusive_use (outchannel);
1341 #endif
1342
1343 /* Stride people say it's a mystery why this is needed
1344 as well as the O_NDELAY, but that it fails without this. */
1345 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1346 {
1347 int one = 1;
1348 ioctl (inchannel, FIONBIO, &one);
1349 }
1350 #endif
1351
1352 #ifdef O_NONBLOCK
1353 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1354 fcntl (outchannel, F_SETFL, O_NONBLOCK);
1355 #else
1356 #ifdef O_NDELAY
1357 fcntl (inchannel, F_SETFL, O_NDELAY);
1358 fcntl (outchannel, F_SETFL, O_NDELAY);
1359 #endif
1360 #endif
1361
1362 /* Record this as an active process, with its channels.
1363 As a result, child_setup will close Emacs's side of the pipes. */
1364 chan_process[inchannel] = process;
1365 XSETINT (XPROCESS (process)->infd, inchannel);
1366 XSETINT (XPROCESS (process)->outfd, outchannel);
1367 /* Record the tty descriptor used in the subprocess. */
1368 if (forkin < 0)
1369 XPROCESS (process)->subtty = Qnil;
1370 else
1371 XSETFASTINT (XPROCESS (process)->subtty, forkin);
1372 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1373 XPROCESS (process)->status = Qrun;
1374 if (!proc_decode_coding_system[inchannel])
1375 proc_decode_coding_system[inchannel]
1376 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1377 setup_coding_system (XPROCESS (process)->decode_coding_system,
1378 proc_decode_coding_system[inchannel]);
1379 if (!proc_encode_coding_system[outchannel])
1380 proc_encode_coding_system[outchannel]
1381 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1382 setup_coding_system (XPROCESS (process)->encode_coding_system,
1383 proc_encode_coding_system[outchannel]);
1384
1385 /* Delay interrupts until we have a chance to store
1386 the new fork's pid in its process structure */
1387 #ifdef POSIX_SIGNALS
1388 sigemptyset (&blocked);
1389 #ifdef SIGCHLD
1390 sigaddset (&blocked, SIGCHLD);
1391 #endif
1392 #ifdef HAVE_VFORK
1393 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1394 this sets the parent's signal handlers as well as the child's.
1395 So delay all interrupts whose handlers the child might munge,
1396 and record the current handlers so they can be restored later. */
1397 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action );
1398 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action);
1399 #ifdef AIX
1400 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action );
1401 #endif
1402 #endif /* HAVE_VFORK */
1403 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1404 #else /* !POSIX_SIGNALS */
1405 #ifdef SIGCHLD
1406 #ifdef BSD4_1
1407 sighold (SIGCHLD);
1408 #else /* not BSD4_1 */
1409 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1410 sigsetmask (sigmask (SIGCHLD));
1411 #else /* ordinary USG */
1412 #if 0
1413 sigchld_deferred = 0;
1414 sigchld = signal (SIGCHLD, create_process_sigchld);
1415 #endif
1416 #endif /* ordinary USG */
1417 #endif /* not BSD4_1 */
1418 #endif /* SIGCHLD */
1419 #endif /* !POSIX_SIGNALS */
1420
1421 FD_SET (inchannel, &input_wait_mask);
1422 FD_SET (inchannel, &non_keyboard_wait_mask);
1423 if (inchannel > max_process_desc)
1424 max_process_desc = inchannel;
1425
1426 /* Until we store the proper pid, enable sigchld_handler
1427 to recognize an unknown pid as standing for this process.
1428 It is very important not to let this `marker' value stay
1429 in the table after this function has returned; if it does
1430 it might cause call-process to hang and subsequent asynchronous
1431 processes to get their return values scrambled. */
1432 XSETINT (XPROCESS (process)->pid, -1);
1433
1434 BLOCK_INPUT;
1435
1436 {
1437 /* child_setup must clobber environ on systems with true vfork.
1438 Protect it from permanent change. */
1439 char **save_environ = environ;
1440
1441 #ifndef WINDOWSNT
1442 pid = vfork ();
1443 if (pid == 0)
1444 #endif /* not WINDOWSNT */
1445 {
1446 int xforkin = forkin;
1447 int xforkout = forkout;
1448
1449 #if 0 /* This was probably a mistake--it duplicates code later on,
1450 but fails to handle all the cases. */
1451 /* Make sure SIGCHLD is not blocked in the child. */
1452 sigsetmask (SIGEMPTYMASK);
1453 #endif
1454
1455 /* Make the pty be the controlling terminal of the process. */
1456 #ifdef HAVE_PTYS
1457 /* First, disconnect its current controlling terminal. */
1458 #ifdef HAVE_SETSID
1459 /* We tried doing setsid only if pty_flag, but it caused
1460 process_set_signal to fail on SGI when using a pipe. */
1461 setsid ();
1462 /* Make the pty's terminal the controlling terminal. */
1463 if (pty_flag)
1464 {
1465 #ifdef TIOCSCTTY
1466 /* We ignore the return value
1467 because faith@cs.unc.edu says that is necessary on Linux. */
1468 ioctl (xforkin, TIOCSCTTY, 0);
1469 #endif
1470 }
1471 #else /* not HAVE_SETSID */
1472 #ifdef USG
1473 /* It's very important to call setpgrp here and no time
1474 afterwards. Otherwise, we lose our controlling tty which
1475 is set when we open the pty. */
1476 setpgrp ();
1477 #endif /* USG */
1478 #endif /* not HAVE_SETSID */
1479 #if defined (HAVE_TERMIOS) && defined (LDISC1)
1480 if (pty_flag && xforkin >= 0)
1481 {
1482 struct termios t;
1483 tcgetattr (xforkin, &t);
1484 t.c_lflag = LDISC1;
1485 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
1486 write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1487 }
1488 #else
1489 #if defined (NTTYDISC) && defined (TIOCSETD)
1490 if (pty_flag && xforkin >= 0)
1491 {
1492 /* Use new line discipline. */
1493 int ldisc = NTTYDISC;
1494 ioctl (xforkin, TIOCSETD, &ldisc);
1495 }
1496 #endif
1497 #endif
1498 #ifdef TIOCNOTTY
1499 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1500 can do TIOCSPGRP only to the process's controlling tty. */
1501 if (pty_flag)
1502 {
1503 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1504 I can't test it since I don't have 4.3. */
1505 int j = open ("/dev/tty", O_RDWR, 0);
1506 ioctl (j, TIOCNOTTY, 0);
1507 close (j);
1508 #ifndef USG
1509 /* In order to get a controlling terminal on some versions
1510 of BSD, it is necessary to put the process in pgrp 0
1511 before it opens the terminal. */
1512 #ifdef HAVE_SETPGID
1513 setpgid (0, 0);
1514 #else
1515 setpgrp (0, 0);
1516 #endif
1517 #endif
1518 }
1519 #endif /* TIOCNOTTY */
1520
1521 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
1522 /*** There is a suggestion that this ought to be a
1523 conditional on TIOCSPGRP,
1524 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1525 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1526 that system does seem to need this code, even though
1527 both HAVE_SETSID and TIOCSCTTY are defined. */
1528 /* Now close the pty (if we had it open) and reopen it.
1529 This makes the pty the controlling terminal of the subprocess. */
1530 if (pty_flag)
1531 {
1532 #ifdef SET_CHILD_PTY_PGRP
1533 int pgrp = getpid ();
1534 #endif
1535
1536 /* I wonder if close (open (pty_name, ...)) would work? */
1537 if (xforkin >= 0)
1538 close (xforkin);
1539 xforkout = xforkin = open (pty_name, O_RDWR, 0);
1540
1541 if (xforkin < 0)
1542 {
1543 write (1, "Couldn't open the pty terminal ", 31);
1544 write (1, pty_name, strlen (pty_name));
1545 write (1, "\n", 1);
1546 _exit (1);
1547 }
1548
1549 #ifdef SET_CHILD_PTY_PGRP
1550 ioctl (xforkin, TIOCSPGRP, &pgrp);
1551 ioctl (xforkout, TIOCSPGRP, &pgrp);
1552 #endif
1553 }
1554 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
1555
1556 #ifdef SETUP_SLAVE_PTY
1557 if (pty_flag)
1558 {
1559 SETUP_SLAVE_PTY;
1560 }
1561 #endif /* SETUP_SLAVE_PTY */
1562 #ifdef AIX
1563 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1564 Now reenable it in the child, so it will die when we want it to. */
1565 if (pty_flag)
1566 signal (SIGHUP, SIG_DFL);
1567 #endif
1568 #endif /* HAVE_PTYS */
1569
1570 signal (SIGINT, SIG_DFL);
1571 signal (SIGQUIT, SIG_DFL);
1572
1573 /* Stop blocking signals in the child. */
1574 #ifdef POSIX_SIGNALS
1575 sigprocmask (SIG_SETMASK, &procmask, 0);
1576 #else /* !POSIX_SIGNALS */
1577 #ifdef SIGCHLD
1578 #ifdef BSD4_1
1579 sigrelse (SIGCHLD);
1580 #else /* not BSD4_1 */
1581 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1582 sigsetmask (SIGEMPTYMASK);
1583 #else /* ordinary USG */
1584 #if 0
1585 signal (SIGCHLD, sigchld);
1586 #endif
1587 #endif /* ordinary USG */
1588 #endif /* not BSD4_1 */
1589 #endif /* SIGCHLD */
1590 #endif /* !POSIX_SIGNALS */
1591
1592 if (pty_flag)
1593 child_setup_tty (xforkout);
1594 #ifdef WINDOWSNT
1595 pid = child_setup (xforkin, xforkout, xforkout,
1596 new_argv, 1, current_dir);
1597 #else /* not WINDOWSNT */
1598 child_setup (xforkin, xforkout, xforkout,
1599 new_argv, 1, current_dir);
1600 #endif /* not WINDOWSNT */
1601 }
1602 environ = save_environ;
1603 }
1604
1605 UNBLOCK_INPUT;
1606
1607 /* This runs in the Emacs process. */
1608 if (pid < 0)
1609 {
1610 if (forkin >= 0)
1611 close (forkin);
1612 if (forkin != forkout && forkout >= 0)
1613 close (forkout);
1614 }
1615 else
1616 {
1617 /* vfork succeeded. */
1618 XSETFASTINT (XPROCESS (process)->pid, pid);
1619
1620 #ifdef WINDOWSNT
1621 register_child (pid, inchannel);
1622 #endif /* WINDOWSNT */
1623
1624 /* If the subfork execv fails, and it exits,
1625 this close hangs. I don't know why.
1626 So have an interrupt jar it loose. */
1627 stop_polling ();
1628 signal (SIGALRM, create_process_1);
1629 alarm (1);
1630 XPROCESS (process)->subtty = Qnil;
1631 if (forkin >= 0)
1632 close (forkin);
1633 alarm (0);
1634 start_polling ();
1635 if (forkin != forkout && forkout >= 0)
1636 close (forkout);
1637
1638 #ifdef HAVE_PTYS
1639 if (pty_flag)
1640 XPROCESS (process)->tty_name = build_string (pty_name);
1641 else
1642 #endif
1643 XPROCESS (process)->tty_name = Qnil;
1644 }
1645
1646 /* Restore the signal state whether vfork succeeded or not.
1647 (We will signal an error, below, if it failed.) */
1648 #ifdef POSIX_SIGNALS
1649 #ifdef HAVE_VFORK
1650 /* Restore the parent's signal handlers. */
1651 sigaction (SIGINT, &sigint_action, 0);
1652 sigaction (SIGQUIT, &sigquit_action, 0);
1653 #ifdef AIX
1654 sigaction (SIGHUP, &sighup_action, 0);
1655 #endif
1656 #endif /* HAVE_VFORK */
1657 /* Stop blocking signals in the parent. */
1658 sigprocmask (SIG_SETMASK, &procmask, 0);
1659 #else /* !POSIX_SIGNALS */
1660 #ifdef SIGCHLD
1661 #ifdef BSD4_1
1662 sigrelse (SIGCHLD);
1663 #else /* not BSD4_1 */
1664 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1665 sigsetmask (SIGEMPTYMASK);
1666 #else /* ordinary USG */
1667 #if 0
1668 signal (SIGCHLD, sigchld);
1669 /* Now really handle any of these signals
1670 that came in during this function. */
1671 if (sigchld_deferred)
1672 kill (getpid (), SIGCHLD);
1673 #endif
1674 #endif /* ordinary USG */
1675 #endif /* not BSD4_1 */
1676 #endif /* SIGCHLD */
1677 #endif /* !POSIX_SIGNALS */
1678
1679 /* Now generate the error if vfork failed. */
1680 if (pid < 0)
1681 report_file_error ("Doing vfork", Qnil);
1682 }
1683 #endif /* not VMS */
1684
1685 #ifdef HAVE_SOCKETS
1686
1687 /* open a TCP network connection to a given HOST/SERVICE. Treated
1688 exactly like a normal process when reading and writing. Only
1689 differences are in status display and process deletion. A network
1690 connection has no PID; you cannot signal it. All you can do is
1691 deactivate and close it via delete-process */
1692
1693 DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream,
1694 4, 4, 0,
1695 "Open a TCP connection for a service to a host.\n\
1696 Returns a subprocess-object to represent the connection.\n\
1697 Input and output work as for subprocesses; `delete-process' closes it.\n\
1698 Args are NAME BUFFER HOST SERVICE.\n\
1699 NAME is name for process. It is modified if necessary to make it unique.\n\
1700 BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1701 Process output goes at end of that buffer, unless you specify\n\
1702 an output stream or filter function to handle the output.\n\
1703 BUFFER may be also nil, meaning that this process is not associated\n\
1704 with any buffer\n\
1705 Third arg is name of the host to connect to, or its IP address.\n\
1706 Fourth arg SERVICE is name of the service desired, or an integer\n\
1707 specifying a port number to connect to.")
1708 (name, buffer, host, service)
1709 Lisp_Object name, buffer, host, service;
1710 {
1711 Lisp_Object proc;
1712 register int i;
1713 struct sockaddr_in address;
1714 struct servent *svc_info;
1715 struct hostent *host_info_ptr, host_info;
1716 char *(addr_list[2]);
1717 IN_ADDR numeric_addr;
1718 int s, outch, inch;
1719 char errstring[80];
1720 int port;
1721 struct hostent host_info_fixed;
1722 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1723 int retry = 0;
1724 int count = specpdl_ptr - specpdl;
1725
1726 #ifdef WINDOWSNT
1727 /* Ensure socket support is loaded if available. */
1728 init_winsock (TRUE);
1729 #endif
1730
1731 GCPRO4 (name, buffer, host, service);
1732 CHECK_STRING (name, 0);
1733 CHECK_STRING (host, 0);
1734 if (INTEGERP (service))
1735 port = htons ((unsigned short) XINT (service));
1736 else
1737 {
1738 CHECK_STRING (service, 0);
1739 svc_info = getservbyname (XSTRING (service)->data, "tcp");
1740 if (svc_info == 0)
1741 error ("Unknown service \"%s\"", XSTRING (service)->data);
1742 port = svc_info->s_port;
1743 }
1744
1745 /* Slow down polling to every ten seconds.
1746 Some kernels have a bug which causes retrying connect to fail
1747 after a connect. Polling can interfere with gethostbyname too. */
1748 #ifdef POLL_FOR_INPUT
1749 bind_polling_period (10);
1750 #endif
1751
1752 #ifndef TERM
1753 while (1)
1754 {
1755 #ifdef TRY_AGAIN
1756 h_errno = 0;
1757 #endif
1758 immediate_quit = 1;
1759 QUIT;
1760 host_info_ptr = gethostbyname (XSTRING (host)->data);
1761 immediate_quit = 0;
1762 #ifdef TRY_AGAIN
1763 if (! (host_info_ptr == 0 && h_errno == TRY_AGAIN))
1764 #endif
1765 break;
1766 Fsleep_for (make_number (1), Qnil);
1767 }
1768 if (host_info_ptr == 0)
1769 /* Attempt to interpret host as numeric inet address */
1770 {
1771 numeric_addr = inet_addr ((char *) XSTRING (host)->data);
1772 if (NUMERIC_ADDR_ERROR)
1773 error ("Unknown host \"%s\"", XSTRING (host)->data);
1774
1775 host_info_ptr = &host_info;
1776 host_info.h_name = 0;
1777 host_info.h_aliases = 0;
1778 host_info.h_addrtype = AF_INET;
1779 #ifdef h_addr
1780 /* Older machines have only one address slot called h_addr.
1781 Newer machines have h_addr_list, but #define h_addr to
1782 be its first element. */
1783 host_info.h_addr_list = &(addr_list[0]);
1784 #endif
1785 host_info.h_addr = (char*)(&numeric_addr);
1786 addr_list[1] = 0;
1787 /* numeric_addr isn't null-terminated; it has fixed length. */
1788 host_info.h_length = sizeof (numeric_addr);
1789 }
1790
1791 bzero (&address, sizeof address);
1792 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr,
1793 host_info_ptr->h_length);
1794 address.sin_family = host_info_ptr->h_addrtype;
1795 address.sin_port = port;
1796
1797 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0);
1798 if (s < 0)
1799 report_file_error ("error creating socket", Fcons (name, Qnil));
1800
1801 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
1802 when connect is interrupted. So let's not let it get interrupted.
1803 Note we do not turn off polling, because polling is only used
1804 when not interrupt_input, and thus not normally used on the systems
1805 which have this bug. On systems which use polling, there's no way
1806 to quit if polling is turned off. */
1807 if (interrupt_input)
1808 unrequest_sigio ();
1809
1810 loop:
1811
1812 immediate_quit = 1;
1813 QUIT;
1814
1815 if (connect (s, (struct sockaddr *) &address, sizeof address) == -1
1816 && errno != EISCONN)
1817 {
1818 int xerrno = errno;
1819
1820 immediate_quit = 0;
1821
1822 if (errno == EINTR)
1823 goto loop;
1824 if (errno == EADDRINUSE && retry < 20)
1825 {
1826 /* A delay here is needed on some FreeBSD systems,
1827 and it is harmless, since this retrying takes time anyway
1828 and should be infrequent. */
1829 Fsleep_for (make_number (1), Qnil);
1830 retry++;
1831 goto loop;
1832 }
1833
1834 close (s);
1835
1836 if (interrupt_input)
1837 request_sigio ();
1838
1839 errno = xerrno;
1840 report_file_error ("connection failed",
1841 Fcons (host, Fcons (name, Qnil)));
1842 }
1843
1844 immediate_quit = 0;
1845
1846 #ifdef POLL_FOR_INPUT
1847 unbind_to (count, Qnil);
1848 #endif
1849
1850 if (interrupt_input)
1851 request_sigio ();
1852
1853 #else /* TERM */
1854 s = connect_server (0);
1855 if (s < 0)
1856 report_file_error ("error creating socket", Fcons (name, Qnil));
1857 send_command (s, C_PORT, 0, "%s:%d", XSTRING (host)->data, ntohs (port));
1858 send_command (s, C_DUMB, 1, 0);
1859 #endif /* TERM */
1860
1861 inch = s;
1862 outch = s;
1863
1864 if (!NILP (buffer))
1865 buffer = Fget_buffer_create (buffer);
1866 proc = make_process (name);
1867
1868 chan_process[inch] = proc;
1869
1870 #ifdef O_NONBLOCK
1871 fcntl (inch, F_SETFL, O_NONBLOCK);
1872 #else
1873 #ifdef O_NDELAY
1874 fcntl (inch, F_SETFL, O_NDELAY);
1875 #endif
1876 #endif
1877
1878 XPROCESS (proc)->childp = Fcons (host, Fcons (service, Qnil));
1879 XPROCESS (proc)->command_channel_p = Qnil;
1880 XPROCESS (proc)->buffer = buffer;
1881 XPROCESS (proc)->sentinel = Qnil;
1882 XPROCESS (proc)->filter = Qnil;
1883 XPROCESS (proc)->command = Qnil;
1884 XPROCESS (proc)->pid = Qnil;
1885 XSETINT (XPROCESS (proc)->infd, inch);
1886 XSETINT (XPROCESS (proc)->outfd, outch);
1887 XPROCESS (proc)->status = Qrun;
1888 FD_SET (inch, &input_wait_mask);
1889 FD_SET (inch, &non_keyboard_wait_mask);
1890 if (inch > max_process_desc)
1891 max_process_desc = inch;
1892
1893 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters)
1894 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters))
1895 {
1896 XPROCESS (proc)->decode_coding_system = Qnil;
1897 XPROCESS (proc)->encode_coding_system = Qnil;
1898 }
1899 else
1900 {
1901 /* Setup coding systems for communicating with the network stream. */
1902 struct gcpro gcpro1;
1903 /* Qt denotes that we have not yet called Ffind_coding_system. */
1904 Lisp_Object coding_systems = Qt;
1905 Lisp_Object args[5], val;
1906
1907 if (NILP (val = Vcoding_system_for_read))
1908 {
1909 args[0] = Qopen_network_stream, args[1] = name,
1910 args[2] = buffer, args[3] = host, args[4] = service;
1911 GCPRO1 (proc);
1912 coding_systems = Ffind_coding_system (5, args);
1913 UNGCPRO;
1914 if (CONSP (coding_systems))
1915 val = XCONS (coding_systems)->car;
1916 else if (CONSP (Vdefault_process_coding_system))
1917 val = XCONS (Vdefault_process_coding_system)->car;
1918 }
1919 XPROCESS (proc)->decode_coding_system = val;
1920
1921 if (NILP (val = Vcoding_system_for_write))
1922 {
1923 if (EQ (coding_systems, Qt))
1924 {
1925 args[0] = Qopen_network_stream, args[1] = name,
1926 args[2] = buffer, args[3] = host, args[4] = service;
1927 GCPRO1 (proc);
1928 coding_systems = Ffind_coding_system (5, args);
1929 UNGCPRO;
1930 }
1931 if (CONSP (coding_systems))
1932 val = XCONS (coding_systems)->cdr;
1933 else if (CONSP (Vdefault_process_coding_system))
1934 val = XCONS (Vdefault_process_coding_system)->cdr;
1935 }
1936 XPROCESS (proc)->encode_coding_system = val;
1937 }
1938
1939 if (!proc_decode_coding_system[inch])
1940 proc_decode_coding_system[inch]
1941 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1942 setup_coding_system (XPROCESS (proc)->decode_coding_system,
1943 proc_decode_coding_system[inch]);
1944 if (!proc_encode_coding_system[outch])
1945 proc_encode_coding_system[outch]
1946 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
1947 setup_coding_system (XPROCESS (proc)->encode_coding_system,
1948 proc_encode_coding_system[outch]);
1949
1950 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
1951 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1952
1953 UNGCPRO;
1954 return proc;
1955 }
1956 #endif /* HAVE_SOCKETS */
1957
1958 deactivate_process (proc)
1959 Lisp_Object proc;
1960 {
1961 register int inchannel, outchannel;
1962 register struct Lisp_Process *p = XPROCESS (proc);
1963
1964 inchannel = XINT (p->infd);
1965 outchannel = XINT (p->outfd);
1966
1967 if (inchannel >= 0)
1968 {
1969 /* Beware SIGCHLD hereabouts. */
1970 flush_pending_output (inchannel);
1971 #ifdef VMS
1972 {
1973 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
1974 sys$dassgn (outchannel);
1975 vs = get_vms_process_pointer (p->pid);
1976 if (vs)
1977 give_back_vms_process_stuff (vs);
1978 }
1979 #else
1980 close (inchannel);
1981 if (outchannel >= 0 && outchannel != inchannel)
1982 close (outchannel);
1983 #endif
1984
1985 XSETINT (p->infd, -1);
1986 XSETINT (p->outfd, -1);
1987 chan_process[inchannel] = Qnil;
1988 FD_CLR (inchannel, &input_wait_mask);
1989 FD_CLR (inchannel, &non_keyboard_wait_mask);
1990 if (inchannel == max_process_desc)
1991 {
1992 int i;
1993 /* We just closed the highest-numbered process input descriptor,
1994 so recompute the highest-numbered one now. */
1995 max_process_desc = 0;
1996 for (i = 0; i < MAXDESC; i++)
1997 if (!NILP (chan_process[i]))
1998 max_process_desc = i;
1999 }
2000 }
2001 }
2002
2003 /* Close all descriptors currently in use for communication
2004 with subprocess. This is used in a newly-forked subprocess
2005 to get rid of irrelevant descriptors. */
2006
2007 close_process_descs ()
2008 {
2009 #ifndef WINDOWSNT
2010 int i;
2011 for (i = 0; i < MAXDESC; i++)
2012 {
2013 Lisp_Object process;
2014 process = chan_process[i];
2015 if (!NILP (process))
2016 {
2017 int in = XINT (XPROCESS (process)->infd);
2018 int out = XINT (XPROCESS (process)->outfd);
2019 if (in >= 0)
2020 close (in);
2021 if (out >= 0 && in != out)
2022 close (out);
2023 }
2024 }
2025 #endif
2026 }
2027 \f
2028 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
2029 0, 3, 0,
2030 "Allow any pending output from subprocesses to be read by Emacs.\n\
2031 It is read into the process' buffers or given to their filter functions.\n\
2032 Non-nil arg PROCESS means do not return until some output has been received\n\
2033 from PROCESS.\n\
2034 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
2035 seconds and microseconds to wait; return after that much time whether\n\
2036 or not there is input.\n\
2037 Return non-nil iff we received any output before the timeout expired.")
2038 (process, timeout, timeout_msecs)
2039 register Lisp_Object process, timeout, timeout_msecs;
2040 {
2041 int seconds;
2042 int useconds;
2043
2044 if (! NILP (timeout_msecs))
2045 {
2046 CHECK_NUMBER (timeout_msecs, 2);
2047 useconds = XINT (timeout_msecs);
2048 if (!INTEGERP (timeout))
2049 XSETINT (timeout, 0);
2050
2051 {
2052 int carry = useconds / 1000000;
2053
2054 XSETINT (timeout, XINT (timeout) + carry);
2055 useconds -= carry * 1000000;
2056
2057 /* I think this clause is necessary because C doesn't
2058 guarantee a particular rounding direction for negative
2059 integers. */
2060 if (useconds < 0)
2061 {
2062 XSETINT (timeout, XINT (timeout) - 1);
2063 useconds += 1000000;
2064 }
2065 }
2066 }
2067 else
2068 useconds = 0;
2069
2070 if (! NILP (timeout))
2071 {
2072 CHECK_NUMBER (timeout, 1);
2073 seconds = XINT (timeout);
2074 if (seconds < 0 || (seconds == 0 && useconds == 0))
2075 seconds = -1;
2076 }
2077 else
2078 {
2079 if (NILP (process))
2080 seconds = -1;
2081 else
2082 seconds = 0;
2083 }
2084
2085 if (NILP (process))
2086 XSETFASTINT (process, 0);
2087
2088 return
2089 (wait_reading_process_input (seconds, useconds, process, 0)
2090 ? Qt : Qnil);
2091 }
2092
2093 /* This variable is different from waiting_for_input in keyboard.c.
2094 It is used to communicate to a lisp process-filter/sentinel (via the
2095 function Fwaiting_for_user_input_p below) whether emacs was waiting
2096 for user-input when that process-filter was called.
2097 waiting_for_input cannot be used as that is by definition 0 when
2098 lisp code is being evalled.
2099 This is also used in record_asynch_buffer_change.
2100 For that purpose, this must be 0
2101 when not inside wait_reading_process_input. */
2102 static int waiting_for_user_input_p;
2103
2104 /* This is here so breakpoints can be put on it. */
2105 static
2106 wait_reading_process_input_1 ()
2107 {
2108 }
2109
2110 /* Read and dispose of subprocess output while waiting for timeout to
2111 elapse and/or keyboard input to be available.
2112
2113 TIME_LIMIT is:
2114 timeout in seconds, or
2115 zero for no limit, or
2116 -1 means gobble data immediately available but don't wait for any.
2117
2118 MICROSECS is:
2119 an additional duration to wait, measured in microseconds.
2120 If this is nonzero and time_limit is 0, then the timeout
2121 consists of MICROSECS only.
2122
2123 READ_KBD is a lisp value:
2124 0 to ignore keyboard input, or
2125 1 to return when input is available, or
2126 -1 meaning caller will actually read the input, so don't throw to
2127 the quit handler, or
2128 a cons cell, meaning wait until its car is non-nil
2129 (and gobble terminal input into the buffer if any arrives), or
2130 a process object, meaning wait until something arrives from that
2131 process. The return value is true iff we read some input from
2132 that process.
2133
2134 DO_DISPLAY != 0 means redisplay should be done to show subprocess
2135 output that arrives.
2136
2137 If READ_KBD is a pointer to a struct Lisp_Process, then the
2138 function returns true iff we received input from that process
2139 before the timeout elapsed.
2140 Otherwise, return true iff we received input from any process. */
2141
2142 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
2143 int time_limit, microsecs;
2144 Lisp_Object read_kbd;
2145 int do_display;
2146 {
2147 register int channel, nfds, m;
2148 static SELECT_TYPE Available;
2149 int xerrno;
2150 Lisp_Object proc;
2151 EMACS_TIME timeout, end_time, garbage;
2152 SELECT_TYPE Atemp;
2153 int wait_channel = -1;
2154 struct Lisp_Process *wait_proc = 0;
2155 int got_some_input = 0;
2156 Lisp_Object *wait_for_cell = 0;
2157
2158 FD_ZERO (&Available);
2159
2160 /* If read_kbd is a process to watch, set wait_proc and wait_channel
2161 accordingly. */
2162 if (PROCESSP (read_kbd))
2163 {
2164 wait_proc = XPROCESS (read_kbd);
2165 wait_channel = XINT (wait_proc->infd);
2166 XSETFASTINT (read_kbd, 0);
2167 }
2168
2169 /* If waiting for non-nil in a cell, record where. */
2170 if (CONSP (read_kbd))
2171 {
2172 wait_for_cell = &XCONS (read_kbd)->car;
2173 XSETFASTINT (read_kbd, 0);
2174 }
2175
2176 waiting_for_user_input_p = XINT (read_kbd);
2177
2178 /* Since we may need to wait several times,
2179 compute the absolute time to return at. */
2180 if (time_limit || microsecs)
2181 {
2182 EMACS_GET_TIME (end_time);
2183 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
2184 EMACS_ADD_TIME (end_time, end_time, timeout);
2185 }
2186 #ifdef hpux
2187 /* AlainF 5-Jul-1996
2188 HP-UX 10.10 seem to have problems with signals coming in
2189 Causes "poll: interrupted system call" messages when Emacs is run
2190 in an X window
2191 Turn off periodic alarms (in case they are in use) */
2192 stop_polling ();
2193 #endif
2194
2195 while (1)
2196 {
2197 int timeout_reduced_for_timers = 0;
2198
2199 /* If calling from keyboard input, do not quit
2200 since we want to return C-g as an input character.
2201 Otherwise, do pending quit if requested. */
2202 if (XINT (read_kbd) >= 0)
2203 QUIT;
2204
2205 /* Exit now if the cell we're waiting for became non-nil. */
2206 if (wait_for_cell && ! NILP (*wait_for_cell))
2207 break;
2208
2209 /* Compute time from now till when time limit is up */
2210 /* Exit if already run out */
2211 if (time_limit == -1)
2212 {
2213 /* -1 specified for timeout means
2214 gobble output available now
2215 but don't wait at all. */
2216
2217 EMACS_SET_SECS_USECS (timeout, 0, 0);
2218 }
2219 else if (time_limit || microsecs)
2220 {
2221 EMACS_GET_TIME (timeout);
2222 EMACS_SUB_TIME (timeout, end_time, timeout);
2223 if (EMACS_TIME_NEG_P (timeout))
2224 break;
2225 }
2226 else
2227 {
2228 EMACS_SET_SECS_USECS (timeout, 100000, 0);
2229 }
2230
2231 /* Normally we run timers here.
2232 But not if wait_for_cell; in those cases,
2233 the wait is supposed to be short,
2234 and those callers cannot handle running arbitrary Lisp code here. */
2235 if (! wait_for_cell)
2236 {
2237 EMACS_TIME timer_delay;
2238 int old_timers_run;
2239
2240 retry:
2241 old_timers_run = timers_run;
2242 timer_delay = timer_check (1);
2243 if (timers_run != old_timers_run && do_display)
2244 {
2245 redisplay_preserve_echo_area ();
2246 /* We must retry, since a timer may have requeued itself
2247 and that could alter the time_delay. */
2248 goto retry;
2249 }
2250
2251 /* If there is unread keyboard input, also return. */
2252 if (XINT (read_kbd) != 0
2253 && requeued_events_pending_p ())
2254 break;
2255
2256 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
2257 {
2258 EMACS_TIME difference;
2259 EMACS_SUB_TIME (difference, timer_delay, timeout);
2260 if (EMACS_TIME_NEG_P (difference))
2261 {
2262 timeout = timer_delay;
2263 timeout_reduced_for_timers = 1;
2264 }
2265 }
2266 /* If time_limit is -1, we are not going to wait at all. */
2267 else if (time_limit != -1)
2268 {
2269 /* This is so a breakpoint can be put here. */
2270 wait_reading_process_input_1 ();
2271 }
2272 }
2273
2274 /* Cause C-g and alarm signals to take immediate action,
2275 and cause input available signals to zero out timeout.
2276
2277 It is important that we do this before checking for process
2278 activity. If we get a SIGCHLD after the explicit checks for
2279 process activity, timeout is the only way we will know. */
2280 if (XINT (read_kbd) < 0)
2281 set_waiting_for_input (&timeout);
2282
2283 /* If status of something has changed, and no input is
2284 available, notify the user of the change right away. After
2285 this explicit check, we'll let the SIGCHLD handler zap
2286 timeout to get our attention. */
2287 if (update_tick != process_tick && do_display)
2288 {
2289 Atemp = input_wait_mask;
2290 EMACS_SET_SECS_USECS (timeout, 0, 0);
2291 if ((select (MAXDESC, &Atemp, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
2292 &timeout)
2293 <= 0))
2294 {
2295 /* It's okay for us to do this and then continue with
2296 the loop, since timeout has already been zeroed out. */
2297 clear_waiting_for_input ();
2298 status_notify ();
2299 }
2300 }
2301
2302 /* Don't wait for output from a non-running process. */
2303 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
2304 update_status (wait_proc);
2305 if (wait_proc != 0
2306 && ! EQ (wait_proc->status, Qrun))
2307 {
2308 int nread, total_nread;
2309
2310 clear_waiting_for_input ();
2311 XSETPROCESS (proc, wait_proc);
2312
2313 /* Read data from the process, until we exhaust it. */
2314 while (nread = read_process_output (proc, XINT (wait_proc->infd)))
2315 total_nread += nread;
2316 if (total_nread > 0 && do_display)
2317 redisplay_preserve_echo_area ();
2318
2319 break;
2320 }
2321
2322 /* Wait till there is something to do */
2323
2324 if (wait_for_cell)
2325 Available = non_process_wait_mask;
2326 else if (! XINT (read_kbd))
2327 Available = non_keyboard_wait_mask;
2328 else
2329 Available = input_wait_mask;
2330
2331 /* If frame size has changed or the window is newly mapped,
2332 redisplay now, before we start to wait. There is a race
2333 condition here; if a SIGIO arrives between now and the select
2334 and indicates that a frame is trashed, the select may block
2335 displaying a trashed screen. */
2336 if (frame_garbaged && do_display)
2337 {
2338 clear_waiting_for_input ();
2339 redisplay_preserve_echo_area ();
2340 if (XINT (read_kbd) < 0)
2341 set_waiting_for_input (&timeout);
2342 }
2343
2344 if (XINT (read_kbd) && detect_input_pending ())
2345 {
2346 nfds = 0;
2347 FD_ZERO (&Available);
2348 }
2349 else
2350 nfds = select (MAXDESC, &Available, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
2351 &timeout);
2352
2353 xerrno = errno;
2354
2355 /* Make C-g and alarm signals set flags again */
2356 clear_waiting_for_input ();
2357
2358 /* If we woke up due to SIGWINCH, actually change size now. */
2359 do_pending_window_change ();
2360
2361 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
2362 /* We wanted the full specified time, so return now. */
2363 break;
2364 if (nfds < 0)
2365 {
2366 if (xerrno == EINTR)
2367 FD_ZERO (&Available);
2368 #ifdef ultrix
2369 /* Ultrix select seems to return ENOMEM when it is
2370 interrupted. Treat it just like EINTR. Bleah. Note
2371 that we want to test for the "ultrix" CPP symbol, not
2372 "__ultrix__"; the latter is only defined under GCC, but
2373 not by DEC's bundled CC. -JimB */
2374 else if (xerrno == ENOMEM)
2375 FD_ZERO (&Available);
2376 #endif
2377 #ifdef ALLIANT
2378 /* This happens for no known reason on ALLIANT.
2379 I am guessing that this is the right response. -- RMS. */
2380 else if (xerrno == EFAULT)
2381 FD_ZERO (&Available);
2382 #endif
2383 else if (xerrno == EBADF)
2384 {
2385 #ifdef AIX
2386 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
2387 the child's closure of the pts gives the parent a SIGHUP, and
2388 the ptc file descriptor is automatically closed,
2389 yielding EBADF here or at select() call above.
2390 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
2391 in m/ibmrt-aix.h), and here we just ignore the select error.
2392 Cleanup occurs c/o status_notify after SIGCLD. */
2393 FD_ZERO (&Available); /* Cannot depend on values returned */
2394 #else
2395 abort ();
2396 #endif
2397 }
2398 else
2399 error ("select error: %s", strerror (xerrno));
2400 }
2401 #if defined(sun) && !defined(USG5_4)
2402 else if (nfds > 0 && keyboard_bit_set (&Available)
2403 && interrupt_input)
2404 /* System sometimes fails to deliver SIGIO.
2405
2406 David J. Mackenzie says that Emacs doesn't compile under
2407 Solaris if this code is enabled, thus the USG5_4 in the CPP
2408 conditional. "I haven't noticed any ill effects so far.
2409 If you find a Solaris expert somewhere, they might know
2410 better." */
2411 kill (getpid (), SIGIO);
2412 #endif
2413
2414 /* Check for keyboard input */
2415 /* If there is any, return immediately
2416 to give it higher priority than subprocesses */
2417
2418 if ((XINT (read_kbd) != 0)
2419 && detect_input_pending_run_timers (do_display))
2420 {
2421 swallow_events (do_display);
2422 if (detect_input_pending_run_timers (do_display))
2423 break;
2424 }
2425
2426 /* If there is unread keyboard input, also return. */
2427 if (XINT (read_kbd) != 0
2428 && requeued_events_pending_p ())
2429 break;
2430
2431 /* If wait_for_cell. check for keyboard input
2432 but don't run any timers.
2433 ??? (It seems wrong to me to check for keyboard
2434 input at all when wait_for_cell, but the code
2435 has been this way since July 1994.
2436 Try changing this after version 19.31.) */
2437 if (wait_for_cell
2438 && detect_input_pending ())
2439 {
2440 swallow_events (do_display);
2441 if (detect_input_pending ())
2442 break;
2443 }
2444
2445 /* Exit now if the cell we're waiting for became non-nil. */
2446 if (wait_for_cell && ! NILP (*wait_for_cell))
2447 break;
2448
2449 #ifdef SIGIO
2450 /* If we think we have keyboard input waiting, but didn't get SIGIO
2451 go read it. This can happen with X on BSD after logging out.
2452 In that case, there really is no input and no SIGIO,
2453 but select says there is input. */
2454
2455 if (XINT (read_kbd) && interrupt_input
2456 && (keyboard_bit_set (&Available)))
2457 kill (getpid (), SIGIO);
2458 #endif
2459
2460 if (! wait_proc)
2461 got_some_input |= nfds > 0;
2462
2463 /* If checking input just got us a size-change event from X,
2464 obey it now if we should. */
2465 if (XINT (read_kbd) || wait_for_cell)
2466 do_pending_window_change ();
2467
2468 /* Check for data from a process. */
2469 /* Really FIRST_PROC_DESC should be 0 on Unix,
2470 but this is safer in the short run. */
2471 for (channel = 0; channel <= max_process_desc; channel++)
2472 {
2473 if (FD_ISSET (channel, &Available)
2474 && FD_ISSET (channel, &non_keyboard_wait_mask))
2475 {
2476 int nread;
2477
2478 /* If waiting for this channel, arrange to return as
2479 soon as no more input to be processed. No more
2480 waiting. */
2481 if (wait_channel == channel)
2482 {
2483 wait_channel = -1;
2484 time_limit = -1;
2485 got_some_input = 1;
2486 }
2487 proc = chan_process[channel];
2488 if (NILP (proc))
2489 continue;
2490
2491 /* Read data from the process, starting with our
2492 buffered-ahead character if we have one. */
2493
2494 nread = read_process_output (proc, channel);
2495 if (nread > 0)
2496 {
2497 /* Since read_process_output can run a filter,
2498 which can call accept-process-output,
2499 don't try to read from any other processes
2500 before doing the select again. */
2501 FD_ZERO (&Available);
2502
2503 if (do_display)
2504 redisplay_preserve_echo_area ();
2505 }
2506 #ifdef EWOULDBLOCK
2507 else if (nread == -1 && errno == EWOULDBLOCK)
2508 ;
2509 #endif
2510 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
2511 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
2512 #ifdef O_NONBLOCK
2513 else if (nread == -1 && errno == EAGAIN)
2514 ;
2515 #else
2516 #ifdef O_NDELAY
2517 else if (nread == -1 && errno == EAGAIN)
2518 ;
2519 /* Note that we cannot distinguish between no input
2520 available now and a closed pipe.
2521 With luck, a closed pipe will be accompanied by
2522 subprocess termination and SIGCHLD. */
2523 else if (nread == 0 && !NETCONN_P (proc))
2524 ;
2525 #endif /* O_NDELAY */
2526 #endif /* O_NONBLOCK */
2527 #ifdef HAVE_PTYS
2528 /* On some OSs with ptys, when the process on one end of
2529 a pty exits, the other end gets an error reading with
2530 errno = EIO instead of getting an EOF (0 bytes read).
2531 Therefore, if we get an error reading and errno =
2532 EIO, just continue, because the child process has
2533 exited and should clean itself up soon (e.g. when we
2534 get a SIGCHLD). */
2535 else if (nread == -1 && errno == EIO)
2536 ;
2537 #endif /* HAVE_PTYS */
2538 /* If we can detect process termination, don't consider the process
2539 gone just because its pipe is closed. */
2540 #ifdef SIGCHLD
2541 else if (nread == 0 && !NETCONN_P (proc))
2542 ;
2543 #endif
2544 else
2545 {
2546 /* Preserve status of processes already terminated. */
2547 XSETINT (XPROCESS (proc)->tick, ++process_tick);
2548 deactivate_process (proc);
2549 if (!NILP (XPROCESS (proc)->raw_status_low))
2550 update_status (XPROCESS (proc));
2551 if (EQ (XPROCESS (proc)->status, Qrun))
2552 XPROCESS (proc)->status
2553 = Fcons (Qexit, Fcons (make_number (256), Qnil));
2554 }
2555 }
2556 } /* end for each file descriptor */
2557 } /* end while exit conditions not met */
2558
2559 waiting_for_user_input_p = 0;
2560
2561 /* If calling from keyboard input, do not quit
2562 since we want to return C-g as an input character.
2563 Otherwise, do pending quit if requested. */
2564 if (XINT (read_kbd) >= 0)
2565 {
2566 /* Prevent input_pending from remaining set if we quit. */
2567 clear_input_pending ();
2568 QUIT;
2569 }
2570 #ifdef hpux
2571 /* AlainF 5-Jul-1996
2572 HP-UX 10.10 seems to have problems with signals coming in
2573 Causes "poll: interrupted system call" messages when Emacs is run
2574 in an X window
2575 Turn periodic alarms back on */
2576 start_polling();
2577 #endif
2578
2579 return got_some_input;
2580 }
2581 \f
2582 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
2583
2584 static Lisp_Object
2585 read_process_output_call (fun_and_args)
2586 Lisp_Object fun_and_args;
2587 {
2588 return apply1 (XCONS (fun_and_args)->car, XCONS (fun_and_args)->cdr);
2589 }
2590
2591 static Lisp_Object
2592 read_process_output_error_handler (error)
2593 Lisp_Object error;
2594 {
2595 cmd_error_internal (error, "error in process filter: ");
2596 Vinhibit_quit = Qt;
2597 update_echo_area ();
2598 Fsleep_for (make_number (2), Qnil);
2599 }
2600
2601 #ifdef WINDOWSNT
2602 #define READ_CHILD_OUTPUT read_child_output
2603 #else
2604 #define READ_CHILD_OUTPUT read
2605 #endif
2606
2607 /* Read pending output from the process channel,
2608 starting with our buffered-ahead character if we have one.
2609 Yield number of decoded characters read.
2610
2611 This function reads at most 1024 characters.
2612 If you want to read all available subprocess output,
2613 you must call it repeatedly until it returns zero.
2614
2615 The characters read are decoded according to PROC's coding-system
2616 for decoding. */
2617
2618 read_process_output (proc, channel)
2619 Lisp_Object proc;
2620 register int channel;
2621 {
2622 register int nchars;
2623 char *chars;
2624 #ifdef VMS
2625 int chars_allocated = 0; /* If 1, `chars' should be freed later. */
2626 #else
2627 char buf[1024];
2628 #endif
2629 register Lisp_Object outstream;
2630 register struct buffer *old = current_buffer;
2631 register struct Lisp_Process *p = XPROCESS (proc);
2632 register int opoint;
2633 struct coding_system *coding = proc_decode_coding_system[channel];
2634 int chars_in_decoding_buf = 0; /* If 1, `chars' points
2635 XSTRING (p->decoding_buf)->data. */
2636
2637 #ifdef VMS
2638 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2639
2640 vs = get_vms_process_pointer (p->pid);
2641 if (vs)
2642 {
2643 if (!vs->iosb[0])
2644 return(0); /* Really weird if it does this */
2645 if (!(vs->iosb[0] & 1))
2646 return -1; /* I/O error */
2647 }
2648 else
2649 error ("Could not get VMS process pointer");
2650 chars = vs->inputBuffer;
2651 nchars = clean_vms_buffer (chars, vs->iosb[1]);
2652 if (nchars <= 0)
2653 {
2654 start_vms_process_read (vs); /* Crank up the next read on the process */
2655 return 1; /* Nothing worth printing, say we got 1 */
2656 }
2657 if (coding->carryover_size)
2658 {
2659 /* The data carried over in the previous decoding should be
2660 prepended to the new data read to decode all together. */
2661 char *buf = (char *) xmalloc (nchars + coding->carryover_size);
2662
2663 bcopy (coding->carryover, buf, coding->carryover_size);
2664 bcopy (chars, buf + coding->carryover_size, nchars);
2665 chars = buf;
2666 chars_allocated = 1;
2667 }
2668 #else /* not VMS */
2669
2670 if (coding->carryover_size)
2671 /* The data carried over in the previous decoding should be
2672 prepended to the new data read to decode all together. */
2673 bcopy (coding->carryover, buf, coding->carryover_size);
2674
2675 if (proc_buffered_char[channel] < 0)
2676 nchars = READ_CHILD_OUTPUT (channel, buf + coding->carryover_size,
2677 (sizeof buf) - coding->carryover_size);
2678 else
2679 {
2680 buf[coding->carryover_size] = proc_buffered_char[channel];
2681 proc_buffered_char[channel] = -1;
2682 nchars = READ_CHILD_OUTPUT (channel, buf + coding->carryover_size + 1,
2683 (sizeof buf) - coding->carryover_size - 1);
2684 if (nchars < 0)
2685 nchars = 1;
2686 else
2687 nchars = nchars + 1;
2688 }
2689 chars = buf;
2690 #endif /* not VMS */
2691
2692 /* At this point, NCHARS holds number of characters just received
2693 (including the one in proc_buffered_char[channel]). */
2694 if (nchars <= 0) return nchars;
2695
2696 /* Now set NCHARS how many bytes we must decode. */
2697 nchars += coding->carryover_size;
2698
2699 if (CODING_REQUIRE_CONVERSION (coding))
2700 {
2701 int require = decoding_buffer_size (coding, nchars);
2702 int consumed, produced;
2703
2704 if (XSTRING (p->decoding_buf)->size < require)
2705 p->decoding_buf = make_uninit_string (require);
2706 produced = decode_coding (coding, chars, XSTRING (p->decoding_buf)->data,
2707 nchars, XSTRING (p->decoding_buf)->size,
2708 &consumed);
2709
2710 /* New coding-system might be found by `decode_coding'. */
2711 if (!EQ (p->decode_coding_system, coding->symbol))
2712 {
2713 p->decode_coding_system = coding->symbol;
2714 setup_coding_system (coding->symbol,
2715 proc_decode_coding_system[channel]);
2716 /* If coding-system for encoding is not yet decided, we set it
2717 as the same as coding-system for decoding. */
2718 if (NILP (p->encode_coding_system))
2719 {
2720 p->encode_coding_system = coding->symbol;
2721 setup_coding_system (coding->symbol,
2722 proc_encode_coding_system[channel]);
2723 }
2724 }
2725 #ifdef VMS
2726 /* Now we don't need the contents of `chars'. */
2727 if (chars_allocated)
2728 free (chars);
2729 #endif
2730 if (produced == 0)
2731 return 0;
2732 chars = XSTRING (p->decoding_buf)->data;
2733 nchars = produced;
2734 chars_in_decoding_buf = 1;
2735 }
2736 #ifdef VMS
2737 else if (chars_allocated)
2738 {
2739 /* Although we don't have to decode the received data, we must
2740 move it to an area which we don't have to free. */
2741 if (! STRINGP (p->decoding_buf)
2742 || XSTRING (p->decoding_buf)->size < nchars)
2743 p->decoding_buf = make_uninit_string (nchars);
2744 bcopy (chars, XSTRING (p->decoding_buf)->data, nchars);
2745 free (chars);
2746 chars = XSTRING (p->decoding_buf)->data;
2747 chars_in_decoding_buf = 1;
2748 }
2749 #endif
2750
2751 outstream = p->filter;
2752 if (!NILP (outstream))
2753 {
2754 /* We inhibit quit here instead of just catching it so that
2755 hitting ^G when a filter happens to be running won't screw
2756 it up. */
2757 int count = specpdl_ptr - specpdl;
2758 Lisp_Object odeactivate;
2759 Lisp_Object obuffer, okeymap;
2760 int outer_running_asynch_code = running_asynch_code;
2761
2762 /* No need to gcpro these, because all we do with them later
2763 is test them for EQness, and none of them should be a string. */
2764 odeactivate = Vdeactivate_mark;
2765 XSETBUFFER (obuffer, current_buffer);
2766 okeymap = current_buffer->keymap;
2767
2768 specbind (Qinhibit_quit, Qt);
2769 specbind (Qlast_nonmenu_event, Qt);
2770
2771 /* In case we get recursively called,
2772 and we already saved the match data nonrecursively,
2773 save the same match data in safely recursive fashion. */
2774 if (outer_running_asynch_code)
2775 {
2776 Lisp_Object tem;
2777 /* Don't clobber the CURRENT match data, either! */
2778 tem = Fmatch_data (Qnil, Qnil);
2779 restore_match_data ();
2780 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
2781 Fstore_match_data (tem);
2782 }
2783
2784 /* For speed, if a search happens within this code,
2785 save the match data in a special nonrecursive fashion. */
2786 running_asynch_code = 1;
2787
2788 /* Read and dispose of the process output. */
2789 internal_condition_case_1 (read_process_output_call,
2790 Fcons (outstream,
2791 Fcons (proc,
2792 Fcons (make_string (chars,
2793 nchars),
2794 Qnil))),
2795 !NILP (Vdebug_on_error) ? Qnil : Qerror,
2796 read_process_output_error_handler);
2797
2798 /* If we saved the match data nonrecursively, restore it now. */
2799 restore_match_data ();
2800 running_asynch_code = outer_running_asynch_code;
2801
2802 /* Handling the process output should not deactivate the mark. */
2803 Vdeactivate_mark = odeactivate;
2804
2805 #if 0 /* Call record_asynch_buffer_change unconditionally,
2806 because we might have changed minor modes or other things
2807 that affect key bindings. */
2808 if (! EQ (Fcurrent_buffer (), obuffer)
2809 || ! EQ (current_buffer->keymap, okeymap))
2810 #endif
2811 /* But do it only if the caller is actually going to read events.
2812 Otherwise there's no need to make him wake up, and it could
2813 cause trouble (for example it would make Fsit_for return). */
2814 if (waiting_for_user_input_p == -1)
2815 record_asynch_buffer_change ();
2816
2817 #ifdef VMS
2818 start_vms_process_read (vs);
2819 #endif
2820 unbind_to (count, Qnil);
2821 return nchars;
2822 }
2823
2824 /* If no filter, write into buffer if it isn't dead. */
2825 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
2826 {
2827 Lisp_Object old_read_only;
2828 int old_begv, old_zv;
2829 Lisp_Object odeactivate;
2830 int before;
2831
2832 odeactivate = Vdeactivate_mark;
2833
2834 Fset_buffer (p->buffer);
2835 opoint = PT;
2836 old_read_only = current_buffer->read_only;
2837 old_begv = BEGV;
2838 old_zv = ZV;
2839
2840 current_buffer->read_only = Qnil;
2841
2842 /* Insert new output into buffer
2843 at the current end-of-output marker,
2844 thus preserving logical ordering of input and output. */
2845 if (XMARKER (p->mark)->buffer)
2846 SET_PT (clip_to_bounds (BEGV, marker_position (p->mark), ZV));
2847 else
2848 SET_PT (ZV);
2849 before = PT;
2850
2851 /* If the output marker is outside of the visible region, save
2852 the restriction and widen. */
2853 if (! (BEGV <= PT && PT <= ZV))
2854 Fwiden ();
2855
2856 /* Insert before markers in case we are inserting where
2857 the buffer's mark is, and the user's next command is Meta-y. */
2858 if (chars_in_decoding_buf)
2859 insert_from_string_before_markers (p->decoding_buf, 0, nchars, 0);
2860 else
2861 insert_before_markers (chars, nchars);
2862 Fset_marker (p->mark, make_number (PT), p->buffer);
2863
2864 update_mode_lines++;
2865
2866 /* Make sure opoint and the old restrictions
2867 float ahead of any new text just as point would. */
2868 if (opoint >= before)
2869 opoint += PT - before;
2870 if (old_begv > before)
2871 old_begv += PT - before;
2872 if (old_zv >= before)
2873 old_zv += PT - before;
2874
2875 /* If the restriction isn't what it should be, set it. */
2876 if (old_begv != BEGV || old_zv != ZV)
2877 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
2878
2879 /* Handling the process output should not deactivate the mark. */
2880 Vdeactivate_mark = odeactivate;
2881
2882 current_buffer->read_only = old_read_only;
2883 SET_PT (opoint);
2884 set_buffer_internal (old);
2885 }
2886 #ifdef VMS
2887 start_vms_process_read (vs);
2888 #endif
2889 return nchars;
2890 }
2891
2892 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
2893 0, 0, 0,
2894 "Returns non-nil if emacs is waiting for input from the user.\n\
2895 This is intended for use by asynchronous process output filters and sentinels.")
2896 ()
2897 {
2898 return (waiting_for_user_input_p ? Qt : Qnil);
2899 }
2900 \f
2901 /* Sending data to subprocess */
2902
2903 jmp_buf send_process_frame;
2904
2905 SIGTYPE
2906 send_process_trap ()
2907 {
2908 #ifdef BSD4_1
2909 sigrelse (SIGPIPE);
2910 sigrelse (SIGALRM);
2911 #endif /* BSD4_1 */
2912 longjmp (send_process_frame, 1);
2913 }
2914
2915 /* Send some data to process PROC.
2916 BUF is the beginning of the data; LEN is the number of characters.
2917 OBJECT is the Lisp object that the data comes from.
2918
2919 The data is encoded by PROC's coding-system for encoding before it
2920 is sent. But if the data ends at the middle of multi-byte
2921 representation, that incomplete sequence of bytes are sent without
2922 being encoded. Should we store them in a buffer to prepend them to
2923 the data send later? */
2924
2925 send_process (proc, buf, len, object)
2926 volatile Lisp_Object proc;
2927 char *buf;
2928 int len;
2929 Lisp_Object object;
2930 {
2931 /* Use volatile to protect variables from being clobbered by longjmp. */
2932 int rv;
2933 volatile unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
2934 struct coding_system *coding;
2935 struct gcpro gcpro1;
2936
2937 GCPRO1 (object);
2938
2939 #ifdef VMS
2940 struct Lisp_Process *p = XPROCESS (proc);
2941 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2942 #endif /* VMS */
2943
2944 if (! NILP (XPROCESS (proc)->raw_status_low))
2945 update_status (XPROCESS (proc));
2946 if (! EQ (XPROCESS (proc)->status, Qrun))
2947 error ("Process %s not running", procname);
2948 if (XINT (XPROCESS (proc)->outfd) < 0)
2949 error ("Output file descriptor of %s is closed", procname);
2950
2951 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
2952 if (CODING_REQUIRE_CONVERSION (coding))
2953 {
2954 int require = encoding_buffer_size (coding, len);
2955 int offset, dummy;
2956 char *temp_buf = NULL;
2957
2958 /* Remember the offset of data because a string or a buffer may
2959 be relocated. Setting OFFSET to -1 means we don't have to
2960 care relocation. */
2961 offset = (BUFFERP (object)
2962 ? BUF_PTR_CHAR_POS (XBUFFER (object), (unsigned char *) buf)
2963 : (STRINGP (object)
2964 ? offset = buf - (char *) XSTRING (object)->data
2965 : -1));
2966
2967 if (coding->carryover_size > 0)
2968 {
2969 temp_buf = (char *) xmalloc (len + coding->carryover_size);
2970
2971 if (offset >= 0)
2972 {
2973 if (BUFFERP (object))
2974 buf = (char *) BUF_CHAR_ADDRESS (XBUFFER (object), offset);
2975 else if (STRINGP (object))
2976 buf = offset + (char *) XSTRING (object)->data;
2977 /* Now we don't have to care relocation. */
2978 offset = -1;
2979 }
2980 bcopy (coding->carryover, temp_buf, coding->carryover_size);
2981 bcopy (buf, temp_buf + coding->carryover_size, len);
2982 buf = temp_buf;
2983 }
2984
2985 if (XSTRING (XPROCESS (proc)->encoding_buf)->size < require)
2986 {
2987 XPROCESS (proc)->encoding_buf = make_uninit_string (require);
2988
2989 if (offset >= 0)
2990 {
2991 if (BUFFERP (object))
2992 buf = (char *) BUF_CHAR_ADDRESS (XBUFFER (object), offset);
2993 else if (STRINGP (object))
2994 buf = offset + (char *) XSTRING (object)->data;
2995 }
2996 }
2997 object = XPROCESS (proc)->encoding_buf;
2998 len = encode_coding (coding, buf, XSTRING (object)->data,
2999 len, XSTRING (object)->size, &dummy);
3000 buf = XSTRING (object)->data;
3001 if (temp_buf)
3002 xfree (temp_buf);
3003 }
3004
3005 #ifdef VMS
3006 vs = get_vms_process_pointer (p->pid);
3007 if (vs == 0)
3008 error ("Could not find this process: %x", p->pid);
3009 else if (write_to_vms_process (vs, buf, len))
3010 ;
3011 #else
3012
3013 if (pty_max_bytes == 0)
3014 {
3015 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
3016 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd),
3017 _PC_MAX_CANON);
3018 if (pty_max_bytes < 0)
3019 pty_max_bytes = 250;
3020 #else
3021 pty_max_bytes = 250;
3022 #endif
3023 /* Deduct one, to leave space for the eof. */
3024 pty_max_bytes--;
3025 }
3026
3027 if (!setjmp (send_process_frame))
3028 while (len > 0)
3029 {
3030 int this = len;
3031 SIGTYPE (*old_sigpipe)();
3032 int flush_pty = 0;
3033
3034 /* Decide how much data we can send in one batch.
3035 Long lines need to be split into multiple batches. */
3036 if (!NILP (XPROCESS (proc)->pty_flag))
3037 {
3038 /* Starting this at zero is always correct when not the first iteration
3039 because the previous iteration ended by sending C-d.
3040 It may not be correct for the first iteration
3041 if a partial line was sent in a separate send_process call.
3042 If that proves worth handling, we need to save linepos
3043 in the process object. */
3044 int linepos = 0;
3045 char *ptr = buf;
3046 char *end = buf + len;
3047
3048 /* Scan through this text for a line that is too long. */
3049 while (ptr != end && linepos < pty_max_bytes)
3050 {
3051 if (*ptr == '\n')
3052 linepos = 0;
3053 else
3054 linepos++;
3055 ptr++;
3056 }
3057 /* If we found one, break the line there
3058 and put in a C-d to force the buffer through. */
3059 this = ptr - buf;
3060 }
3061
3062 /* Send this batch, using one or more write calls. */
3063 while (this > 0)
3064 {
3065 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
3066 rv = write (XINT (XPROCESS (proc)->outfd), buf, this);
3067 signal (SIGPIPE, old_sigpipe);
3068
3069 if (rv < 0)
3070 {
3071 if (0
3072 #ifdef EWOULDBLOCK
3073 || errno == EWOULDBLOCK
3074 #endif
3075 #ifdef EAGAIN
3076 || errno == EAGAIN
3077 #endif
3078 )
3079 /* Buffer is full. Wait, accepting input;
3080 that may allow the program
3081 to finish doing output and read more. */
3082 {
3083 Lisp_Object zero;
3084 int offset;
3085
3086 /* Running filters might relocate buffers or strings.
3087 Arrange to relocate BUF. */
3088 if (BUFFERP (object))
3089 offset = BUF_PTR_CHAR_POS (XBUFFER (object),
3090 (unsigned char *) buf);
3091 else if (STRINGP (object))
3092 offset = buf - (char *) XSTRING (object)->data;
3093
3094 XSETFASTINT (zero, 0);
3095 #ifdef EMACS_HAS_USECS
3096 wait_reading_process_input (0, 20000, zero, 0);
3097 #else
3098 wait_reading_process_input (1, 0, zero, 0);
3099 #endif
3100
3101 if (BUFFERP (object))
3102 buf = (char *) BUF_CHAR_ADDRESS (XBUFFER (object), offset);
3103 else if (STRINGP (object))
3104 buf = offset + (char *) XSTRING (object)->data;
3105
3106 rv = 0;
3107 }
3108 else
3109 /* This is a real error. */
3110 report_file_error ("writing to process", Fcons (proc, Qnil));
3111 }
3112 buf += rv;
3113 len -= rv;
3114 this -= rv;
3115 }
3116
3117 /* If we sent just part of the string, put in an EOF
3118 to force it through, before we send the rest. */
3119 if (len > 0)
3120 Fprocess_send_eof (proc);
3121 }
3122 #endif
3123 else
3124 {
3125 XPROCESS (proc)->raw_status_low = Qnil;
3126 XPROCESS (proc)->raw_status_high = Qnil;
3127 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
3128 XSETINT (XPROCESS (proc)->tick, ++process_tick);
3129 deactivate_process (proc);
3130 #ifdef VMS
3131 error ("Error writing to process %s; closed it", procname);
3132 #else
3133 error ("SIGPIPE raised on process %s; closed it", procname);
3134 #endif
3135 }
3136
3137 UNGCPRO;
3138 }
3139
3140 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
3141 3, 3, 0,
3142 "Send current contents of region as input to PROCESS.\n\
3143 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3144 nil, indicating the current buffer's process.\n\
3145 Called from program, takes three arguments, PROCESS, START and END.\n\
3146 If the region is more than 500 characters long,\n\
3147 it is sent in several bunches. This may happen even for shorter regions.\n\
3148 Output from processes can arrive in between bunches.")
3149 (process, start, end)
3150 Lisp_Object process, start, end;
3151 {
3152 Lisp_Object proc;
3153 int start1;
3154
3155 proc = get_process (process);
3156 validate_region (&start, &end);
3157
3158 if (XINT (start) < GPT && XINT (end) > GPT)
3159 move_gap (start);
3160
3161 start1 = XINT (start);
3162 send_process (proc, POS_ADDR (start1), XINT (end) - XINT (start),
3163 Fcurrent_buffer ());
3164
3165 return Qnil;
3166 }
3167
3168 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
3169 2, 2, 0,
3170 "Send PROCESS the contents of STRING as input.\n\
3171 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3172 nil, indicating the current buffer's process.\n\
3173 If STRING is more than 500 characters long,\n\
3174 it is sent in several bunches. This may happen even for shorter strings.\n\
3175 Output from processes can arrive in between bunches.")
3176 (process, string)
3177 Lisp_Object process, string;
3178 {
3179 Lisp_Object proc;
3180 CHECK_STRING (string, 1);
3181 proc = get_process (process);
3182 send_process (proc, XSTRING (string)->data, XSTRING (string)->size, string);
3183 return Qnil;
3184 }
3185 \f
3186 /* send a signal number SIGNO to PROCESS.
3187 CURRENT_GROUP means send to the process group that currently owns
3188 the terminal being used to communicate with PROCESS.
3189 This is used for various commands in shell mode.
3190 If NOMSG is zero, insert signal-announcements into process's buffers
3191 right away.
3192
3193 If we can, we try to signal PROCESS by sending control characters
3194 down the pty. This allows us to signal inferiors who have changed
3195 their uid, for which killpg would return an EPERM error. */
3196
3197 static void
3198 process_send_signal (process, signo, current_group, nomsg)
3199 Lisp_Object process;
3200 int signo;
3201 Lisp_Object current_group;
3202 int nomsg;
3203 {
3204 Lisp_Object proc;
3205 register struct Lisp_Process *p;
3206 int gid;
3207 int no_pgrp = 0;
3208
3209 proc = get_process (process);
3210 p = XPROCESS (proc);
3211
3212 if (!EQ (p->childp, Qt))
3213 error ("Process %s is not a subprocess",
3214 XSTRING (p->name)->data);
3215 if (XINT (p->infd) < 0)
3216 error ("Process %s is not active",
3217 XSTRING (p->name)->data);
3218
3219 if (NILP (p->pty_flag))
3220 current_group = Qnil;
3221
3222 /* If we are using pgrps, get a pgrp number and make it negative. */
3223 if (!NILP (current_group))
3224 {
3225 #ifdef SIGNALS_VIA_CHARACTERS
3226 /* If possible, send signals to the entire pgrp
3227 by sending an input character to it. */
3228
3229 /* TERMIOS is the latest and bestest, and seems most likely to
3230 work. If the system has it, use it. */
3231 #ifdef HAVE_TERMIOS
3232 struct termios t;
3233
3234 switch (signo)
3235 {
3236 case SIGINT:
3237 tcgetattr (XINT (p->infd), &t);
3238 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
3239 return;
3240
3241 case SIGQUIT:
3242 tcgetattr (XINT (p->infd), &t);
3243 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
3244 return;
3245
3246 case SIGTSTP:
3247 tcgetattr (XINT (p->infd), &t);
3248 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
3249 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
3250 #else
3251 send_process (proc, &t.c_cc[VSUSP], 1, Qnil);
3252 #endif
3253 return;
3254 }
3255
3256 #else /* ! HAVE_TERMIOS */
3257
3258 /* On Berkeley descendants, the following IOCTL's retrieve the
3259 current control characters. */
3260 #if defined (TIOCGLTC) && defined (TIOCGETC)
3261
3262 struct tchars c;
3263 struct ltchars lc;
3264
3265 switch (signo)
3266 {
3267 case SIGINT:
3268 ioctl (XINT (p->infd), TIOCGETC, &c);
3269 send_process (proc, &c.t_intrc, 1, Qnil);
3270 return;
3271 case SIGQUIT:
3272 ioctl (XINT (p->infd), TIOCGETC, &c);
3273 send_process (proc, &c.t_quitc, 1, Qnil);
3274 return;
3275 #ifdef SIGTSTP
3276 case SIGTSTP:
3277 ioctl (XINT (p->infd), TIOCGLTC, &lc);
3278 send_process (proc, &lc.t_suspc, 1, Qnil);
3279 return;
3280 #endif /* ! defined (SIGTSTP) */
3281 }
3282
3283 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
3284
3285 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
3286 characters. */
3287 #ifdef TCGETA
3288 struct termio t;
3289 switch (signo)
3290 {
3291 case SIGINT:
3292 ioctl (XINT (p->infd), TCGETA, &t);
3293 send_process (proc, &t.c_cc[VINTR], 1, Qnil);
3294 return;
3295 case SIGQUIT:
3296 ioctl (XINT (p->infd), TCGETA, &t);
3297 send_process (proc, &t.c_cc[VQUIT], 1, Qnil);
3298 return;
3299 #ifdef SIGTSTP
3300 case SIGTSTP:
3301 ioctl (XINT (p->infd), TCGETA, &t);
3302 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil);
3303 return;
3304 #endif /* ! defined (SIGTSTP) */
3305 }
3306 #else /* ! defined (TCGETA) */
3307 Your configuration files are messed up.
3308 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
3309 you'd better be using one of the alternatives above! */
3310 #endif /* ! defined (TCGETA) */
3311 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
3312 #endif /* ! defined HAVE_TERMIOS */
3313 #endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
3314
3315 #ifdef TIOCGPGRP
3316 /* Get the pgrp using the tty itself, if we have that.
3317 Otherwise, use the pty to get the pgrp.
3318 On pfa systems, saka@pfu.fujitsu.co.JP writes:
3319 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
3320 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
3321 His patch indicates that if TIOCGPGRP returns an error, then
3322 we should just assume that p->pid is also the process group id. */
3323 {
3324 int err;
3325
3326 if (!NILP (p->subtty))
3327 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
3328 else
3329 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid);
3330
3331 #ifdef pfa
3332 if (err == -1)
3333 gid = - XFASTINT (p->pid);
3334 #endif /* ! defined (pfa) */
3335 }
3336 if (gid == -1)
3337 no_pgrp = 1;
3338 else
3339 gid = - gid;
3340 #else /* ! defined (TIOCGPGRP ) */
3341 /* Can't select pgrps on this system, so we know that
3342 the child itself heads the pgrp. */
3343 gid = - XFASTINT (p->pid);
3344 #endif /* ! defined (TIOCGPGRP ) */
3345 }
3346 else
3347 gid = - XFASTINT (p->pid);
3348
3349 switch (signo)
3350 {
3351 #ifdef SIGCONT
3352 case SIGCONT:
3353 p->raw_status_low = Qnil;
3354 p->raw_status_high = Qnil;
3355 p->status = Qrun;
3356 XSETINT (p->tick, ++process_tick);
3357 if (!nomsg)
3358 status_notify ();
3359 break;
3360 #endif /* ! defined (SIGCONT) */
3361 case SIGINT:
3362 #ifdef VMS
3363 send_process (proc, "\003", 1, Qnil); /* ^C */
3364 goto whoosh;
3365 #endif
3366 case SIGQUIT:
3367 #ifdef VMS
3368 send_process (proc, "\031", 1, Qnil); /* ^Y */
3369 goto whoosh;
3370 #endif
3371 case SIGKILL:
3372 #ifdef VMS
3373 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
3374 whoosh:
3375 #endif
3376 flush_pending_output (XINT (p->infd));
3377 break;
3378 }
3379
3380 /* If we don't have process groups, send the signal to the immediate
3381 subprocess. That isn't really right, but it's better than any
3382 obvious alternative. */
3383 if (no_pgrp)
3384 {
3385 kill (XFASTINT (p->pid), signo);
3386 return;
3387 }
3388
3389 /* gid may be a pid, or minus a pgrp's number */
3390 #ifdef TIOCSIGSEND
3391 if (!NILP (current_group))
3392 ioctl (XINT (p->infd), TIOCSIGSEND, signo);
3393 else
3394 {
3395 gid = - XFASTINT (p->pid);
3396 kill (gid, signo);
3397 }
3398 #else /* ! defined (TIOCSIGSEND) */
3399 EMACS_KILLPG (-gid, signo);
3400 #endif /* ! defined (TIOCSIGSEND) */
3401 }
3402
3403 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
3404 "Interrupt process PROCESS. May be process or name of one.\n\
3405 PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
3406 nil or no arg means current buffer's process.\n\
3407 Second arg CURRENT-GROUP non-nil means send signal to\n\
3408 the current process-group of the process's controlling terminal\n\
3409 rather than to the process's own process group.\n\
3410 If the process is a shell, this means interrupt current subjob\n\
3411 rather than the shell.")
3412 (process, current_group)
3413 Lisp_Object process, current_group;
3414 {
3415 process_send_signal (process, SIGINT, current_group, 0);
3416 return process;
3417 }
3418
3419 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
3420 "Kill process PROCESS. May be process or name of one.\n\
3421 See function `interrupt-process' for more details on usage.")
3422 (process, current_group)
3423 Lisp_Object process, current_group;
3424 {
3425 process_send_signal (process, SIGKILL, current_group, 0);
3426 return process;
3427 }
3428
3429 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
3430 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
3431 See function `interrupt-process' for more details on usage.")
3432 (process, current_group)
3433 Lisp_Object process, current_group;
3434 {
3435 process_send_signal (process, SIGQUIT, current_group, 0);
3436 return process;
3437 }
3438
3439 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
3440 "Stop process PROCESS. May be process or name of one.\n\
3441 See function `interrupt-process' for more details on usage.")
3442 (process, current_group)
3443 Lisp_Object process, current_group;
3444 {
3445 #ifndef SIGTSTP
3446 error ("no SIGTSTP support");
3447 #else
3448 process_send_signal (process, SIGTSTP, current_group, 0);
3449 #endif
3450 return process;
3451 }
3452
3453 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
3454 "Continue process PROCESS. May be process or name of one.\n\
3455 See function `interrupt-process' for more details on usage.")
3456 (process, current_group)
3457 Lisp_Object process, current_group;
3458 {
3459 #ifdef SIGCONT
3460 process_send_signal (process, SIGCONT, current_group, 0);
3461 #else
3462 error ("no SIGCONT support");
3463 #endif
3464 return process;
3465 }
3466
3467 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
3468 2, 2, "nProcess number: \nnSignal code: ",
3469 "Send the process with process id PID the signal with code SIGCODE.\n\
3470 PID must be an integer. The process need not be a child of this Emacs.\n\
3471 SIGCODE may be an integer, or a symbol whose name is a signal name.")
3472 (pid, sigcode)
3473 Lisp_Object pid, sigcode;
3474 {
3475 CHECK_NUMBER (pid, 0);
3476
3477 #define handle_signal(NAME, VALUE) \
3478 else if (!strcmp (name, NAME)) \
3479 XSETINT (sigcode, VALUE)
3480
3481 if (INTEGERP (sigcode))
3482 ;
3483 else
3484 {
3485 unsigned char *name;
3486
3487 CHECK_SYMBOL (sigcode, 1);
3488 name = XSYMBOL (sigcode)->name->data;
3489
3490 if (0)
3491 ;
3492 #ifdef SIGHUP
3493 handle_signal ("SIGHUP", SIGHUP);
3494 #endif
3495 #ifdef SIGINT
3496 handle_signal ("SIGINT", SIGINT);
3497 #endif
3498 #ifdef SIGQUIT
3499 handle_signal ("SIGQUIT", SIGQUIT);
3500 #endif
3501 #ifdef SIGILL
3502 handle_signal ("SIGILL", SIGILL);
3503 #endif
3504 #ifdef SIGABRT
3505 handle_signal ("SIGABRT", SIGABRT);
3506 #endif
3507 #ifdef SIGEMT
3508 handle_signal ("SIGEMT", SIGEMT);
3509 #endif
3510 #ifdef SIGKILL
3511 handle_signal ("SIGKILL", SIGKILL);
3512 #endif
3513 #ifdef SIGFPE
3514 handle_signal ("SIGFPE", SIGFPE);
3515 #endif
3516 #ifdef SIGBUS
3517 handle_signal ("SIGBUS", SIGBUS);
3518 #endif
3519 #ifdef SIGSEGV
3520 handle_signal ("SIGSEGV", SIGSEGV);
3521 #endif
3522 #ifdef SIGSYS
3523 handle_signal ("SIGSYS", SIGSYS);
3524 #endif
3525 #ifdef SIGPIPE
3526 handle_signal ("SIGPIPE", SIGPIPE);
3527 #endif
3528 #ifdef SIGALRM
3529 handle_signal ("SIGALRM", SIGALRM);
3530 #endif
3531 #ifdef SIGTERM
3532 handle_signal ("SIGTERM", SIGTERM);
3533 #endif
3534 #ifdef SIGURG
3535 handle_signal ("SIGURG", SIGURG);
3536 #endif
3537 #ifdef SIGSTOP
3538 handle_signal ("SIGSTOP", SIGSTOP);
3539 #endif
3540 #ifdef SIGTSTP
3541 handle_signal ("SIGTSTP", SIGTSTP);
3542 #endif
3543 #ifdef SIGCONT
3544 handle_signal ("SIGCONT", SIGCONT);
3545 #endif
3546 #ifdef SIGCHLD
3547 handle_signal ("SIGCHLD", SIGCHLD);
3548 #endif
3549 #ifdef SIGTTIN
3550 handle_signal ("SIGTTIN", SIGTTIN);
3551 #endif
3552 #ifdef SIGTTOU
3553 handle_signal ("SIGTTOU", SIGTTOU);
3554 #endif
3555 #ifdef SIGIO
3556 handle_signal ("SIGIO", SIGIO);
3557 #endif
3558 #ifdef SIGXCPU
3559 handle_signal ("SIGXCPU", SIGXCPU);
3560 #endif
3561 #ifdef SIGXFSZ
3562 handle_signal ("SIGXFSZ", SIGXFSZ);
3563 #endif
3564 #ifdef SIGVTALRM
3565 handle_signal ("SIGVTALRM", SIGVTALRM);
3566 #endif
3567 #ifdef SIGPROF
3568 handle_signal ("SIGPROF", SIGPROF);
3569 #endif
3570 #ifdef SIGWINCH
3571 handle_signal ("SIGWINCH", SIGWINCH);
3572 #endif
3573 #ifdef SIGINFO
3574 handle_signal ("SIGINFO", SIGINFO);
3575 #endif
3576 #ifdef SIGUSR1
3577 handle_signal ("SIGUSR1", SIGUSR1);
3578 #endif
3579 #ifdef SIGUSR2
3580 handle_signal ("SIGUSR2", SIGUSR2);
3581 #endif
3582 else
3583 error ("Undefined signal name %s", name);
3584 }
3585
3586 #undef handle_signal
3587
3588 return make_number (kill (XINT (pid), XINT (sigcode)));
3589 }
3590
3591 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
3592 "Make PROCESS see end-of-file in its input.\n\
3593 Eof comes after any text already sent to it.\n\
3594 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3595 nil, indicating the current buffer's process.\n\
3596 If PROCESS is a network connection, or is a process communicating\n\
3597 through a pipe (as opposed to a pty), then you cannot send any more\n\
3598 text to PROCESS after you call this function.")
3599 (process)
3600 Lisp_Object process;
3601 {
3602 Lisp_Object proc;
3603
3604 proc = get_process (process);
3605
3606 /* Make sure the process is really alive. */
3607 if (! NILP (XPROCESS (proc)->raw_status_low))
3608 update_status (XPROCESS (proc));
3609 if (! EQ (XPROCESS (proc)->status, Qrun))
3610 error ("Process %s not running", XSTRING (XPROCESS (proc)->name)->data);
3611
3612 #ifdef VMS
3613 send_process (proc, "\032", 1, Qnil); /* ^z */
3614 #else
3615 if (!NILP (XPROCESS (proc)->pty_flag))
3616 send_process (proc, "\004", 1, Qnil);
3617 else
3618 {
3619 close (XINT (XPROCESS (proc)->outfd));
3620 XSETINT (XPROCESS (proc)->outfd, open (NULL_DEVICE, O_WRONLY));
3621 }
3622 #endif /* VMS */
3623 return process;
3624 }
3625
3626 /* Kill all processes associated with `buffer'.
3627 If `buffer' is nil, kill all processes */
3628
3629 kill_buffer_processes (buffer)
3630 Lisp_Object buffer;
3631 {
3632 Lisp_Object tail, proc;
3633
3634 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCONS (tail)->cdr)
3635 {
3636 proc = XCONS (XCONS (tail)->car)->cdr;
3637 if (GC_PROCESSP (proc)
3638 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
3639 {
3640 if (NETCONN_P (proc))
3641 Fdelete_process (proc);
3642 else if (XINT (XPROCESS (proc)->infd) >= 0)
3643 process_send_signal (proc, SIGHUP, Qnil, 1);
3644 }
3645 }
3646 }
3647 \f
3648 /* On receipt of a signal that a child status has changed,
3649 loop asking about children with changed statuses until
3650 the system says there are no more.
3651 All we do is change the status;
3652 we do not run sentinels or print notifications.
3653 That is saved for the next time keyboard input is done,
3654 in order to avoid timing errors. */
3655
3656 /** WARNING: this can be called during garbage collection.
3657 Therefore, it must not be fooled by the presence of mark bits in
3658 Lisp objects. */
3659
3660 /** USG WARNING: Although it is not obvious from the documentation
3661 in signal(2), on a USG system the SIGCLD handler MUST NOT call
3662 signal() before executing at least one wait(), otherwise the handler
3663 will be called again, resulting in an infinite loop. The relevant
3664 portion of the documentation reads "SIGCLD signals will be queued
3665 and the signal-catching function will be continually reentered until
3666 the queue is empty". Invoking signal() causes the kernel to reexamine
3667 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
3668
3669 SIGTYPE
3670 sigchld_handler (signo)
3671 int signo;
3672 {
3673 int old_errno = errno;
3674 Lisp_Object proc;
3675 register struct Lisp_Process *p;
3676 extern EMACS_TIME *input_available_clear_time;
3677
3678 #ifdef BSD4_1
3679 extern int sigheld;
3680 sigheld |= sigbit (SIGCHLD);
3681 #endif
3682
3683 while (1)
3684 {
3685 register int pid;
3686 WAITTYPE w;
3687 Lisp_Object tail;
3688
3689 #ifdef WNOHANG
3690 #ifndef WUNTRACED
3691 #define WUNTRACED 0
3692 #endif /* no WUNTRACED */
3693 /* Keep trying to get a status until we get a definitive result. */
3694 do
3695 {
3696 errno = 0;
3697 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
3698 }
3699 while (pid <= 0 && errno == EINTR);
3700
3701 if (pid <= 0)
3702 {
3703 /* A real failure. We have done all our job, so return. */
3704
3705 /* USG systems forget handlers when they are used;
3706 must reestablish each time */
3707 #if defined (USG) && !defined (POSIX_SIGNALS)
3708 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
3709 #endif
3710 #ifdef BSD4_1
3711 sigheld &= ~sigbit (SIGCHLD);
3712 sigrelse (SIGCHLD);
3713 #endif
3714 errno = old_errno;
3715 return;
3716 }
3717 #else
3718 pid = wait (&w);
3719 #endif /* no WNOHANG */
3720
3721 /* Find the process that signaled us, and record its status. */
3722
3723 p = 0;
3724 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr)
3725 {
3726 proc = XCONS (XCONS (tail)->car)->cdr;
3727 p = XPROCESS (proc);
3728 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
3729 break;
3730 p = 0;
3731 }
3732
3733 /* Look for an asynchronous process whose pid hasn't been filled
3734 in yet. */
3735 if (p == 0)
3736 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr)
3737 {
3738 proc = XCONS (XCONS (tail)->car)->cdr;
3739 p = XPROCESS (proc);
3740 if (INTEGERP (p->pid) && XINT (p->pid) == -1)
3741 break;
3742 p = 0;
3743 }
3744
3745 /* Change the status of the process that was found. */
3746 if (p != 0)
3747 {
3748 union { int i; WAITTYPE wt; } u;
3749 int clear_desc_flag = 0;
3750
3751 XSETINT (p->tick, ++process_tick);
3752 u.wt = w;
3753 XSETINT (p->raw_status_low, u.i & 0xffff);
3754 XSETINT (p->raw_status_high, u.i >> 16);
3755
3756 /* If process has terminated, stop waiting for its output. */
3757 if ((WIFSIGNALED (w) || WIFEXITED (w))
3758 && XINT (p->infd) >= 0)
3759 clear_desc_flag = 1;
3760
3761 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
3762 if (clear_desc_flag)
3763 {
3764 FD_CLR (XINT (p->infd), &input_wait_mask);
3765 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
3766 }
3767
3768 /* Tell wait_reading_process_input that it needs to wake up and
3769 look around. */
3770 if (input_available_clear_time)
3771 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
3772 }
3773
3774 /* There was no asynchronous process found for that id. Check
3775 if we have a synchronous process. */
3776 else
3777 {
3778 synch_process_alive = 0;
3779
3780 /* Report the status of the synchronous process. */
3781 if (WIFEXITED (w))
3782 synch_process_retcode = WRETCODE (w);
3783 else if (WIFSIGNALED (w))
3784 {
3785 int code = WTERMSIG (w);
3786 char *signame = 0;
3787
3788 if (code < NSIG)
3789 {
3790 #ifndef VMS
3791 /* Suppress warning if the table has const char *. */
3792 signame = (char *) sys_siglist[code];
3793 #else
3794 signame = sys_errlist[code];
3795 #endif
3796 }
3797 if (signame == 0)
3798 signame = "unknown";
3799
3800 synch_process_death = signame;
3801 }
3802
3803 /* Tell wait_reading_process_input that it needs to wake up and
3804 look around. */
3805 if (input_available_clear_time)
3806 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
3807 }
3808
3809 /* On some systems, we must return right away.
3810 If any more processes want to signal us, we will
3811 get another signal.
3812 Otherwise (on systems that have WNOHANG), loop around
3813 to use up all the processes that have something to tell us. */
3814 #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT)
3815 #if defined (USG) && ! defined (POSIX_SIGNALS)
3816 signal (signo, sigchld_handler);
3817 #endif
3818 errno = old_errno;
3819 return;
3820 #endif /* USG, but not HPUX with WNOHANG */
3821 }
3822 }
3823 \f
3824
3825 static Lisp_Object
3826 exec_sentinel_unwind (data)
3827 Lisp_Object data;
3828 {
3829 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr;
3830 return Qnil;
3831 }
3832
3833 static Lisp_Object
3834 exec_sentinel_error_handler (error)
3835 Lisp_Object error;
3836 {
3837 cmd_error_internal (error, "error in process sentinel: ");
3838 Vinhibit_quit = Qt;
3839 update_echo_area ();
3840 Fsleep_for (make_number (2), Qnil);
3841 }
3842
3843 static void
3844 exec_sentinel (proc, reason)
3845 Lisp_Object proc, reason;
3846 {
3847 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
3848 register struct Lisp_Process *p = XPROCESS (proc);
3849 int count = specpdl_ptr - specpdl;
3850 int outer_running_asynch_code = running_asynch_code;
3851
3852 /* No need to gcpro these, because all we do with them later
3853 is test them for EQness, and none of them should be a string. */
3854 odeactivate = Vdeactivate_mark;
3855 XSETBUFFER (obuffer, current_buffer);
3856 okeymap = current_buffer->keymap;
3857
3858 sentinel = p->sentinel;
3859 if (NILP (sentinel))
3860 return;
3861
3862 /* Zilch the sentinel while it's running, to avoid recursive invocations;
3863 assure that it gets restored no matter how the sentinel exits. */
3864 p->sentinel = Qnil;
3865 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
3866 /* Inhibit quit so that random quits don't screw up a running filter. */
3867 specbind (Qinhibit_quit, Qt);
3868 specbind (Qlast_nonmenu_event, Qt);
3869
3870 /* In case we get recursively called,
3871 and we already saved the match data nonrecursively,
3872 save the same match data in safely recursive fashion. */
3873 if (outer_running_asynch_code)
3874 {
3875 Lisp_Object tem;
3876 tem = Fmatch_data (Qnil, Qnil);
3877 restore_match_data ();
3878 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
3879 Fstore_match_data (tem);
3880 }
3881
3882 /* For speed, if a search happens within this code,
3883 save the match data in a special nonrecursive fashion. */
3884 running_asynch_code = 1;
3885
3886 internal_condition_case_1 (read_process_output_call,
3887 Fcons (sentinel,
3888 Fcons (proc, Fcons (reason, Qnil))),
3889 !NILP (Vdebug_on_error) ? Qnil : Qerror,
3890 exec_sentinel_error_handler);
3891
3892 /* If we saved the match data nonrecursively, restore it now. */
3893 restore_match_data ();
3894 running_asynch_code = outer_running_asynch_code;
3895
3896 Vdeactivate_mark = odeactivate;
3897 #if 0
3898 if (! EQ (Fcurrent_buffer (), obuffer)
3899 || ! EQ (current_buffer->keymap, okeymap))
3900 #endif
3901 /* But do it only if the caller is actually going to read events.
3902 Otherwise there's no need to make him wake up, and it could
3903 cause trouble (for example it would make Fsit_for return). */
3904 if (waiting_for_user_input_p == -1)
3905 record_asynch_buffer_change ();
3906
3907 unbind_to (count, Qnil);
3908 }
3909
3910 /* Report all recent events of a change in process status
3911 (either run the sentinel or output a message).
3912 This is done while Emacs is waiting for keyboard input. */
3913
3914 status_notify ()
3915 {
3916 register Lisp_Object proc, buffer;
3917 Lisp_Object tail, msg;
3918 struct gcpro gcpro1, gcpro2;
3919
3920 tail = Qnil;
3921 msg = Qnil;
3922 /* We need to gcpro tail; if read_process_output calls a filter
3923 which deletes a process and removes the cons to which tail points
3924 from Vprocess_alist, and then causes a GC, tail is an unprotected
3925 reference. */
3926 GCPRO2 (tail, msg);
3927
3928 /* Set this now, so that if new processes are created by sentinels
3929 that we run, we get called again to handle their status changes. */
3930 update_tick = process_tick;
3931
3932 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
3933 {
3934 Lisp_Object symbol;
3935 register struct Lisp_Process *p;
3936
3937 proc = Fcdr (Fcar (tail));
3938 p = XPROCESS (proc);
3939
3940 if (XINT (p->tick) != XINT (p->update_tick))
3941 {
3942 XSETINT (p->update_tick, XINT (p->tick));
3943
3944 /* If process is still active, read any output that remains. */
3945 while (! EQ (p->filter, Qt)
3946 && XINT (p->infd) >= 0
3947 && read_process_output (proc, XINT (p->infd)) > 0);
3948
3949 buffer = p->buffer;
3950
3951 /* Get the text to use for the message. */
3952 if (!NILP (p->raw_status_low))
3953 update_status (p);
3954 msg = status_message (p->status);
3955
3956 /* If process is terminated, deactivate it or delete it. */
3957 symbol = p->status;
3958 if (CONSP (p->status))
3959 symbol = XCONS (p->status)->car;
3960
3961 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
3962 || EQ (symbol, Qclosed))
3963 {
3964 if (delete_exited_processes)
3965 remove_process (proc);
3966 else
3967 deactivate_process (proc);
3968 }
3969
3970 /* The actions above may have further incremented p->tick.
3971 So set p->update_tick again
3972 so that an error in the sentinel will not cause
3973 this code to be run again. */
3974 XSETINT (p->update_tick, XINT (p->tick));
3975 /* Now output the message suitably. */
3976 if (!NILP (p->sentinel))
3977 exec_sentinel (proc, msg);
3978 /* Don't bother with a message in the buffer
3979 when a process becomes runnable. */
3980 else if (!EQ (symbol, Qrun) && !NILP (buffer))
3981 {
3982 Lisp_Object ro, tem;
3983 struct buffer *old = current_buffer;
3984 int opoint;
3985 int before;
3986
3987 ro = XBUFFER (buffer)->read_only;
3988
3989 /* Avoid error if buffer is deleted
3990 (probably that's why the process is dead, too) */
3991 if (NILP (XBUFFER (buffer)->name))
3992 continue;
3993 Fset_buffer (buffer);
3994
3995 opoint = PT;
3996 /* Insert new output into buffer
3997 at the current end-of-output marker,
3998 thus preserving logical ordering of input and output. */
3999 if (XMARKER (p->mark)->buffer)
4000 SET_PT (marker_position (p->mark));
4001 else
4002 SET_PT (ZV);
4003
4004 before = PT;
4005
4006 tem = current_buffer->read_only;
4007 current_buffer->read_only = Qnil;
4008 insert_string ("\nProcess ");
4009 Finsert (1, &p->name);
4010 insert_string (" ");
4011 Finsert (1, &msg);
4012 current_buffer->read_only = tem;
4013 Fset_marker (p->mark, make_number (PT), p->buffer);
4014
4015 if (opoint >= before)
4016 SET_PT (opoint + (PT - before));
4017 else
4018 SET_PT (opoint);
4019
4020 set_buffer_internal (old);
4021 }
4022 }
4023 } /* end for */
4024
4025 update_mode_lines++; /* in case buffers use %s in mode-line-format */
4026 redisplay_preserve_echo_area ();
4027
4028 UNGCPRO;
4029 }
4030
4031 \f
4032 DEFUN ("set-process-coding-system", Fset_process_coding_system,
4033 Sset_process_coding_system, 1, 3, 0,
4034 "Set coding-systems of PROCESS to DECODING (input from the process) and\n\
4035 ENCODING (output to the process).")
4036 (proc, decoding, encoding)
4037 register Lisp_Object proc, decoding, encoding;
4038 {
4039 register struct Lisp_Process *p;
4040
4041 CHECK_PROCESS (proc, 0);
4042 p = XPROCESS (proc);
4043 if (XINT (p->infd) < 0)
4044 error ("Input file descriptor of %s closed", XSTRING (p->name)->data);
4045 if (XINT (p->outfd) < 0)
4046 error ("Output file descriptor of %s closed", XSTRING (p->name)->data);
4047
4048 p->decode_coding_system = Fcheck_coding_system (decoding);
4049 p->encode_coding_system = Fcheck_coding_system (encoding);
4050 setup_coding_system (decoding,
4051 proc_decode_coding_system[XINT (p->infd)]);
4052 setup_coding_system (encoding,
4053 proc_encode_coding_system[XINT (p->outfd)]);
4054
4055 return Qnil;
4056 }
4057
4058 DEFUN ("process-coding-system",
4059 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
4060 "Return a cons of coding-system for decoding and encoding of PROCESS.")
4061 (proc)
4062 register Lisp_Object proc;
4063 {
4064 CHECK_PROCESS (proc, 0);
4065 return Fcons (XPROCESS (proc)->decode_coding_system,
4066 XPROCESS (proc)->encode_coding_system);
4067 }
4068 \f
4069 /* The first time this is called, assume keyboard input comes from DESC
4070 instead of from where we used to expect it.
4071 Subsequent calls mean assume input keyboard can come from DESC
4072 in addition to other places. */
4073
4074 static int add_keyboard_wait_descriptor_called_flag;
4075
4076 void
4077 add_keyboard_wait_descriptor (desc)
4078 int desc;
4079 {
4080 if (! add_keyboard_wait_descriptor_called_flag)
4081 FD_CLR (0, &input_wait_mask);
4082 add_keyboard_wait_descriptor_called_flag = 1;
4083 FD_SET (desc, &input_wait_mask);
4084 FD_SET (desc, &non_process_wait_mask);
4085 if (desc > max_keyboard_desc)
4086 max_keyboard_desc = desc;
4087 }
4088
4089 /* From now on, do not expect DESC to give keyboard input. */
4090
4091 void
4092 delete_keyboard_wait_descriptor (desc)
4093 int desc;
4094 {
4095 int fd;
4096 int lim = max_keyboard_desc;
4097
4098 FD_CLR (desc, &input_wait_mask);
4099 FD_CLR (desc, &non_process_wait_mask);
4100
4101 if (desc == max_keyboard_desc)
4102 for (fd = 0; fd < lim; fd++)
4103 if (FD_ISSET (fd, &input_wait_mask)
4104 && !FD_ISSET (fd, &non_keyboard_wait_mask))
4105 max_keyboard_desc = fd;
4106 }
4107
4108 /* Return nonzero if *MASK has a bit set
4109 that corresponds to one of the keyboard input descriptors. */
4110
4111 int
4112 keyboard_bit_set (mask)
4113 SELECT_TYPE *mask;
4114 {
4115 int fd;
4116
4117 for (fd = 0; fd <= max_keyboard_desc; fd++)
4118 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask)
4119 && !FD_ISSET (fd, &non_keyboard_wait_mask))
4120 return 1;
4121
4122 return 0;
4123 }
4124 \f
4125 init_process ()
4126 {
4127 register int i;
4128
4129 #ifdef SIGCHLD
4130 #ifndef CANNOT_DUMP
4131 if (! noninteractive || initialized)
4132 #endif
4133 signal (SIGCHLD, sigchld_handler);
4134 #endif
4135
4136 FD_ZERO (&input_wait_mask);
4137 FD_ZERO (&non_keyboard_wait_mask);
4138 FD_ZERO (&non_process_wait_mask);
4139 max_process_desc = 0;
4140
4141 FD_SET (0, &input_wait_mask);
4142
4143 Vprocess_alist = Qnil;
4144 for (i = 0; i < MAXDESC; i++)
4145 {
4146 chan_process[i] = Qnil;
4147 proc_buffered_char[i] = -1;
4148 }
4149 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
4150 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
4151 }
4152
4153 syms_of_process ()
4154 {
4155 Qprocessp = intern ("processp");
4156 staticpro (&Qprocessp);
4157 Qrun = intern ("run");
4158 staticpro (&Qrun);
4159 Qstop = intern ("stop");
4160 staticpro (&Qstop);
4161 Qsignal = intern ("signal");
4162 staticpro (&Qsignal);
4163
4164 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
4165 here again.
4166
4167 Qexit = intern ("exit");
4168 staticpro (&Qexit); */
4169
4170 Qopen = intern ("open");
4171 staticpro (&Qopen);
4172 Qclosed = intern ("closed");
4173 staticpro (&Qclosed);
4174
4175 Qlast_nonmenu_event = intern ("last-nonmenu-event");
4176 staticpro (&Qlast_nonmenu_event);
4177
4178 staticpro (&Vprocess_alist);
4179
4180 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
4181 "*Non-nil means delete processes immediately when they exit.\n\
4182 nil means don't delete them until `list-processes' is run.");
4183
4184 delete_exited_processes = 1;
4185
4186 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
4187 "Control type of device used to communicate with subprocesses.\n\
4188 Values are nil to use a pipe, or t or `pty' to use a pty.\n\
4189 The value has no effect if the system has no ptys or if all ptys are busy:\n\
4190 then a pipe is used in any case.\n\
4191 The value takes effect when `start-process' is called.");
4192 Vprocess_connection_type = Qt;
4193
4194 defsubr (&Sprocessp);
4195 defsubr (&Sget_process);
4196 defsubr (&Sget_buffer_process);
4197 defsubr (&Sdelete_process);
4198 defsubr (&Sprocess_status);
4199 defsubr (&Sprocess_exit_status);
4200 defsubr (&Sprocess_id);
4201 defsubr (&Sprocess_name);
4202 defsubr (&Sprocess_tty_name);
4203 defsubr (&Sprocess_command);
4204 defsubr (&Sset_process_buffer);
4205 defsubr (&Sprocess_buffer);
4206 defsubr (&Sprocess_mark);
4207 defsubr (&Sset_process_filter);
4208 defsubr (&Sprocess_filter);
4209 defsubr (&Sset_process_sentinel);
4210 defsubr (&Sprocess_sentinel);
4211 defsubr (&Sset_process_window_size);
4212 defsubr (&Sprocess_kill_without_query);
4213 defsubr (&Sprocess_contact);
4214 defsubr (&Slist_processes);
4215 defsubr (&Sprocess_list);
4216 defsubr (&Sstart_process);
4217 #ifdef HAVE_SOCKETS
4218 defsubr (&Sopen_network_stream);
4219 #endif /* HAVE_SOCKETS */
4220 defsubr (&Saccept_process_output);
4221 defsubr (&Sprocess_send_region);
4222 defsubr (&Sprocess_send_string);
4223 defsubr (&Sinterrupt_process);
4224 defsubr (&Skill_process);
4225 defsubr (&Squit_process);
4226 defsubr (&Sstop_process);
4227 defsubr (&Scontinue_process);
4228 defsubr (&Sprocess_send_eof);
4229 defsubr (&Ssignal_process);
4230 defsubr (&Swaiting_for_user_input_p);
4231 /* defsubr (&Sprocess_connection); */
4232 defsubr (&Sset_process_coding_system);
4233 defsubr (&Sprocess_coding_system);
4234 }
4235
4236 \f
4237 #else /* not subprocesses */
4238
4239 #include <sys/types.h>
4240 #include <errno.h>
4241
4242 #include "lisp.h"
4243 #include "systime.h"
4244 #include "termopts.h"
4245 #include "sysselect.h"
4246
4247 extern int frame_garbaged;
4248
4249 extern EMACS_TIME timer_check ();
4250 extern int timers_run;
4251
4252 /* As described above, except assuming that there are no subprocesses:
4253
4254 Wait for timeout to elapse and/or keyboard input to be available.
4255
4256 time_limit is:
4257 timeout in seconds, or
4258 zero for no limit, or
4259 -1 means gobble data immediately available but don't wait for any.
4260
4261 read_kbd is a Lisp_Object:
4262 0 to ignore keyboard input, or
4263 1 to return when input is available, or
4264 -1 means caller will actually read the input, so don't throw to
4265 the quit handler.
4266 a cons cell, meaning wait until its car is non-nil
4267 (and gobble terminal input into the buffer if any arrives), or
4268 We know that read_kbd will never be a Lisp_Process, since
4269 `subprocesses' isn't defined.
4270
4271 do_display != 0 means redisplay should be done to show subprocess
4272 output that arrives.
4273
4274 Return true iff we received input from any process. */
4275
4276 int
4277 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
4278 int time_limit, microsecs;
4279 Lisp_Object read_kbd;
4280 int do_display;
4281 {
4282 EMACS_TIME end_time, timeout;
4283 SELECT_TYPE waitchannels;
4284 int xerrno;
4285 Lisp_Object *wait_for_cell = 0;
4286
4287 /* If waiting for non-nil in a cell, record where. */
4288 if (CONSP (read_kbd))
4289 {
4290 wait_for_cell = &XCONS (read_kbd)->car;
4291 XSETFASTINT (read_kbd, 0);
4292 }
4293
4294 /* What does time_limit really mean? */
4295 if (time_limit || microsecs)
4296 {
4297 if (time_limit == -1)
4298 /* In fact, it's zero. */
4299 EMACS_SET_SECS_USECS (timeout, 0, 0);
4300 else
4301 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
4302
4303 /* How far in the future is that? */
4304 EMACS_GET_TIME (end_time);
4305 EMACS_ADD_TIME (end_time, end_time, timeout);
4306 }
4307 else
4308 /* It's infinite. */
4309 EMACS_SET_SECS_USECS (timeout, 100000, 0);
4310
4311 /* Turn off periodic alarms (in case they are in use)
4312 because the select emulator uses alarms. */
4313 stop_polling ();
4314
4315 for (;;)
4316 {
4317 int nfds;
4318 int timeout_reduced_for_timers = 0;
4319
4320 /* If calling from keyboard input, do not quit
4321 since we want to return C-g as an input character.
4322 Otherwise, do pending quit if requested. */
4323 if (XINT (read_kbd) >= 0)
4324 QUIT;
4325
4326 /* Exit now if the cell we're waiting for became non-nil. */
4327 if (wait_for_cell && ! NILP (*wait_for_cell))
4328 break;
4329
4330 /* Compute time from now till when time limit is up */
4331 /* Exit if already run out */
4332 if (time_limit > 0 || microsecs)
4333 {
4334 EMACS_GET_TIME (timeout);
4335 EMACS_SUB_TIME (timeout, end_time, timeout);
4336 if (EMACS_TIME_NEG_P (timeout))
4337 break;
4338 }
4339
4340 /* If our caller will not immediately handle keyboard events,
4341 run timer events directly.
4342 (Callers that will immediately read keyboard events
4343 call timer_delay on their own.) */
4344 if (! wait_for_cell)
4345 {
4346 EMACS_TIME timer_delay;
4347 int old_timers_run;
4348
4349 retry:
4350 old_timers_run = timers_run;
4351 timer_delay = timer_check (1);
4352 if (timers_run != old_timers_run && do_display)
4353 {
4354 redisplay_preserve_echo_area ();
4355 /* We must retry, since a timer may have requeued itself
4356 and that could alter the time delay. */
4357 goto retry;
4358 }
4359
4360 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1)
4361 {
4362 EMACS_TIME difference;
4363 EMACS_SUB_TIME (difference, timer_delay, timeout);
4364 if (EMACS_TIME_NEG_P (difference))
4365 {
4366 timeout = timer_delay;
4367 timeout_reduced_for_timers = 1;
4368 }
4369 }
4370 }
4371
4372 /* Cause C-g and alarm signals to take immediate action,
4373 and cause input available signals to zero out timeout. */
4374 if (XINT (read_kbd) < 0)
4375 set_waiting_for_input (&timeout);
4376
4377 /* Wait till there is something to do. */
4378
4379 if (! XINT (read_kbd) && wait_for_cell == 0)
4380 FD_ZERO (&waitchannels);
4381 else
4382 FD_SET (0, &waitchannels);
4383
4384 /* If a frame has been newly mapped and needs updating,
4385 reprocess its display stuff. */
4386 if (frame_garbaged && do_display)
4387 {
4388 clear_waiting_for_input ();
4389 redisplay_preserve_echo_area ();
4390 if (XINT (read_kbd) < 0)
4391 set_waiting_for_input (&timeout);
4392 }
4393
4394 if (XINT (read_kbd) && detect_input_pending ())
4395 {
4396 nfds = 0;
4397 FD_ZERO (&waitchannels);
4398 }
4399 else
4400 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
4401 &timeout);
4402
4403 xerrno = errno;
4404
4405 /* Make C-g and alarm signals set flags again */
4406 clear_waiting_for_input ();
4407
4408 /* If we woke up due to SIGWINCH, actually change size now. */
4409 do_pending_window_change ();
4410
4411 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers)
4412 /* We waited the full specified time, so return now. */
4413 break;
4414
4415 if (nfds == -1)
4416 {
4417 /* If the system call was interrupted, then go around the
4418 loop again. */
4419 if (xerrno == EINTR)
4420 FD_ZERO (&waitchannels);
4421 else
4422 error ("select error: %s", strerror (xerrno));
4423 }
4424 #ifdef sun
4425 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
4426 /* System sometimes fails to deliver SIGIO. */
4427 kill (getpid (), SIGIO);
4428 #endif
4429 #ifdef SIGIO
4430 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
4431 kill (getpid (), SIGIO);
4432 #endif
4433
4434 /* Check for keyboard input */
4435
4436 if ((XINT (read_kbd) != 0)
4437 && detect_input_pending_run_timers (do_display))
4438 {
4439 swallow_events (do_display);
4440 if (detect_input_pending_run_timers (do_display))
4441 break;
4442 }
4443
4444 /* If wait_for_cell. check for keyboard input
4445 but don't run any timers.
4446 ??? (It seems wrong to me to check for keyboard
4447 input at all when wait_for_cell, but the code
4448 has been this way since July 1994.
4449 Try changing this after version 19.31.) */
4450 if (wait_for_cell
4451 && detect_input_pending ())
4452 {
4453 swallow_events (do_display);
4454 if (detect_input_pending ())
4455 break;
4456 }
4457
4458 /* Exit now if the cell we're waiting for became non-nil. */
4459 if (wait_for_cell && ! NILP (*wait_for_cell))
4460 break;
4461 }
4462
4463 start_polling ();
4464
4465 return 0;
4466 }
4467
4468
4469 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
4470 /* Don't confuse make-docfile by having two doc strings for this function.
4471 make-docfile does not pay attention to #if, for good reason! */
4472 0)
4473 (name)
4474 register Lisp_Object name;
4475 {
4476 return Qnil;
4477 }
4478
4479 /* Kill all processes associated with `buffer'.
4480 If `buffer' is nil, kill all processes.
4481 Since we have no subprocesses, this does nothing. */
4482
4483 kill_buffer_processes (buffer)
4484 Lisp_Object buffer;
4485 {
4486 }
4487
4488 init_process ()
4489 {
4490 }
4491
4492 syms_of_process ()
4493 {
4494 defsubr (&Sget_buffer_process);
4495 }
4496
4497 \f
4498 #endif /* not subprocesses */