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