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