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