*** empty log message ***
[bpt/emacs.git] / src / process.c
CommitLineData
d0d6b7c5
JB
1/* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <signal.h>
22
23#include "config.h"
24
6720a7fb
JB
25/* This file is split into two parts by the following preprocessor
26 conditional. The 'then' clause contains all of the support for
27 asynchronous subprocesses. The 'else' clause contains stub
28 versions of some of the asynchronous subprocess routines that are
29 often called elsewhere in Emacs, so we don't have to #ifdef the
30 sections that call them. */
31
32\f
d0d6b7c5 33#ifdef subprocesses
d0d6b7c5
JB
34
35#include <stdio.h>
36#include <errno.h>
37#include <setjmp.h>
38#include <sys/types.h> /* some typedefs are used in sys/file.h */
39#include <sys/file.h>
40#include <sys/stat.h>
41
42#ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
43#include <sys/socket.h>
44#include <netdb.h>
45#include <netinet/in.h>
46#include <arpa/inet.h>
47#endif /* HAVE_SOCKETS */
48
49#if defined(BSD) || defined(STRIDE)
50#include <sys/ioctl.h>
0ad77c54 51#if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
d0d6b7c5
JB
52#include <fcntl.h>
53#endif /* HAVE_PTYS and no O_NDELAY */
54#endif /* BSD or STRIDE */
55#ifdef USG
56#ifdef HAVE_TERMIOS
57#include <termios.h>
58#else
59#include <termio.h>
60#endif
61#include <fcntl.h>
62#endif /* USG */
63
64#ifdef NEED_BSDTTY
65#include <bsdtty.h>
66#endif
67
d0d6b7c5
JB
68#ifdef IRIS
69#include <sys/sysmacros.h> /* for "minor" */
70#endif /* not IRIS */
71
72#include "systime.h"
36ebaafa 73#include "systty.h"
d0d6b7c5
JB
74
75#include "lisp.h"
76#include "window.h"
77#include "buffer.h"
78#include "process.h"
79#include "termhooks.h"
80#include "termopts.h"
81#include "commands.h"
32676c08 82#include "dispextern.h"
d0d6b7c5
JB
83
84Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed;
85/* Qexit is declared and initialized in eval.c. */
86
87/* a process object is a network connection when its childp field is neither
88 Qt nor Qnil but is instead a string (name of foreign host we
89 are connected to + name of port we are connected to) */
90
91#ifdef HAVE_SOCKETS
92static Lisp_Object stream_process;
93
94#define NETCONN_P(p) (XGCTYPE (XPROCESS (p)->childp) == Lisp_String)
95#else
96#define NETCONN_P(p) 0
97#endif /* HAVE_SOCKETS */
98
99/* Define first descriptor number available for subprocesses. */
100#ifdef VMS
101#define FIRST_PROC_DESC 1
102#else /* Not VMS */
103#define FIRST_PROC_DESC 3
104#endif
105
106/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
107 testing SIGCHLD. */
108
109#if !defined (SIGCHLD) && defined (SIGCLD)
110#define SIGCHLD SIGCLD
111#endif /* SIGCLD */
112
113#include "syssignal.h"
114
115/* Define the structure that the wait system call stores.
116 On many systems, there is a structure defined for this.
117 But on vanilla-ish USG systems there is not. */
118
119#ifndef VMS
120#ifndef WAITTYPE
121#if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)
d0d6b7c5
JB
122#define WAITTYPE int
123#define WIFSTOPPED(w) ((w&0377) == 0177)
124#define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
125#define WIFEXITED(w) ((w&0377) == 0)
126#define WRETCODE(w) (w >> 8)
127#define WSTOPSIG(w) (w >> 8)
d0d6b7c5 128#define WTERMSIG(w) (w & 0377)
ce4c9c90
RS
129#ifndef WCOREDUMP
130#define WCOREDUMP(w) ((w&0200) != 0)
131#endif
d0d6b7c5
JB
132#else
133#ifdef BSD4_1
134#include <wait.h>
135#else
136#include <sys/wait.h>
137#endif /* not BSD 4.1 */
138
139#define WAITTYPE union wait
140#define WRETCODE(w) w.w_retcode
141#define WCOREDUMP(w) w.w_coredump
142
143#ifdef HPUX
144/* HPUX version 7 has broken definitions of these. */
145#undef WTERMSIG
146#undef WSTOPSIG
147#undef WIFSTOPPED
148#undef WIFSIGNALED
149#undef WIFEXITED
150#endif
151
152#ifndef WTERMSIG
153#define WTERMSIG(w) w.w_termsig
154#endif
155#ifndef WSTOPSIG
156#define WSTOPSIG(w) w.w_stopsig
157#endif
158#ifndef WIFSTOPPED
159#define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
160#endif
161#ifndef WIFSIGNALED
162#define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
163#endif
164#ifndef WIFEXITED
165#define WIFEXITED(w) (WTERMSIG (w) == 0)
166#endif
167#endif /* BSD or UNIPLUS or STRIDE */
168#endif /* no WAITTYPE */
169#else /* VMS */
170
171/* For the CMU PTY driver + */
172#define DCL_PROMPT "$ "
173
174#include <ssdef.h>
175#include <iodef.h>
176#include <clidef.h>
177#include "vmsproc.h"
178#endif /* VMS */
179
180extern errno;
181extern sys_nerr;
182extern char *sys_errlist[];
183
184#ifndef VMS
185#ifndef BSD4_1
186extern char *sys_siglist[];
187#else
188char *sys_siglist[] =
189 {
190 "bum signal!!",
191 "hangup",
192 "interrupt",
193 "quit",
194 "illegal instruction",
195 "trace trap",
196 "iot instruction",
197 "emt instruction",
198 "floating point exception",
199 "kill",
200 "bus error",
201 "segmentation violation",
202 "bad argument to system call",
203 "write on a pipe with no one to read it",
204 "alarm clock",
205 "software termination signal from kill",
206 "status signal",
207 "sendable stop signal not from tty",
208 "stop signal from tty",
209 "continue a stopped process",
210 "child status has changed",
211 "background read attempted from control tty",
212 "background write attempted from control tty",
213 "input record available at control tty",
214 "exceeded CPU time limit",
215 "exceeded file size limit"
216 };
217#endif
218#endif /* VMS */
219
220#ifdef vipc
221
222#include "vipc.h"
223extern int comm_server;
224extern int net_listen_address;
225#endif /* vipc */
226
227/* t means use pty, nil means use a pipe,
228 maybe other values to come. */
229Lisp_Object Vprocess_connection_type;
230
231#ifdef SKTPAIR
232#ifndef HAVE_SOCKETS
233#include <sys/socket.h>
234#endif
235#endif /* SKTPAIR */
236
237/* Number of events of change of status of a process. */
238int process_tick;
239
240/* Number of events for which the user or sentinel has been notified. */
241int update_tick;
242
243#ifdef FD_SET
244/* We could get this from param.h, but better not to depend on finding that.
245 And better not to risk that it might define other symbols used in this
246 file. */
247#define MAXDESC 64
248#define SELECT_TYPE fd_set
249#else /* no FD_SET */
250#define MAXDESC 32
251#define SELECT_TYPE int
252
253/* Define the macros to access a single-int bitmap of descriptors. */
254#define FD_SET(n, p) (*(p) |= (1 << (n)))
255#define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
256#define FD_ISSET(n, p) (*(p) & (1 << (n)))
257#define FD_ZERO(p) (*(p) = 0)
258#endif /* no FD_SET */
259
260/* Mask of bits indicating the descriptors that we wait for input on */
261
262SELECT_TYPE input_wait_mask;
263
264int delete_exited_processes;
265
266/* Indexed by descriptor, gives the process (if any) for that descriptor */
267Lisp_Object chan_process[MAXDESC];
268
269/* Alist of elements (NAME . PROCESS) */
270Lisp_Object Vprocess_alist;
271
272Lisp_Object Qprocessp;
273
274Lisp_Object get_process ();
275
276/* Buffered-ahead input char from process, indexed by channel.
277 -1 means empty (no char is buffered).
278 Used on sys V where the only way to tell if there is any
279 output from the process is to read at least one char.
280 Always -1 on systems that support FIONREAD. */
281
282int proc_buffered_char[MAXDESC];
283\f
284/* Compute the Lisp form of the process status, p->status, from
285 the numeric status that was returned by `wait'. */
286
287update_status (p)
288 struct Lisp_Process *p;
289{
290 union { int i; WAITTYPE wt; } u;
291 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
292 p->status = status_convert (u.wt);
293 p->raw_status_low = Qnil;
294 p->raw_status_high = Qnil;
295}
296
297/* Convert a process status work in Unix format to
298 the list that we use internally. */
299
300Lisp_Object
301status_convert (w)
302 WAITTYPE w;
303{
304 if (WIFSTOPPED (w))
305 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
306 else if (WIFEXITED (w))
307 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
308 WCOREDUMP (w) ? Qt : Qnil));
309 else if (WIFSIGNALED (w))
310 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
311 WCOREDUMP (w) ? Qt : Qnil));
312 else
313 return Qrun;
314}
315
316/* Given a status-list, extract the three pieces of information
317 and store them individually through the three pointers. */
318
319void
320decode_status (l, symbol, code, coredump)
321 Lisp_Object l;
322 Lisp_Object *symbol;
323 int *code;
324 int *coredump;
325{
326 Lisp_Object tem;
327
328 if (XTYPE (l) == Lisp_Symbol)
329 {
330 *symbol = l;
331 *code = 0;
332 *coredump = 0;
333 }
334 else
335 {
336 *symbol = XCONS (l)->car;
337 tem = XCONS (l)->cdr;
338 *code = XFASTINT (XCONS (tem)->car);
339 tem = XFASTINT (XCONS (tem)->cdr);
340 *coredump = !NILP (tem);
341 }
342}
343
344/* Return a string describing a process status list. */
345
346Lisp_Object
347status_message (status)
348 Lisp_Object status;
349{
350 Lisp_Object symbol;
351 int code, coredump;
352 Lisp_Object string, string2;
353
354 decode_status (status, &symbol, &code, &coredump);
355
356 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
357 {
358 string = build_string (code < NSIG ? sys_siglist[code] : "unknown");
359 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
360 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
361 return concat2 (string, string2);
362 }
363 else if (EQ (symbol, Qexit))
364 {
365 if (code == 0)
366 return build_string ("finished\n");
367 string = Fint_to_string (make_number (code));
368 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
369 return concat2 (build_string ("exited abnormally with code "),
370 concat2 (string, string2));
371 }
372 else
373 return Fcopy_sequence (Fsymbol_name (symbol));
374}
375\f
376#ifdef HAVE_PTYS
4746118a 377static int pty_process;
d0d6b7c5
JB
378
379/* Open an available pty, returning a file descriptor.
380 Return -1 on failure.
381 The file name of the terminal corresponding to the pty
382 is left in the variable pty_name. */
383
384char pty_name[24];
385
386int
387allocate_pty ()
388{
389 struct stat stb;
390 register c, i;
391 int fd;
392
32676c08
JB
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
d0d6b7c5
JB
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
d0d6b7c5
JB
409#else
410 sprintf (pty_name, "/dev/pty%c%x", c, i);
d0d6b7c5
JB
411#endif /* no PTY_NAME_SPRINTF */
412
4d7c105e
RS
413#ifdef PTY_OPEN
414 PTY_OPEN;
415#else /* no PTY_OPEN */
32676c08
JB
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)
d0d6b7c5 422 return -1;
4d7c105e 423#else /* not IRIS */
32676c08
JB
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;
d0d6b7c5
JB
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
4d7c105e
RS
437#endif /* not IRIS */
438#endif /* no PTY_OPEN */
d0d6b7c5
JB
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
d0d6b7c5
JB
446#else
447 sprintf (pty_name, "/dev/tty%c%x", c, i);
d0d6b7c5
JB
448#endif /* no PTY_TTY_NAME_SPRINTF */
449#ifndef UNIPLUS
450 if (access (pty_name, 6) != 0)
451 {
452 close (fd);
453#ifndef IRIS
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
468Lisp_Object
469make_process (name)
470 Lisp_Object name;
471{
472 register Lisp_Object val, tem, name1;
473 register struct Lisp_Process *p;
474 char suffix[10];
475 register int i;
476
477 /* size of process structure includes the vector header,
478 so deduct for that. But struct Lisp_Vector includes the first
479 element, thus deducts too much, so add it back. */
480 val = Fmake_vector (make_number ((sizeof (struct Lisp_Process)
481 - sizeof (struct Lisp_Vector)
482 + sizeof (Lisp_Object))
483 / sizeof (Lisp_Object)),
484 Qnil);
485 XSETTYPE (val, Lisp_Process);
486
487 p = XPROCESS (val);
488 XFASTINT (p->infd) = 0;
489 XFASTINT (p->outfd) = 0;
490 XFASTINT (p->pid) = 0;
491 XFASTINT (p->tick) = 0;
492 XFASTINT (p->update_tick) = 0;
493 p->raw_status_low = Qnil;
494 p->raw_status_high = Qnil;
495 p->status = Qrun;
496 p->mark = Fmake_marker ();
497
498 /* If name is already in use, modify it until it is unused. */
499
500 name1 = name;
501 for (i = 1; ; i++)
502 {
503 tem = Fget_process (name1);
504 if (NILP (tem)) break;
505 sprintf (suffix, "<%d>", i);
506 name1 = concat2 (name, build_string (suffix));
507 }
508 name = name1;
509 p->name = name;
510 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
511 return val;
512}
513
514remove_process (proc)
515 register Lisp_Object proc;
516{
517 register Lisp_Object pair;
518
519 pair = Frassq (proc, Vprocess_alist);
520 Vprocess_alist = Fdelq (pair, Vprocess_alist);
521 Fset_marker (XPROCESS (proc)->mark, Qnil, Qnil);
522
523 deactivate_process (proc);
524}
525\f
526DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
527 "Return t if OBJECT is a process.")
528 (obj)
529 Lisp_Object obj;
530{
531 return XTYPE (obj) == Lisp_Process ? Qt : Qnil;
532}
533
534DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
535 "Return the process named NAME, or nil if there is none.")
536 (name)
537 register Lisp_Object name;
538{
539 if (XTYPE (name) == Lisp_Process)
540 return name;
541 CHECK_STRING (name, 0);
542 return Fcdr (Fassoc (name, Vprocess_alist));
543}
544
545DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
546 "Return the (or, a) process associated with BUFFER.\n\
547BUFFER may be a buffer or the name of one.")
548 (name)
549 register Lisp_Object name;
550{
551 register Lisp_Object buf, tail, proc;
552
553 if (NILP (name)) return Qnil;
554 buf = Fget_buffer (name);
555 if (NILP (buf)) return Qnil;
556
557 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
558 {
559 proc = Fcdr (Fcar (tail));
560 if (XTYPE (proc) == Lisp_Process && EQ (XPROCESS (proc)->buffer, buf))
561 return proc;
562 }
563 return Qnil;
564}
565
ebb9e16f
JB
566/* This is how commands for the user decode process arguments. It
567 accepts a process, a process name, a buffer, a buffer name, or nil.
568 Buffers denote the first process in the buffer, and nil denotes the
569 current buffer. */
d0d6b7c5
JB
570
571Lisp_Object
572get_process (name)
573 register Lisp_Object name;
574{
575 register Lisp_Object proc;
576 if (NILP (name))
577 proc = Fget_buffer_process (Fcurrent_buffer ());
578 else
579 {
580 proc = Fget_process (name);
581 if (NILP (proc))
582 proc = Fget_buffer_process (Fget_buffer (name));
583 }
584
585 if (!NILP (proc))
586 return proc;
587
588 if (NILP (name))
589 error ("Current buffer has no process");
590 else
591 error ("Process %s does not exist", XSTRING (name)->data);
592 /* NOTREACHED */
593}
594
595DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
596 "Delete PROCESS: kill it and forget about it immediately.\n\
ebb9e16f
JB
597PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
598nil, indicating the current buffer's process.")
d0d6b7c5
JB
599 (proc)
600 register Lisp_Object proc;
601{
602 proc = get_process (proc);
603 XPROCESS (proc)->raw_status_low = Qnil;
604 XPROCESS (proc)->raw_status_high = Qnil;
605 if (NETCONN_P (proc))
606 {
607 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
608 XSETINT (XPROCESS (proc)->tick, ++process_tick);
609 }
610 else if (XFASTINT (XPROCESS (proc)->infd))
611 {
612 Fkill_process (proc, Qnil);
613 /* Do this now, since remove_process will make sigchld_handler do nothing. */
614 XPROCESS (proc)->status
615 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
616 XSETINT (XPROCESS (proc)->tick, ++process_tick);
617 status_notify ();
618 }
619 remove_process (proc);
620 return Qnil;
621}
622\f
623DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
624 "Return the status of PROCESS: a symbol, one of these:\n\
625run -- for a process that is running.\n\
626stop -- for a process stopped but continuable.\n\
627exit -- for a process that has exited.\n\
628signal -- for a process that has got a fatal signal.\n\
629open -- for a network stream connection that is open.\n\
630closed -- for a network stream connection that is closed.\n\
ebb9e16f
JB
631nil -- if arg is a process name and no such process exists.\n\
632PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
633nil, indicating the current buffer's process.")
d0d6b7c5
JB
634/* command -- for a command channel opened to Emacs by another process.\n\
635 external -- for an i/o channel opened to Emacs by another process.\n\ */
636 (proc)
637 register Lisp_Object proc;
638{
639 register struct Lisp_Process *p;
640 register Lisp_Object status;
ebb9e16f 641 proc = get_process (proc);
d0d6b7c5
JB
642 if (NILP (proc))
643 return proc;
644 p = XPROCESS (proc);
645 if (!NILP (p->raw_status_low))
646 update_status (p);
647 status = p->status;
648 if (XTYPE (status) == Lisp_Cons)
649 status = XCONS (status)->car;
650 if (NETCONN_P (proc))
651 {
652 if (EQ (status, Qrun))
653 status = Qopen;
654 else if (EQ (status, Qexit))
655 status = Qclosed;
656 }
657 return status;
658}
659
660DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
661 1, 1, 0,
662 "Return the exit status of PROCESS or the signal number that killed it.\n\
663If PROCESS has not yet exited or died, return 0.")
664 (proc)
665 register Lisp_Object proc;
666{
667 CHECK_PROCESS (proc, 0);
668 if (!NILP (XPROCESS (proc)->raw_status_low))
669 update_status (XPROCESS (proc));
670 if (XTYPE (XPROCESS (proc)->status) == Lisp_Cons)
671 return XCONS (XCONS (XPROCESS (proc)->status)->cdr)->car;
672 return make_number (0);
673}
674
675DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
676 "Return the process id of PROCESS.\n\
677This is the pid of the Unix process which PROCESS uses or talks to.\n\
678For a network connection, this value is nil.")
679 (proc)
680 register Lisp_Object proc;
681{
682 CHECK_PROCESS (proc, 0);
683 return XPROCESS (proc)->pid;
684}
685
686DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
687 "Return the name of PROCESS, as a string.\n\
688This is the name of the program invoked in PROCESS,\n\
689possibly modified to make it unique among process names.")
690 (proc)
691 register Lisp_Object proc;
692{
693 CHECK_PROCESS (proc, 0);
694 return XPROCESS (proc)->name;
695}
696
697DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
698 "Return the command that was executed to start PROCESS.\n\
699This is a list of strings, the first string being the program executed\n\
700and the rest of the strings being the arguments given to it.\n\
701For a non-child channel, this is nil.")
702 (proc)
703 register Lisp_Object proc;
704{
705 CHECK_PROCESS (proc, 0);
706 return XPROCESS (proc)->command;
707}
708
709DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
710 2, 2, 0,
711 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
712 (proc, buffer)
713 register Lisp_Object proc, buffer;
714{
715 CHECK_PROCESS (proc, 0);
716 if (!NILP (buffer))
717 CHECK_BUFFER (buffer, 1);
718 XPROCESS (proc)->buffer = buffer;
719 return buffer;
720}
721
722DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
723 1, 1, 0,
724 "Return the buffer PROCESS is associated with.\n\
725Output from PROCESS is inserted in this buffer\n\
726unless PROCESS has a filter.")
727 (proc)
728 register Lisp_Object proc;
729{
730 CHECK_PROCESS (proc, 0);
731 return XPROCESS (proc)->buffer;
732}
733
734DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
735 1, 1, 0,
736 "Return the marker for the end of the last output from PROCESS.")
737 (proc)
738 register Lisp_Object proc;
739{
740 CHECK_PROCESS (proc, 0);
741 return XPROCESS (proc)->mark;
742}
743
744DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
745 2, 2, 0,
746 "Give PROCESS the filter function FILTER; nil means no filter.\n\
747When a process has a filter, each time it does output\n\
748the entire string of output is passed to the filter.\n\
749The filter gets two arguments: the process and the string of output.\n\
750If the process has a filter, its buffer is not used for output.")
751 (proc, filter)
752 register Lisp_Object proc, filter;
753{
754 CHECK_PROCESS (proc, 0);
755 XPROCESS (proc)->filter = filter;
756 return filter;
757}
758
759DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
760 1, 1, 0,
761 "Returns the filter function of PROCESS; nil if none.\n\
762See `set-process-filter' for more info on filter functions.")
763 (proc)
764 register Lisp_Object proc;
765{
766 CHECK_PROCESS (proc, 0);
767 return XPROCESS (proc)->filter;
768}
769
770DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
771 2, 2, 0,
772 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
773The sentinel is called as a function when the process changes state.\n\
774It gets two arguments: the process, and a string describing the change.")
775 (proc, sentinel)
776 register Lisp_Object proc, sentinel;
777{
778 CHECK_PROCESS (proc, 0);
779 XPROCESS (proc)->sentinel = sentinel;
780 return sentinel;
781}
782
783DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
784 1, 1, 0,
785 "Return the sentinel of PROCESS; nil if none.\n\
786See `set-process-sentinel' for more info on sentinels.")
787 (proc)
788 register Lisp_Object proc;
789{
790 CHECK_PROCESS (proc, 0);
791 return XPROCESS (proc)->sentinel;
792}
793
794DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
795 Sprocess_kill_without_query, 1, 2, 0,
796 "Say no query needed if PROCESS is running when Emacs is exited.\n\
797Optional second argument if non-nill says to require a query.\n\
798Value is t if a query was formerly required.")
799 (proc, value)
800 register Lisp_Object proc, value;
801{
802 Lisp_Object tem;
803
804 CHECK_PROCESS (proc, 0);
805 tem = XPROCESS (proc)->kill_without_query;
806 XPROCESS (proc)->kill_without_query = Fnull (value);
807
808 return Fnull (tem);
809}
810\f
811Lisp_Object
812list_processes_1 ()
813{
814 register Lisp_Object tail, tem;
815 Lisp_Object proc, minspace, tem1;
816 register struct buffer *old = current_buffer;
817 register struct Lisp_Process *p;
818 register int state;
819 char tembuf[80];
820
821 XFASTINT (minspace) = 1;
822
823 set_buffer_internal (XBUFFER (Vstandard_output));
824 Fbuffer_disable_undo (Vstandard_output);
825
826 current_buffer->truncate_lines = Qt;
827
828 write_string ("\
829Proc Status Buffer Command\n\
830---- ------ ------ -------\n", -1);
831
832 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
833 {
834 Lisp_Object symbol;
835
836 proc = Fcdr (Fcar (tail));
837 p = XPROCESS (proc);
838 if (NILP (p->childp))
839 continue;
840
841 Finsert (1, &p->name);
842 Findent_to (make_number (13), minspace);
843
844 if (!NILP (p->raw_status_low))
845 update_status (p);
846 symbol = p->status;
847 if (XTYPE (p->status) == Lisp_Cons)
848 symbol = XCONS (p->status)->car;
849
850
851 if (EQ (symbol, Qsignal))
852 {
853 Lisp_Object tem;
854 tem = Fcar (Fcdr (p->status));
855#ifdef VMS
856 if (XINT (tem) < NSIG)
857 write_string (sys_siglist [XINT (tem)], -1);
858 else
859#endif
860 Fprinc (symbol, Qnil);
861 }
862 else if (NETCONN_P (proc))
863 {
864 if (EQ (symbol, Qrun))
865 write_string ("open", -1);
866 else if (EQ (symbol, Qexit))
867 write_string ("closed", -1);
868 else
869 Fprinc (symbol, Qnil);
870 }
871 else
872 Fprinc (symbol, Qnil);
873
874 if (EQ (symbol, Qexit))
875 {
876 Lisp_Object tem;
877 tem = Fcar (Fcdr (p->status));
878 if (XFASTINT (tem))
879 {
880 sprintf (tembuf, " %d", XFASTINT (tem));
881 write_string (tembuf, -1);
882 }
883 }
884
885 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
886 remove_process (proc);
887
888 Findent_to (make_number (22), minspace);
889 if (NILP (p->buffer))
890 insert_string ("(none)");
891 else if (NILP (XBUFFER (p->buffer)->name))
892 insert_string ("(Killed)");
893 else
894 Finsert (1, &XBUFFER (p->buffer)->name);
895
896 Findent_to (make_number (37), minspace);
897
898 if (NETCONN_P (proc))
899 {
900 sprintf (tembuf, "(network stream connection to %s)\n",
901 XSTRING (p->childp)->data);
902 insert_string (tembuf);
903 }
904 else
905 {
906 tem = p->command;
907 while (1)
908 {
909 tem1 = Fcar (tem);
910 Finsert (1, &tem1);
911 tem = Fcdr (tem);
912 if (NILP (tem))
913 break;
914 insert_string (" ");
915 }
916 insert_string ("\n");
917 }
918 }
919 return Qnil;
920}
921
922DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
923 "Display a list of all processes.\n\
924\(Any processes listed as Exited or Signaled are actually eliminated\n\
925after the listing is made.)")
926 ()
927{
928 internal_with_output_to_temp_buffer ("*Process List*",
929 list_processes_1, Qnil);
930 return Qnil;
931}
932
933DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
934 "Return a list of all processes.")
935 ()
936{
937 return Fmapcar (Qcdr, Vprocess_alist);
938}
939\f
940DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
941 "Start a program in a subprocess. Return the process object for it.\n\
942Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
943NAME is name for process. It is modified if necessary to make it unique.\n\
944BUFFER is the buffer or (buffer-name) to associate with the process.\n\
945 Process output goes at end of that buffer, unless you specify\n\
946 an output stream or filter function to handle the output.\n\
947 BUFFER may be also nil, meaning that this process is not associated\n\
948 with any buffer\n\
949Third arg is program file name. It is searched for as in the shell.\n\
950Remaining arguments are strings to give program as arguments.")
951 (nargs, args)
952 int nargs;
953 register Lisp_Object *args;
954{
955 Lisp_Object buffer, name, program, proc, tem;
956#ifdef VMS
957 register unsigned char *new_argv;
958 int len;
959#else
960 register unsigned char **new_argv;
961#endif
962 register int i;
963
964 buffer = args[1];
965 if (!NILP (buffer))
966 buffer = Fget_buffer_create (buffer);
967
968 name = args[0];
969 CHECK_STRING (name, 0);
970
971 program = args[2];
972
973 CHECK_STRING (program, 2);
974
975#ifdef VMS
976 /* Make a one member argv with all args concatenated
977 together separated by a blank. */
978 len = XSTRING (program)->size + 2;
979 for (i = 3; i < nargs; i++)
980 {
981 tem = args[i];
982 CHECK_STRING (tem, i);
983 len += XSTRING (tem)->size + 1; /* count the blank */
984 }
985 new_argv = (unsigned char *) alloca (len);
986 strcpy (new_argv, XSTRING (program)->data);
987 for (i = 3; i < nargs; i++)
988 {
989 tem = args[i];
990 CHECK_STRING (tem, i);
991 strcat (new_argv, " ");
992 strcat (new_argv, XSTRING (tem)->data);
993 }
994#else /* not VMS */
995 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
996
997 for (i = 3; i < nargs; i++)
998 {
999 tem = args[i];
1000 CHECK_STRING (tem, i);
1001 new_argv[i - 2] = XSTRING (tem)->data;
1002 }
1003 new_argv[i - 2] = 0;
1004 new_argv[0] = XSTRING (program)->data;
1005
1006 /* If program file name is not absolute, search our path for it */
1007 if (new_argv[0][0] != '/')
1008 {
1009 tem = Qnil;
1010 openp (Vexec_path, program, "", &tem, 1);
1011 if (NILP (tem))
1012 report_file_error ("Searching for program", Fcons (program, Qnil));
1013 new_argv[0] = XSTRING (tem)->data;
1014 }
1015#endif /* not VMS */
1016
1017 proc = make_process (name);
1018
1019 XPROCESS (proc)->childp = Qt;
1020 XPROCESS (proc)->command_channel_p = Qnil;
1021 XPROCESS (proc)->buffer = buffer;
1022 XPROCESS (proc)->sentinel = Qnil;
1023 XPROCESS (proc)->filter = Qnil;
1024 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1025
1026 create_process (proc, new_argv);
1027
1028 return proc;
1029}
1030
1031SIGTYPE
1032create_process_1 (signo)
1033 int signo;
1034{
1035#ifdef USG
1036 /* USG systems forget handlers when they are used;
1037 must reestablish each time */
1038 signal (signo, create_process_1);
1039#endif /* USG */
1040}
1041
1042#if 0 /* This doesn't work; see the note before sigchld_handler. */
1043#ifdef USG
1044#ifdef SIGCHLD
1045/* Mimic blocking of signals on system V, which doesn't really have it. */
1046
1047/* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1048int sigchld_deferred;
1049
1050SIGTYPE
1051create_process_sigchld ()
1052{
1053 signal (SIGCHLD, create_process_sigchld);
1054
1055 sigchld_deferred = 1;
1056}
1057#endif
1058#endif
1059#endif
1060
1061#ifndef VMS /* VMS version of this function is in vmsproc.c. */
1062create_process (process, new_argv)
1063 Lisp_Object process;
1064 char **new_argv;
1065{
1066 int pid, inchannel, outchannel, forkin, forkout;
1067 int sv[2];
1068#ifdef SIGCHLD
1069 SIGTYPE (*sigchld)();
1070#endif
1071 int pty_flag = 0;
1072 Lisp_Object current_dir;
d0d6b7c5
JB
1073 extern char **environ;
1074
d0d6b7c5
JB
1075 inchannel = outchannel = -1;
1076
1077#ifdef HAVE_PTYS
1078 if (EQ (Vprocess_connection_type, Qt))
1079 outchannel = inchannel = allocate_pty ();
1080
1081 /* Make sure that the child will be able to chdir to the current
1082 buffer's current directory. We can't just have the child check
1083 for an error when it does the chdir, since it's in a vfork. */
1084 current_dir = expand_and_dir_to_file (current_buffer->directory, Qnil);
1085 if (NILP (Ffile_accessible_directory_p (current_dir)))
1086 report_file_error ("Setting current directory",
1087 Fcons (current_buffer->directory, Qnil));
1088
1089 if (inchannel >= 0)
1090 {
1091#ifndef USG
1092 /* On USG systems it does not work to open the pty's tty here
1093 and then close and reopen it in the child. */
1094#ifdef O_NOCTTY
1095 /* Don't let this terminal become our controlling terminal
1096 (in case we don't have one). */
1097 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0);
1098#else
1099 forkout = forkin = open (pty_name, O_RDWR, 0);
1100#endif
1101 if (forkin < 0)
1102 report_file_error ("Opening pty", Qnil);
1103#else
1104 forkin = forkout = -1;
1105#endif /* not USG */
1106 pty_flag = 1;
1107 }
1108 else
1109#endif /* HAVE_PTYS */
1110#ifdef SKTPAIR
1111 {
1112 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1113 report_file_error ("Opening socketpair", Qnil);
1114 outchannel = inchannel = sv[0];
1115 forkout = forkin = sv[1];
1116 }
1117#else /* not SKTPAIR */
1118 {
1119 pipe (sv);
1120 inchannel = sv[0];
1121 forkout = sv[1];
1122 pipe (sv);
1123 outchannel = sv[1];
1124 forkin = sv[0];
1125 }
1126#endif /* not SKTPAIR */
1127
1128#if 0
1129 /* Replaced by close_process_descs */
1130 set_exclusive_use (inchannel);
1131 set_exclusive_use (outchannel);
1132#endif
1133
1134/* Stride people say it's a mystery why this is needed
1135 as well as the O_NDELAY, but that it fails without this. */
1136#if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1137 {
1138 int one = 1;
1139 ioctl (inchannel, FIONBIO, &one);
1140 }
1141#endif
1142
1143#ifdef O_NONBLOCK
1144 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1145#else
1146#ifdef O_NDELAY
1147 fcntl (inchannel, F_SETFL, O_NDELAY);
1148#endif
1149#endif
1150
1151 /* Record this as an active process, with its channels.
1152 As a result, child_setup will close Emacs's side of the pipes. */
1153 chan_process[inchannel] = process;
1154 XFASTINT (XPROCESS (process)->infd) = inchannel;
1155 XFASTINT (XPROCESS (process)->outfd) = outchannel;
1156 /* Record the tty descriptor used in the subprocess. */
1157 if (forkin < 0)
1158 XPROCESS (process)->subtty = Qnil;
1159 else
1160 XFASTINT (XPROCESS (process)->subtty) = forkin;
1161 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1162 XPROCESS (process)->status = Qrun;
1163
1164 /* Delay interrupts until we have a chance to store
1165 the new fork's pid in its process structure */
1166#ifdef SIGCHLD
1167#ifdef BSD4_1
1168 sighold (SIGCHLD);
1169#else /* not BSD4_1 */
1170#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1171 sigsetmask (sigmask (SIGCHLD));
1172#else /* ordinary USG */
1173#if 0
1174 sigchld_deferred = 0;
1175 sigchld = signal (SIGCHLD, create_process_sigchld);
1176#endif
1177#endif /* ordinary USG */
1178#endif /* not BSD4_1 */
1179#endif /* SIGCHLD */
1180
1181 /* Until we store the proper pid, enable sigchld_handler
1182 to recognize an unknown pid as standing for this process.
1183 It is very important not to let this `marker' value stay
1184 in the table after this function has returned; if it does
1185 it might cause call-process to hang and subsequent asynchronous
1186 processes to get their return values scrambled. */
1187 XSETINT (XPROCESS (process)->pid, -1);
1188
1189 {
1190 /* child_setup must clobber environ on systems with true vfork.
1191 Protect it from permanent change. */
1192 char **save_environ = environ;
1193
1194 pid = vfork ();
1195 if (pid == 0)
1196 {
1197 int xforkin = forkin;
1198 int xforkout = forkout;
1199
1200#if 0 /* This was probably a mistake--it duplicates code later on,
1201 but fails to handle all the cases. */
1202 /* Make sure SIGCHLD is not blocked in the child. */
1203 sigsetmask (SIGEMPTYMASK);
1204#endif
1205
1206 /* Make the pty be the controlling terminal of the process. */
1207#ifdef HAVE_PTYS
1208 /* First, disconnect its current controlling terminal. */
1209#ifdef HAVE_SETSID
1210 setsid ();
ce4c9c90
RS
1211#ifdef TIOCSCTTY
1212 /* Make the pty's terminal the controlling terminal. */
1213 if (pty_flag && (ioctl (xforkin, TIOCSCTTY, 0) < 0))
1214 abort ();
1215#endif
d0d6b7c5
JB
1216#else /* not HAVE_SETSID */
1217#ifdef USG
1218 /* It's very important to call setpgrp() here and no time
1219 afterwards. Otherwise, we lose our controlling tty which
1220 is set when we open the pty. */
1221 setpgrp ();
1222#endif /* USG */
1223#endif /* not HAVE_SETSID */
1224#ifdef TIOCNOTTY
1225 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1226 can do TIOCSPGRP only to the process's controlling tty. */
1227 if (pty_flag)
1228 {
1229 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1230 I can't test it since I don't have 4.3. */
1231 int j = open ("/dev/tty", O_RDWR, 0);
1232 ioctl (j, TIOCNOTTY, 0);
1233 close (j);
1234#ifndef USG
1235 /* In order to get a controlling terminal on some versions
1236 of BSD, it is necessary to put the process in pgrp 0
1237 before it opens the terminal. */
1238 setpgrp (0, 0);
1239#endif
1240 }
1241#endif /* TIOCNOTTY */
1242
1243#if !defined (RTU) && !defined (UNIPLUS)
1244/*** There is a suggestion that this ought to be a
1245 conditional on TIOCSPGRP. */
1246 /* Now close the pty (if we had it open) and reopen it.
1247 This makes the pty the controlling terminal of the subprocess. */
1248 if (pty_flag)
1249 {
1250 /* I wonder if close (open (pty_name, ...)) would work? */
1251 if (xforkin >= 0)
1252 close (xforkin);
1253 xforkout = xforkin = open (pty_name, O_RDWR, 0);
1254
1255 if (xforkin < 0)
1256 abort ();
1257 }
1258#endif /* not UNIPLUS and not RTU */
1259#ifdef SETUP_SLAVE_PTY
1260 SETUP_SLAVE_PTY;
1261#endif /* SETUP_SLAVE_PTY */
1262#ifdef AIX
1263 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1264 Now reenable it in the child, so it will die when we want it to. */
1265 if (pty_flag)
1266 signal (SIGHUP, SIG_DFL);
1267#endif
1268#endif /* HAVE_PTYS */
1269
1270#ifdef SIGCHLD
1271#ifdef BSD4_1
1272 sigrelse (SIGCHLD);
1273#else /* not BSD4_1 */
1274#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1275 sigsetmask (SIGEMPTYMASK);
1276#else /* ordinary USG */
1277 signal (SIGCHLD, sigchld);
1278#endif /* ordinary USG */
1279#endif /* not BSD4_1 */
1280#endif /* SIGCHLD */
1281
1282 child_setup_tty (xforkout);
1283 child_setup (xforkin, xforkout, xforkout,
e065a56e 1284 new_argv, 1, current_dir);
d0d6b7c5
JB
1285 }
1286 environ = save_environ;
1287 }
1288
1289 if (pid < 0)
1290 {
1291 remove_process (process);
1292 report_file_error ("Doing vfork", Qnil);
1293 }
1294
1295 XFASTINT (XPROCESS (process)->pid) = pid;
1296
1297 FD_SET (inchannel, &input_wait_mask);
1298
1299 /* If the subfork execv fails, and it exits,
1300 this close hangs. I don't know why.
1301 So have an interrupt jar it loose. */
1302 stop_polling ();
1303 signal (SIGALRM, create_process_1);
1304 alarm (1);
1305#ifdef SYSV4_PTYS
1306 /* OK to close only if it's not a pty. Otherwise we need to leave
1307 it open for ioctl to get pgrp when signals are sent, or to send
1308 the interrupt characters through if that's how we're signalling
1309 subprocesses. Alternately if you are concerned about running out
1310 of file descriptors, you could just save the tty name and open
1311 just to do the ioctl. */
1312 if (NILP (XFASTINT (XPROCESS (process)->pty_flag)))
1313#endif
1314 {
1315 XPROCESS (process)->subtty = Qnil;
1316 if (forkin >= 0)
1317 close (forkin);
1318 }
1319 alarm (0);
1320 start_polling ();
1321 if (forkin != forkout && forkout >= 0)
1322 close (forkout);
1323
1324#ifdef SIGCHLD
1325#ifdef BSD4_1
1326 sigrelse (SIGCHLD);
1327#else /* not BSD4_1 */
1328#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1329 sigsetmask (SIGEMPTYMASK);
1330#else /* ordinary USG */
1331#if 0
1332 signal (SIGCHLD, sigchld);
1333 /* Now really handle any of these signals
1334 that came in during this function. */
1335 if (sigchld_deferred)
1336 kill (getpid (), SIGCHLD);
1337#endif
1338#endif /* ordinary USG */
1339#endif /* not BSD4_1 */
1340#endif /* SIGCHLD */
1341}
1342#endif /* not VMS */
1343
1344#ifdef HAVE_SOCKETS
1345
1346/* open a TCP network connection to a given HOST/SERVICE. Treated
1347 exactly like a normal process when reading and writing. Only
1348 differences are in status display and process deletion. A network
1349 connection has no PID; you cannot signal it. All you can do is
1350 deactivate and close it via delete-process */
1351
1352DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream,
1353 4, 4, 0,
1354 "Open a TCP connection for a service to a host.\n\
1355Returns a subprocess-object to represent the connection.\n\
1356Input and output work as for subprocesses; `delete-process' closes it.\n\
1357Args are NAME BUFFER HOST SERVICE.\n\
1358NAME is name for process. It is modified if necessary to make it unique.\n\
1359BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1360 Process output goes at end of that buffer, unless you specify\n\
1361 an output stream or filter function to handle the output.\n\
1362 BUFFER may be also nil, meaning that this process is not associated\n\
1363 with any buffer\n\
1364Third arg is name of the host to connect to, or its IP address.\n\
1365Fourth arg SERVICE is name of the service desired, or an integer\n\
1366 specifying a port number to connect to.")
1367 (name, buffer, host, service)
1368 Lisp_Object name, buffer, host, service;
1369{
1370 Lisp_Object proc;
1371 register int i;
1372 struct sockaddr_in address;
1373 struct servent *svc_info;
1374 struct hostent *host_info_ptr, host_info;
1375 char *(addr_list[2]);
1376 unsigned long numeric_addr;
1377 int s, outch, inch;
1378 char errstring[80];
1379 int port;
1380 struct hostent host_info_fixed;
1381 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1382
1383 GCPRO4 (name, buffer, host, service);
1384 CHECK_STRING (name, 0);
1385 CHECK_STRING (host, 0);
1386 if (XTYPE(service) == Lisp_Int)
1387 port = htons ((unsigned short) XINT (service));
1388 else
1389 {
1390 CHECK_STRING (service, 0);
1391 svc_info = getservbyname (XSTRING (service)->data, "tcp");
1392 if (svc_info == 0)
1393 error ("Unknown service \"%s\"", XSTRING (service)->data);
1394 port = svc_info->s_port;
1395 }
1396
1397 host_info_ptr = gethostbyname (XSTRING (host)->data);
1398 if (host_info_ptr == 0)
1399 /* Attempt to interpret host as numeric inet address */
1400 {
1401 numeric_addr = inet_addr (XSTRING (host)->data);
1402 if (numeric_addr == -1)
1403 error ("Unknown host \"%s\"", XSTRING (host)->data);
1404
1405 host_info_ptr = &host_info;
1406 host_info.h_name = 0;
1407 host_info.h_aliases = 0;
1408 host_info.h_addrtype = AF_INET;
1409 host_info.h_addr_list = &(addr_list[0]);
1410 addr_list[0] = (char*)(&numeric_addr);
1411 addr_list[1] = 0;
1412 host_info.h_length = strlen (addr_list[0]);
1413 }
1414
1415 bzero (&address, sizeof address);
1416 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr,
1417 host_info_ptr->h_length);
1418 address.sin_family = host_info_ptr->h_addrtype;
1419 address.sin_port = port;
1420
1421 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0);
1422 if (s < 0)
1423 report_file_error ("error creating socket", Fcons (name, Qnil));
1424
1425 loop:
1426 if (connect (s, &address, sizeof address) == -1)
1427 {
1428 int xerrno = errno;
1429 if (errno == EINTR)
1430 goto loop;
1431 close (s);
1432 errno = xerrno;
1433 report_file_error ("connection failed",
1434 Fcons (host, Fcons (name, Qnil)));
1435 }
1436
1437 inch = s;
1438 outch = dup (s);
1439 if (outch < 0)
1440 report_file_error ("error duplicating socket", Fcons (name, Qnil));
1441
1442 if (!NILP (buffer))
1443 buffer = Fget_buffer_create (buffer);
1444 proc = make_process (name);
1445
1446 chan_process[inch] = proc;
1447
1448#ifdef O_NONBLOCK
1449 fcntl (inch, F_SETFL, O_NONBLOCK);
1450#else
1451#ifdef O_NDELAY
1452 fcntl (inch, F_SETFL, O_NDELAY);
1453#endif
1454#endif
1455
1456 XPROCESS (proc)->childp = host;
1457 XPROCESS (proc)->command_channel_p = Qnil;
1458 XPROCESS (proc)->buffer = buffer;
1459 XPROCESS (proc)->sentinel = Qnil;
1460 XPROCESS (proc)->filter = Qnil;
1461 XPROCESS (proc)->command = Qnil;
1462 XPROCESS (proc)->pid = Qnil;
1463 XFASTINT (XPROCESS (proc)->infd) = s;
1464 XFASTINT (XPROCESS (proc)->outfd) = outch;
1465 XPROCESS (proc)->status = Qrun;
1466 FD_SET (inch, &input_wait_mask);
1467
1468 UNGCPRO;
1469 return proc;
1470}
1471#endif /* HAVE_SOCKETS */
1472
1473deactivate_process (proc)
1474 Lisp_Object proc;
1475{
1476 register int inchannel, outchannel;
1477 register struct Lisp_Process *p = XPROCESS (proc);
1478
1479 inchannel = XFASTINT (p->infd);
1480 outchannel = XFASTINT (p->outfd);
1481
1482 if (inchannel)
1483 {
1484 /* Beware SIGCHLD hereabouts. */
1485 flush_pending_output (inchannel);
1486#ifdef VMS
1487 {
1488 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
1489 sys$dassgn (outchannel);
1490 vs = get_vms_process_pointer (p->pid)
1491 if (vs)
1492 give_back_vms_process_stuff (vs);
1493 }
1494#else
1495 close (inchannel);
1496 if (outchannel && outchannel != inchannel)
1497 close (outchannel);
1498#endif
1499
1500 XFASTINT (p->infd) = 0;
1501 XFASTINT (p->outfd) = 0;
1502 chan_process[inchannel] = Qnil;
1503 FD_CLR (inchannel, &input_wait_mask);
1504 }
1505}
1506
1507/* Close all descriptors currently in use for communication
1508 with subprocess. This is used in a newly-forked subprocess
1509 to get rid of irrelevant descriptors. */
1510
1511close_process_descs ()
1512{
1513 int i;
1514 for (i = 0; i < MAXDESC; i++)
1515 {
1516 Lisp_Object process;
1517 process = chan_process[i];
1518 if (!NILP (process))
1519 {
1520 int in = XFASTINT (XPROCESS (process)->infd);
1521 int out = XFASTINT (XPROCESS (process)->outfd);
1522 if (in)
1523 close (in);
1524 if (out && in != out)
1525 close (out);
1526 }
1527 }
1528}
1529\f
1530DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
1531 0, 3, 0,
1532 "Allow any pending output from subprocesses to be read by Emacs.\n\
1533It is read into the process' buffers or given to their filter functions.\n\
1534Non-nil arg PROCESS means do not return until some output has been received\n\
1535from PROCESS.\n\
1536Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
1537seconds and microseconds to wait; return after that much time whether\n\
1538or not there is input.\n\
1539Return non-nil iff we received any output before the timeout expired.")
1540 (proc, timeout, timeout_msecs)
1541 register Lisp_Object proc, timeout, timeout_msecs;
1542{
1543 int seconds;
1544 int useconds;
1545
1546 if (! NILP (timeout_msecs))
1547 {
1548 CHECK_NUMBER (timeout_msecs, 2);
1549 useconds = XINT (timeout_msecs);
1550 if (XTYPE (timeout) != Lisp_Int)
1551 XSET (timeout, Lisp_Int, 0);
1552
1553 {
1554 int carry = useconds / 1000000;
1555
1556 XSETINT (timeout, XINT (timeout) + carry);
1557 useconds -= carry * 1000000;
1558
1559 /* I think this clause is necessary because C doesn't
1560 guarantee a particular rounding direction for negative
1561 integers. */
1562 if (useconds < 0)
1563 {
1564 XSETINT (timeout, XINT (timeout) - 1);
1565 useconds += 1000000;
1566 }
1567 }
1568 }
de946e5a
RS
1569 else
1570 useconds = 0;
d0d6b7c5
JB
1571
1572 if (! NILP (timeout))
1573 {
1574 CHECK_NUMBER (timeout, 1);
1575 seconds = XINT (timeout);
1576 if (seconds <= 0)
1577 seconds = -1;
1578 }
1579 else
1580 {
1581 if (NILP (proc))
1582 seconds = -1;
1583 else
1584 seconds = 0;
1585 }
1586
f76475ad
JB
1587 if (NILP (proc))
1588 XFASTINT (proc) = 0;
1589
d0d6b7c5 1590 return
f76475ad 1591 (wait_reading_process_input (seconds, useconds, proc, 0)
d0d6b7c5
JB
1592 ? Qt : Qnil);
1593}
1594
1595/* This variable is different from waiting_for_input in keyboard.c.
1596 It is used to communicate to a lisp process-filter/sentinel (via the
1597 function Fwaiting_for_user_input_p below) whether emacs was waiting
1598 for user-input when that process-filter was called.
1599 waiting_for_input cannot be used as that is by definition 0 when
1600 lisp code is being evalled */
1601static int waiting_for_user_input_p;
1602
1603/* Read and dispose of subprocess output while waiting for timeout to
1604 elapse and/or keyboard input to be available.
1605
1606 time_limit is:
1607 timeout in seconds, or
1608 zero for no limit, or
1609 -1 means gobble data immediately available but don't wait for any.
1610
f76475ad 1611 read_kbd is a lisp value:
d0d6b7c5
JB
1612 0 to ignore keyboard input, or
1613 1 to return when input is available, or
1614 -1 means caller will actually read the input, so don't throw to
1615 the quit handler, or
f76475ad
JB
1616 a process object, meaning wait until something arrives from that
1617 process. The return value is true iff we read some input from
1618 that process.
d0d6b7c5
JB
1619
1620 do_display != 0 means redisplay should be done to show subprocess
1621 output that arrives.
1622
1623 If read_kbd is a pointer to a struct Lisp_Process, then the
1624 function returns true iff we received input from that process
1625 before the timeout elapsed.
1626 Otherwise, return true iff we recieved input from any process. */
1627
1628wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
1629 int time_limit, microsecs;
1630 Lisp_Object read_kbd;
1631 int do_display;
d0d6b7c5
JB
1632{
1633 register int channel, nfds, m;
1634 static SELECT_TYPE Available;
1635 int xerrno;
1636 Lisp_Object proc;
1637 EMACS_TIME timeout, end_time, garbage;
1638 SELECT_TYPE Atemp;
1639 int wait_channel = 0;
1640 struct Lisp_Process *wait_proc = 0;
1641 int got_some_input = 0;
1642
1643 FD_ZERO (&Available);
1644
f76475ad
JB
1645 /* If read_kbd is a process to watch, set wait_proc and wait_channel
1646 accordingly. */
1647 if (XTYPE (read_kbd) == Lisp_Process)
d0d6b7c5 1648 {
f76475ad 1649 wait_proc = XPROCESS (read_kbd);
d0d6b7c5 1650 wait_channel = XFASTINT (wait_proc->infd);
f76475ad 1651 XFASTINT (read_kbd) = 0;
d0d6b7c5
JB
1652 }
1653
f76475ad 1654 waiting_for_user_input_p = XINT (read_kbd);
d0d6b7c5
JB
1655
1656 /* Since we may need to wait several times,
1657 compute the absolute time to return at. */
1658 if (time_limit || microsecs)
1659 {
1660 EMACS_GET_TIME (end_time);
1661 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
1662 EMACS_ADD_TIME (end_time, end_time, timeout);
1663 }
1664
d0d6b7c5
JB
1665 while (1)
1666 {
1667 /* If calling from keyboard input, do not quit
1668 since we want to return C-g as an input character.
1669 Otherwise, do pending quit if requested. */
f76475ad 1670 if (XINT (read_kbd) >= 0)
d0d6b7c5
JB
1671 QUIT;
1672
1673 /* If status of something has changed, and no input is available,
1674 notify the user of the change right away */
1675 if (update_tick != process_tick && do_display)
1676 {
1677 Atemp = input_wait_mask;
1678 EMACS_SET_SECS_USECS (timeout, 0, 0);
1679 if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0)
1680 status_notify ();
1681 }
1682
1683 /* Don't wait for output from a non-running process. */
1684 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
1685 update_status (wait_proc);
1686 if (wait_proc != 0
1687 && ! EQ (wait_proc->status, Qrun))
1688 break;
1689
1690 /* Compute time from now till when time limit is up */
1691 /* Exit if already run out */
1692 if (time_limit == -1)
1693 {
1694 /* -1 specified for timeout means
1695 gobble output available now
1696 but don't wait at all. */
1697
1698 EMACS_SET_SECS_USECS (timeout, 0, 0);
1699 }
1700 else if (time_limit || microsecs)
1701 {
1702 EMACS_GET_TIME (timeout);
1703 EMACS_SUB_TIME (timeout, end_time, timeout);
1704 if (EMACS_TIME_NEG_P (timeout))
1705 break;
1706 }
1707 else
1708 {
1709 EMACS_SET_SECS_USECS (timeout, 100000, 0);
1710 }
1711
1712 /* Cause C-g and alarm signals to take immediate action,
1713 and cause input available signals to zero out timeout */
f76475ad 1714 if (XINT (read_kbd) < 0)
d0d6b7c5
JB
1715 set_waiting_for_input (&timeout);
1716
1717 /* Wait till there is something to do */
1718
1719 Available = input_wait_mask;
f76475ad 1720 if (! XINT (read_kbd))
d0d6b7c5
JB
1721 FD_CLR (0, &Available);
1722
ff11dfa1 1723 /* If frame size has changed or the window is newly mapped,
ffd56f97
JB
1724 redisplay now, before we start to wait. There is a race
1725 condition here; if a SIGIO arrives between now and the select
ff11dfa1
JB
1726 and indicates that a frame is trashed, we lose. */
1727 if (frame_garbaged)
ffd56f97
JB
1728 redisplay_preserve_echo_area ();
1729
f76475ad 1730 if (XINT (read_kbd) && detect_input_pending ())
d0d6b7c5
JB
1731 nfds = 0;
1732 else
d0d6b7c5 1733 nfds = select (MAXDESC, &Available, 0, 0, &timeout);
6720a7fb 1734
d0d6b7c5
JB
1735 xerrno = errno;
1736
1737 /* Make C-g and alarm signals set flags again */
1738 clear_waiting_for_input ();
1739
1740 /* If we woke up due to SIGWINCH, actually change size now. */
1741 do_pending_window_change ();
1742
ffd56f97 1743 if (time_limit && nfds == 0) /* timeout elapsed */
d0d6b7c5
JB
1744 break;
1745 if (nfds < 0)
1746 {
1747 if (xerrno == EINTR)
1748 FD_ZERO (&Available);
1749#ifdef ALLIANT
1750 /* This happens for no known reason on ALLIANT.
1751 I am guessing that this is the right response. -- RMS. */
1752 else if (xerrno == EFAULT)
1753 FD_ZERO (&Available);
1754#endif
1755 else if (xerrno == EBADF)
1756 {
1757#ifdef AIX
1758 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
1759 the child's closure of the pts gives the parent a SIGHUP, and
1760 the ptc file descriptor is automatically closed,
1761 yielding EBADF here or at select() call above.
1762 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
1763 in m-ibmrt-aix.h), and here we just ignore the select error.
1764 Cleanup occurs c/o status_notify after SIGCLD. */
ffd56f97 1765 FD_ZERO (&Available); /* Cannot depend on values returned */
d0d6b7c5
JB
1766#else
1767 abort ();
1768#endif
1769 }
1770 else
1771 error("select error: %s", sys_errlist[xerrno]);
1772 }
1773#ifdef sun
1774 else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input)
1775 /* System sometimes fails to deliver SIGIO. */
1776 kill (getpid (), SIGIO);
1777#endif
1778
1779 /* Check for keyboard input */
1780 /* If there is any, return immediately
1781 to give it higher priority than subprocesses */
1782
f76475ad 1783 if (XINT (read_kbd) && detect_input_pending ())
d0d6b7c5
JB
1784 break;
1785
4746118a 1786#ifdef SIGIO
d0d6b7c5
JB
1787 /* If we think we have keyboard input waiting, but didn't get SIGIO
1788 go read it. This can happen with X on BSD after logging out.
1789 In that case, there really is no input and no SIGIO,
1790 but select says there is input. */
1791
1792 /*
f76475ad 1793 if (XINT (read_kbd) && interrupt_input && (Available & fileno (stdin)))
ffd56f97 1794 */
f76475ad 1795 if (XINT (read_kbd) && interrupt_input && (FD_ISSET (fileno (stdin), &Available)))
d0d6b7c5 1796 kill (0, SIGIO);
4746118a 1797#endif
d0d6b7c5
JB
1798
1799#ifdef vipc
1800 /* Check for connection from other process */
1801
1802 if (Available & ChannelMask (comm_server))
1803 {
1804 Available &= ~(ChannelMask (comm_server));
1805 create_commchan ();
1806 }
0ad77c54 1807#endif /* vipc */
d0d6b7c5
JB
1808
1809 if (! wait_proc)
1810 got_some_input |= nfds > 0;
1811
32676c08
JB
1812 /* If checking input just got us a size-change event from X,
1813 obey it now if we should. */
f76475ad 1814 if (XINT (read_kbd))
32676c08
JB
1815 do_pending_window_change ();
1816
d0d6b7c5
JB
1817 /* Check for data from a process or a command channel */
1818 for (channel = FIRST_PROC_DESC; channel < MAXDESC; channel++)
1819 {
1820 if (FD_ISSET (channel, &Available))
1821 {
1822 int nread;
1823
1824 /* If waiting for this channel, arrange to return as
1825 soon as no more input to be processed. No more
1826 waiting. */
1827 if (wait_channel == channel)
1828 {
1829 wait_channel = 0;
1830 time_limit = -1;
1831 got_some_input = 1;
1832 }
1833 proc = chan_process[channel];
1834 if (NILP (proc))
1835 continue;
1836
1837#ifdef vipc
1838 /* It's a command channel */
1839 if (!NILP (XPROCESS (proc)->command_channel_p))
1840 {
1841 ProcessCommChan (channel, proc);
1842 if (NILP (XPROCESS (proc)->command_channel_p))
1843 {
1844 /* It has ceased to be a command channel! */
1845 int bytes_available;
1846 if (ioctl (channel, FIONREAD, &bytes_available) < 0)
1847 bytes_available = 0;
1848 if (bytes_available)
1849 FD_SET (channel, &Available);
1850 }
1851 continue;
1852 }
ffd56f97 1853#endif /* vipc */
d0d6b7c5
JB
1854
1855 /* Read data from the process, starting with our
1856 buffered-ahead character if we have one. */
1857
1858 nread = read_process_output (proc, channel);
1859 if (nread > 0)
1860 {
1861 /* Since read_process_output can run a filter,
1862 which can call accept-process-output,
1863 don't try to read from any other processes
1864 before doing the select again. */
1865 FD_ZERO (&Available);
1866
1867 if (do_display)
1868 redisplay_preserve_echo_area ();
1869 }
1870#ifdef EWOULDBLOCK
1871 else if (nread == -1 && errno == EWOULDBLOCK)
1872 ;
1873#else
1874#ifdef O_NONBLOCK
1875 else if (nread == -1 && errno == EAGAIN)
1876 ;
1877#else
1878#ifdef O_NDELAY
1879 else if (nread == -1 && errno == EAGAIN)
1880 ;
1881 /* Note that we cannot distinguish between no input
1882 available now and a closed pipe.
1883 With luck, a closed pipe will be accompanied by
1884 subprocess termination and SIGCHLD. */
1885 else if (nread == 0 && !NETCONN_P (proc))
1886 ;
ffd56f97
JB
1887#endif /* O_NDELAY */
1888#endif /* O_NONBLOCK */
1889#endif /* EWOULDBLOCK */
d0d6b7c5
JB
1890#ifdef HAVE_PTYS
1891 /* On some OSs with ptys, when the process on one end of
1892 a pty exits, the other end gets an error reading with
1893 errno = EIO instead of getting an EOF (0 bytes read).
1894 Therefore, if we get an error reading and errno =
1895 EIO, just continue, because the child process has
1896 exited and should clean itself up soon (e.g. when we
1897 get a SIGCHLD). */
1898 else if (nread == -1 && errno == EIO)
1899 ;
ffd56f97
JB
1900#endif /* HAVE_PTYS */
1901 /* If we can detect process termination, don't consider the process
1902 gone just because its pipe is closed. */
d0d6b7c5
JB
1903#ifdef SIGCHLD
1904 else if (nread == 0 && !NETCONN_P (proc))
1905 ;
1906#endif
1907 else
1908 {
1909 /* Preserve status of processes already terminated. */
1910 XSETINT (XPROCESS (proc)->tick, ++process_tick);
1911 deactivate_process (proc);
1912 if (!NILP (XPROCESS (proc)->raw_status_low))
1913 update_status (XPROCESS (proc));
1914 if (EQ (XPROCESS (proc)->status, Qrun))
1915 XPROCESS (proc)->status
1916 = Fcons (Qexit, Fcons (make_number (256), Qnil));
1917 }
1918 }
ffd56f97
JB
1919 } /* end for each file descriptor */
1920 } /* end while exit conditions not met */
d0d6b7c5 1921
ffd56f97
JB
1922 /* If calling from keyboard input, do not quit
1923 since we want to return C-g as an input character.
1924 Otherwise, do pending quit if requested. */
f76475ad 1925 if (XINT (read_kbd) >= 0)
ffd56f97
JB
1926 {
1927 /* Prevent input_pending from remaining set if we quit. */
1928 clear_input_pending ();
1929 QUIT;
1930 }
d0d6b7c5
JB
1931
1932 return got_some_input;
1933}
1934\f
1935/* Read pending output from the process channel,
1936 starting with our buffered-ahead character if we have one.
1937 Yield number of characters read.
1938
1939 This function reads at most 1024 characters.
1940 If you want to read all available subprocess output,
1941 you must call it repeatedly until it returns zero. */
1942
1943read_process_output (proc, channel)
1944 Lisp_Object proc;
1945 register int channel;
1946{
1947 register int nchars;
1948#ifdef VMS
1949 char *chars;
1950#else
1951 char chars[1024];
1952#endif
1953 register Lisp_Object outstream;
1954 register struct buffer *old = current_buffer;
1955 register struct Lisp_Process *p = XPROCESS (proc);
1956 register int opoint;
1957
1958#ifdef VMS
1959 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
1960
1961 vs = get_vms_process_pointer (p->pid);
1962 if (vs)
1963 {
1964 if (!vs->iosb[0])
1965 return(0); /* Really weird if it does this */
1966 if (!(vs->iosb[0] & 1))
1967 return -1; /* I/O error */
1968 }
1969 else
1970 error ("Could not get VMS process pointer");
1971 chars = vs->inputBuffer;
1972 nchars = clean_vms_buffer (chars, vs->iosb[1]);
1973 if (nchars <= 0)
1974 {
1975 start_vms_process_read (vs); /* Crank up the next read on the process */
1976 return 1; /* Nothing worth printing, say we got 1 */
1977 }
1978#else /* not VMS */
1979
1980 if (proc_buffered_char[channel] < 0)
1981 nchars = read (channel, chars, sizeof chars);
1982 else
1983 {
1984 chars[0] = proc_buffered_char[channel];
1985 proc_buffered_char[channel] = -1;
1986 nchars = read (channel, chars + 1, sizeof chars - 1);
1987 if (nchars < 0)
1988 nchars = 1;
1989 else
1990 nchars = nchars + 1;
1991 }
1992#endif /* not VMS */
1993
1994 if (nchars <= 0) return nchars;
1995
1996 outstream = p->filter;
1997 if (!NILP (outstream))
1998 {
1999 /* We inhibit quit here instead of just catching it so that
2000 hitting ^G when a filter happens to be running won't screw
2001 it up. */
2002 int count = specpdl_ptr - specpdl;
2003 specbind (Qinhibit_quit, Qt);
2004 call2 (outstream, proc, make_string (chars, nchars));
2005
2006#ifdef VMS
2007 start_vms_process_read (vs);
2008#endif
2009 unbind_to (count);
2010 return nchars;
2011 }
2012
2013 /* If no filter, write into buffer if it isn't dead. */
2014 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
2015 {
2016 Lisp_Object tem;
2017
2018 Fset_buffer (p->buffer);
2019 opoint = point;
2020
2021 /* Insert new output into buffer
2022 at the current end-of-output marker,
2023 thus preserving logical ordering of input and output. */
2024 if (XMARKER (p->mark)->buffer)
2025 SET_PT (marker_position (p->mark));
2026 else
2027 SET_PT (ZV);
2028 if (point <= opoint)
2029 opoint += nchars;
2030
2031 tem = current_buffer->read_only;
2032 current_buffer->read_only = Qnil;
2033 /* Insert before markers in case we are inserting where
2034 the buffer's mark is, and the user's next command is Meta-y. */
2035 insert_before_markers (chars, nchars);
2036 current_buffer->read_only = tem;
2037 Fset_marker (p->mark, make_number (point), p->buffer);
2038 update_mode_lines++;
2039
2040 SET_PT (opoint);
2041 set_buffer_internal (old);
2042 }
2043#ifdef VMS
2044 start_vms_process_read (vs);
2045#endif
2046 return nchars;
2047}
2048
2049DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
2050 0, 0, 0,
2051 "Returns non-NIL if emacs is waiting for input from the user.\n\
2052This is intended for use by asynchronous process output filters and sentinels.")
2053 ()
2054{
2055 return ((waiting_for_user_input_p) ? Qt : Qnil);
2056}
2057\f
2058/* Sending data to subprocess */
2059
2060jmp_buf send_process_frame;
2061
2062SIGTYPE
2063send_process_trap ()
2064{
2065#ifdef BSD4_1
2066 sigrelse (SIGPIPE);
2067 sigrelse (SIGALRM);
2068#endif /* BSD4_1 */
2069 longjmp (send_process_frame, 1);
2070}
2071
2072send_process (proc, buf, len)
2073 Lisp_Object proc;
2074 char *buf;
2075 int len;
2076{
2077 /* Don't use register vars; longjmp can lose them. */
2078 int rv;
2079 unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
2080
2081
2082#ifdef VMS
2083 struct Lisp_Process *p = XPROCESS (proc);
2084 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2085#endif /* VMS */
2086
2087 if (! NILP (XPROCESS (proc)->raw_status_low))
2088 update_status (XPROCESS (proc));
2089 if (! EQ (XPROCESS (proc)->status, Qrun))
2090 error ("Process %s not running", procname);
2091
2092#ifdef VMS
2093 vs = get_vms_process_pointer (p->pid);
2094 if (vs == 0)
2095 error ("Could not find this process: %x", p->pid);
2096 else if (write_to_vms_process (vs, buf, len))
2097 ;
2098#else
2099 if (!setjmp (send_process_frame))
2100 while (len > 0)
2101 {
2102 int this = len;
4746118a
JB
2103 SIGTYPE (*old_sigpipe)();
2104
d0d6b7c5
JB
2105 /* Don't send more than 500 bytes at a time. */
2106 if (this > 500)
2107 this = 500;
508b171c 2108 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
d0d6b7c5 2109 rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this);
4746118a 2110 signal (SIGPIPE, old_sigpipe);
d0d6b7c5
JB
2111 if (rv < 0)
2112 {
2113 if (0
2114#ifdef EWOULDBLOCK
2115 || errno == EWOULDBLOCK
2116#endif
2117#ifdef EAGAIN
2118 || errno == EAGAIN
2119#endif
2120 )
2121 {
2122 /* It would be nice to accept process output here,
2123 but that is difficult. For example, it could
2124 garbage what we are sending if that is from a buffer. */
2125 immediate_quit = 1;
2126 QUIT;
2127 sleep (1);
2128 immediate_quit = 0;
2129 continue;
2130 }
2131 report_file_error ("writing to process", Fcons (proc, Qnil));
2132 }
2133 buf += rv;
2134 len -= rv;
2135 /* Allow input from processes between bursts of sending.
2136 Otherwise things may get stopped up. */
2137 if (len > 0)
f76475ad
JB
2138 {
2139 Lisp_Object zero;
2140
2141 XFASTINT (zero) = 0;
2142 wait_reading_process_input (-1, 0, zero, 0);
2143 }
d0d6b7c5
JB
2144 }
2145#endif
2146 else
2147 {
2148 XPROCESS (proc)->raw_status_low = Qnil;
2149 XPROCESS (proc)->raw_status_high = Qnil;
2150 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
2151 XSETINT (XPROCESS (proc)->tick, ++process_tick);
2152 deactivate_process (proc);
2153#ifdef VMS
2154 error ("Error writing to process %s; closed it", procname);
2155#else
2156 error ("SIGPIPE raised on process %s; closed it", procname);
2157#endif
2158 }
2159}
2160
2161DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
2162 3, 3, 0,
2163 "Send current contents of region as input to PROCESS.\n\
ebb9e16f
JB
2164PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2165nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
2166Called from program, takes three arguments, PROCESS, START and END.\n\
2167If the region is more than 500 characters long,\n\
2168it is sent in several bunches. This may happen even for shorter regions.\n\
2169Output from processes can arrive in between bunches.")
2170 (process, start, end)
2171 Lisp_Object process, start, end;
2172{
2173 Lisp_Object proc;
2174 int start1;
2175
2176 proc = get_process (process);
2177 validate_region (&start, &end);
2178
2179 if (XINT (start) < GPT && XINT (end) > GPT)
2180 move_gap (start);
2181
2182 start1 = XINT (start);
2183 send_process (proc, &FETCH_CHAR (start1), XINT (end) - XINT (start));
2184
2185 return Qnil;
2186}
2187
2188DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
2189 2, 2, 0,
2190 "Send PROCESS the contents of STRING as input.\n\
ebb9e16f
JB
2191PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2192nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
2193If STRING is more than 500 characters long,\n\
2194it is sent in several bunches. This may happen even for shorter strings.\n\
2195Output from processes can arrive in between bunches.")
2196 (process, string)
2197 Lisp_Object process, string;
2198{
2199 Lisp_Object proc;
2200 CHECK_STRING (string, 1);
2201 proc = get_process (process);
2202 send_process (proc, XSTRING (string)->data, XSTRING (string)->size);
2203 return Qnil;
2204}
2205\f
2206/* send a signal number SIGNO to PROCESS.
2207 CURRENT_GROUP means send to the process group that currently owns
2208 the terminal being used to communicate with PROCESS.
2209 This is used for various commands in shell mode.
2210 If NOMSG is zero, insert signal-announcements into process's buffers
2211 right away. */
2212
2213process_send_signal (process, signo, current_group, nomsg)
2214 Lisp_Object process;
2215 int signo;
2216 Lisp_Object current_group;
2217 int nomsg;
2218{
2219 Lisp_Object proc;
2220 register struct Lisp_Process *p;
2221 int gid;
2222 int no_pgrp = 0;
2223
2224 proc = get_process (process);
2225 p = XPROCESS (proc);
2226
2227 if (!EQ (p->childp, Qt))
2228 error ("Process %s is not a subprocess",
2229 XSTRING (p->name)->data);
2230 if (!XFASTINT (p->infd))
2231 error ("Process %s is not active",
2232 XSTRING (p->name)->data);
2233
2234 if (NILP (p->pty_flag))
2235 current_group = Qnil;
2236
d0d6b7c5
JB
2237 /* If we are using pgrps, get a pgrp number and make it negative. */
2238 if (!NILP (current_group))
2239 {
2240 /* If possible, send signals to the entire pgrp
2241 by sending an input character to it. */
2242#if defined (TIOCGLTC) && defined (TIOCGETC)
2243 struct tchars c;
2244 struct ltchars lc;
2245
2246 switch (signo)
2247 {
2248 case SIGINT:
2249 ioctl (XFASTINT (p->infd), TIOCGETC, &c);
2250 send_process (proc, &c.t_intrc, 1);
2251 return Qnil;
2252 case SIGQUIT:
2253 ioctl (XFASTINT (p->infd), TIOCGETC, &c);
2254 send_process (proc, &c.t_quitc, 1);
2255 return Qnil;
0ad77c54 2256#ifdef SIGTSTP
d0d6b7c5
JB
2257 case SIGTSTP:
2258 ioctl (XFASTINT (p->infd), TIOCGLTC, &lc);
2259 send_process (proc, &lc.t_suspc, 1);
2260 return Qnil;
0ad77c54 2261#endif /* SIGTSTP */
d0d6b7c5 2262 }
301c3fe4 2263#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
d0d6b7c5
JB
2264 /* It is possible that the following code would work
2265 on other kinds of USG systems, not just on the IRIS.
2266 This should be tried in Emacs 19. */
301c3fe4 2267#if defined (USG)
d0d6b7c5
JB
2268 struct termio t;
2269 switch (signo)
2270 {
2271 case SIGINT:
2272 ioctl (XFASTINT (p->infd), TCGETA, &t);
2273 send_process (proc, &t.c_cc[VINTR], 1);
2274 return Qnil;
2275 case SIGQUIT:
2276 ioctl (XFASTINT (p->infd), TCGETA, &t);
2277 send_process (proc, &t.c_cc[VQUIT], 1);
2278 return Qnil;
2279 case SIGTSTP:
2280 ioctl (XFASTINT (p->infd), TCGETA, &t);
2281 send_process (proc, &t.c_cc[VSWTCH], 1);
2282 return Qnil;
2283 }
301c3fe4 2284#endif /* ! defined (USG) */
d0d6b7c5 2285
301c3fe4 2286#ifdef TIOCGPGRP
d0d6b7c5
JB
2287 /* Get the pgrp using the tty itself, if we have that.
2288 Otherwise, use the pty to get the pgrp.
2289 On pfa systems, saka@pfu.fujitsu.co.JP writes:
2290 "TICGPGRP symbol defined in sys/ioctl.h at E50.
301c3fe4 2291 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
d0d6b7c5
JB
2292 His patch indicates that if TIOCGPGRP returns an error, then
2293 we should just assume that p->pid is also the process group id. */
2294 {
2295 int err;
2296
2297 if (!NILP (p->subtty))
2298 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
2299 else
2300 err = ioctl (XFASTINT (p->infd), TIOCGPGRP, &gid);
2301
2302#ifdef pfa
2303 if (err == -1)
2304 gid = - XFASTINT (p->pid);
301c3fe4 2305#endif /* ! defined (pfa) */
d0d6b7c5
JB
2306 }
2307 if (gid == -1)
2308 no_pgrp = 1;
2309 else
2310 gid = - gid;
301c3fe4
JB
2311#else /* ! defined (TIOCGPGRP ) */
2312 /* Can't select pgrps on this system, so we know that
2313 the child itself heads the pgrp. */
2314 gid = - XFASTINT (p->pid);
2315#endif /* ! defined (TIOCGPGRP ) */
d0d6b7c5
JB
2316 }
2317 else
2318 gid = - XFASTINT (p->pid);
d0d6b7c5
JB
2319
2320 switch (signo)
2321 {
2322#ifdef SIGCONT
2323 case SIGCONT:
2324 p->raw_status_low = Qnil;
2325 p->raw_status_high = Qnil;
2326 p->status = Qrun;
2327 XSETINT (p->tick, ++process_tick);
2328 if (!nomsg)
2329 status_notify ();
2330 break;
301c3fe4 2331#endif /* ! defined (SIGCONT) */
d0d6b7c5
JB
2332 case SIGINT:
2333#ifdef VMS
2334 send_process (proc, "\003", 1); /* ^C */
2335 goto whoosh;
2336#endif
2337 case SIGQUIT:
2338#ifdef VMS
2339 send_process (proc, "\031", 1); /* ^Y */
2340 goto whoosh;
2341#endif
2342 case SIGKILL:
2343#ifdef VMS
2344 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
2345 whoosh:
2346#endif
2347 flush_pending_output (XFASTINT (p->infd));
2348 break;
2349 }
2350
2351 /* If we don't have process groups, send the signal to the immediate
2352 subprocess. That isn't really right, but it's better than any
2353 obvious alternative. */
2354 if (no_pgrp)
2355 {
2356 kill (XFASTINT (p->pid), signo);
2357 return;
2358 }
2359
2360 /* gid may be a pid, or minus a pgrp's number */
2361#ifdef TIOCSIGSEND
2362 if (!NILP (current_group))
2363 ioctl (XFASTINT (p->infd), TIOCSIGSEND, signo);
2364 else
2365 {
2366 gid = - XFASTINT (p->pid);
2367 kill (gid, signo);
2368 }
301c3fe4 2369#else /* ! defined (TIOCSIGSEND) */
d0d6b7c5 2370 EMACS_KILLPG (-gid, signo);
301c3fe4 2371#endif /* ! defined (TIOCSIGSEND) */
d0d6b7c5
JB
2372}
2373
2374DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
2375 "Interrupt process PROCESS. May be process or name of one.\n\
ebb9e16f 2376PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
d0d6b7c5
JB
2377Nil or no arg means current buffer's process.\n\
2378Second arg CURRENT-GROUP non-nil means send signal to\n\
2379the current process-group of the process's controlling terminal\n\
2380rather than to the process's own process group.\n\
2381If the process is a shell, this means interrupt current subjob\n\
2382rather than the shell.")
2383 (process, current_group)
2384 Lisp_Object process, current_group;
2385{
2386 process_send_signal (process, SIGINT, current_group, 0);
2387 return process;
2388}
2389
2390DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
2391 "Kill process PROCESS. May be process or name of one.\n\
2392See function `interrupt-process' for more details on usage.")
2393 (process, current_group)
2394 Lisp_Object process, current_group;
2395{
2396 process_send_signal (process, SIGKILL, current_group, 0);
2397 return process;
2398}
2399
2400DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
2401 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
2402See function `interrupt-process' for more details on usage.")
2403 (process, current_group)
2404 Lisp_Object process, current_group;
2405{
2406 process_send_signal (process, SIGQUIT, current_group, 0);
2407 return process;
2408}
2409
2410DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
2411 "Stop process PROCESS. May be process or name of one.\n\
2412See function `interrupt-process' for more details on usage.")
2413 (process, current_group)
2414 Lisp_Object process, current_group;
2415{
2416#ifndef SIGTSTP
2417 error ("no SIGTSTP support");
2418#else
2419 process_send_signal (process, SIGTSTP, current_group, 0);
2420#endif
2421 return process;
2422}
2423
2424DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
2425 "Continue process PROCESS. May be process or name of one.\n\
2426See function `interrupt-process' for more details on usage.")
2427 (process, current_group)
2428 Lisp_Object process, current_group;
2429{
2430#ifdef SIGCONT
2431 process_send_signal (process, SIGCONT, current_group, 0);
2432#else
2433 error ("no SIGCONT support");
2434#endif
2435 return process;
2436}
2437
2438DEFUN ("signal-process", Fsignal_process, Ssignal_process,
2439 2, 2, "nProcess number: \nnSignal code: ",
2440 "Send the process with number PID the signal with code CODE.\n\
2441Both PID and CODE are integers.")
2442 (pid, sig)
2443 Lisp_Object pid, sig;
2444{
2445 CHECK_NUMBER (pid, 0);
2446 CHECK_NUMBER (sig, 1);
2447 return make_number (kill (XINT (pid), XINT (sig)));
2448}
2449
2450DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
2451 "Make PROCESS see end-of-file in its input.\n\
2452Eof comes after any text already sent to it.\n\
ebb9e16f
JB
2453PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2454nil, indicating the current buffer's process.")
d0d6b7c5
JB
2455 (process)
2456 Lisp_Object process;
2457{
2458 Lisp_Object proc;
2459
2460 proc = get_process (process);
2461 /* Sending a zero-length record is supposed to mean eof
2462 when TIOCREMOTE is turned on. */
2463#ifdef DID_REMOTE
2464 {
2465 char buf[1];
2466 write (XFASTINT (XPROCESS (proc)->outfd), buf, 0);
2467 }
2468#else /* did not do TOICREMOTE */
2469#ifdef VMS
2470 send_process (proc, "\032", 1); /* ^z */
2471#else
2472 if (!NILP (XPROCESS (proc)->pty_flag))
2473 send_process (proc, "\004", 1);
2474 else
2475 {
2476 close (XPROCESS (proc)->outfd);
2477 XFASTINT (XPROCESS (proc)->outfd) = open ("/dev/null", O_WRONLY);
2478 }
2479#endif /* VMS */
2480#endif /* did not do TOICREMOTE */
2481 return process;
2482}
2483
2484/* Kill all processes associated with `buffer'.
2485 If `buffer' is nil, kill all processes */
2486
2487kill_buffer_processes (buffer)
2488 Lisp_Object buffer;
2489{
2490 Lisp_Object tail, proc;
2491
2492 for (tail = Vprocess_alist; XGCTYPE (tail) == Lisp_Cons;
2493 tail = XCONS (tail)->cdr)
2494 {
2495 proc = XCONS (XCONS (tail)->car)->cdr;
2496 if (XGCTYPE (proc) == Lisp_Process
2497 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
2498 {
2499 if (NETCONN_P (proc))
2500 deactivate_process (proc);
2501 else if (XFASTINT (XPROCESS (proc)->infd))
2502 process_send_signal (proc, SIGHUP, Qnil, 1);
2503 }
2504 }
2505}
2506\f
2507/* On receipt of a signal that a child status has changed,
2508 loop asking about children with changed statuses until
2509 the system says there are no more.
2510 All we do is change the status;
2511 we do not run sentinels or print notifications.
2512 That is saved for the next time keyboard input is done,
2513 in order to avoid timing errors. */
2514
2515/** WARNING: this can be called during garbage collection.
2516 Therefore, it must not be fooled by the presence of mark bits in
2517 Lisp objects. */
2518
2519/** USG WARNING: Although it is not obvious from the documentation
2520 in signal(2), on a USG system the SIGCLD handler MUST NOT call
2521 signal() before executing at least one wait(), otherwise the handler
2522 will be called again, resulting in an infinite loop. The relevant
2523 portion of the documentation reads "SIGCLD signals will be queued
2524 and the signal-catching function will be continually reentered until
2525 the queue is empty". Invoking signal() causes the kernel to reexamine
2526 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
2527
2528SIGTYPE
2529sigchld_handler (signo)
2530 int signo;
2531{
2532 int old_errno = errno;
2533 Lisp_Object proc;
2534 register struct Lisp_Process *p;
2535
2536#ifdef BSD4_1
2537 extern int sigheld;
2538 sigheld |= sigbit (SIGCHLD);
2539#endif
2540
2541 while (1)
2542 {
2543 register int pid;
2544 WAITTYPE w;
2545 Lisp_Object tail;
2546
2547#ifdef WNOHANG
2548#ifndef WUNTRACED
2549#define WUNTRACED 0
2550#endif /* no WUNTRACED */
2551 /* Keep trying to get a status until we get a definitive result. */
2552 do
2553 {
2554 errno = 0;
2555 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
2556 }
2557 while (pid <= 0 && errno == EINTR);
2558
2559 if (pid <= 0)
2560 {
2561 /* A real failure. We have done all our job, so return. */
2562
2563 /* USG systems forget handlers when they are used;
2564 must reestablish each time */
2565#ifdef USG
2566 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
2567#endif
2568#ifdef BSD4_1
2569 sigheld &= ~sigbit (SIGCHLD);
2570 sigrelse (SIGCHLD);
2571#endif
2572 errno = old_errno;
2573 return;
2574 }
2575#else
2576 pid = wait (&w);
2577#endif /* no WNOHANG */
2578
2579 /* Find the process that signaled us, and record its status. */
2580
2581 p = 0;
2582 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2583 {
2584 proc = XCONS (XCONS (tail)->car)->cdr;
2585 p = XPROCESS (proc);
2586 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
2587 break;
2588 p = 0;
2589 }
2590
2591 /* Look for an asynchronous process whose pid hasn't been filled
2592 in yet. */
2593 if (p == 0)
2594 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2595 {
2596 proc = XCONS (XCONS (tail)->car)->cdr;
2597 p = XPROCESS (proc);
2598 if (XTYPE (p->pid) == Lisp_Int && XINT (p->pid) == -1)
2599 break;
2600 p = 0;
2601 }
2602
2603 /* Change the status of the process that was found. */
2604 if (p != 0)
2605 {
2606 union { int i; WAITTYPE wt; } u;
2607
2608 XSETINT (p->tick, ++process_tick);
2609 u.wt = w;
2610 XFASTINT (p->raw_status_low) = u.i & 0xffff;
2611 XFASTINT (p->raw_status_high) = u.i >> 16;
2612
2613 /* If process has terminated, stop waiting for its output. */
2614 if (WIFSIGNALED (w) || WIFEXITED (w))
2615 if (p->infd)
2616 FD_CLR (p->infd, &input_wait_mask);
2617 }
2618
2619 /* There was no asynchronous process found for that id. Check
2620 if we have a synchronous process. */
2621 else
2622 {
2623 synch_process_alive = 0;
2624
2625 /* Report the status of the synchronous process. */
2626 if (WIFEXITED (w))
2627 synch_process_retcode = WRETCODE (w);
2628 else if (WIFSIGNALED (w))
2629 synch_process_death = sys_siglist[WTERMSIG (w)];
2630 }
2631
2632 /* On some systems, we must return right away.
2633 If any more processes want to signal us, we will
2634 get another signal.
2635 Otherwise (on systems that have WNOHANG), loop around
2636 to use up all the processes that have something to tell us. */
2637#if defined (USG) && ! (defined (HPUX) && defined (WNOHANG))
2638#ifdef USG
2639 signal (signo, sigchld_handler);
2640#endif
2641 errno = old_errno;
2642 return;
2643#endif /* USG, but not HPUX with WNOHANG */
2644 }
2645}
2646\f
2647
2648static Lisp_Object
2649exec_sentinel_unwind (data)
2650 Lisp_Object data;
2651{
2652 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr;
2653 return Qnil;
2654}
2655
2656static void
2657exec_sentinel (proc, reason)
2658 Lisp_Object proc, reason;
2659{
2660 Lisp_Object sentinel;
2661 register struct Lisp_Process *p = XPROCESS (proc);
2662 int count = specpdl_ptr - specpdl;
2663
2664 sentinel = p->sentinel;
2665 if (NILP (sentinel))
2666 return;
2667
2668 /* Zilch the sentinel while it's running, to avoid recursive invocations;
2669 assure that it gets restored no matter how the sentinel exits. */
2670 p->sentinel = Qnil;
2671 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
2672 /* Inhibit quit so that random quits don't screw up a running filter. */
2673 specbind (Qinhibit_quit, Qt);
2674 call2 (sentinel, proc, reason);
2675 unbind_to (count);
2676}
2677
2678/* Report all recent events of a change in process status
2679 (either run the sentinel or output a message).
2680 This is done while Emacs is waiting for keyboard input. */
2681
2682status_notify ()
2683{
2684 register Lisp_Object proc, buffer;
2685 Lisp_Object tail = Qnil;
2686 Lisp_Object msg = Qnil;
2687 struct gcpro gcpro1, gcpro2;
2688
2689 /* We need to gcpro tail; if read_process_output calls a filter
2690 which deletes a process and removes the cons to which tail points
2691 from Vprocess_alist, and then causes a GC, tail is an unprotected
2692 reference. */
2693 GCPRO2 (tail, msg);
2694
2695 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
2696 {
2697 Lisp_Object symbol;
2698 register struct Lisp_Process *p;
2699
2700 proc = Fcdr (Fcar (tail));
2701 p = XPROCESS (proc);
2702
2703 if (XINT (p->tick) != XINT (p->update_tick))
2704 {
2705 XSETINT (p->update_tick, XINT (p->tick));
2706
2707 /* If process is still active, read any output that remains. */
2708 if (XFASTINT (p->infd))
2709 while (read_process_output (proc, XFASTINT (p->infd)) > 0);
2710
2711 buffer = p->buffer;
2712
2713 /* Get the text to use for the message. */
2714 if (!NILP (p->raw_status_low))
2715 update_status (p);
2716 msg = status_message (p->status);
2717
2718 /* If process is terminated, deactivate it or delete it. */
2719 symbol = p->status;
2720 if (XTYPE (p->status) == Lisp_Cons)
2721 symbol = XCONS (p->status)->car;
2722
2723 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
2724 || EQ (symbol, Qclosed))
2725 {
2726 if (delete_exited_processes)
2727 remove_process (proc);
2728 else
2729 deactivate_process (proc);
2730 }
2731
2732 /* Now output the message suitably. */
2733 if (!NILP (p->sentinel))
2734 exec_sentinel (proc, msg);
2735 /* Don't bother with a message in the buffer
2736 when a process becomes runnable. */
2737 else if (!EQ (symbol, Qrun) && !NILP (buffer))
2738 {
2739 Lisp_Object ro = XBUFFER (buffer)->read_only;
2740 Lisp_Object tem;
2741 struct buffer *old = current_buffer;
2742 int opoint;
2743
2744 /* Avoid error if buffer is deleted
2745 (probably that's why the process is dead, too) */
2746 if (NILP (XBUFFER (buffer)->name))
2747 continue;
2748 Fset_buffer (buffer);
2749 opoint = point;
2750 /* Insert new output into buffer
2751 at the current end-of-output marker,
2752 thus preserving logical ordering of input and output. */
2753 if (XMARKER (p->mark)->buffer)
2754 SET_PT (marker_position (p->mark));
2755 else
2756 SET_PT (ZV);
2757 if (point <= opoint)
2758 opoint += XSTRING (msg)->size + XSTRING (p->name)->size + 10;
2759
2760 tem = current_buffer->read_only;
2761 current_buffer->read_only = Qnil;
2762 insert_string ("\nProcess ");
2763 Finsert (1, &p->name);
2764 insert_string (" ");
2765 Finsert (1, &msg);
2766 current_buffer->read_only = tem;
2767 Fset_marker (p->mark, make_number (point), p->buffer);
2768
2769 SET_PT (opoint);
2770 set_buffer_internal (old);
2771 }
2772 }
2773 } /* end for */
2774
2775 update_mode_lines++; /* in case buffers use %s in mode-line-format */
2776 redisplay_preserve_echo_area ();
2777
2778 update_tick = process_tick;
2779
2780 UNGCPRO;
2781}
2782\f
2783init_process ()
2784{
2785 register int i;
2786
2787#ifdef SIGCHLD
2788#ifndef CANNOT_DUMP
2789 if (! noninteractive || initialized)
2790#endif
2791 signal (SIGCHLD, sigchld_handler);
2792#endif
2793
2794 FD_ZERO (&input_wait_mask);
2795 FD_SET (0, &input_wait_mask);
2796 Vprocess_alist = Qnil;
2797 for (i = 0; i < MAXDESC; i++)
2798 {
2799 chan_process[i] = Qnil;
2800 proc_buffered_char[i] = -1;
2801 }
2802}
08564963 2803#if 0
d0d6b7c5
JB
2804DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 0, 1, 0,
2805 "Return the connection type of `PROCESS'. This can be nil (pipe),\n\
2806t or pty (pty) or stream (socket connection).")
2807 (process)
2808 Lisp_Object process;
2809{
2810 return XPROCESS (process)->type;
2811}
2812#endif
2813syms_of_process ()
2814{
2815#ifdef HAVE_PTYS
2816 pty_process = intern ("pty");
2817#endif
2818#ifdef HAVE_SOCKETS
2819 stream_process = intern ("stream");
2820#endif
2821 Qprocessp = intern ("processp");
2822 staticpro (&Qprocessp);
2823 Qrun = intern ("run");
2824 staticpro (&Qrun);
2825 Qstop = intern ("stop");
2826 staticpro (&Qstop);
2827 Qsignal = intern ("signal");
2828 staticpro (&Qsignal);
2829
2830 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
2831 here again.
2832
2833 Qexit = intern ("exit");
2834 staticpro (&Qexit); */
2835
2836 Qopen = intern ("open");
2837 staticpro (&Qopen);
2838 Qclosed = intern ("closed");
2839 staticpro (&Qclosed);
2840
2841 staticpro (&Vprocess_alist);
2842
2843 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
2844 "*Non-nil means delete processes immediately when they exit.\n\
2845nil means don't delete them until `list-processes' is run.");
2846
2847 delete_exited_processes = 1;
2848
2849 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
2850 "Control type of device used to communicate with subprocesses.\n\
2851Values are nil to use a pipe, and t or 'pty for a pty. Note that if\n\
2852pty's are not available, this variable will be ignored. The value takes\n\
2853effect when `start-process' is called.");
2854 Vprocess_connection_type = Qt;
2855
2856 defsubr (&Sprocessp);
2857 defsubr (&Sget_process);
2858 defsubr (&Sget_buffer_process);
2859 defsubr (&Sdelete_process);
2860 defsubr (&Sprocess_status);
2861 defsubr (&Sprocess_exit_status);
2862 defsubr (&Sprocess_id);
2863 defsubr (&Sprocess_name);
2864 defsubr (&Sprocess_command);
2865 defsubr (&Sset_process_buffer);
2866 defsubr (&Sprocess_buffer);
2867 defsubr (&Sprocess_mark);
2868 defsubr (&Sset_process_filter);
2869 defsubr (&Sprocess_filter);
2870 defsubr (&Sset_process_sentinel);
2871 defsubr (&Sprocess_sentinel);
2872 defsubr (&Sprocess_kill_without_query);
2873 defsubr (&Slist_processes);
2874 defsubr (&Sprocess_list);
2875 defsubr (&Sstart_process);
2876#ifdef HAVE_SOCKETS
2877 defsubr (&Sopen_network_stream);
2878#endif /* HAVE_SOCKETS */
2879 defsubr (&Saccept_process_output);
2880 defsubr (&Sprocess_send_region);
2881 defsubr (&Sprocess_send_string);
2882 defsubr (&Sinterrupt_process);
2883 defsubr (&Skill_process);
2884 defsubr (&Squit_process);
2885 defsubr (&Sstop_process);
2886 defsubr (&Scontinue_process);
2887 defsubr (&Sprocess_send_eof);
2888 defsubr (&Ssignal_process);
2889 defsubr (&Swaiting_for_user_input_p);
2890/* defsubr (&Sprocess_connection); */
2891}
2892
6720a7fb
JB
2893\f
2894#else /* not subprocesses */
2895
2896#include <sys/types.h>
2897#include <errno.h>
2898
2899#include "lisp.h"
2900#include "systime.h"
2901#include "termopts.h"
2902
ff11dfa1 2903extern int frame_garbaged;
6720a7fb
JB
2904
2905
2906/* As described above, except assuming that there are no subprocesses:
2907
2908 Wait for timeout to elapse and/or keyboard input to be available.
2909
2910 time_limit is:
2911 timeout in seconds, or
2912 zero for no limit, or
2913 -1 means gobble data immediately available but don't wait for any.
2914
f76475ad 2915 read_kbd is a Lisp_Object:
6720a7fb
JB
2916 0 to ignore keyboard input, or
2917 1 to return when input is available, or
2918 -1 means caller will actually read the input, so don't throw to
2919 the quit handler.
2920 We know that read_kbd will never be a Lisp_Process, since
2921 `subprocesses' isn't defined.
2922
2923 do_display != 0 means redisplay should be done to show subprocess
2924 output that arrives. This version of the function ignores it.
2925
f76475ad 2926 Return true iff we recieved input from any process. */
6720a7fb
JB
2927
2928int
2929wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
2930 int time_limit, microsecs;
2931 Lisp_Object read_kbd;
2932 int do_display;
6720a7fb
JB
2933{
2934 EMACS_TIME end_time, timeout, *timeout_p;
2935 int waitchannels;
2936
2937 /* What does time_limit really mean? */
2938 if (time_limit || microsecs)
2939 {
2940 /* It's not infinite. */
2941 timeout_p = &timeout;
2942
2943 if (time_limit == -1)
2944 /* In fact, it's zero. */
2945 EMACS_SET_SECS_USECS (timeout, 0, 0);
2946 else
2947 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
2948
2949 /* How far in the future is that? */
2950 EMACS_GET_TIME (end_time);
2951 EMACS_ADD_TIME (end_time, end_time, timeout);
2952 }
2953 else
2954 /* It's infinite. */
2955 timeout_p = 0;
2956
2957 /* Turn off periodic alarms (in case they are in use)
2958 because the select emulator uses alarms. */
2959 stop_polling ();
2960
2961 for (;;)
2962 {
2963 int nfds;
2964
f76475ad 2965 waitchannels = XINT (read_kbd) ? 1 : 0;
6720a7fb
JB
2966
2967 /* If calling from keyboard input, do not quit
2968 since we want to return C-g as an input character.
2969 Otherwise, do pending quit if requested. */
f76475ad 2970 if (XINT (read_kbd) >= 0)
6720a7fb
JB
2971 QUIT;
2972
2973 if (timeout_p)
2974 {
2975 EMACS_GET_TIME (*timeout_p);
2976 EMACS_SUB_TIME (*timeout_p, end_time, *timeout_p);
2977 if (EMACS_TIME_NEG_P (*timeout_p))
2978 break;
2979 }
2980
2981 /* Cause C-g and alarm signals to take immediate action,
2982 and cause input available signals to zero out timeout. */
f76475ad 2983 if (XINT (read_kbd) < 0)
6720a7fb
JB
2984 set_waiting_for_input (&timeout);
2985
ff11dfa1 2986 /* If a frame has been newly mapped and needs updating,
6720a7fb 2987 reprocess its display stuff. */
ff11dfa1 2988 if (frame_garbaged)
6720a7fb
JB
2989 redisplay_preserve_echo_area ();
2990
f76475ad 2991 if (XINT (read_kbd) && detect_input_pending ())
6720a7fb
JB
2992 nfds = 0;
2993 else
2994 nfds = select (1, &waitchannels, 0, 0, timeout_p);
2995
2996 /* Make C-g and alarm signals set flags again */
2997 clear_waiting_for_input ();
2998
2999 /* If we woke up due to SIGWINCH, actually change size now. */
3000 do_pending_window_change ();
3001
3002 if (nfds == -1)
3003 {
3004 /* If the system call was interrupted, then go around the
3005 loop again. */
3006 if (errno == EINTR)
3007 waitchannels = 0;
3008 }
3009#ifdef sun
3010 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
3011 /* System sometimes fails to deliver SIGIO. */
3012 kill (getpid (), SIGIO);
3013#endif
f76475ad 3014 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
6720a7fb
JB
3015 kill (0, SIGIO);
3016
3017 /* If we have timed out (nfds == 0) or found some input (nfds > 0),
3018 we should exit. */
3019 if (nfds >= 0)
3020 break;
3021 }
3022
3023 return 0;
3024}
3025
3026
3027DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
3028 "Return the (or, a) process associated with BUFFER.\n\
3029This copy of Emacs has not been built to support subprocesses, so this\n\
3030function always returns nil.")
3031 (name)
3032 register Lisp_Object name;
3033{
3034 return Qnil;
3035}
3036
3037/* Kill all processes associated with `buffer'.
3038 If `buffer' is nil, kill all processes.
3039 Since we have no subprocesses, this does nothing. */
3040
3041kill_buffer_processes (buffer)
3042 Lisp_Object buffer;
3043{
3044}
3045
3046init_process ()
3047{
3048}
3049
3050syms_of_process ()
3051{
3052 defsubr (&Sget_buffer_process);
3053}
3054
3055\f
3056#endif /* not subprocesses */