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