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