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