]> code.delx.au - gnu-emacs/blob - src/process.c
(gomoku): Make it autoload.
[gnu-emacs] / src / process.c
1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include <signal.h>
22
23 #include "config.h"
24
25 /* This file is split into two parts by the following preprocessor
26 conditional. The 'then' clause contains all of the support for
27 asynchronous subprocesses. The 'else' clause contains stub
28 versions of some of the asynchronous subprocess routines that are
29 often called elsewhere in Emacs, so we don't have to #ifdef the
30 sections that call them. */
31
32 \f
33 #ifdef subprocesses
34
35 #include <stdio.h>
36 #include <errno.h>
37 #include <setjmp.h>
38 #include <sys/types.h> /* some typedefs are used in sys/file.h */
39 #include <sys/file.h>
40 #include <sys/stat.h>
41
42 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
43 #include <sys/socket.h>
44 #include <netdb.h>
45 #include <netinet/in.h>
46 #include <arpa/inet.h>
47 #endif /* HAVE_SOCKETS */
48
49 #if defined(BSD) || defined(STRIDE)
50 #include <sys/ioctl.h>
51 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
52 #include <fcntl.h>
53 #endif /* HAVE_PTYS and no O_NDELAY */
54 #endif /* BSD or STRIDE */
55 #ifdef USG
56 #ifdef HAVE_TERMIOS
57 #include <termios.h>
58 #else
59 #include <termio.h>
60 #endif
61 #include <fcntl.h>
62 #endif /* USG */
63
64 #ifdef NEED_BSDTTY
65 #include <bsdtty.h>
66 #endif
67
68 #ifdef IRIS
69 #include <sys/sysmacros.h> /* for "minor" */
70 #endif /* not IRIS */
71
72 #include "systime.h"
73 #include "systty.h"
74
75 #include "lisp.h"
76 #include "window.h"
77 #include "buffer.h"
78 #include "process.h"
79 #include "termhooks.h"
80 #include "termopts.h"
81 #include "commands.h"
82 #include "dispextern.h"
83
84 Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed;
85 /* Qexit is declared and initialized in eval.c. */
86
87 /* a process object is a network connection when its childp field is neither
88 Qt nor Qnil but is instead a string (name of foreign host we
89 are connected to + name of port we are connected to) */
90
91 #ifdef HAVE_SOCKETS
92 static Lisp_Object stream_process;
93
94 #define NETCONN_P(p) (XGCTYPE (XPROCESS (p)->childp) == Lisp_String)
95 #else
96 #define NETCONN_P(p) 0
97 #endif /* HAVE_SOCKETS */
98
99 /* Define first descriptor number available for subprocesses. */
100 #ifdef VMS
101 #define FIRST_PROC_DESC 1
102 #else /* Not VMS */
103 #define FIRST_PROC_DESC 3
104 #endif
105
106 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
107 testing SIGCHLD. */
108
109 #if !defined (SIGCHLD) && defined (SIGCLD)
110 #define SIGCHLD SIGCLD
111 #endif /* SIGCLD */
112
113 #include "syssignal.h"
114
115 /* Define the structure that the wait system call stores.
116 On many systems, there is a structure defined for this.
117 But on vanilla-ish USG systems there is not. */
118
119 #ifndef VMS
120 #ifndef WAITTYPE
121 #if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)
122 #define WAITTYPE int
123 #define WIFSTOPPED(w) ((w&0377) == 0177)
124 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
125 #define WIFEXITED(w) ((w&0377) == 0)
126 #define WRETCODE(w) (w >> 8)
127 #define WSTOPSIG(w) (w >> 8)
128 #define WTERMSIG(w) (w & 0377)
129 #ifndef WCOREDUMP
130 #define WCOREDUMP(w) ((w&0200) != 0)
131 #endif
132 #else
133 #ifdef BSD4_1
134 #include <wait.h>
135 #else
136 #include <sys/wait.h>
137 #endif /* not BSD 4.1 */
138
139 #define WAITTYPE union wait
140 #define WRETCODE(w) w.w_retcode
141 #define WCOREDUMP(w) w.w_coredump
142
143 #ifdef HPUX
144 /* HPUX version 7 has broken definitions of these. */
145 #undef WTERMSIG
146 #undef WSTOPSIG
147 #undef WIFSTOPPED
148 #undef WIFSIGNALED
149 #undef WIFEXITED
150 #endif
151
152 #ifndef WTERMSIG
153 #define WTERMSIG(w) w.w_termsig
154 #endif
155 #ifndef WSTOPSIG
156 #define WSTOPSIG(w) w.w_stopsig
157 #endif
158 #ifndef WIFSTOPPED
159 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
160 #endif
161 #ifndef WIFSIGNALED
162 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
163 #endif
164 #ifndef WIFEXITED
165 #define WIFEXITED(w) (WTERMSIG (w) == 0)
166 #endif
167 #endif /* BSD or UNIPLUS or STRIDE */
168 #endif /* no WAITTYPE */
169 #else /* VMS */
170
171 /* For the CMU PTY driver + */
172 #define DCL_PROMPT "$ "
173
174 #include <ssdef.h>
175 #include <iodef.h>
176 #include <clidef.h>
177 #include "vmsproc.h"
178 #endif /* VMS */
179
180 extern errno;
181 extern sys_nerr;
182 extern char *sys_errlist[];
183
184 #ifndef VMS
185 #ifndef BSD4_1
186 extern char *sys_siglist[];
187 #else
188 char *sys_siglist[] =
189 {
190 "bum signal!!",
191 "hangup",
192 "interrupt",
193 "quit",
194 "illegal instruction",
195 "trace trap",
196 "iot instruction",
197 "emt instruction",
198 "floating point exception",
199 "kill",
200 "bus error",
201 "segmentation violation",
202 "bad argument to system call",
203 "write on a pipe with no one to read it",
204 "alarm clock",
205 "software termination signal from kill",
206 "status signal",
207 "sendable stop signal not from tty",
208 "stop signal from tty",
209 "continue a stopped process",
210 "child status has changed",
211 "background read attempted from control tty",
212 "background write attempted from control tty",
213 "input record available at control tty",
214 "exceeded CPU time limit",
215 "exceeded file size limit"
216 };
217 #endif
218 #endif /* VMS */
219
220 #ifdef vipc
221
222 #include "vipc.h"
223 extern int comm_server;
224 extern int net_listen_address;
225 #endif /* vipc */
226
227 /* t means use pty, nil means use a pipe,
228 maybe other values to come. */
229 Lisp_Object Vprocess_connection_type;
230
231 #ifdef SKTPAIR
232 #ifndef HAVE_SOCKETS
233 #include <sys/socket.h>
234 #endif
235 #endif /* SKTPAIR */
236
237 /* Number of events of change of status of a process. */
238 int process_tick;
239
240 /* Number of events for which the user or sentinel has been notified. */
241 int update_tick;
242
243 #ifdef FD_SET
244 /* We could get this from param.h, but better not to depend on finding that.
245 And better not to risk that it might define other symbols used in this
246 file. */
247 #define MAXDESC 64
248 #define SELECT_TYPE fd_set
249 #else /* no FD_SET */
250 #define MAXDESC 32
251 #define SELECT_TYPE int
252
253 /* Define the macros to access a single-int bitmap of descriptors. */
254 #define FD_SET(n, p) (*(p) |= (1 << (n)))
255 #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
256 #define FD_ISSET(n, p) (*(p) & (1 << (n)))
257 #define FD_ZERO(p) (*(p) = 0)
258 #endif /* no FD_SET */
259
260 /* Mask of bits indicating the descriptors that we wait for input on */
261
262 SELECT_TYPE input_wait_mask;
263
264 int delete_exited_processes;
265
266 /* Indexed by descriptor, gives the process (if any) for that descriptor */
267 Lisp_Object chan_process[MAXDESC];
268
269 /* Alist of elements (NAME . PROCESS) */
270 Lisp_Object Vprocess_alist;
271
272 Lisp_Object Qprocessp;
273
274 Lisp_Object get_process ();
275
276 /* Buffered-ahead input char from process, indexed by channel.
277 -1 means empty (no char is buffered).
278 Used on sys V where the only way to tell if there is any
279 output from the process is to read at least one char.
280 Always -1 on systems that support FIONREAD. */
281
282 int proc_buffered_char[MAXDESC];
283 \f
284 /* Compute the Lisp form of the process status, p->status, from
285 the numeric status that was returned by `wait'. */
286
287 update_status (p)
288 struct Lisp_Process *p;
289 {
290 union { int i; WAITTYPE wt; } u;
291 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
292 p->status = status_convert (u.wt);
293 p->raw_status_low = Qnil;
294 p->raw_status_high = Qnil;
295 }
296
297 /* Convert a process status work in Unix format to
298 the list that we use internally. */
299
300 Lisp_Object
301 status_convert (w)
302 WAITTYPE w;
303 {
304 if (WIFSTOPPED (w))
305 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
306 else if (WIFEXITED (w))
307 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
308 WCOREDUMP (w) ? Qt : Qnil));
309 else if (WIFSIGNALED (w))
310 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
311 WCOREDUMP (w) ? Qt : Qnil));
312 else
313 return Qrun;
314 }
315
316 /* Given a status-list, extract the three pieces of information
317 and store them individually through the three pointers. */
318
319 void
320 decode_status (l, symbol, code, coredump)
321 Lisp_Object l;
322 Lisp_Object *symbol;
323 int *code;
324 int *coredump;
325 {
326 Lisp_Object tem;
327
328 if (XTYPE (l) == Lisp_Symbol)
329 {
330 *symbol = l;
331 *code = 0;
332 *coredump = 0;
333 }
334 else
335 {
336 *symbol = XCONS (l)->car;
337 tem = XCONS (l)->cdr;
338 *code = XFASTINT (XCONS (tem)->car);
339 tem = XFASTINT (XCONS (tem)->cdr);
340 *coredump = !NILP (tem);
341 }
342 }
343
344 /* Return a string describing a process status list. */
345
346 Lisp_Object
347 status_message (status)
348 Lisp_Object status;
349 {
350 Lisp_Object symbol;
351 int code, coredump;
352 Lisp_Object string, string2;
353
354 decode_status (status, &symbol, &code, &coredump);
355
356 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
357 {
358 string = build_string (code < NSIG ? sys_siglist[code] : "unknown");
359 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
360 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
361 return concat2 (string, string2);
362 }
363 else if (EQ (symbol, Qexit))
364 {
365 if (code == 0)
366 return build_string ("finished\n");
367 string = Fint_to_string (make_number (code));
368 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
369 return concat2 (build_string ("exited abnormally with code "),
370 concat2 (string, string2));
371 }
372 else
373 return Fcopy_sequence (Fsymbol_name (symbol));
374 }
375 \f
376 #ifdef HAVE_PTYS
377 static int pty_process;
378
379 /* Open an available pty, returning a file descriptor.
380 Return -1 on failure.
381 The file name of the terminal corresponding to the pty
382 is left in the variable pty_name. */
383
384 char pty_name[24];
385
386 int
387 allocate_pty ()
388 {
389 struct stat stb;
390 register c, i;
391 int fd;
392
393 /* Some systems name their pseudoterminals so that there are gaps in
394 the usual sequence - for example, on HP9000/S700 systems, there
395 are no pseudoterminals with names ending in 'f'. So we wait for
396 three failures in a row before deciding that we've reached the
397 end of the ptys. */
398 int failed_count = 0;
399
400 #ifdef PTY_ITERATION
401 PTY_ITERATION
402 #else
403 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
404 for (i = 0; i < 16; i++)
405 #endif
406 {
407 #ifdef PTY_NAME_SPRINTF
408 PTY_NAME_SPRINTF
409 #else
410 sprintf (pty_name, "/dev/pty%c%x", c, i);
411 #endif /* no PTY_NAME_SPRINTF */
412
413 #ifdef PTY_OPEN
414 PTY_OPEN;
415 #else /* no PTY_OPEN */
416 #ifdef IRIS
417 /* Unusual IRIS code */
418 *ptyv = open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
419 if (fd < 0)
420 return -1;
421 if (fstat (fd, &stb) < 0)
422 return -1;
423 #else /* not IRIS */
424 if (stat (pty_name, &stb) < 0)
425 {
426 failed_count++;
427 if (failed_count >= 3)
428 return -1;
429 }
430 else
431 failed_count = 0;
432 #ifdef O_NONBLOCK
433 fd = open (pty_name, O_RDWR | O_NONBLOCK, 0);
434 #else
435 fd = open (pty_name, O_RDWR | O_NDELAY, 0);
436 #endif
437 #endif /* not IRIS */
438 #endif /* no PTY_OPEN */
439
440 if (fd >= 0)
441 {
442 /* check to make certain that both sides are available
443 this avoids a nasty yet stupid bug in rlogins */
444 #ifdef PTY_TTY_NAME_SPRINTF
445 PTY_TTY_NAME_SPRINTF
446 #else
447 sprintf (pty_name, "/dev/tty%c%x", c, i);
448 #endif /* no PTY_TTY_NAME_SPRINTF */
449 #ifndef UNIPLUS
450 if (access (pty_name, 6) != 0)
451 {
452 close (fd);
453 #ifndef IRIS
454 continue;
455 #else
456 return -1;
457 #endif /* IRIS */
458 }
459 #endif /* not UNIPLUS */
460 setup_pty (fd);
461 return fd;
462 }
463 }
464 return -1;
465 }
466 #endif /* HAVE_PTYS */
467 \f
468 Lisp_Object
469 make_process (name)
470 Lisp_Object name;
471 {
472 register Lisp_Object val, tem, name1;
473 register struct Lisp_Process *p;
474 char suffix[10];
475 register int i;
476
477 /* size of process structure includes the vector header,
478 so deduct for that. But struct Lisp_Vector includes the first
479 element, thus deducts too much, so add it back. */
480 val = Fmake_vector (make_number ((sizeof (struct Lisp_Process)
481 - sizeof (struct Lisp_Vector)
482 + sizeof (Lisp_Object))
483 / sizeof (Lisp_Object)),
484 Qnil);
485 XSETTYPE (val, Lisp_Process);
486
487 p = XPROCESS (val);
488 XFASTINT (p->infd) = 0;
489 XFASTINT (p->outfd) = 0;
490 XFASTINT (p->pid) = 0;
491 XFASTINT (p->tick) = 0;
492 XFASTINT (p->update_tick) = 0;
493 p->raw_status_low = Qnil;
494 p->raw_status_high = Qnil;
495 p->status = Qrun;
496 p->mark = Fmake_marker ();
497
498 /* If name is already in use, modify it until it is unused. */
499
500 name1 = name;
501 for (i = 1; ; i++)
502 {
503 tem = Fget_process (name1);
504 if (NILP (tem)) break;
505 sprintf (suffix, "<%d>", i);
506 name1 = concat2 (name, build_string (suffix));
507 }
508 name = name1;
509 p->name = name;
510 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
511 return val;
512 }
513
514 remove_process (proc)
515 register Lisp_Object proc;
516 {
517 register Lisp_Object pair;
518
519 pair = Frassq (proc, Vprocess_alist);
520 Vprocess_alist = Fdelq (pair, Vprocess_alist);
521 Fset_marker (XPROCESS (proc)->mark, Qnil, Qnil);
522
523 deactivate_process (proc);
524 }
525 \f
526 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
527 "Return t if OBJECT is a process.")
528 (obj)
529 Lisp_Object obj;
530 {
531 return XTYPE (obj) == Lisp_Process ? Qt : Qnil;
532 }
533
534 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
535 "Return the process named NAME, or nil if there is none.")
536 (name)
537 register Lisp_Object name;
538 {
539 if (XTYPE (name) == Lisp_Process)
540 return name;
541 CHECK_STRING (name, 0);
542 return Fcdr (Fassoc (name, Vprocess_alist));
543 }
544
545 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
546 "Return the (or, a) process associated with BUFFER.\n\
547 BUFFER may be a buffer or the name of one.")
548 (name)
549 register Lisp_Object name;
550 {
551 register Lisp_Object buf, tail, proc;
552
553 if (NILP (name)) return Qnil;
554 buf = Fget_buffer (name);
555 if (NILP (buf)) return Qnil;
556
557 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
558 {
559 proc = Fcdr (Fcar (tail));
560 if (XTYPE (proc) == Lisp_Process && EQ (XPROCESS (proc)->buffer, buf))
561 return proc;
562 }
563 return Qnil;
564 }
565
566 /* This is how commands for the user decode process arguments. It
567 accepts a process, a process name, a buffer, a buffer name, or nil.
568 Buffers denote the first process in the buffer, and nil denotes the
569 current buffer. */
570
571 Lisp_Object
572 get_process (name)
573 register Lisp_Object name;
574 {
575 register Lisp_Object proc;
576 if (NILP (name))
577 proc = Fget_buffer_process (Fcurrent_buffer ());
578 else
579 {
580 proc = Fget_process (name);
581 if (NILP (proc))
582 proc = Fget_buffer_process (Fget_buffer (name));
583 }
584
585 if (!NILP (proc))
586 return proc;
587
588 if (NILP (name))
589 error ("Current buffer has no process");
590 else
591 error ("Process %s does not exist", XSTRING (name)->data);
592 /* NOTREACHED */
593 }
594
595 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
596 "Delete PROCESS: kill it and forget about it immediately.\n\
597 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
598 nil, indicating the current buffer's process.")
599 (proc)
600 register Lisp_Object proc;
601 {
602 proc = get_process (proc);
603 XPROCESS (proc)->raw_status_low = Qnil;
604 XPROCESS (proc)->raw_status_high = Qnil;
605 if (NETCONN_P (proc))
606 {
607 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
608 XSETINT (XPROCESS (proc)->tick, ++process_tick);
609 }
610 else if (XFASTINT (XPROCESS (proc)->infd))
611 {
612 Fkill_process (proc, Qnil);
613 /* Do this now, since remove_process will make sigchld_handler do nothing. */
614 XPROCESS (proc)->status
615 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
616 XSETINT (XPROCESS (proc)->tick, ++process_tick);
617 status_notify ();
618 }
619 remove_process (proc);
620 return Qnil;
621 }
622 \f
623 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
624 "Return the status of PROCESS: a symbol, one of these:\n\
625 run -- for a process that is running.\n\
626 stop -- for a process stopped but continuable.\n\
627 exit -- for a process that has exited.\n\
628 signal -- for a process that has got a fatal signal.\n\
629 open -- for a network stream connection that is open.\n\
630 closed -- for a network stream connection that is closed.\n\
631 nil -- if arg is a process name and no such process exists.\n\
632 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
633 nil, indicating the current buffer's process.")
634 /* command -- for a command channel opened to Emacs by another process.\n\
635 external -- for an i/o channel opened to Emacs by another process.\n\ */
636 (proc)
637 register Lisp_Object proc;
638 {
639 register struct Lisp_Process *p;
640 register Lisp_Object status;
641 proc = get_process (proc);
642 if (NILP (proc))
643 return proc;
644 p = XPROCESS (proc);
645 if (!NILP (p->raw_status_low))
646 update_status (p);
647 status = p->status;
648 if (XTYPE (status) == Lisp_Cons)
649 status = XCONS (status)->car;
650 if (NETCONN_P (proc))
651 {
652 if (EQ (status, Qrun))
653 status = Qopen;
654 else if (EQ (status, Qexit))
655 status = Qclosed;
656 }
657 return status;
658 }
659
660 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
661 1, 1, 0,
662 "Return the exit status of PROCESS or the signal number that killed it.\n\
663 If PROCESS has not yet exited or died, return 0.")
664 (proc)
665 register Lisp_Object proc;
666 {
667 CHECK_PROCESS (proc, 0);
668 if (!NILP (XPROCESS (proc)->raw_status_low))
669 update_status (XPROCESS (proc));
670 if (XTYPE (XPROCESS (proc)->status) == Lisp_Cons)
671 return XCONS (XCONS (XPROCESS (proc)->status)->cdr)->car;
672 return make_number (0);
673 }
674
675 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
676 "Return the process id of PROCESS.\n\
677 This is the pid of the Unix process which PROCESS uses or talks to.\n\
678 For a network connection, this value is nil.")
679 (proc)
680 register Lisp_Object proc;
681 {
682 CHECK_PROCESS (proc, 0);
683 return XPROCESS (proc)->pid;
684 }
685
686 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
687 "Return the name of PROCESS, as a string.\n\
688 This is the name of the program invoked in PROCESS,\n\
689 possibly modified to make it unique among process names.")
690 (proc)
691 register Lisp_Object proc;
692 {
693 CHECK_PROCESS (proc, 0);
694 return XPROCESS (proc)->name;
695 }
696
697 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
698 "Return the command that was executed to start PROCESS.\n\
699 This is a list of strings, the first string being the program executed\n\
700 and the rest of the strings being the arguments given to it.\n\
701 For a non-child channel, this is nil.")
702 (proc)
703 register Lisp_Object proc;
704 {
705 CHECK_PROCESS (proc, 0);
706 return XPROCESS (proc)->command;
707 }
708
709 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
710 2, 2, 0,
711 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
712 (proc, buffer)
713 register Lisp_Object proc, buffer;
714 {
715 CHECK_PROCESS (proc, 0);
716 if (!NILP (buffer))
717 CHECK_BUFFER (buffer, 1);
718 XPROCESS (proc)->buffer = buffer;
719 return buffer;
720 }
721
722 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
723 1, 1, 0,
724 "Return the buffer PROCESS is associated with.\n\
725 Output from PROCESS is inserted in this buffer\n\
726 unless PROCESS has a filter.")
727 (proc)
728 register Lisp_Object proc;
729 {
730 CHECK_PROCESS (proc, 0);
731 return XPROCESS (proc)->buffer;
732 }
733
734 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
735 1, 1, 0,
736 "Return the marker for the end of the last output from PROCESS.")
737 (proc)
738 register Lisp_Object proc;
739 {
740 CHECK_PROCESS (proc, 0);
741 return XPROCESS (proc)->mark;
742 }
743
744 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
745 2, 2, 0,
746 "Give PROCESS the filter function FILTER; nil means no filter.\n\
747 When a process has a filter, each time it does output\n\
748 the entire string of output is passed to the filter.\n\
749 The filter gets two arguments: the process and the string of output.\n\
750 If the process has a filter, its buffer is not used for output.")
751 (proc, filter)
752 register Lisp_Object proc, filter;
753 {
754 CHECK_PROCESS (proc, 0);
755 XPROCESS (proc)->filter = filter;
756 return filter;
757 }
758
759 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
760 1, 1, 0,
761 "Returns the filter function of PROCESS; nil if none.\n\
762 See `set-process-filter' for more info on filter functions.")
763 (proc)
764 register Lisp_Object proc;
765 {
766 CHECK_PROCESS (proc, 0);
767 return XPROCESS (proc)->filter;
768 }
769
770 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
771 2, 2, 0,
772 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
773 The sentinel is called as a function when the process changes state.\n\
774 It gets two arguments: the process, and a string describing the change.")
775 (proc, sentinel)
776 register Lisp_Object proc, sentinel;
777 {
778 CHECK_PROCESS (proc, 0);
779 XPROCESS (proc)->sentinel = sentinel;
780 return sentinel;
781 }
782
783 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
784 1, 1, 0,
785 "Return the sentinel of PROCESS; nil if none.\n\
786 See `set-process-sentinel' for more info on sentinels.")
787 (proc)
788 register Lisp_Object proc;
789 {
790 CHECK_PROCESS (proc, 0);
791 return XPROCESS (proc)->sentinel;
792 }
793
794 DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
795 Sprocess_kill_without_query, 1, 2, 0,
796 "Say no query needed if PROCESS is running when Emacs is exited.\n\
797 Optional second argument if non-nill says to require a query.\n\
798 Value is t if a query was formerly required.")
799 (proc, value)
800 register Lisp_Object proc, value;
801 {
802 Lisp_Object tem;
803
804 CHECK_PROCESS (proc, 0);
805 tem = XPROCESS (proc)->kill_without_query;
806 XPROCESS (proc)->kill_without_query = Fnull (value);
807
808 return Fnull (tem);
809 }
810 \f
811 Lisp_Object
812 list_processes_1 ()
813 {
814 register Lisp_Object tail, tem;
815 Lisp_Object proc, minspace, tem1;
816 register struct buffer *old = current_buffer;
817 register struct Lisp_Process *p;
818 register int state;
819 char tembuf[80];
820
821 XFASTINT (minspace) = 1;
822
823 set_buffer_internal (XBUFFER (Vstandard_output));
824 Fbuffer_disable_undo (Vstandard_output);
825
826 current_buffer->truncate_lines = Qt;
827
828 write_string ("\
829 Proc Status Buffer Command\n\
830 ---- ------ ------ -------\n", -1);
831
832 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
833 {
834 Lisp_Object symbol;
835
836 proc = Fcdr (Fcar (tail));
837 p = XPROCESS (proc);
838 if (NILP (p->childp))
839 continue;
840
841 Finsert (1, &p->name);
842 Findent_to (make_number (13), minspace);
843
844 if (!NILP (p->raw_status_low))
845 update_status (p);
846 symbol = p->status;
847 if (XTYPE (p->status) == Lisp_Cons)
848 symbol = XCONS (p->status)->car;
849
850
851 if (EQ (symbol, Qsignal))
852 {
853 Lisp_Object tem;
854 tem = Fcar (Fcdr (p->status));
855 #ifdef VMS
856 if (XINT (tem) < NSIG)
857 write_string (sys_siglist [XINT (tem)], -1);
858 else
859 #endif
860 Fprinc (symbol, Qnil);
861 }
862 else if (NETCONN_P (proc))
863 {
864 if (EQ (symbol, Qrun))
865 write_string ("open", -1);
866 else if (EQ (symbol, Qexit))
867 write_string ("closed", -1);
868 else
869 Fprinc (symbol, Qnil);
870 }
871 else
872 Fprinc (symbol, Qnil);
873
874 if (EQ (symbol, Qexit))
875 {
876 Lisp_Object tem;
877 tem = Fcar (Fcdr (p->status));
878 if (XFASTINT (tem))
879 {
880 sprintf (tembuf, " %d", XFASTINT (tem));
881 write_string (tembuf, -1);
882 }
883 }
884
885 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
886 remove_process (proc);
887
888 Findent_to (make_number (22), minspace);
889 if (NILP (p->buffer))
890 insert_string ("(none)");
891 else if (NILP (XBUFFER (p->buffer)->name))
892 insert_string ("(Killed)");
893 else
894 Finsert (1, &XBUFFER (p->buffer)->name);
895
896 Findent_to (make_number (37), minspace);
897
898 if (NETCONN_P (proc))
899 {
900 sprintf (tembuf, "(network stream connection to %s)\n",
901 XSTRING (p->childp)->data);
902 insert_string (tembuf);
903 }
904 else
905 {
906 tem = p->command;
907 while (1)
908 {
909 tem1 = Fcar (tem);
910 Finsert (1, &tem1);
911 tem = Fcdr (tem);
912 if (NILP (tem))
913 break;
914 insert_string (" ");
915 }
916 insert_string ("\n");
917 }
918 }
919 return Qnil;
920 }
921
922 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
923 "Display a list of all processes.\n\
924 \(Any processes listed as Exited or Signaled are actually eliminated\n\
925 after the listing is made.)")
926 ()
927 {
928 internal_with_output_to_temp_buffer ("*Process List*",
929 list_processes_1, Qnil);
930 return Qnil;
931 }
932
933 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
934 "Return a list of all processes.")
935 ()
936 {
937 return Fmapcar (Qcdr, Vprocess_alist);
938 }
939 \f
940 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
941 "Start a program in a subprocess. Return the process object for it.\n\
942 Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
943 NAME is name for process. It is modified if necessary to make it unique.\n\
944 BUFFER is the buffer or (buffer-name) to associate with the process.\n\
945 Process output goes at end of that buffer, unless you specify\n\
946 an output stream or filter function to handle the output.\n\
947 BUFFER may be also nil, meaning that this process is not associated\n\
948 with any buffer\n\
949 Third arg is program file name. It is searched for as in the shell.\n\
950 Remaining arguments are strings to give program as arguments.")
951 (nargs, args)
952 int nargs;
953 register Lisp_Object *args;
954 {
955 Lisp_Object buffer, name, program, proc, tem;
956 #ifdef VMS
957 register unsigned char *new_argv;
958 int len;
959 #else
960 register unsigned char **new_argv;
961 #endif
962 register int i;
963
964 buffer = args[1];
965 if (!NILP (buffer))
966 buffer = Fget_buffer_create (buffer);
967
968 name = args[0];
969 CHECK_STRING (name, 0);
970
971 program = args[2];
972
973 CHECK_STRING (program, 2);
974
975 #ifdef VMS
976 /* Make a one member argv with all args concatenated
977 together separated by a blank. */
978 len = XSTRING (program)->size + 2;
979 for (i = 3; i < nargs; i++)
980 {
981 tem = args[i];
982 CHECK_STRING (tem, i);
983 len += XSTRING (tem)->size + 1; /* count the blank */
984 }
985 new_argv = (unsigned char *) alloca (len);
986 strcpy (new_argv, XSTRING (program)->data);
987 for (i = 3; i < nargs; i++)
988 {
989 tem = args[i];
990 CHECK_STRING (tem, i);
991 strcat (new_argv, " ");
992 strcat (new_argv, XSTRING (tem)->data);
993 }
994 #else /* not VMS */
995 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
996
997 for (i = 3; i < nargs; i++)
998 {
999 tem = args[i];
1000 CHECK_STRING (tem, i);
1001 new_argv[i - 2] = XSTRING (tem)->data;
1002 }
1003 new_argv[i - 2] = 0;
1004 new_argv[0] = XSTRING (program)->data;
1005
1006 /* If program file name is not absolute, search our path for it */
1007 if (new_argv[0][0] != '/')
1008 {
1009 tem = Qnil;
1010 openp (Vexec_path, program, "", &tem, 1);
1011 if (NILP (tem))
1012 report_file_error ("Searching for program", Fcons (program, Qnil));
1013 new_argv[0] = XSTRING (tem)->data;
1014 }
1015 #endif /* not VMS */
1016
1017 proc = make_process (name);
1018
1019 XPROCESS (proc)->childp = Qt;
1020 XPROCESS (proc)->command_channel_p = Qnil;
1021 XPROCESS (proc)->buffer = buffer;
1022 XPROCESS (proc)->sentinel = Qnil;
1023 XPROCESS (proc)->filter = Qnil;
1024 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1025
1026 create_process (proc, new_argv);
1027
1028 return proc;
1029 }
1030
1031 SIGTYPE
1032 create_process_1 (signo)
1033 int signo;
1034 {
1035 #ifdef USG
1036 /* USG systems forget handlers when they are used;
1037 must reestablish each time */
1038 signal (signo, create_process_1);
1039 #endif /* USG */
1040 }
1041
1042 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1043 #ifdef USG
1044 #ifdef SIGCHLD
1045 /* Mimic blocking of signals on system V, which doesn't really have it. */
1046
1047 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1048 int sigchld_deferred;
1049
1050 SIGTYPE
1051 create_process_sigchld ()
1052 {
1053 signal (SIGCHLD, create_process_sigchld);
1054
1055 sigchld_deferred = 1;
1056 }
1057 #endif
1058 #endif
1059 #endif
1060
1061 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1062 create_process (process, new_argv)
1063 Lisp_Object process;
1064 char **new_argv;
1065 {
1066 int pid, inchannel, outchannel, forkin, forkout;
1067 int sv[2];
1068 #ifdef SIGCHLD
1069 SIGTYPE (*sigchld)();
1070 #endif
1071 int pty_flag = 0;
1072 Lisp_Object current_dir;
1073 extern char **environ;
1074
1075 inchannel = outchannel = -1;
1076
1077 #ifdef HAVE_PTYS
1078 if (EQ (Vprocess_connection_type, Qt))
1079 outchannel = inchannel = allocate_pty ();
1080
1081 /* Make sure that the child will be able to chdir to the current
1082 buffer's current directory. We can't just have the child check
1083 for an error when it does the chdir, since it's in a vfork. */
1084 current_dir = expand_and_dir_to_file (current_buffer->directory, Qnil);
1085 if (NILP (Ffile_accessible_directory_p (current_dir)))
1086 report_file_error ("Setting current directory",
1087 Fcons (current_buffer->directory, Qnil));
1088
1089 if (inchannel >= 0)
1090 {
1091 #ifndef USG
1092 /* On USG systems it does not work to open the pty's tty here
1093 and then close and reopen it in the child. */
1094 #ifdef O_NOCTTY
1095 /* Don't let this terminal become our controlling terminal
1096 (in case we don't have one). */
1097 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0);
1098 #else
1099 forkout = forkin = open (pty_name, O_RDWR, 0);
1100 #endif
1101 if (forkin < 0)
1102 report_file_error ("Opening pty", Qnil);
1103 #else
1104 forkin = forkout = -1;
1105 #endif /* not USG */
1106 pty_flag = 1;
1107 }
1108 else
1109 #endif /* HAVE_PTYS */
1110 #ifdef SKTPAIR
1111 {
1112 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1113 report_file_error ("Opening socketpair", Qnil);
1114 outchannel = inchannel = sv[0];
1115 forkout = forkin = sv[1];
1116 }
1117 #else /* not SKTPAIR */
1118 {
1119 pipe (sv);
1120 inchannel = sv[0];
1121 forkout = sv[1];
1122 pipe (sv);
1123 outchannel = sv[1];
1124 forkin = sv[0];
1125 }
1126 #endif /* not SKTPAIR */
1127
1128 #if 0
1129 /* Replaced by close_process_descs */
1130 set_exclusive_use (inchannel);
1131 set_exclusive_use (outchannel);
1132 #endif
1133
1134 /* Stride people say it's a mystery why this is needed
1135 as well as the O_NDELAY, but that it fails without this. */
1136 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1137 {
1138 int one = 1;
1139 ioctl (inchannel, FIONBIO, &one);
1140 }
1141 #endif
1142
1143 #ifdef O_NONBLOCK
1144 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1145 #else
1146 #ifdef O_NDELAY
1147 fcntl (inchannel, F_SETFL, O_NDELAY);
1148 #endif
1149 #endif
1150
1151 /* Record this as an active process, with its channels.
1152 As a result, child_setup will close Emacs's side of the pipes. */
1153 chan_process[inchannel] = process;
1154 XFASTINT (XPROCESS (process)->infd) = inchannel;
1155 XFASTINT (XPROCESS (process)->outfd) = outchannel;
1156 /* Record the tty descriptor used in the subprocess. */
1157 if (forkin < 0)
1158 XPROCESS (process)->subtty = Qnil;
1159 else
1160 XFASTINT (XPROCESS (process)->subtty) = forkin;
1161 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1162 XPROCESS (process)->status = Qrun;
1163
1164 /* Delay interrupts until we have a chance to store
1165 the new fork's pid in its process structure */
1166 #ifdef SIGCHLD
1167 #ifdef BSD4_1
1168 sighold (SIGCHLD);
1169 #else /* not BSD4_1 */
1170 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1171 sigsetmask (sigmask (SIGCHLD));
1172 #else /* ordinary USG */
1173 #if 0
1174 sigchld_deferred = 0;
1175 sigchld = signal (SIGCHLD, create_process_sigchld);
1176 #endif
1177 #endif /* ordinary USG */
1178 #endif /* not BSD4_1 */
1179 #endif /* SIGCHLD */
1180
1181 /* Until we store the proper pid, enable sigchld_handler
1182 to recognize an unknown pid as standing for this process.
1183 It is very important not to let this `marker' value stay
1184 in the table after this function has returned; if it does
1185 it might cause call-process to hang and subsequent asynchronous
1186 processes to get their return values scrambled. */
1187 XSETINT (XPROCESS (process)->pid, -1);
1188
1189 {
1190 /* child_setup must clobber environ on systems with true vfork.
1191 Protect it from permanent change. */
1192 char **save_environ = environ;
1193
1194 pid = vfork ();
1195 if (pid == 0)
1196 {
1197 int xforkin = forkin;
1198 int xforkout = forkout;
1199
1200 #if 0 /* This was probably a mistake--it duplicates code later on,
1201 but fails to handle all the cases. */
1202 /* Make sure SIGCHLD is not blocked in the child. */
1203 sigsetmask (SIGEMPTYMASK);
1204 #endif
1205
1206 /* Make the pty be the controlling terminal of the process. */
1207 #ifdef HAVE_PTYS
1208 /* First, disconnect its current controlling terminal. */
1209 #ifdef HAVE_SETSID
1210 setsid ();
1211 #ifdef TIOCSCTTY
1212 /* Make the pty's terminal the controlling terminal. */
1213 if (pty_flag && (ioctl (xforkin, TIOCSCTTY, 0) < 0))
1214 abort ();
1215 #endif
1216 #else /* not HAVE_SETSID */
1217 #ifdef USG
1218 /* It's very important to call setpgrp() here and no time
1219 afterwards. Otherwise, we lose our controlling tty which
1220 is set when we open the pty. */
1221 setpgrp ();
1222 #endif /* USG */
1223 #endif /* not HAVE_SETSID */
1224 #ifdef TIOCNOTTY
1225 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1226 can do TIOCSPGRP only to the process's controlling tty. */
1227 if (pty_flag)
1228 {
1229 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1230 I can't test it since I don't have 4.3. */
1231 int j = open ("/dev/tty", O_RDWR, 0);
1232 ioctl (j, TIOCNOTTY, 0);
1233 close (j);
1234 #ifndef USG
1235 /* In order to get a controlling terminal on some versions
1236 of BSD, it is necessary to put the process in pgrp 0
1237 before it opens the terminal. */
1238 setpgrp (0, 0);
1239 #endif
1240 }
1241 #endif /* TIOCNOTTY */
1242
1243 #if !defined (RTU) && !defined (UNIPLUS)
1244 /*** There is a suggestion that this ought to be a
1245 conditional on TIOCSPGRP. */
1246 /* Now close the pty (if we had it open) and reopen it.
1247 This makes the pty the controlling terminal of the subprocess. */
1248 if (pty_flag)
1249 {
1250 /* I wonder if close (open (pty_name, ...)) would work? */
1251 if (xforkin >= 0)
1252 close (xforkin);
1253 xforkout = xforkin = open (pty_name, O_RDWR, 0);
1254
1255 if (xforkin < 0)
1256 abort ();
1257 }
1258 #endif /* not UNIPLUS and not RTU */
1259 #ifdef SETUP_SLAVE_PTY
1260 SETUP_SLAVE_PTY;
1261 #endif /* SETUP_SLAVE_PTY */
1262 #ifdef AIX
1263 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1264 Now reenable it in the child, so it will die when we want it to. */
1265 if (pty_flag)
1266 signal (SIGHUP, SIG_DFL);
1267 #endif
1268 #endif /* HAVE_PTYS */
1269
1270 #ifdef SIGCHLD
1271 #ifdef BSD4_1
1272 sigrelse (SIGCHLD);
1273 #else /* not BSD4_1 */
1274 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1275 sigsetmask (SIGEMPTYMASK);
1276 #else /* ordinary USG */
1277 #if 0
1278 signal (SIGCHLD, sigchld);
1279 #endif
1280 #endif /* ordinary USG */
1281 #endif /* not BSD4_1 */
1282 #endif /* SIGCHLD */
1283
1284 child_setup_tty (xforkout);
1285 child_setup (xforkin, xforkout, xforkout,
1286 new_argv, 1, current_dir);
1287 }
1288 environ = save_environ;
1289 }
1290
1291 if (pid < 0)
1292 {
1293 remove_process (process);
1294 report_file_error ("Doing vfork", Qnil);
1295 }
1296
1297 XFASTINT (XPROCESS (process)->pid) = pid;
1298
1299 FD_SET (inchannel, &input_wait_mask);
1300
1301 /* If the subfork execv fails, and it exits,
1302 this close hangs. I don't know why.
1303 So have an interrupt jar it loose. */
1304 stop_polling ();
1305 signal (SIGALRM, create_process_1);
1306 alarm (1);
1307 #ifdef SYSV4_PTYS
1308 /* OK to close only if it's not a pty. Otherwise we need to leave
1309 it open for ioctl to get pgrp when signals are sent, or to send
1310 the interrupt characters through if that's how we're signalling
1311 subprocesses. Alternately if you are concerned about running out
1312 of file descriptors, you could just save the tty name and open
1313 just to do the ioctl. */
1314 if (NILP (XFASTINT (XPROCESS (process)->pty_flag)))
1315 #endif
1316 {
1317 XPROCESS (process)->subtty = Qnil;
1318 if (forkin >= 0)
1319 close (forkin);
1320 }
1321 alarm (0);
1322 start_polling ();
1323 if (forkin != forkout && forkout >= 0)
1324 close (forkout);
1325
1326 #ifdef SIGCHLD
1327 #ifdef BSD4_1
1328 sigrelse (SIGCHLD);
1329 #else /* not BSD4_1 */
1330 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1331 sigsetmask (SIGEMPTYMASK);
1332 #else /* ordinary USG */
1333 #if 0
1334 signal (SIGCHLD, sigchld);
1335 /* Now really handle any of these signals
1336 that came in during this function. */
1337 if (sigchld_deferred)
1338 kill (getpid (), SIGCHLD);
1339 #endif
1340 #endif /* ordinary USG */
1341 #endif /* not BSD4_1 */
1342 #endif /* SIGCHLD */
1343 }
1344 #endif /* not VMS */
1345
1346 #ifdef HAVE_SOCKETS
1347
1348 /* open a TCP network connection to a given HOST/SERVICE. Treated
1349 exactly like a normal process when reading and writing. Only
1350 differences are in status display and process deletion. A network
1351 connection has no PID; you cannot signal it. All you can do is
1352 deactivate and close it via delete-process */
1353
1354 DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream,
1355 4, 4, 0,
1356 "Open a TCP connection for a service to a host.\n\
1357 Returns a subprocess-object to represent the connection.\n\
1358 Input and output work as for subprocesses; `delete-process' closes it.\n\
1359 Args are NAME BUFFER HOST SERVICE.\n\
1360 NAME is name for process. It is modified if necessary to make it unique.\n\
1361 BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1362 Process output goes at end of that buffer, unless you specify\n\
1363 an output stream or filter function to handle the output.\n\
1364 BUFFER may be also nil, meaning that this process is not associated\n\
1365 with any buffer\n\
1366 Third arg is name of the host to connect to, or its IP address.\n\
1367 Fourth arg SERVICE is name of the service desired, or an integer\n\
1368 specifying a port number to connect to.")
1369 (name, buffer, host, service)
1370 Lisp_Object name, buffer, host, service;
1371 {
1372 Lisp_Object proc;
1373 register int i;
1374 struct sockaddr_in address;
1375 struct servent *svc_info;
1376 struct hostent *host_info_ptr, host_info;
1377 char *(addr_list[2]);
1378 unsigned long numeric_addr;
1379 int s, outch, inch;
1380 char errstring[80];
1381 int port;
1382 struct hostent host_info_fixed;
1383 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1384
1385 GCPRO4 (name, buffer, host, service);
1386 CHECK_STRING (name, 0);
1387 CHECK_STRING (host, 0);
1388 if (XTYPE(service) == Lisp_Int)
1389 port = htons ((unsigned short) XINT (service));
1390 else
1391 {
1392 CHECK_STRING (service, 0);
1393 svc_info = getservbyname (XSTRING (service)->data, "tcp");
1394 if (svc_info == 0)
1395 error ("Unknown service \"%s\"", XSTRING (service)->data);
1396 port = svc_info->s_port;
1397 }
1398
1399 host_info_ptr = gethostbyname (XSTRING (host)->data);
1400 if (host_info_ptr == 0)
1401 /* Attempt to interpret host as numeric inet address */
1402 {
1403 numeric_addr = inet_addr (XSTRING (host)->data);
1404 if (numeric_addr == -1)
1405 error ("Unknown host \"%s\"", XSTRING (host)->data);
1406
1407 host_info_ptr = &host_info;
1408 host_info.h_name = 0;
1409 host_info.h_aliases = 0;
1410 host_info.h_addrtype = AF_INET;
1411 host_info.h_addr_list = &(addr_list[0]);
1412 addr_list[0] = (char*)(&numeric_addr);
1413 addr_list[1] = 0;
1414 host_info.h_length = strlen (addr_list[0]);
1415 }
1416
1417 bzero (&address, sizeof address);
1418 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr,
1419 host_info_ptr->h_length);
1420 address.sin_family = host_info_ptr->h_addrtype;
1421 address.sin_port = port;
1422
1423 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0);
1424 if (s < 0)
1425 report_file_error ("error creating socket", Fcons (name, Qnil));
1426
1427 loop:
1428 if (connect (s, &address, sizeof address) == -1)
1429 {
1430 int xerrno = errno;
1431 if (errno == EINTR)
1432 goto loop;
1433 close (s);
1434 errno = xerrno;
1435 report_file_error ("connection failed",
1436 Fcons (host, Fcons (name, Qnil)));
1437 }
1438
1439 inch = s;
1440 outch = dup (s);
1441 if (outch < 0)
1442 report_file_error ("error duplicating socket", Fcons (name, Qnil));
1443
1444 if (!NILP (buffer))
1445 buffer = Fget_buffer_create (buffer);
1446 proc = make_process (name);
1447
1448 chan_process[inch] = proc;
1449
1450 #ifdef O_NONBLOCK
1451 fcntl (inch, F_SETFL, O_NONBLOCK);
1452 #else
1453 #ifdef O_NDELAY
1454 fcntl (inch, F_SETFL, O_NDELAY);
1455 #endif
1456 #endif
1457
1458 XPROCESS (proc)->childp = host;
1459 XPROCESS (proc)->command_channel_p = Qnil;
1460 XPROCESS (proc)->buffer = buffer;
1461 XPROCESS (proc)->sentinel = Qnil;
1462 XPROCESS (proc)->filter = Qnil;
1463 XPROCESS (proc)->command = Qnil;
1464 XPROCESS (proc)->pid = Qnil;
1465 XFASTINT (XPROCESS (proc)->infd) = s;
1466 XFASTINT (XPROCESS (proc)->outfd) = outch;
1467 XPROCESS (proc)->status = Qrun;
1468 FD_SET (inch, &input_wait_mask);
1469
1470 UNGCPRO;
1471 return proc;
1472 }
1473 #endif /* HAVE_SOCKETS */
1474
1475 deactivate_process (proc)
1476 Lisp_Object proc;
1477 {
1478 register int inchannel, outchannel;
1479 register struct Lisp_Process *p = XPROCESS (proc);
1480
1481 inchannel = XFASTINT (p->infd);
1482 outchannel = XFASTINT (p->outfd);
1483
1484 if (inchannel)
1485 {
1486 /* Beware SIGCHLD hereabouts. */
1487 flush_pending_output (inchannel);
1488 #ifdef VMS
1489 {
1490 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
1491 sys$dassgn (outchannel);
1492 vs = get_vms_process_pointer (p->pid)
1493 if (vs)
1494 give_back_vms_process_stuff (vs);
1495 }
1496 #else
1497 close (inchannel);
1498 if (outchannel && outchannel != inchannel)
1499 close (outchannel);
1500 #endif
1501
1502 XFASTINT (p->infd) = 0;
1503 XFASTINT (p->outfd) = 0;
1504 chan_process[inchannel] = Qnil;
1505 FD_CLR (inchannel, &input_wait_mask);
1506 }
1507 }
1508
1509 /* Close all descriptors currently in use for communication
1510 with subprocess. This is used in a newly-forked subprocess
1511 to get rid of irrelevant descriptors. */
1512
1513 close_process_descs ()
1514 {
1515 int i;
1516 for (i = 0; i < MAXDESC; i++)
1517 {
1518 Lisp_Object process;
1519 process = chan_process[i];
1520 if (!NILP (process))
1521 {
1522 int in = XFASTINT (XPROCESS (process)->infd);
1523 int out = XFASTINT (XPROCESS (process)->outfd);
1524 if (in)
1525 close (in);
1526 if (out && in != out)
1527 close (out);
1528 }
1529 }
1530 }
1531 \f
1532 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
1533 0, 3, 0,
1534 "Allow any pending output from subprocesses to be read by Emacs.\n\
1535 It is read into the process' buffers or given to their filter functions.\n\
1536 Non-nil arg PROCESS means do not return until some output has been received\n\
1537 from PROCESS.\n\
1538 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
1539 seconds and microseconds to wait; return after that much time whether\n\
1540 or not there is input.\n\
1541 Return non-nil iff we received any output before the timeout expired.")
1542 (proc, timeout, timeout_msecs)
1543 register Lisp_Object proc, timeout, timeout_msecs;
1544 {
1545 int seconds;
1546 int useconds;
1547
1548 if (! NILP (timeout_msecs))
1549 {
1550 CHECK_NUMBER (timeout_msecs, 2);
1551 useconds = XINT (timeout_msecs);
1552 if (XTYPE (timeout) != Lisp_Int)
1553 XSET (timeout, Lisp_Int, 0);
1554
1555 {
1556 int carry = useconds / 1000000;
1557
1558 XSETINT (timeout, XINT (timeout) + carry);
1559 useconds -= carry * 1000000;
1560
1561 /* I think this clause is necessary because C doesn't
1562 guarantee a particular rounding direction for negative
1563 integers. */
1564 if (useconds < 0)
1565 {
1566 XSETINT (timeout, XINT (timeout) - 1);
1567 useconds += 1000000;
1568 }
1569 }
1570 }
1571 else
1572 useconds = 0;
1573
1574 if (! NILP (timeout))
1575 {
1576 CHECK_NUMBER (timeout, 1);
1577 seconds = XINT (timeout);
1578 if (seconds <= 0)
1579 seconds = -1;
1580 }
1581 else
1582 {
1583 if (NILP (proc))
1584 seconds = -1;
1585 else
1586 seconds = 0;
1587 }
1588
1589 if (NILP (proc))
1590 XFASTINT (proc) = 0;
1591
1592 return
1593 (wait_reading_process_input (seconds, useconds, proc, 0)
1594 ? Qt : Qnil);
1595 }
1596
1597 /* This variable is different from waiting_for_input in keyboard.c.
1598 It is used to communicate to a lisp process-filter/sentinel (via the
1599 function Fwaiting_for_user_input_p below) whether emacs was waiting
1600 for user-input when that process-filter was called.
1601 waiting_for_input cannot be used as that is by definition 0 when
1602 lisp code is being evalled */
1603 static int waiting_for_user_input_p;
1604
1605 /* Read and dispose of subprocess output while waiting for timeout to
1606 elapse and/or keyboard input to be available.
1607
1608 time_limit is:
1609 timeout in seconds, or
1610 zero for no limit, or
1611 -1 means gobble data immediately available but don't wait for any.
1612
1613 read_kbd is a lisp value:
1614 0 to ignore keyboard input, or
1615 1 to return when input is available, or
1616 -1 means caller will actually read the input, so don't throw to
1617 the quit handler, or
1618 a process object, meaning wait until something arrives from that
1619 process. The return value is true iff we read some input from
1620 that process.
1621
1622 do_display != 0 means redisplay should be done to show subprocess
1623 output that arrives.
1624
1625 If read_kbd is a pointer to a struct Lisp_Process, then the
1626 function returns true iff we received input from that process
1627 before the timeout elapsed.
1628 Otherwise, return true iff we recieved input from any process. */
1629
1630 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
1631 int time_limit, microsecs;
1632 Lisp_Object read_kbd;
1633 int do_display;
1634 {
1635 register int channel, nfds, m;
1636 static SELECT_TYPE Available;
1637 int xerrno;
1638 Lisp_Object proc;
1639 EMACS_TIME timeout, end_time, garbage;
1640 SELECT_TYPE Atemp;
1641 int wait_channel = 0;
1642 struct Lisp_Process *wait_proc = 0;
1643 int got_some_input = 0;
1644
1645 FD_ZERO (&Available);
1646
1647 /* If read_kbd is a process to watch, set wait_proc and wait_channel
1648 accordingly. */
1649 if (XTYPE (read_kbd) == Lisp_Process)
1650 {
1651 wait_proc = XPROCESS (read_kbd);
1652 wait_channel = XFASTINT (wait_proc->infd);
1653 XFASTINT (read_kbd) = 0;
1654 }
1655
1656 waiting_for_user_input_p = XINT (read_kbd);
1657
1658 /* Since we may need to wait several times,
1659 compute the absolute time to return at. */
1660 if (time_limit || microsecs)
1661 {
1662 EMACS_GET_TIME (end_time);
1663 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
1664 EMACS_ADD_TIME (end_time, end_time, timeout);
1665 }
1666
1667 while (1)
1668 {
1669 /* If calling from keyboard input, do not quit
1670 since we want to return C-g as an input character.
1671 Otherwise, do pending quit if requested. */
1672 if (XINT (read_kbd) >= 0)
1673 QUIT;
1674
1675 /* If status of something has changed, and no input is available,
1676 notify the user of the change right away */
1677 if (update_tick != process_tick && do_display)
1678 {
1679 Atemp = input_wait_mask;
1680 EMACS_SET_SECS_USECS (timeout, 0, 0);
1681 if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0)
1682 status_notify ();
1683 }
1684
1685 /* Don't wait for output from a non-running process. */
1686 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
1687 update_status (wait_proc);
1688 if (wait_proc != 0
1689 && ! EQ (wait_proc->status, Qrun))
1690 break;
1691
1692 /* Compute time from now till when time limit is up */
1693 /* Exit if already run out */
1694 if (time_limit == -1)
1695 {
1696 /* -1 specified for timeout means
1697 gobble output available now
1698 but don't wait at all. */
1699
1700 EMACS_SET_SECS_USECS (timeout, 0, 0);
1701 }
1702 else if (time_limit || microsecs)
1703 {
1704 EMACS_GET_TIME (timeout);
1705 EMACS_SUB_TIME (timeout, end_time, timeout);
1706 if (EMACS_TIME_NEG_P (timeout))
1707 break;
1708 }
1709 else
1710 {
1711 EMACS_SET_SECS_USECS (timeout, 100000, 0);
1712 }
1713
1714 /* Cause C-g and alarm signals to take immediate action,
1715 and cause input available signals to zero out timeout */
1716 if (XINT (read_kbd) < 0)
1717 set_waiting_for_input (&timeout);
1718
1719 /* Wait till there is something to do */
1720
1721 Available = input_wait_mask;
1722 if (! XINT (read_kbd))
1723 FD_CLR (0, &Available);
1724
1725 /* If frame size has changed or the window is newly mapped,
1726 redisplay now, before we start to wait. There is a race
1727 condition here; if a SIGIO arrives between now and the select
1728 and indicates that a frame is trashed, we lose. */
1729 if (frame_garbaged)
1730 redisplay_preserve_echo_area ();
1731
1732 if (XINT (read_kbd) && detect_input_pending ())
1733 nfds = 0;
1734 else
1735 nfds = select (MAXDESC, &Available, 0, 0, &timeout);
1736
1737 xerrno = errno;
1738
1739 /* Make C-g and alarm signals set flags again */
1740 clear_waiting_for_input ();
1741
1742 /* If we woke up due to SIGWINCH, actually change size now. */
1743 do_pending_window_change ();
1744
1745 if (time_limit && nfds == 0) /* timeout elapsed */
1746 break;
1747 if (nfds < 0)
1748 {
1749 if (xerrno == EINTR)
1750 FD_ZERO (&Available);
1751 #ifdef ALLIANT
1752 /* This happens for no known reason on ALLIANT.
1753 I am guessing that this is the right response. -- RMS. */
1754 else if (xerrno == EFAULT)
1755 FD_ZERO (&Available);
1756 #endif
1757 else if (xerrno == EBADF)
1758 {
1759 #ifdef AIX
1760 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
1761 the child's closure of the pts gives the parent a SIGHUP, and
1762 the ptc file descriptor is automatically closed,
1763 yielding EBADF here or at select() call above.
1764 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
1765 in m-ibmrt-aix.h), and here we just ignore the select error.
1766 Cleanup occurs c/o status_notify after SIGCLD. */
1767 FD_ZERO (&Available); /* Cannot depend on values returned */
1768 #else
1769 abort ();
1770 #endif
1771 }
1772 else
1773 error("select error: %s", sys_errlist[xerrno]);
1774 }
1775 #ifdef sun
1776 else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input)
1777 /* System sometimes fails to deliver SIGIO. */
1778 kill (getpid (), SIGIO);
1779 #endif
1780
1781 /* Check for keyboard input */
1782 /* If there is any, return immediately
1783 to give it higher priority than subprocesses */
1784
1785 if (XINT (read_kbd) && detect_input_pending ())
1786 break;
1787
1788 #ifdef SIGIO
1789 /* If we think we have keyboard input waiting, but didn't get SIGIO
1790 go read it. This can happen with X on BSD after logging out.
1791 In that case, there really is no input and no SIGIO,
1792 but select says there is input. */
1793
1794 /*
1795 if (XINT (read_kbd) && interrupt_input && (Available & fileno (stdin)))
1796 */
1797 if (XINT (read_kbd) && interrupt_input && (FD_ISSET (fileno (stdin), &Available)))
1798 kill (0, SIGIO);
1799 #endif
1800
1801 #ifdef vipc
1802 /* Check for connection from other process */
1803
1804 if (Available & ChannelMask (comm_server))
1805 {
1806 Available &= ~(ChannelMask (comm_server));
1807 create_commchan ();
1808 }
1809 #endif /* vipc */
1810
1811 if (! wait_proc)
1812 got_some_input |= nfds > 0;
1813
1814 /* If checking input just got us a size-change event from X,
1815 obey it now if we should. */
1816 if (XINT (read_kbd))
1817 do_pending_window_change ();
1818
1819 /* Check for data from a process or a command channel */
1820 for (channel = FIRST_PROC_DESC; channel < MAXDESC; channel++)
1821 {
1822 if (FD_ISSET (channel, &Available))
1823 {
1824 int nread;
1825
1826 /* If waiting for this channel, arrange to return as
1827 soon as no more input to be processed. No more
1828 waiting. */
1829 if (wait_channel == channel)
1830 {
1831 wait_channel = 0;
1832 time_limit = -1;
1833 got_some_input = 1;
1834 }
1835 proc = chan_process[channel];
1836 if (NILP (proc))
1837 continue;
1838
1839 #ifdef vipc
1840 /* It's a command channel */
1841 if (!NILP (XPROCESS (proc)->command_channel_p))
1842 {
1843 ProcessCommChan (channel, proc);
1844 if (NILP (XPROCESS (proc)->command_channel_p))
1845 {
1846 /* It has ceased to be a command channel! */
1847 int bytes_available;
1848 if (ioctl (channel, FIONREAD, &bytes_available) < 0)
1849 bytes_available = 0;
1850 if (bytes_available)
1851 FD_SET (channel, &Available);
1852 }
1853 continue;
1854 }
1855 #endif /* vipc */
1856
1857 /* Read data from the process, starting with our
1858 buffered-ahead character if we have one. */
1859
1860 nread = read_process_output (proc, channel);
1861 if (nread > 0)
1862 {
1863 /* Since read_process_output can run a filter,
1864 which can call accept-process-output,
1865 don't try to read from any other processes
1866 before doing the select again. */
1867 FD_ZERO (&Available);
1868
1869 if (do_display)
1870 redisplay_preserve_echo_area ();
1871 }
1872 #ifdef EWOULDBLOCK
1873 else if (nread == -1 && errno == EWOULDBLOCK)
1874 ;
1875 #else
1876 #ifdef O_NONBLOCK
1877 else if (nread == -1 && errno == EAGAIN)
1878 ;
1879 #else
1880 #ifdef O_NDELAY
1881 else if (nread == -1 && errno == EAGAIN)
1882 ;
1883 /* Note that we cannot distinguish between no input
1884 available now and a closed pipe.
1885 With luck, a closed pipe will be accompanied by
1886 subprocess termination and SIGCHLD. */
1887 else if (nread == 0 && !NETCONN_P (proc))
1888 ;
1889 #endif /* O_NDELAY */
1890 #endif /* O_NONBLOCK */
1891 #endif /* EWOULDBLOCK */
1892 #ifdef HAVE_PTYS
1893 /* On some OSs with ptys, when the process on one end of
1894 a pty exits, the other end gets an error reading with
1895 errno = EIO instead of getting an EOF (0 bytes read).
1896 Therefore, if we get an error reading and errno =
1897 EIO, just continue, because the child process has
1898 exited and should clean itself up soon (e.g. when we
1899 get a SIGCHLD). */
1900 else if (nread == -1 && errno == EIO)
1901 ;
1902 #endif /* HAVE_PTYS */
1903 /* If we can detect process termination, don't consider the process
1904 gone just because its pipe is closed. */
1905 #ifdef SIGCHLD
1906 else if (nread == 0 && !NETCONN_P (proc))
1907 ;
1908 #endif
1909 else
1910 {
1911 /* Preserve status of processes already terminated. */
1912 XSETINT (XPROCESS (proc)->tick, ++process_tick);
1913 deactivate_process (proc);
1914 if (!NILP (XPROCESS (proc)->raw_status_low))
1915 update_status (XPROCESS (proc));
1916 if (EQ (XPROCESS (proc)->status, Qrun))
1917 XPROCESS (proc)->status
1918 = Fcons (Qexit, Fcons (make_number (256), Qnil));
1919 }
1920 }
1921 } /* end for each file descriptor */
1922 } /* end while exit conditions not met */
1923
1924 /* If calling from keyboard input, do not quit
1925 since we want to return C-g as an input character.
1926 Otherwise, do pending quit if requested. */
1927 if (XINT (read_kbd) >= 0)
1928 {
1929 /* Prevent input_pending from remaining set if we quit. */
1930 clear_input_pending ();
1931 QUIT;
1932 }
1933
1934 return got_some_input;
1935 }
1936 \f
1937 /* Read pending output from the process channel,
1938 starting with our buffered-ahead character if we have one.
1939 Yield number of characters read.
1940
1941 This function reads at most 1024 characters.
1942 If you want to read all available subprocess output,
1943 you must call it repeatedly until it returns zero. */
1944
1945 read_process_output (proc, channel)
1946 Lisp_Object proc;
1947 register int channel;
1948 {
1949 register int nchars;
1950 #ifdef VMS
1951 char *chars;
1952 #else
1953 char chars[1024];
1954 #endif
1955 register Lisp_Object outstream;
1956 register struct buffer *old = current_buffer;
1957 register struct Lisp_Process *p = XPROCESS (proc);
1958 register int opoint;
1959
1960 #ifdef VMS
1961 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
1962
1963 vs = get_vms_process_pointer (p->pid);
1964 if (vs)
1965 {
1966 if (!vs->iosb[0])
1967 return(0); /* Really weird if it does this */
1968 if (!(vs->iosb[0] & 1))
1969 return -1; /* I/O error */
1970 }
1971 else
1972 error ("Could not get VMS process pointer");
1973 chars = vs->inputBuffer;
1974 nchars = clean_vms_buffer (chars, vs->iosb[1]);
1975 if (nchars <= 0)
1976 {
1977 start_vms_process_read (vs); /* Crank up the next read on the process */
1978 return 1; /* Nothing worth printing, say we got 1 */
1979 }
1980 #else /* not VMS */
1981
1982 if (proc_buffered_char[channel] < 0)
1983 nchars = read (channel, chars, sizeof chars);
1984 else
1985 {
1986 chars[0] = proc_buffered_char[channel];
1987 proc_buffered_char[channel] = -1;
1988 nchars = read (channel, chars + 1, sizeof chars - 1);
1989 if (nchars < 0)
1990 nchars = 1;
1991 else
1992 nchars = nchars + 1;
1993 }
1994 #endif /* not VMS */
1995
1996 if (nchars <= 0) return nchars;
1997
1998 outstream = p->filter;
1999 if (!NILP (outstream))
2000 {
2001 /* We inhibit quit here instead of just catching it so that
2002 hitting ^G when a filter happens to be running won't screw
2003 it up. */
2004 int count = specpdl_ptr - specpdl;
2005 specbind (Qinhibit_quit, Qt);
2006 call2 (outstream, proc, make_string (chars, nchars));
2007
2008 #ifdef VMS
2009 start_vms_process_read (vs);
2010 #endif
2011 unbind_to (count);
2012 return nchars;
2013 }
2014
2015 /* If no filter, write into buffer if it isn't dead. */
2016 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
2017 {
2018 Lisp_Object tem;
2019
2020 Fset_buffer (p->buffer);
2021 opoint = point;
2022
2023 /* Insert new output into buffer
2024 at the current end-of-output marker,
2025 thus preserving logical ordering of input and output. */
2026 if (XMARKER (p->mark)->buffer)
2027 SET_PT (marker_position (p->mark));
2028 else
2029 SET_PT (ZV);
2030 if (point <= opoint)
2031 opoint += nchars;
2032
2033 tem = current_buffer->read_only;
2034 current_buffer->read_only = Qnil;
2035 /* Insert before markers in case we are inserting where
2036 the buffer's mark is, and the user's next command is Meta-y. */
2037 insert_before_markers (chars, nchars);
2038 current_buffer->read_only = tem;
2039 Fset_marker (p->mark, make_number (point), p->buffer);
2040 update_mode_lines++;
2041
2042 SET_PT (opoint);
2043 set_buffer_internal (old);
2044 }
2045 #ifdef VMS
2046 start_vms_process_read (vs);
2047 #endif
2048 return nchars;
2049 }
2050
2051 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
2052 0, 0, 0,
2053 "Returns non-NIL if emacs is waiting for input from the user.\n\
2054 This is intended for use by asynchronous process output filters and sentinels.")
2055 ()
2056 {
2057 return ((waiting_for_user_input_p) ? Qt : Qnil);
2058 }
2059 \f
2060 /* Sending data to subprocess */
2061
2062 jmp_buf send_process_frame;
2063
2064 SIGTYPE
2065 send_process_trap ()
2066 {
2067 #ifdef BSD4_1
2068 sigrelse (SIGPIPE);
2069 sigrelse (SIGALRM);
2070 #endif /* BSD4_1 */
2071 longjmp (send_process_frame, 1);
2072 }
2073
2074 send_process (proc, buf, len)
2075 Lisp_Object proc;
2076 char *buf;
2077 int len;
2078 {
2079 /* Don't use register vars; longjmp can lose them. */
2080 int rv;
2081 unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
2082
2083
2084 #ifdef VMS
2085 struct Lisp_Process *p = XPROCESS (proc);
2086 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2087 #endif /* VMS */
2088
2089 if (! NILP (XPROCESS (proc)->raw_status_low))
2090 update_status (XPROCESS (proc));
2091 if (! EQ (XPROCESS (proc)->status, Qrun))
2092 error ("Process %s not running", procname);
2093
2094 #ifdef VMS
2095 vs = get_vms_process_pointer (p->pid);
2096 if (vs == 0)
2097 error ("Could not find this process: %x", p->pid);
2098 else if (write_to_vms_process (vs, buf, len))
2099 ;
2100 #else
2101 if (!setjmp (send_process_frame))
2102 while (len > 0)
2103 {
2104 int this = len;
2105 SIGTYPE (*old_sigpipe)();
2106
2107 /* Don't send more than 500 bytes at a time. */
2108 if (this > 500)
2109 this = 500;
2110 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
2111 rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this);
2112 signal (SIGPIPE, old_sigpipe);
2113 if (rv < 0)
2114 {
2115 if (0
2116 #ifdef EWOULDBLOCK
2117 || errno == EWOULDBLOCK
2118 #endif
2119 #ifdef EAGAIN
2120 || errno == EAGAIN
2121 #endif
2122 )
2123 {
2124 /* It would be nice to accept process output here,
2125 but that is difficult. For example, it could
2126 garbage what we are sending if that is from a buffer. */
2127 immediate_quit = 1;
2128 QUIT;
2129 sleep (1);
2130 immediate_quit = 0;
2131 continue;
2132 }
2133 report_file_error ("writing to process", Fcons (proc, Qnil));
2134 }
2135 buf += rv;
2136 len -= rv;
2137 /* Allow input from processes between bursts of sending.
2138 Otherwise things may get stopped up. */
2139 if (len > 0)
2140 {
2141 Lisp_Object zero;
2142
2143 XFASTINT (zero) = 0;
2144 wait_reading_process_input (-1, 0, zero, 0);
2145 }
2146 }
2147 #endif
2148 else
2149 {
2150 XPROCESS (proc)->raw_status_low = Qnil;
2151 XPROCESS (proc)->raw_status_high = Qnil;
2152 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
2153 XSETINT (XPROCESS (proc)->tick, ++process_tick);
2154 deactivate_process (proc);
2155 #ifdef VMS
2156 error ("Error writing to process %s; closed it", procname);
2157 #else
2158 error ("SIGPIPE raised on process %s; closed it", procname);
2159 #endif
2160 }
2161 }
2162
2163 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
2164 3, 3, 0,
2165 "Send current contents of region as input to PROCESS.\n\
2166 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2167 nil, indicating the current buffer's process.\n\
2168 Called from program, takes three arguments, PROCESS, START and END.\n\
2169 If the region is more than 500 characters long,\n\
2170 it is sent in several bunches. This may happen even for shorter regions.\n\
2171 Output from processes can arrive in between bunches.")
2172 (process, start, end)
2173 Lisp_Object process, start, end;
2174 {
2175 Lisp_Object proc;
2176 int start1;
2177
2178 proc = get_process (process);
2179 validate_region (&start, &end);
2180
2181 if (XINT (start) < GPT && XINT (end) > GPT)
2182 move_gap (start);
2183
2184 start1 = XINT (start);
2185 send_process (proc, &FETCH_CHAR (start1), XINT (end) - XINT (start));
2186
2187 return Qnil;
2188 }
2189
2190 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
2191 2, 2, 0,
2192 "Send PROCESS the contents of STRING as input.\n\
2193 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2194 nil, indicating the current buffer's process.\n\
2195 If STRING is more than 500 characters long,\n\
2196 it is sent in several bunches. This may happen even for shorter strings.\n\
2197 Output from processes can arrive in between bunches.")
2198 (process, string)
2199 Lisp_Object process, string;
2200 {
2201 Lisp_Object proc;
2202 CHECK_STRING (string, 1);
2203 proc = get_process (process);
2204 send_process (proc, XSTRING (string)->data, XSTRING (string)->size);
2205 return Qnil;
2206 }
2207 \f
2208 /* send a signal number SIGNO to PROCESS.
2209 CURRENT_GROUP means send to the process group that currently owns
2210 the terminal being used to communicate with PROCESS.
2211 This is used for various commands in shell mode.
2212 If NOMSG is zero, insert signal-announcements into process's buffers
2213 right away. */
2214
2215 process_send_signal (process, signo, current_group, nomsg)
2216 Lisp_Object process;
2217 int signo;
2218 Lisp_Object current_group;
2219 int nomsg;
2220 {
2221 Lisp_Object proc;
2222 register struct Lisp_Process *p;
2223 int gid;
2224 int no_pgrp = 0;
2225
2226 proc = get_process (process);
2227 p = XPROCESS (proc);
2228
2229 if (!EQ (p->childp, Qt))
2230 error ("Process %s is not a subprocess",
2231 XSTRING (p->name)->data);
2232 if (!XFASTINT (p->infd))
2233 error ("Process %s is not active",
2234 XSTRING (p->name)->data);
2235
2236 if (NILP (p->pty_flag))
2237 current_group = Qnil;
2238
2239 /* If we are using pgrps, get a pgrp number and make it negative. */
2240 if (!NILP (current_group))
2241 {
2242 /* If possible, send signals to the entire pgrp
2243 by sending an input character to it. */
2244 #if defined (TIOCGLTC) && defined (TIOCGETC)
2245 struct tchars c;
2246 struct ltchars lc;
2247
2248 switch (signo)
2249 {
2250 case SIGINT:
2251 ioctl (XFASTINT (p->infd), TIOCGETC, &c);
2252 send_process (proc, &c.t_intrc, 1);
2253 return Qnil;
2254 case SIGQUIT:
2255 ioctl (XFASTINT (p->infd), TIOCGETC, &c);
2256 send_process (proc, &c.t_quitc, 1);
2257 return Qnil;
2258 #ifdef SIGTSTP
2259 case SIGTSTP:
2260 ioctl (XFASTINT (p->infd), TIOCGLTC, &lc);
2261 send_process (proc, &lc.t_suspc, 1);
2262 return Qnil;
2263 #endif /* SIGTSTP */
2264 }
2265 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
2266 /* It is possible that the following code would work
2267 on other kinds of USG systems, not just on the IRIS.
2268 This should be tried in Emacs 19. */
2269 #if defined (USG)
2270 struct termio t;
2271 switch (signo)
2272 {
2273 case SIGINT:
2274 ioctl (XFASTINT (p->infd), TCGETA, &t);
2275 send_process (proc, &t.c_cc[VINTR], 1);
2276 return Qnil;
2277 case SIGQUIT:
2278 ioctl (XFASTINT (p->infd), TCGETA, &t);
2279 send_process (proc, &t.c_cc[VQUIT], 1);
2280 return Qnil;
2281 case SIGTSTP:
2282 ioctl (XFASTINT (p->infd), TCGETA, &t);
2283 send_process (proc, &t.c_cc[VSWTCH], 1);
2284 return Qnil;
2285 }
2286 #endif /* ! defined (USG) */
2287
2288 #ifdef TIOCGPGRP
2289 /* Get the pgrp using the tty itself, if we have that.
2290 Otherwise, use the pty to get the pgrp.
2291 On pfa systems, saka@pfu.fujitsu.co.JP writes:
2292 "TICGPGRP symbol defined in sys/ioctl.h at E50.
2293 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
2294 His patch indicates that if TIOCGPGRP returns an error, then
2295 we should just assume that p->pid is also the process group id. */
2296 {
2297 int err;
2298
2299 if (!NILP (p->subtty))
2300 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
2301 else
2302 err = ioctl (XFASTINT (p->infd), TIOCGPGRP, &gid);
2303
2304 #ifdef pfa
2305 if (err == -1)
2306 gid = - XFASTINT (p->pid);
2307 #endif /* ! defined (pfa) */
2308 }
2309 if (gid == -1)
2310 no_pgrp = 1;
2311 else
2312 gid = - gid;
2313 #else /* ! defined (TIOCGPGRP ) */
2314 /* Can't select pgrps on this system, so we know that
2315 the child itself heads the pgrp. */
2316 gid = - XFASTINT (p->pid);
2317 #endif /* ! defined (TIOCGPGRP ) */
2318 }
2319 else
2320 gid = - XFASTINT (p->pid);
2321
2322 switch (signo)
2323 {
2324 #ifdef SIGCONT
2325 case SIGCONT:
2326 p->raw_status_low = Qnil;
2327 p->raw_status_high = Qnil;
2328 p->status = Qrun;
2329 XSETINT (p->tick, ++process_tick);
2330 if (!nomsg)
2331 status_notify ();
2332 break;
2333 #endif /* ! defined (SIGCONT) */
2334 case SIGINT:
2335 #ifdef VMS
2336 send_process (proc, "\003", 1); /* ^C */
2337 goto whoosh;
2338 #endif
2339 case SIGQUIT:
2340 #ifdef VMS
2341 send_process (proc, "\031", 1); /* ^Y */
2342 goto whoosh;
2343 #endif
2344 case SIGKILL:
2345 #ifdef VMS
2346 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
2347 whoosh:
2348 #endif
2349 flush_pending_output (XFASTINT (p->infd));
2350 break;
2351 }
2352
2353 /* If we don't have process groups, send the signal to the immediate
2354 subprocess. That isn't really right, but it's better than any
2355 obvious alternative. */
2356 if (no_pgrp)
2357 {
2358 kill (XFASTINT (p->pid), signo);
2359 return;
2360 }
2361
2362 /* gid may be a pid, or minus a pgrp's number */
2363 #ifdef TIOCSIGSEND
2364 if (!NILP (current_group))
2365 ioctl (XFASTINT (p->infd), TIOCSIGSEND, signo);
2366 else
2367 {
2368 gid = - XFASTINT (p->pid);
2369 kill (gid, signo);
2370 }
2371 #else /* ! defined (TIOCSIGSEND) */
2372 EMACS_KILLPG (-gid, signo);
2373 #endif /* ! defined (TIOCSIGSEND) */
2374 }
2375
2376 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
2377 "Interrupt process PROCESS. May be process or name of one.\n\
2378 PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
2379 Nil or no arg means current buffer's process.\n\
2380 Second arg CURRENT-GROUP non-nil means send signal to\n\
2381 the current process-group of the process's controlling terminal\n\
2382 rather than to the process's own process group.\n\
2383 If the process is a shell, this means interrupt current subjob\n\
2384 rather than the shell.")
2385 (process, current_group)
2386 Lisp_Object process, current_group;
2387 {
2388 process_send_signal (process, SIGINT, current_group, 0);
2389 return process;
2390 }
2391
2392 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
2393 "Kill process PROCESS. May be process or name of one.\n\
2394 See function `interrupt-process' for more details on usage.")
2395 (process, current_group)
2396 Lisp_Object process, current_group;
2397 {
2398 process_send_signal (process, SIGKILL, current_group, 0);
2399 return process;
2400 }
2401
2402 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
2403 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
2404 See function `interrupt-process' for more details on usage.")
2405 (process, current_group)
2406 Lisp_Object process, current_group;
2407 {
2408 process_send_signal (process, SIGQUIT, current_group, 0);
2409 return process;
2410 }
2411
2412 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
2413 "Stop process PROCESS. May be process or name of one.\n\
2414 See function `interrupt-process' for more details on usage.")
2415 (process, current_group)
2416 Lisp_Object process, current_group;
2417 {
2418 #ifndef SIGTSTP
2419 error ("no SIGTSTP support");
2420 #else
2421 process_send_signal (process, SIGTSTP, current_group, 0);
2422 #endif
2423 return process;
2424 }
2425
2426 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
2427 "Continue process PROCESS. May be process or name of one.\n\
2428 See function `interrupt-process' for more details on usage.")
2429 (process, current_group)
2430 Lisp_Object process, current_group;
2431 {
2432 #ifdef SIGCONT
2433 process_send_signal (process, SIGCONT, current_group, 0);
2434 #else
2435 error ("no SIGCONT support");
2436 #endif
2437 return process;
2438 }
2439
2440 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
2441 2, 2, "nProcess number: \nnSignal code: ",
2442 "Send the process with number PID the signal with code CODE.\n\
2443 Both PID and CODE are integers.")
2444 (pid, sig)
2445 Lisp_Object pid, sig;
2446 {
2447 CHECK_NUMBER (pid, 0);
2448 CHECK_NUMBER (sig, 1);
2449 return make_number (kill (XINT (pid), XINT (sig)));
2450 }
2451
2452 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
2453 "Make PROCESS see end-of-file in its input.\n\
2454 Eof comes after any text already sent to it.\n\
2455 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2456 nil, indicating the current buffer's process.")
2457 (process)
2458 Lisp_Object process;
2459 {
2460 Lisp_Object proc;
2461
2462 proc = get_process (process);
2463 /* Sending a zero-length record is supposed to mean eof
2464 when TIOCREMOTE is turned on. */
2465 #ifdef DID_REMOTE
2466 {
2467 char buf[1];
2468 write (XFASTINT (XPROCESS (proc)->outfd), buf, 0);
2469 }
2470 #else /* did not do TOICREMOTE */
2471 #ifdef VMS
2472 send_process (proc, "\032", 1); /* ^z */
2473 #else
2474 if (!NILP (XPROCESS (proc)->pty_flag))
2475 send_process (proc, "\004", 1);
2476 else
2477 {
2478 close (XPROCESS (proc)->outfd);
2479 XFASTINT (XPROCESS (proc)->outfd) = open ("/dev/null", O_WRONLY);
2480 }
2481 #endif /* VMS */
2482 #endif /* did not do TOICREMOTE */
2483 return process;
2484 }
2485
2486 /* Kill all processes associated with `buffer'.
2487 If `buffer' is nil, kill all processes */
2488
2489 kill_buffer_processes (buffer)
2490 Lisp_Object buffer;
2491 {
2492 Lisp_Object tail, proc;
2493
2494 for (tail = Vprocess_alist; XGCTYPE (tail) == Lisp_Cons;
2495 tail = XCONS (tail)->cdr)
2496 {
2497 proc = XCONS (XCONS (tail)->car)->cdr;
2498 if (XGCTYPE (proc) == Lisp_Process
2499 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
2500 {
2501 if (NETCONN_P (proc))
2502 deactivate_process (proc);
2503 else if (XFASTINT (XPROCESS (proc)->infd))
2504 process_send_signal (proc, SIGHUP, Qnil, 1);
2505 }
2506 }
2507 }
2508 \f
2509 /* On receipt of a signal that a child status has changed,
2510 loop asking about children with changed statuses until
2511 the system says there are no more.
2512 All we do is change the status;
2513 we do not run sentinels or print notifications.
2514 That is saved for the next time keyboard input is done,
2515 in order to avoid timing errors. */
2516
2517 /** WARNING: this can be called during garbage collection.
2518 Therefore, it must not be fooled by the presence of mark bits in
2519 Lisp objects. */
2520
2521 /** USG WARNING: Although it is not obvious from the documentation
2522 in signal(2), on a USG system the SIGCLD handler MUST NOT call
2523 signal() before executing at least one wait(), otherwise the handler
2524 will be called again, resulting in an infinite loop. The relevant
2525 portion of the documentation reads "SIGCLD signals will be queued
2526 and the signal-catching function will be continually reentered until
2527 the queue is empty". Invoking signal() causes the kernel to reexamine
2528 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
2529
2530 SIGTYPE
2531 sigchld_handler (signo)
2532 int signo;
2533 {
2534 int old_errno = errno;
2535 Lisp_Object proc;
2536 register struct Lisp_Process *p;
2537
2538 #ifdef BSD4_1
2539 extern int sigheld;
2540 sigheld |= sigbit (SIGCHLD);
2541 #endif
2542
2543 while (1)
2544 {
2545 register int pid;
2546 WAITTYPE w;
2547 Lisp_Object tail;
2548
2549 #ifdef WNOHANG
2550 #ifndef WUNTRACED
2551 #define WUNTRACED 0
2552 #endif /* no WUNTRACED */
2553 /* Keep trying to get a status until we get a definitive result. */
2554 do
2555 {
2556 errno = 0;
2557 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
2558 }
2559 while (pid <= 0 && errno == EINTR);
2560
2561 if (pid <= 0)
2562 {
2563 /* A real failure. We have done all our job, so return. */
2564
2565 /* USG systems forget handlers when they are used;
2566 must reestablish each time */
2567 #ifdef USG
2568 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
2569 #endif
2570 #ifdef BSD4_1
2571 sigheld &= ~sigbit (SIGCHLD);
2572 sigrelse (SIGCHLD);
2573 #endif
2574 errno = old_errno;
2575 return;
2576 }
2577 #else
2578 pid = wait (&w);
2579 #endif /* no WNOHANG */
2580
2581 /* Find the process that signaled us, and record its status. */
2582
2583 p = 0;
2584 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2585 {
2586 proc = XCONS (XCONS (tail)->car)->cdr;
2587 p = XPROCESS (proc);
2588 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
2589 break;
2590 p = 0;
2591 }
2592
2593 /* Look for an asynchronous process whose pid hasn't been filled
2594 in yet. */
2595 if (p == 0)
2596 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2597 {
2598 proc = XCONS (XCONS (tail)->car)->cdr;
2599 p = XPROCESS (proc);
2600 if (XTYPE (p->pid) == Lisp_Int && XINT (p->pid) == -1)
2601 break;
2602 p = 0;
2603 }
2604
2605 /* Change the status of the process that was found. */
2606 if (p != 0)
2607 {
2608 union { int i; WAITTYPE wt; } u;
2609
2610 XSETINT (p->tick, ++process_tick);
2611 u.wt = w;
2612 XFASTINT (p->raw_status_low) = u.i & 0xffff;
2613 XFASTINT (p->raw_status_high) = u.i >> 16;
2614
2615 /* If process has terminated, stop waiting for its output. */
2616 if (WIFSIGNALED (w) || WIFEXITED (w))
2617 if (p->infd)
2618 FD_CLR (p->infd, &input_wait_mask);
2619 }
2620
2621 /* There was no asynchronous process found for that id. Check
2622 if we have a synchronous process. */
2623 else
2624 {
2625 synch_process_alive = 0;
2626
2627 /* Report the status of the synchronous process. */
2628 if (WIFEXITED (w))
2629 synch_process_retcode = WRETCODE (w);
2630 else if (WIFSIGNALED (w))
2631 synch_process_death = sys_siglist[WTERMSIG (w)];
2632 }
2633
2634 /* On some systems, we must return right away.
2635 If any more processes want to signal us, we will
2636 get another signal.
2637 Otherwise (on systems that have WNOHANG), loop around
2638 to use up all the processes that have something to tell us. */
2639 #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG))
2640 #ifdef USG
2641 signal (signo, sigchld_handler);
2642 #endif
2643 errno = old_errno;
2644 return;
2645 #endif /* USG, but not HPUX with WNOHANG */
2646 }
2647 }
2648 \f
2649
2650 static Lisp_Object
2651 exec_sentinel_unwind (data)
2652 Lisp_Object data;
2653 {
2654 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr;
2655 return Qnil;
2656 }
2657
2658 static void
2659 exec_sentinel (proc, reason)
2660 Lisp_Object proc, reason;
2661 {
2662 Lisp_Object sentinel;
2663 register struct Lisp_Process *p = XPROCESS (proc);
2664 int count = specpdl_ptr - specpdl;
2665
2666 sentinel = p->sentinel;
2667 if (NILP (sentinel))
2668 return;
2669
2670 /* Zilch the sentinel while it's running, to avoid recursive invocations;
2671 assure that it gets restored no matter how the sentinel exits. */
2672 p->sentinel = Qnil;
2673 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
2674 /* Inhibit quit so that random quits don't screw up a running filter. */
2675 specbind (Qinhibit_quit, Qt);
2676 call2 (sentinel, proc, reason);
2677 unbind_to (count);
2678 }
2679
2680 /* Report all recent events of a change in process status
2681 (either run the sentinel or output a message).
2682 This is done while Emacs is waiting for keyboard input. */
2683
2684 status_notify ()
2685 {
2686 register Lisp_Object proc, buffer;
2687 Lisp_Object tail = Qnil;
2688 Lisp_Object msg = Qnil;
2689 struct gcpro gcpro1, gcpro2;
2690
2691 /* We need to gcpro tail; if read_process_output calls a filter
2692 which deletes a process and removes the cons to which tail points
2693 from Vprocess_alist, and then causes a GC, tail is an unprotected
2694 reference. */
2695 GCPRO2 (tail, msg);
2696
2697 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
2698 {
2699 Lisp_Object symbol;
2700 register struct Lisp_Process *p;
2701
2702 proc = Fcdr (Fcar (tail));
2703 p = XPROCESS (proc);
2704
2705 if (XINT (p->tick) != XINT (p->update_tick))
2706 {
2707 XSETINT (p->update_tick, XINT (p->tick));
2708
2709 /* If process is still active, read any output that remains. */
2710 if (XFASTINT (p->infd))
2711 while (read_process_output (proc, XFASTINT (p->infd)) > 0);
2712
2713 buffer = p->buffer;
2714
2715 /* Get the text to use for the message. */
2716 if (!NILP (p->raw_status_low))
2717 update_status (p);
2718 msg = status_message (p->status);
2719
2720 /* If process is terminated, deactivate it or delete it. */
2721 symbol = p->status;
2722 if (XTYPE (p->status) == Lisp_Cons)
2723 symbol = XCONS (p->status)->car;
2724
2725 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
2726 || EQ (symbol, Qclosed))
2727 {
2728 if (delete_exited_processes)
2729 remove_process (proc);
2730 else
2731 deactivate_process (proc);
2732 }
2733
2734 /* Now output the message suitably. */
2735 if (!NILP (p->sentinel))
2736 exec_sentinel (proc, msg);
2737 /* Don't bother with a message in the buffer
2738 when a process becomes runnable. */
2739 else if (!EQ (symbol, Qrun) && !NILP (buffer))
2740 {
2741 Lisp_Object ro = XBUFFER (buffer)->read_only;
2742 Lisp_Object tem;
2743 struct buffer *old = current_buffer;
2744 int opoint;
2745
2746 /* Avoid error if buffer is deleted
2747 (probably that's why the process is dead, too) */
2748 if (NILP (XBUFFER (buffer)->name))
2749 continue;
2750 Fset_buffer (buffer);
2751 opoint = point;
2752 /* Insert new output into buffer
2753 at the current end-of-output marker,
2754 thus preserving logical ordering of input and output. */
2755 if (XMARKER (p->mark)->buffer)
2756 SET_PT (marker_position (p->mark));
2757 else
2758 SET_PT (ZV);
2759 if (point <= opoint)
2760 opoint += XSTRING (msg)->size + XSTRING (p->name)->size + 10;
2761
2762 tem = current_buffer->read_only;
2763 current_buffer->read_only = Qnil;
2764 insert_string ("\nProcess ");
2765 Finsert (1, &p->name);
2766 insert_string (" ");
2767 Finsert (1, &msg);
2768 current_buffer->read_only = tem;
2769 Fset_marker (p->mark, make_number (point), p->buffer);
2770
2771 SET_PT (opoint);
2772 set_buffer_internal (old);
2773 }
2774 }
2775 } /* end for */
2776
2777 update_mode_lines++; /* in case buffers use %s in mode-line-format */
2778 redisplay_preserve_echo_area ();
2779
2780 update_tick = process_tick;
2781
2782 UNGCPRO;
2783 }
2784 \f
2785 init_process ()
2786 {
2787 register int i;
2788
2789 #ifdef SIGCHLD
2790 #ifndef CANNOT_DUMP
2791 if (! noninteractive || initialized)
2792 #endif
2793 signal (SIGCHLD, sigchld_handler);
2794 #endif
2795
2796 FD_ZERO (&input_wait_mask);
2797 FD_SET (0, &input_wait_mask);
2798 Vprocess_alist = Qnil;
2799 for (i = 0; i < MAXDESC; i++)
2800 {
2801 chan_process[i] = Qnil;
2802 proc_buffered_char[i] = -1;
2803 }
2804 }
2805 #if 0
2806 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 0, 1, 0,
2807 "Return the connection type of `PROCESS'. This can be nil (pipe),\n\
2808 t or pty (pty) or stream (socket connection).")
2809 (process)
2810 Lisp_Object process;
2811 {
2812 return XPROCESS (process)->type;
2813 }
2814 #endif
2815 syms_of_process ()
2816 {
2817 #ifdef HAVE_PTYS
2818 pty_process = intern ("pty");
2819 #endif
2820 #ifdef HAVE_SOCKETS
2821 stream_process = intern ("stream");
2822 #endif
2823 Qprocessp = intern ("processp");
2824 staticpro (&Qprocessp);
2825 Qrun = intern ("run");
2826 staticpro (&Qrun);
2827 Qstop = intern ("stop");
2828 staticpro (&Qstop);
2829 Qsignal = intern ("signal");
2830 staticpro (&Qsignal);
2831
2832 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
2833 here again.
2834
2835 Qexit = intern ("exit");
2836 staticpro (&Qexit); */
2837
2838 Qopen = intern ("open");
2839 staticpro (&Qopen);
2840 Qclosed = intern ("closed");
2841 staticpro (&Qclosed);
2842
2843 staticpro (&Vprocess_alist);
2844
2845 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
2846 "*Non-nil means delete processes immediately when they exit.\n\
2847 nil means don't delete them until `list-processes' is run.");
2848
2849 delete_exited_processes = 1;
2850
2851 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
2852 "Control type of device used to communicate with subprocesses.\n\
2853 Values are nil to use a pipe, and t or 'pty for a pty. Note that if\n\
2854 pty's are not available, this variable will be ignored. The value takes\n\
2855 effect when `start-process' is called.");
2856 Vprocess_connection_type = Qt;
2857
2858 defsubr (&Sprocessp);
2859 defsubr (&Sget_process);
2860 defsubr (&Sget_buffer_process);
2861 defsubr (&Sdelete_process);
2862 defsubr (&Sprocess_status);
2863 defsubr (&Sprocess_exit_status);
2864 defsubr (&Sprocess_id);
2865 defsubr (&Sprocess_name);
2866 defsubr (&Sprocess_command);
2867 defsubr (&Sset_process_buffer);
2868 defsubr (&Sprocess_buffer);
2869 defsubr (&Sprocess_mark);
2870 defsubr (&Sset_process_filter);
2871 defsubr (&Sprocess_filter);
2872 defsubr (&Sset_process_sentinel);
2873 defsubr (&Sprocess_sentinel);
2874 defsubr (&Sprocess_kill_without_query);
2875 defsubr (&Slist_processes);
2876 defsubr (&Sprocess_list);
2877 defsubr (&Sstart_process);
2878 #ifdef HAVE_SOCKETS
2879 defsubr (&Sopen_network_stream);
2880 #endif /* HAVE_SOCKETS */
2881 defsubr (&Saccept_process_output);
2882 defsubr (&Sprocess_send_region);
2883 defsubr (&Sprocess_send_string);
2884 defsubr (&Sinterrupt_process);
2885 defsubr (&Skill_process);
2886 defsubr (&Squit_process);
2887 defsubr (&Sstop_process);
2888 defsubr (&Scontinue_process);
2889 defsubr (&Sprocess_send_eof);
2890 defsubr (&Ssignal_process);
2891 defsubr (&Swaiting_for_user_input_p);
2892 /* defsubr (&Sprocess_connection); */
2893 }
2894
2895 \f
2896 #else /* not subprocesses */
2897
2898 #include <sys/types.h>
2899 #include <errno.h>
2900
2901 #include "lisp.h"
2902 #include "systime.h"
2903 #include "termopts.h"
2904
2905 extern int frame_garbaged;
2906
2907
2908 /* As described above, except assuming that there are no subprocesses:
2909
2910 Wait for timeout to elapse and/or keyboard input to be available.
2911
2912 time_limit is:
2913 timeout in seconds, or
2914 zero for no limit, or
2915 -1 means gobble data immediately available but don't wait for any.
2916
2917 read_kbd is a Lisp_Object:
2918 0 to ignore keyboard input, or
2919 1 to return when input is available, or
2920 -1 means caller will actually read the input, so don't throw to
2921 the quit handler.
2922 We know that read_kbd will never be a Lisp_Process, since
2923 `subprocesses' isn't defined.
2924
2925 do_display != 0 means redisplay should be done to show subprocess
2926 output that arrives. This version of the function ignores it.
2927
2928 Return true iff we recieved input from any process. */
2929
2930 int
2931 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
2932 int time_limit, microsecs;
2933 Lisp_Object read_kbd;
2934 int do_display;
2935 {
2936 EMACS_TIME end_time, timeout, *timeout_p;
2937 int waitchannels;
2938
2939 /* What does time_limit really mean? */
2940 if (time_limit || microsecs)
2941 {
2942 /* It's not infinite. */
2943 timeout_p = &timeout;
2944
2945 if (time_limit == -1)
2946 /* In fact, it's zero. */
2947 EMACS_SET_SECS_USECS (timeout, 0, 0);
2948 else
2949 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
2950
2951 /* How far in the future is that? */
2952 EMACS_GET_TIME (end_time);
2953 EMACS_ADD_TIME (end_time, end_time, timeout);
2954 }
2955 else
2956 /* It's infinite. */
2957 timeout_p = 0;
2958
2959 /* Turn off periodic alarms (in case they are in use)
2960 because the select emulator uses alarms. */
2961 stop_polling ();
2962
2963 for (;;)
2964 {
2965 int nfds;
2966
2967 waitchannels = XINT (read_kbd) ? 1 : 0;
2968
2969 /* If calling from keyboard input, do not quit
2970 since we want to return C-g as an input character.
2971 Otherwise, do pending quit if requested. */
2972 if (XINT (read_kbd) >= 0)
2973 QUIT;
2974
2975 if (timeout_p)
2976 {
2977 EMACS_GET_TIME (*timeout_p);
2978 EMACS_SUB_TIME (*timeout_p, end_time, *timeout_p);
2979 if (EMACS_TIME_NEG_P (*timeout_p))
2980 break;
2981 }
2982
2983 /* Cause C-g and alarm signals to take immediate action,
2984 and cause input available signals to zero out timeout. */
2985 if (XINT (read_kbd) < 0)
2986 set_waiting_for_input (&timeout);
2987
2988 /* If a frame has been newly mapped and needs updating,
2989 reprocess its display stuff. */
2990 if (frame_garbaged)
2991 redisplay_preserve_echo_area ();
2992
2993 if (XINT (read_kbd) && detect_input_pending ())
2994 nfds = 0;
2995 else
2996 nfds = select (1, &waitchannels, 0, 0, timeout_p);
2997
2998 /* Make C-g and alarm signals set flags again */
2999 clear_waiting_for_input ();
3000
3001 /* If we woke up due to SIGWINCH, actually change size now. */
3002 do_pending_window_change ();
3003
3004 if (nfds == -1)
3005 {
3006 /* If the system call was interrupted, then go around the
3007 loop again. */
3008 if (errno == EINTR)
3009 waitchannels = 0;
3010 }
3011 #ifdef sun
3012 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
3013 /* System sometimes fails to deliver SIGIO. */
3014 kill (getpid (), SIGIO);
3015 #endif
3016 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
3017 kill (0, SIGIO);
3018
3019 /* If we have timed out (nfds == 0) or found some input (nfds > 0),
3020 we should exit. */
3021 if (nfds >= 0)
3022 break;
3023 }
3024
3025 return 0;
3026 }
3027
3028
3029 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
3030 "Return the (or, a) process associated with BUFFER.\n\
3031 This copy of Emacs has not been built to support subprocesses, so this\n\
3032 function always returns nil.")
3033 (name)
3034 register Lisp_Object name;
3035 {
3036 return Qnil;
3037 }
3038
3039 /* Kill all processes associated with `buffer'.
3040 If `buffer' is nil, kill all processes.
3041 Since we have no subprocesses, this does nothing. */
3042
3043 kill_buffer_processes (buffer)
3044 Lisp_Object buffer;
3045 {
3046 }
3047
3048 init_process ()
3049 {
3050 }
3051
3052 syms_of_process ()
3053 {
3054 defsubr (&Sget_buffer_process);
3055 }
3056
3057 \f
3058 #endif /* not subprocesses */