428
|
1 /* Asynchronous subprocess control for XEmacs.
|
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993, 1994, 1995
|
|
3 Free Software Foundation, Inc.
|
|
4 Copyright (C) 1995 Sun Microsystems, Inc.
|
784
|
5 Copyright (C) 1995, 1996, 2001, 2002 Ben Wing.
|
428
|
6
|
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
13
|
|
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
17 for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
814
|
24 /* This file has been Mule-ized. */
|
428
|
25
|
|
26 /* This file has been split into process.c and process-unix.c by
|
|
27 Kirill M. Katsnelson <kkm@kis.ru>, so please bash him and not
|
814
|
28 the original author(s).
|
|
29
|
|
30 Non-synch-subprocess stuff (mostly process environment) moved from
|
853
|
31 callproc.c, 4-3-02, Ben Wing.
|
|
32
|
|
33 callproc.c deleted entirely 5-23-02, Ben Wing. Good riddance!
|
|
34 */
|
428
|
35
|
|
36 #include <config.h>
|
|
37
|
814
|
38 #if defined (NO_SUBPROCESSES)
|
|
39 #error "We don't support this anymore."
|
|
40 #endif
|
428
|
41
|
|
42 #include "lisp.h"
|
|
43
|
|
44 #include "buffer.h"
|
|
45 #include "commands.h"
|
800
|
46 #include "device.h"
|
428
|
47 #include "events.h"
|
800
|
48 #include "file-coding.h"
|
428
|
49 #include "frame.h"
|
|
50 #include "hash.h"
|
|
51 #include "insdel.h"
|
|
52 #include "lstream.h"
|
|
53 #include "opaque.h"
|
|
54 #include "process.h"
|
|
55 #include "procimpl.h"
|
816
|
56 #include "sysdep.h"
|
428
|
57 #include "window.h"
|
|
58
|
|
59 #include "sysfile.h"
|
|
60 #include "sysproc.h"
|
859
|
61 #include "syssignal.h"
|
428
|
62 #include "systime.h"
|
|
63 #include "systty.h"
|
|
64 #include "syswait.h"
|
|
65
|
863
|
66 Lisp_Object Qprocessp, Qprocess_live_p, Qprocess_readable_p;
|
428
|
67
|
|
68 /* Process methods */
|
|
69 struct process_methods the_process_methods;
|
|
70
|
|
71 /* a process object is a network connection when its pid field a cons
|
|
72 (name of name of port we are connected to . foreign host name) */
|
|
73
|
|
74 /* Valid values of process->status_symbol */
|
|
75 Lisp_Object Qrun, Qstop;
|
|
76 /* Qrun => Qopen, Qexit => Qclosed for "network connection" processes */
|
|
77 Lisp_Object Qopen, Qclosed;
|
|
78 /* Protocol families */
|
|
79 Lisp_Object Qtcp, Qudp;
|
|
80
|
|
81 #ifdef HAVE_MULTICAST
|
|
82 Lisp_Object Qmulticast; /* Will be used for occasional warnings */
|
|
83 #endif
|
|
84
|
|
85 /* t means use pty, nil means use a pipe,
|
|
86 maybe other values to come. */
|
|
87 Lisp_Object Vprocess_connection_type;
|
|
88
|
|
89 /* Read comments to DEFVAR of this */
|
|
90 int windowed_process_io;
|
|
91
|
|
92 #ifdef PROCESS_IO_BLOCKING
|
|
93 /* List of port numbers or port names to set a blocking I/O mode.
|
|
94 Nil means set a non-blocking I/O mode [default]. */
|
|
95 Lisp_Object network_stream_blocking_port_list;
|
|
96 #endif /* PROCESS_IO_BLOCKING */
|
|
97
|
|
98 /* Number of events of change of status of a process. */
|
|
99 volatile int process_tick;
|
|
100
|
|
101 /* Number of events for which the user or sentinel has been notified. */
|
|
102 static int update_tick;
|
|
103
|
|
104 /* Nonzero means delete a process right away if it exits. */
|
|
105 int delete_exited_processes;
|
|
106
|
853
|
107 /* Hash table which maps USIDs as returned by create_io_streams_cb to
|
428
|
108 process objects. Processes are not GC-protected through this! */
|
|
109 struct hash_table *usid_to_process;
|
|
110
|
|
111 /* List of process objects. */
|
|
112 Lisp_Object Vprocess_list;
|
|
113
|
442
|
114 Lisp_Object Vnull_device;
|
428
|
115
|
771
|
116 /* Cons of coding systems used to initialize process I/O on a newly-
|
|
117 created process. */
|
|
118 Lisp_Object Vdefault_process_coding_system;
|
853
|
119 /* Same for a network connection. */
|
|
120 Lisp_Object Vdefault_network_coding_system;
|
771
|
121
|
563
|
122 Lisp_Object Qprocess_error;
|
|
123 Lisp_Object Qnetwork_error;
|
|
124
|
771
|
125 Fixnum debug_process_io;
|
|
126
|
814
|
127 Lisp_Object Vshell_file_name;
|
|
128
|
|
129 /* The environment to pass to all subprocesses when they are started.
|
|
130 This is in the semi-bogus format of ("VAR=VAL" "VAR2=VAL2" ... )
|
|
131 */
|
|
132 Lisp_Object Vprocess_environment;
|
|
133
|
|
134 /* Make sure egetenv() not called too soon */
|
|
135 int env_initted;
|
|
136
|
|
137 Lisp_Object Vlisp_EXEC_SUFFIXES;
|
|
138
|
428
|
139
|
|
140
|
1204
|
141 static const struct memory_description process_description [] = {
|
|
142 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (Lisp_Process, x) },
|
|
143 #include "process-slots.h"
|
934
|
144 { XD_END }
|
|
145 };
|
|
146
|
428
|
147 static Lisp_Object
|
444
|
148 mark_process (Lisp_Object object)
|
428
|
149 {
|
444
|
150 Lisp_Process *process = XPROCESS (object);
|
1204
|
151 #define MARKED_SLOT(x) mark_object (process->x);
|
|
152 #include "process-slots.h"
|
|
153 return Qnil;
|
428
|
154 }
|
|
155
|
|
156 static void
|
444
|
157 print_process (Lisp_Object object, Lisp_Object printcharfun, int escapeflag)
|
428
|
158 {
|
444
|
159 Lisp_Process *process = XPROCESS (object);
|
428
|
160
|
|
161 if (print_readably)
|
563
|
162 printing_unreadable_object ("#<process %s>", XSTRING_DATA (process->name));
|
428
|
163
|
|
164 if (!escapeflag)
|
|
165 {
|
444
|
166 print_internal (process->name, printcharfun, 0);
|
428
|
167 }
|
|
168 else
|
|
169 {
|
444
|
170 int netp = network_connection_p (object);
|
826
|
171 write_c_string (printcharfun,
|
|
172 netp ? GETTEXT ("#<network connection ") :
|
|
173 GETTEXT ("#<process "));
|
444
|
174 print_internal (process->name, printcharfun, 1);
|
826
|
175 write_c_string (printcharfun, (netp ? " " : " pid "));
|
444
|
176 print_internal (process->pid, printcharfun, 1);
|
800
|
177 write_fmt_string_lisp (printcharfun, " state:%S", 1, process->status_symbol);
|
444
|
178 MAYBE_PROCMETH (print_process_data, (process, printcharfun));
|
826
|
179 write_c_string (printcharfun, ">");
|
428
|
180 }
|
|
181 }
|
|
182
|
|
183 #ifdef HAVE_WINDOW_SYSTEM
|
440
|
184 extern void debug_process_finalization (Lisp_Process *p);
|
428
|
185 #endif /* HAVE_WINDOW_SYSTEM */
|
|
186
|
|
187 static void
|
|
188 finalize_process (void *header, int for_disksave)
|
|
189 {
|
|
190 /* #### this probably needs to be tied into the tty event loop */
|
|
191 /* #### when there is one */
|
440
|
192 Lisp_Process *p = (Lisp_Process *) header;
|
428
|
193 #ifdef HAVE_WINDOW_SYSTEM
|
|
194 if (!for_disksave)
|
|
195 {
|
|
196 debug_process_finalization (p);
|
|
197 }
|
|
198 #endif /* HAVE_WINDOW_SYSTEM */
|
|
199
|
|
200 if (p->process_data)
|
|
201 {
|
|
202 MAYBE_PROCMETH (finalize_process_data, (p, for_disksave));
|
|
203 if (!for_disksave)
|
|
204 xfree (p->process_data);
|
|
205 }
|
|
206 }
|
|
207
|
934
|
208 DEFINE_LRECORD_IMPLEMENTATION ("process", process,
|
|
209 0, /*dumpable-flag*/
|
|
210 mark_process, print_process, finalize_process,
|
|
211 0, 0, process_description, Lisp_Process);
|
428
|
212
|
|
213 /************************************************************************/
|
|
214 /* basic process accessors */
|
|
215 /************************************************************************/
|
|
216
|
771
|
217 /* This function returns low-level streams, connected directly to the child
|
|
218 process, rather than en/decoding streams */
|
428
|
219 void
|
853
|
220 get_process_streams (Lisp_Process *p, Lisp_Object *instr, Lisp_Object *outstr,
|
|
221 Lisp_Object *errstr)
|
428
|
222 {
|
|
223 assert (p);
|
853
|
224 assert (NILP (p->pipe_instream) || LSTREAMP (p->pipe_instream));
|
|
225 assert (NILP (p->pipe_outstream) || LSTREAMP (p->pipe_outstream));
|
|
226 assert (NILP (p->pipe_errstream) || LSTREAMP (p->pipe_errstream));
|
428
|
227 *instr = p->pipe_instream;
|
|
228 *outstr = p->pipe_outstream;
|
853
|
229 *errstr = p->pipe_errstream;
|
428
|
230 }
|
|
231
|
853
|
232 /* Given a USID referring to either a process's instream or errstream,
|
|
233 return the associated process. */
|
440
|
234 Lisp_Process *
|
428
|
235 get_process_from_usid (USID usid)
|
|
236 {
|
442
|
237 const void *vval;
|
428
|
238
|
|
239 assert (usid != USID_ERROR && usid != USID_DONTHASH);
|
|
240
|
442
|
241 if (gethash ((const void*)usid, usid_to_process, &vval))
|
428
|
242 {
|
444
|
243 Lisp_Object process;
|
826
|
244 process = VOID_TO_LISP (vval);
|
444
|
245 return XPROCESS (process);
|
428
|
246 }
|
|
247 else
|
|
248 return 0;
|
|
249 }
|
|
250
|
|
251 int
|
853
|
252 get_process_selected_p (Lisp_Process *p, int do_err)
|
428
|
253 {
|
853
|
254 return do_err ? p->err_selected : p->in_selected;
|
428
|
255 }
|
|
256
|
|
257 void
|
853
|
258 set_process_selected_p (Lisp_Process *p, int in_selected, int err_selected)
|
428
|
259 {
|
853
|
260 p->in_selected = !!in_selected;
|
|
261 p->err_selected = !!err_selected;
|
428
|
262 }
|
|
263
|
|
264 int
|
440
|
265 connected_via_filedesc_p (Lisp_Process *p)
|
428
|
266 {
|
|
267 return MAYBE_INT_PROCMETH (tooltalk_connection_p, (p));
|
|
268 }
|
|
269
|
|
270 #ifdef HAVE_SOCKETS
|
|
271 int
|
|
272 network_connection_p (Lisp_Object process)
|
|
273 {
|
|
274 return CONSP (XPROCESS (process)->pid);
|
|
275 }
|
|
276 #endif
|
|
277
|
|
278 DEFUN ("processp", Fprocessp, 1, 1, 0, /*
|
|
279 Return t if OBJECT is a process.
|
|
280 */
|
444
|
281 (object))
|
428
|
282 {
|
444
|
283 return PROCESSP (object) ? Qt : Qnil;
|
428
|
284 }
|
|
285
|
440
|
286 DEFUN ("process-live-p", Fprocess_live_p, 1, 1, 0, /*
|
|
287 Return t if OBJECT is a process that is alive.
|
|
288 */
|
444
|
289 (object))
|
440
|
290 {
|
444
|
291 return PROCESSP (object) && PROCESS_LIVE_P (XPROCESS (object))
|
|
292 ? Qt : Qnil;
|
440
|
293 }
|
|
294
|
863
|
295 #if 0
|
|
296 /* This is a reasonable definition for this new primitive. Kyle sez:
|
|
297
|
|
298 "The patch looks OK to me except for the creation and exporting of the
|
|
299 Fprocess_readable_p function. I don't think a new Lisp function
|
|
300 should be created until we know something actually needs it. If
|
|
301 we later want to give process-readable-p different semantics it
|
|
302 may be hard to do it and stay compatible with what we hastily
|
|
303 create today."
|
|
304
|
|
305 He's right, not yet. Let's discuss the semantics on XEmacs Design
|
|
306 before enabling this.
|
|
307 */
|
|
308 DEFUN ("process-readable-p", Fprocess_readable_p, 1, 1, 0, /*
|
|
309 Return t if OBJECT is a process from which input may be available.
|
|
310 */
|
|
311 (object))
|
|
312 {
|
|
313 return PROCESSP (object) && PROCESS_READABLE_P (XPROCESS (object))
|
|
314 ? Qt : Qnil;
|
|
315 }
|
|
316 #endif
|
|
317
|
428
|
318 DEFUN ("process-list", Fprocess_list, 0, 0, 0, /*
|
|
319 Return a list of all processes.
|
|
320 */
|
|
321 ())
|
|
322 {
|
|
323 return Fcopy_sequence (Vprocess_list);
|
|
324 }
|
|
325
|
|
326 DEFUN ("get-process", Fget_process, 1, 1, 0, /*
|
444
|
327 Return the process named PROCESS-NAME (a string), or nil if there is none.
|
|
328 PROCESS-NAME may also be a process; if so, the value is that process.
|
428
|
329 */
|
444
|
330 (process_name))
|
428
|
331 {
|
444
|
332 if (PROCESSP (process_name))
|
|
333 return process_name;
|
428
|
334
|
|
335 if (!gc_in_progress)
|
|
336 /* this only gets called during GC when emacs is going away as a result
|
|
337 of a signal or crash. */
|
444
|
338 CHECK_STRING (process_name);
|
428
|
339
|
444
|
340 {
|
|
341 LIST_LOOP_2 (process, Vprocess_list)
|
|
342 if (internal_equal (process_name, XPROCESS (process)->name, 0))
|
|
343 return process;
|
|
344 }
|
428
|
345 return Qnil;
|
|
346 }
|
|
347
|
|
348 DEFUN ("get-buffer-process", Fget_buffer_process, 1, 1, 0, /*
|
|
349 Return the (or, a) process associated with BUFFER.
|
|
350 BUFFER may be a buffer or the name of one.
|
|
351 */
|
444
|
352 (buffer))
|
428
|
353 {
|
444
|
354 if (NILP (buffer)) return Qnil;
|
|
355 buffer = Fget_buffer (buffer);
|
|
356 if (NILP (buffer)) return Qnil;
|
428
|
357
|
444
|
358 {
|
|
359 LIST_LOOP_2 (process, Vprocess_list)
|
|
360 if (EQ (XPROCESS (process)->buffer, buffer))
|
|
361 return process;
|
|
362 }
|
428
|
363 return Qnil;
|
|
364 }
|
|
365
|
|
366 /* This is how commands for the user decode process arguments. It
|
|
367 accepts a process, a process name, a buffer, a buffer name, or nil.
|
|
368 Buffers denote the first process in the buffer, and nil denotes the
|
|
369 current buffer. */
|
|
370
|
|
371 static Lisp_Object
|
|
372 get_process (Lisp_Object name)
|
|
373 {
|
444
|
374 Lisp_Object buffer;
|
428
|
375
|
|
376 #ifdef I18N3
|
|
377 /* #### Look more closely into translating process names. */
|
|
378 #endif
|
|
379
|
|
380 /* This may be called during a GC from process_send_signal() from
|
|
381 kill_buffer_processes() if emacs decides to abort(). */
|
|
382 if (PROCESSP (name))
|
|
383 return name;
|
444
|
384 else if (STRINGP (name))
|
428
|
385 {
|
444
|
386 Lisp_Object object = Fget_process (name);
|
|
387 if (PROCESSP (object))
|
|
388 return object;
|
|
389
|
|
390 buffer = Fget_buffer (name);
|
|
391 if (BUFFERP (buffer))
|
|
392 goto have_buffer_object;
|
|
393
|
563
|
394 invalid_argument ("Process does not exist", name);
|
428
|
395 }
|
|
396 else if (NILP (name))
|
444
|
397 {
|
|
398 buffer = Fcurrent_buffer ();
|
|
399 goto have_buffer_object;
|
|
400 }
|
|
401 else if (BUFFERP (name))
|
|
402 {
|
|
403 Lisp_Object process;
|
|
404 buffer = name;
|
428
|
405
|
444
|
406 have_buffer_object:
|
|
407 process = Fget_buffer_process (buffer);
|
|
408 if (PROCESSP (process))
|
|
409 return process;
|
|
410
|
563
|
411 invalid_argument ("Buffer has no process", buffer);
|
428
|
412 }
|
|
413 else
|
444
|
414 return get_process (Fsignal (Qwrong_type_argument,
|
771
|
415 (list2 (build_msg_string ("process or buffer or nil"),
|
444
|
416 name))));
|
428
|
417 }
|
|
418
|
|
419 DEFUN ("process-id", Fprocess_id, 1, 1, 0, /*
|
|
420 Return the process id of PROCESS.
|
|
421 This is the pid of the Unix process which PROCESS uses or talks to.
|
|
422 For a network connection, this value is a cons of
|
|
423 (foreign-network-port . foreign-host-name).
|
|
424 */
|
444
|
425 (process))
|
428
|
426 {
|
|
427 Lisp_Object pid;
|
444
|
428 CHECK_PROCESS (process);
|
428
|
429
|
444
|
430 pid = XPROCESS (process)->pid;
|
|
431 if (network_connection_p (process))
|
428
|
432 /* return Qnil; */
|
|
433 return Fcons (Fcar (pid), Fcdr (pid));
|
|
434 else
|
|
435 return pid;
|
|
436 }
|
|
437
|
|
438 DEFUN ("process-name", Fprocess_name, 1, 1, 0, /*
|
|
439 Return the name of PROCESS, as a string.
|
|
440 This is the name of the program invoked in PROCESS,
|
|
441 possibly modified to make it unique among process names.
|
|
442 */
|
444
|
443 (process))
|
428
|
444 {
|
444
|
445 CHECK_PROCESS (process);
|
|
446 return XPROCESS (process)->name;
|
428
|
447 }
|
|
448
|
|
449 DEFUN ("process-command", Fprocess_command, 1, 1, 0, /*
|
|
450 Return the command that was executed to start PROCESS.
|
|
451 This is a list of strings, the first string being the program executed
|
|
452 and the rest of the strings being the arguments given to it.
|
|
453 */
|
444
|
454 (process))
|
428
|
455 {
|
444
|
456 CHECK_PROCESS (process);
|
|
457 return XPROCESS (process)->command;
|
428
|
458 }
|
|
459
|
|
460
|
|
461 /************************************************************************/
|
|
462 /* creating a process */
|
|
463 /************************************************************************/
|
|
464
|
563
|
465 DOESNT_RETURN
|
|
466 report_process_error (const char *string, Lisp_Object data)
|
|
467 {
|
|
468 report_error_with_errno (Qprocess_error, string, data);
|
|
469 }
|
|
470
|
|
471 DOESNT_RETURN
|
|
472 report_network_error (const char *string, Lisp_Object data)
|
|
473 {
|
|
474 report_error_with_errno (Qnetwork_error, string, data);
|
|
475 }
|
|
476
|
428
|
477 Lisp_Object
|
|
478 make_process_internal (Lisp_Object name)
|
|
479 {
|
|
480 Lisp_Object val, name1;
|
|
481 int i;
|
440
|
482 Lisp_Process *p = alloc_lcrecord_type (Lisp_Process, &lrecord_process);
|
428
|
483
|
1204
|
484 #define MARKED_SLOT(x) p->x = Qnil;
|
|
485 #include "process-slots.h"
|
|
486
|
428
|
487 /* If name is already in use, modify it until it is unused. */
|
|
488 name1 = name;
|
|
489 for (i = 1; ; i++)
|
|
490 {
|
|
491 char suffix[10];
|
|
492 Lisp_Object tem = Fget_process (name1);
|
|
493 if (NILP (tem))
|
|
494 break;
|
|
495 sprintf (suffix, "<%d>", i);
|
|
496 name1 = concat2 (name, build_string (suffix));
|
|
497 }
|
|
498 name = name1;
|
|
499 p->name = name;
|
|
500
|
|
501 p->mark = Fmake_marker ();
|
853
|
502 p->stderr_mark = Fmake_marker ();
|
428
|
503 p->status_symbol = Qrun;
|
|
504
|
|
505 MAYBE_PROCMETH (alloc_process_data, (p));
|
|
506
|
793
|
507 val = wrap_process (p);
|
428
|
508
|
|
509 Vprocess_list = Fcons (val, Vprocess_list);
|
|
510 return val;
|
|
511 }
|
|
512
|
|
513 void
|
853
|
514 init_process_io_handles (Lisp_Process *p, void* in, void* out, void* err,
|
|
515 int flags)
|
428
|
516 {
|
853
|
517 USID in_usid, err_usid;
|
771
|
518 Lisp_Object incode, outcode;
|
|
519
|
853
|
520 if (flags & STREAM_NETWORK_CONNECTION)
|
|
521 {
|
|
522 if (!CONSP (Vdefault_network_coding_system) ||
|
|
523 NILP (incode = (find_coding_system_for_text_file
|
|
524 (Fcar (Vdefault_network_coding_system), 1))) ||
|
|
525 NILP (outcode = (find_coding_system_for_text_file
|
|
526 (Fcdr (Vdefault_network_coding_system), 0))))
|
|
527 signal_error (Qinvalid_state,
|
|
528 "Bogus value for `default-network-coding-system'",
|
|
529 Vdefault_network_coding_system);
|
|
530 }
|
|
531 else
|
|
532 {
|
|
533 if (!CONSP (Vdefault_process_coding_system) ||
|
|
534 NILP (incode = (find_coding_system_for_text_file
|
|
535 (Fcar (Vdefault_process_coding_system), 1))) ||
|
|
536 NILP (outcode = (find_coding_system_for_text_file
|
|
537 (Fcdr (Vdefault_process_coding_system), 0))))
|
|
538 signal_error (Qinvalid_state,
|
|
539 "Bogus value for `default-process-coding-system'",
|
|
540 Vdefault_process_coding_system);
|
|
541 }
|
771
|
542
|
784
|
543 if (!NILP (Vcoding_system_for_read) &&
|
|
544 NILP (incode = (find_coding_system_for_text_file
|
|
545 (Vcoding_system_for_read, 1))))
|
|
546 signal_error (Qinvalid_state,
|
|
547 "Bogus value for `coding-system-for-read'",
|
|
548 Vcoding_system_for_read);
|
|
549
|
|
550 if (!NILP (Vcoding_system_for_write) &&
|
|
551 NILP (outcode = (find_coding_system_for_text_file
|
|
552 (Vcoding_system_for_write, 0))))
|
|
553 signal_error (Qinvalid_state,
|
|
554 "Bogus value for `coding-system-for-write'",
|
|
555 Vcoding_system_for_write);
|
|
556
|
853
|
557 event_stream_create_io_streams (in, out, err,
|
|
558 &p->pipe_instream,
|
|
559 &p->pipe_outstream,
|
|
560 &p->pipe_errstream,
|
|
561 &in_usid, &err_usid,
|
|
562 flags);
|
428
|
563
|
853
|
564 if (in_usid == USID_ERROR || err_usid == USID_ERROR)
|
563
|
565 signal_error (Qprocess_error, "Setting up communication with subprocess",
|
853
|
566 wrap_process (p));
|
428
|
567
|
853
|
568 if (in_usid != USID_DONTHASH)
|
428
|
569 {
|
444
|
570 Lisp_Object process = Qnil;
|
793
|
571 process = wrap_process (p);
|
853
|
572 puthash ((const void*) in_usid, LISP_TO_VOID (process), usid_to_process);
|
428
|
573 }
|
|
574
|
853
|
575 if (err_usid != USID_DONTHASH)
|
|
576 {
|
|
577 Lisp_Object process = Qnil;
|
|
578 process = wrap_process (p);
|
|
579 puthash ((const void*) err_usid, LISP_TO_VOID (process),
|
|
580 usid_to_process);
|
|
581 }
|
|
582
|
|
583 MAYBE_PROCMETH (init_process_io_handles, (p, in, out, err, flags));
|
428
|
584
|
771
|
585 p->coding_instream =
|
800
|
586 make_coding_input_stream (XLSTREAM (p->pipe_instream), incode,
|
|
587 CODING_DECODE, 0);
|
853
|
588 if (!NILP (p->pipe_errstream))
|
|
589 p->coding_errstream =
|
|
590 make_coding_input_stream
|
|
591 (XLSTREAM (p->pipe_errstream), incode, CODING_DECODE, 0);
|
771
|
592 p->coding_outstream =
|
800
|
593 make_coding_output_stream (XLSTREAM (p->pipe_outstream), outcode,
|
|
594 CODING_ENCODE, 0);
|
428
|
595 }
|
|
596
|
|
597 static void
|
|
598 create_process (Lisp_Object process, Lisp_Object *argv, int nargv,
|
853
|
599 Lisp_Object program, Lisp_Object cur_dir,
|
|
600 int separate_err)
|
428
|
601 {
|
440
|
602 Lisp_Process *p = XPROCESS (process);
|
428
|
603 int pid;
|
|
604
|
|
605 /* *_create_process may change status_symbol, if the process
|
|
606 is a kind of "fire-and-forget" (no I/O, unwaitable) */
|
|
607 p->status_symbol = Qrun;
|
|
608 p->exit_code = 0;
|
|
609
|
853
|
610 pid = PROCMETH (create_process, (p, argv, nargv, program, cur_dir,
|
|
611 separate_err));
|
428
|
612
|
|
613 p->pid = make_int (pid);
|
863
|
614 if (PROCESS_READABLE_P (p))
|
853
|
615 event_stream_select_process (p, 1, 1);
|
428
|
616 }
|
|
617
|
|
618 /* This function is the unwind_protect form for Fstart_process_internal. If
|
444
|
619 PROCESS doesn't have its pid set, then we know someone has signalled
|
428
|
620 an error and the process wasn't started successfully, so we should
|
|
621 remove it from the process list. */
|
444
|
622 static void remove_process (Lisp_Object process);
|
428
|
623 static Lisp_Object
|
444
|
624 start_process_unwind (Lisp_Object process)
|
428
|
625 {
|
444
|
626 /* Was PROCESS started successfully? */
|
|
627 if (EQ (XPROCESS (process)->pid, Qnil))
|
|
628 remove_process (process);
|
428
|
629 return Qnil;
|
|
630 }
|
|
631
|
|
632 DEFUN ("start-process-internal", Fstart_process_internal, 3, MANY, 0, /*
|
853
|
633 Internal function to start a program in a subprocess.
|
|
634 Lisp callers should use `start-process' instead.
|
|
635
|
|
636 Returns the process object for it.
|
428
|
637 Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS
|
|
638 NAME is name for process. It is modified if necessary to make it unique.
|
|
639 BUFFER is the buffer or (buffer-name) to associate with the process.
|
|
640 Process output goes at end of that buffer, unless you specify
|
|
641 an output stream or filter function to handle the output.
|
|
642 BUFFER may be also nil, meaning that this process is not associated
|
853
|
643 with any buffer.
|
|
644 BUFFER can also have the form (REAL-BUFFER STDERR-BUFFER); in that case,
|
|
645 REAL-BUFFER says what to do with standard output, as above,
|
|
646 while STDERR-BUFFER says what to do with standard error in the child.
|
|
647 STDERR-BUFFER may be nil (discard standard error output, unless a stderr
|
|
648 filter is set). Note that if you do not use this form at process creation,
|
|
649 stdout and stderr will be mixed in the output buffer, and this cannot be
|
|
650 changed, even by setting a stderr filter.
|
428
|
651 Third arg is program file name. It is searched for as in the shell.
|
|
652 Remaining arguments are strings to give program as arguments.
|
853
|
653
|
|
654 Read and write coding systems for the process are determined from
|
|
655 `coding-system-for-read' and `coding-system-for-write' (intended as
|
|
656 overriding coding systems to be *bound* by Lisp code, not set), or
|
|
657 from `default-process-coding-system' if either or both are nil. You can
|
|
658 change the coding systems later on using `set-process-coding-system',
|
|
659 `set-process-input-coding-system', or `set-process-output-coding-system'.
|
|
660
|
|
661 See also `set-process-filter' and `set-process-stderr-filter'.
|
428
|
662 */
|
|
663 (int nargs, Lisp_Object *args))
|
|
664 {
|
|
665 /* This function can call lisp */
|
853
|
666 Lisp_Object buffer, stderr_buffer, name, program, process, current_dir;
|
|
667 int separate_stderr;
|
428
|
668 Lisp_Object tem;
|
910
|
669 int i;
|
428
|
670 int speccount = specpdl_depth ();
|
|
671 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
672
|
|
673 name = args[0];
|
|
674 buffer = args[1];
|
|
675 program = args[2];
|
|
676 current_dir = Qnil;
|
|
677
|
|
678 /* Protect against various file handlers doing GCs below. */
|
|
679 GCPRO3 (buffer, program, current_dir);
|
|
680
|
853
|
681 if (CONSP (buffer))
|
|
682 {
|
|
683 if (!CONSP (XCDR (buffer)))
|
|
684 invalid_argument ("Invalid BUFFER argument to `start-process'",
|
|
685 buffer);
|
|
686 if (!NILP (XCDR (XCDR (buffer))))
|
|
687 invalid_argument ("Invalid BUFFER argument to `start-process'",
|
|
688 buffer);
|
|
689 stderr_buffer = XCAR (XCDR (buffer));
|
|
690 buffer = XCAR (buffer);
|
|
691 separate_stderr = 1;
|
|
692 }
|
|
693 else
|
|
694 {
|
|
695 stderr_buffer = Qnil;
|
|
696 separate_stderr = 0;
|
|
697 }
|
|
698
|
428
|
699 if (!NILP (buffer))
|
|
700 buffer = Fget_buffer_create (buffer);
|
853
|
701 if (!NILP (stderr_buffer))
|
|
702 stderr_buffer = Fget_buffer_create (stderr_buffer);
|
428
|
703
|
|
704 CHECK_STRING (name);
|
|
705 CHECK_STRING (program);
|
910
|
706 for (i = 3; i < nargs; ++i)
|
|
707 CHECK_STRING (args[i]);
|
428
|
708
|
|
709 /* Make sure that the child will be able to chdir to the current
|
502
|
710 buffer's current directory, or its unhandled equivalent. [[ We
|
428
|
711 can't just have the child check for an error when it does the
|
502
|
712 chdir, since it's in a vfork. ]] -- not any more, we don't use
|
|
713 vfork. -ben
|
428
|
714
|
502
|
715 Note: These calls are spread out to insure that the return values
|
|
716 of the calls (which may be newly-created strings) are properly
|
|
717 GC-protected. */
|
428
|
718 current_dir = current_buffer->directory;
|
502
|
719 /* If the current dir has no terminating slash, we'll get undesirable
|
|
720 results, so put the slash back. */
|
|
721 current_dir = Ffile_name_as_directory (current_dir);
|
428
|
722 current_dir = Funhandled_file_name_directory (current_dir);
|
|
723 current_dir = expand_and_dir_to_file (current_dir, Qnil);
|
|
724
|
|
725 #if 0 /* This loser breaks ange-ftp */
|
|
726 /* dmoore - if you re-enable this code, you have to gcprotect
|
|
727 current_buffer through the above calls. */
|
|
728 if (NILP (Ffile_accessible_directory_p (current_dir)))
|
563
|
729 signal_error (Qprocess_error, "Setting current directory",
|
|
730 current_buffer->directory);
|
428
|
731 #endif /* 0 */
|
|
732
|
|
733 /* If program file name is not absolute, search our path for it */
|
826
|
734 if (!IS_DIRECTORY_SEP (string_byte (program, 0))
|
428
|
735 && !(XSTRING_LENGTH (program) > 1
|
826
|
736 && IS_DEVICE_SEP (string_byte (program, 1))))
|
428
|
737 {
|
|
738 struct gcpro ngcpro1;
|
|
739
|
|
740 tem = Qnil;
|
|
741 NGCPRO1 (tem);
|
|
742 locate_file (Vexec_path, program, Vlisp_EXEC_SUFFIXES, &tem, X_OK);
|
|
743 if (NILP (tem))
|
563
|
744 signal_error (Qprocess_error, "Searching for program", program);
|
428
|
745 program = Fexpand_file_name (tem, Qnil);
|
|
746 NUNGCPRO;
|
|
747 }
|
|
748 else
|
|
749 {
|
442
|
750 /* we still need to canonicalize it and ensure it has the proper
|
|
751 ending, e.g. .exe */
|
|
752 struct gcpro ngcpro1;
|
|
753
|
|
754 tem = Qnil;
|
|
755 NGCPRO1 (tem);
|
|
756 locate_file (list1 (build_string ("")), program, Vlisp_EXEC_SUFFIXES,
|
|
757 &tem, X_OK);
|
|
758 if (NILP (tem))
|
563
|
759 signal_error (Qprocess_error, "Searching for program", program);
|
442
|
760 program = tem;
|
|
761 NUNGCPRO;
|
428
|
762 }
|
|
763
|
442
|
764 if (!NILP (Ffile_directory_p (program)))
|
|
765 invalid_operation ("Specified program for new process is a directory",
|
|
766 program);
|
|
767
|
444
|
768 process = make_process_internal (name);
|
428
|
769
|
444
|
770 XPROCESS (process)->buffer = buffer;
|
853
|
771 XPROCESS (process)->stderr_buffer = stderr_buffer;
|
|
772 XPROCESS (process)->separate_stderr = separate_stderr;
|
814
|
773 XPROCESS (process)->command = Flist (nargs - 2, args + 2);
|
428
|
774
|
|
775 /* Make the process marker point into the process buffer (if any). */
|
|
776 if (!NILP (buffer))
|
444
|
777 Fset_marker (XPROCESS (process)->mark,
|
428
|
778 make_int (BUF_ZV (XBUFFER (buffer))), buffer);
|
853
|
779 if (!NILP (stderr_buffer))
|
|
780 Fset_marker (XPROCESS (process)->stderr_mark,
|
|
781 make_int (BUF_ZV (XBUFFER (stderr_buffer))), stderr_buffer);
|
428
|
782
|
|
783 /* If an error occurs and we can't start the process, we want to
|
|
784 remove it from the process list. This means that each error
|
|
785 check in create_process doesn't need to call remove_process
|
|
786 itself; it's all taken care of here. */
|
444
|
787 record_unwind_protect (start_process_unwind, process);
|
428
|
788
|
853
|
789 create_process (process, args + 3, nargs - 3, program, current_dir,
|
|
790 separate_stderr);
|
428
|
791
|
|
792 UNGCPRO;
|
771
|
793 return unbind_to_1 (speccount, process);
|
428
|
794 }
|
|
795
|
|
796
|
|
797 #ifdef HAVE_SOCKETS
|
|
798
|
|
799
|
|
800 /* #### The network support is fairly synthetical. What we actually
|
|
801 need is a single function, which supports all datagram, stream and
|
|
802 packet stream connections, arbitrary protocol families should they
|
|
803 be supported by the target system, multicast groups, in both data
|
|
804 and control rooted/nonrooted flavors, service quality etc whatever
|
|
805 is supported by the underlying network.
|
|
806
|
|
807 It must accept a property list describing the connection. The current
|
|
808 functions must then go to lisp and provide a suitable list for the
|
|
809 generalized connection function.
|
|
810
|
|
811 Both UNIX and Win32 support BSD sockets, and there are many extensions
|
|
812 available (Sockets 2 spec).
|
|
813
|
|
814 A todo is define a consistent set of properties abstracting a
|
|
815 network connection. -kkm
|
|
816 */
|
|
817
|
|
818
|
|
819 /* open a TCP network connection to a given HOST/SERVICE. Treated
|
|
820 exactly like a normal process when reading and writing. Only
|
|
821 differences are in status display and process deletion. A network
|
|
822 connection has no PID; you cannot signal it. All you can do is
|
|
823 deactivate and close it via delete-process */
|
|
824
|
442
|
825 DEFUN ("open-network-stream-internal", Fopen_network_stream_internal, 4, 5,
|
|
826 0, /*
|
428
|
827 Open a TCP connection for a service to a host.
|
444
|
828 Return a process object to represent the connection.
|
428
|
829 Input and output work as for subprocesses; `delete-process' closes it.
|
|
830
|
|
831 NAME is name for process. It is modified if necessary to make it unique.
|
|
832 BUFFER is the buffer (or buffer-name) to associate with the process.
|
|
833 Process output goes at end of that buffer, unless you specify
|
|
834 an output stream or filter function to handle the output.
|
|
835 BUFFER may also be nil, meaning that this process is not associated
|
|
836 with any buffer.
|
444
|
837 Third arg HOST (a string) is the name of the host to connect to,
|
|
838 or its IP address.
|
|
839 Fourth arg SERVICE is the name of the service desired (a string),
|
|
840 or an integer specifying a port number to connect to.
|
|
841 Optional fifth arg PROTOCOL is a network protocol. Currently only 'tcp
|
428
|
842 (Transmission Control Protocol) and 'udp (User Datagram Protocol) are
|
|
843 supported. When omitted, 'tcp is assumed.
|
|
844
|
442
|
845 Output via `process-send-string' and input via buffer or filter (see
|
428
|
846 `set-process-filter') are stream-oriented. That means UDP datagrams are
|
|
847 not guaranteed to be sent and received in discrete packets. (But small
|
|
848 datagrams around 500 bytes that are not truncated by `process-send-string'
|
444
|
849 are usually fine.) Note further that the UDP protocol does not guard
|
|
850 against lost packets.
|
428
|
851 */
|
|
852 (name, buffer, host, service, protocol))
|
|
853 {
|
|
854 /* This function can GC */
|
444
|
855 Lisp_Object process = Qnil;
|
428
|
856 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, ngcpro1;
|
|
857 void *inch, *outch;
|
|
858
|
|
859 GCPRO5 (name, buffer, host, service, protocol);
|
|
860 CHECK_STRING (name);
|
|
861
|
771
|
862 if (NILP (protocol))
|
428
|
863 protocol = Qtcp;
|
|
864 else
|
|
865 CHECK_SYMBOL (protocol);
|
|
866
|
|
867 /* Since this code is inside HAVE_SOCKETS, existence of
|
|
868 open_network_stream is mandatory */
|
|
869 PROCMETH (open_network_stream, (name, host, service, protocol,
|
|
870 &inch, &outch));
|
|
871
|
|
872 if (!NILP (buffer))
|
|
873 buffer = Fget_buffer_create (buffer);
|
444
|
874 process = make_process_internal (name);
|
|
875 NGCPRO1 (process);
|
428
|
876
|
444
|
877 XPROCESS (process)->pid = Fcons (service, host);
|
|
878 XPROCESS (process)->buffer = buffer;
|
771
|
879 init_process_io_handles (XPROCESS (process), (void *) inch, (void *) outch,
|
853
|
880 (void *) -1,
|
428
|
881 STREAM_NETWORK_CONNECTION);
|
|
882
|
853
|
883 event_stream_select_process (XPROCESS (process), 1, 1);
|
428
|
884
|
1204
|
885 NUNGCPRO;
|
428
|
886 UNGCPRO;
|
444
|
887 return process;
|
428
|
888 }
|
|
889
|
|
890 #ifdef HAVE_MULTICAST
|
|
891
|
|
892 DEFUN ("open-multicast-group-internal", Fopen_multicast_group_internal, 5, 5, 0, /*
|
|
893 Open a multicast connection on the specified dest/port/ttl.
|
444
|
894 Return a process object to represent the connection.
|
428
|
895 Input and output work as for subprocesses; `delete-process' closes it.
|
|
896
|
|
897 NAME is name for process. It is modified if necessary to make it unique.
|
|
898 BUFFER is the buffer (or buffer-name) to associate with the process.
|
|
899 Process output goes at end of that buffer, unless you specify
|
|
900 an output stream or filter function to handle the output.
|
|
901 BUFFER may also be nil, meaning that this process is not associated
|
|
902 with any buffer.
|
|
903 Third, fourth and fifth args are the multicast destination group, port and ttl.
|
|
904 dest must be an internet address between 224.0.0.0 and 239.255.255.255
|
|
905 port is a communication port like in traditional unicast
|
|
906 ttl is the time-to-live (15 for site, 63 for region and 127 for world)
|
|
907 */
|
|
908 (name, buffer, dest, port, ttl))
|
|
909 {
|
|
910 /* This function can GC */
|
444
|
911 Lisp_Object process = Qnil;
|
428
|
912 struct gcpro gcpro1;
|
|
913 void *inch, *outch;
|
|
914
|
|
915 CHECK_STRING (name);
|
|
916
|
|
917 /* Since this code is inside HAVE_MULTICAST, existence of
|
771
|
918 open_multicast_group is mandatory */
|
428
|
919 PROCMETH (open_multicast_group, (name, dest, port, ttl,
|
|
920 &inch, &outch));
|
|
921
|
|
922 if (!NILP (buffer))
|
|
923 buffer = Fget_buffer_create (buffer);
|
|
924
|
444
|
925 process = make_process_internal (name);
|
|
926 GCPRO1 (process);
|
428
|
927
|
444
|
928 XPROCESS (process)->pid = Fcons (port, dest);
|
|
929 XPROCESS (process)->buffer = buffer;
|
853
|
930 init_process_io_handles (XPROCESS (process), (void *) inch, (void *) outch,
|
|
931 (void *) -1,
|
428
|
932 STREAM_NETWORK_CONNECTION);
|
|
933
|
853
|
934 event_stream_select_process (XPROCESS (process), 1, 1);
|
428
|
935
|
|
936 UNGCPRO;
|
444
|
937 return process;
|
428
|
938 }
|
|
939 #endif /* HAVE_MULTICAST */
|
|
940
|
|
941 #endif /* HAVE_SOCKETS */
|
|
942
|
|
943 Lisp_Object
|
|
944 canonicalize_host_name (Lisp_Object host)
|
|
945 {
|
|
946 return PROCMETH_OR_GIVEN (canonicalize_host_name, (host), host);
|
|
947 }
|
|
948
|
|
949
|
|
950 DEFUN ("set-process-window-size", Fset_process_window_size, 3, 3, 0, /*
|
|
951 Tell PROCESS that it has logical window size HEIGHT and WIDTH.
|
|
952 */
|
444
|
953 (process, height, width))
|
428
|
954 {
|
444
|
955 CHECK_PROCESS (process);
|
428
|
956 CHECK_NATNUM (height);
|
|
957 CHECK_NATNUM (width);
|
|
958 return
|
444
|
959 MAYBE_INT_PROCMETH (set_window_size,
|
|
960 (XPROCESS (process), XINT (height), XINT (width))) <= 0
|
428
|
961 ? Qnil : Qt;
|
|
962 }
|
|
963
|
|
964
|
|
965 /************************************************************************/
|
|
966 /* Process I/O */
|
|
967 /************************************************************************/
|
|
968
|
844
|
969 /* Set up PROCESS's buffer for insertion of process data at PROCESS's
|
|
970 mark.
|
|
971
|
|
972 Sets the current buffer to PROCESS's buffer, inhibits read only,
|
|
973 remembers current point, sets point to PROCESS'S mark, widens if
|
|
974 necessary.
|
|
975 */
|
|
976 static int
|
853
|
977 process_setup_for_insertion (Lisp_Object process, int read_stderr)
|
844
|
978 {
|
|
979 Lisp_Process *p = XPROCESS (process);
|
|
980 int spec = specpdl_depth ();
|
853
|
981 Lisp_Object buffer = read_stderr ? p->stderr_buffer : p->buffer;
|
|
982 Lisp_Object mark = read_stderr ? p->stderr_mark : p->mark;
|
|
983 struct buffer *buf = XBUFFER (buffer);
|
844
|
984 Charbpos output_pt;
|
|
985
|
|
986 if (buf != current_buffer)
|
|
987 {
|
|
988 record_unwind_protect (save_current_buffer_restore,
|
|
989 Fcurrent_buffer ());
|
|
990 set_buffer_internal (buf);
|
|
991 }
|
|
992
|
|
993 record_unwind_protect (save_excursion_restore, save_excursion_save ());
|
|
994 specbind (Qinhibit_read_only, Qt);
|
854
|
995
|
844
|
996 /* Insert new output into buffer
|
|
997 at the current end-of-output marker,
|
|
998 thus preserving logical ordering of input and output. */
|
853
|
999 if (XMARKER (mark)->buffer)
|
|
1000 output_pt = marker_position (mark);
|
844
|
1001 else
|
|
1002 output_pt = BUF_ZV (buf);
|
|
1003
|
|
1004 /* If the output marker is outside of the visible region, save
|
|
1005 the restriction and widen. */
|
|
1006 if (! (BUF_BEGV (buf) <= output_pt && output_pt <= BUF_ZV (buf)))
|
|
1007 {
|
|
1008 record_unwind_protect (save_restriction_restore,
|
|
1009 save_restriction_save (buf));
|
|
1010 Fwiden (wrap_buffer (buf));
|
|
1011 }
|
|
1012
|
|
1013 BUF_SET_PT (buf, output_pt);
|
|
1014 return spec;
|
|
1015 }
|
|
1016
|
428
|
1017 /* Read pending output from the process channel,
|
|
1018 starting with our buffered-ahead character if we have one.
|
|
1019 Yield number of characters read.
|
|
1020
|
|
1021 This function reads at most 1024 bytes.
|
|
1022 If you want to read all available subprocess output,
|
|
1023 you must call it repeatedly until it returns zero. */
|
|
1024
|
|
1025 Charcount
|
853
|
1026 read_process_output (Lisp_Object process, int read_stderr)
|
428
|
1027 {
|
|
1028 /* This function can GC */
|
|
1029 Bytecount nbytes, nchars;
|
867
|
1030 Ibyte chars[1025];
|
428
|
1031 Lisp_Object outstream;
|
444
|
1032 Lisp_Process *p = XPROCESS (process);
|
853
|
1033 Lisp_Object filter = read_stderr ? p->stderr_filter : p->filter;
|
|
1034 Lisp_Object buffer = read_stderr ? p->stderr_buffer : p->buffer;
|
|
1035 Lisp_Object mark = read_stderr ? p->stderr_mark : p->mark;
|
428
|
1036
|
|
1037 /* If there is a lot of output from the subprocess, the loop in
|
|
1038 execute_internal_event() might call read_process_output() more
|
|
1039 than once. If the filter that was executed from one of these
|
|
1040 calls set the filter to t, we have to stop now. Return -1 rather
|
|
1041 than 0 so execute_internal_event() doesn't close the process.
|
|
1042 Really, the loop in execute_internal_event() should check itself
|
|
1043 for a process-filter change, like in status_notify(); but the
|
|
1044 struct Lisp_Process is not exported outside of this file. */
|
863
|
1045 if (!PROCESS_READABLE_P (p))
|
853
|
1046 {
|
|
1047 errno = 0;
|
|
1048 return -1; /* already closed */
|
|
1049 }
|
428
|
1050
|
853
|
1051 if (!NILP (filter) && (p->filter_does_read))
|
428
|
1052 {
|
|
1053 Lisp_Object filter_result;
|
|
1054
|
|
1055 /* Some weird FSFmacs crap here with
|
853
|
1056 Vdeactivate_mark and current_buffer->keymap.
|
|
1057 Some FSF junk with running_asynch_code, to preserve the match
|
|
1058 data. Not necessary because we don't call process filters
|
|
1059 asynchronously (i.e. from within QUIT). */
|
|
1060 /* Don't catch errors here; we're not in any critical code. */
|
|
1061 filter_result = call2 (filter, process, Qnil);
|
428
|
1062 CHECK_INT (filter_result);
|
|
1063 return XINT (filter_result);
|
|
1064 }
|
|
1065
|
853
|
1066 nbytes = Lstream_read (read_stderr ? XLSTREAM (DATA_ERRSTREAM (p)) :
|
|
1067 XLSTREAM (DATA_INSTREAM (p)), chars,
|
771
|
1068 sizeof (chars) - 1);
|
428
|
1069 if (nbytes <= 0) return nbytes;
|
|
1070
|
771
|
1071 if (debug_process_io)
|
|
1072 {
|
|
1073 chars[nbytes] = '\0';
|
|
1074 stderr_out ("Read: %s\n", chars);
|
|
1075 }
|
|
1076
|
|
1077 /* !!#### if the coding system changed as a result of reading, we
|
|
1078 need to change the output coding system accordingly. */
|
428
|
1079 nchars = bytecount_to_charcount (chars, nbytes);
|
853
|
1080 outstream = filter;
|
428
|
1081 if (!NILP (outstream))
|
|
1082 {
|
853
|
1083 /* Some FSF junk with running_asynch_code, to preserve the match
|
|
1084 data. Not necessary because we don't call process filters
|
|
1085 asynchronously (i.e. from within QUIT). */
|
|
1086 /* Don't catch errors here; we're not in any critical code. */
|
|
1087 call2 (outstream, process, make_string (chars, nbytes));
|
428
|
1088 return nchars;
|
|
1089 }
|
|
1090
|
|
1091 /* If no filter, write into buffer if it isn't dead. */
|
853
|
1092 if (!NILP (buffer) && BUFFER_LIVE_P (XBUFFER (buffer)))
|
428
|
1093 {
|
844
|
1094 struct gcpro gcpro1;
|
853
|
1095 struct buffer *buf = XBUFFER (buffer);
|
|
1096 int spec = process_setup_for_insertion (process, read_stderr);
|
428
|
1097
|
844
|
1098 GCPRO1 (process);
|
428
|
1099
|
|
1100 #if 0
|
|
1101 /* This screws up initial display of the window. jla */
|
|
1102
|
|
1103 /* Insert before markers in case we are inserting where
|
|
1104 the buffer's mark is, and the user's next command is Meta-y. */
|
|
1105 buffer_insert_raw_string_1 (buf, -1, chars,
|
|
1106 nbytes, INSDEL_BEFORE_MARKERS);
|
|
1107 #else
|
|
1108 buffer_insert_raw_string (buf, chars, nbytes);
|
|
1109 #endif
|
|
1110
|
853
|
1111 Fset_marker (mark, make_int (BUF_PT (buf)), buffer);
|
|
1112
|
428
|
1113 MARK_MODELINE_CHANGED;
|
844
|
1114 unbind_to (spec);
|
428
|
1115 UNGCPRO;
|
|
1116 }
|
|
1117 return nchars;
|
|
1118 }
|
853
|
1119
|
|
1120 int
|
|
1121 process_has_separate_stderr (Lisp_Object process)
|
|
1122 {
|
|
1123 return XPROCESS (process)->separate_stderr;
|
|
1124 }
|
|
1125
|
859
|
1126 DEFUN ("process-has-separate-stderr-p", Fprocess_has_separate_stderr_p, 1, 1,
|
|
1127 0, /*
|
|
1128 Return non-nil if process has stderr separate from stdout.
|
|
1129 */
|
|
1130 (process))
|
|
1131 {
|
|
1132 CHECK_PROCESS (process);
|
|
1133 return process_has_separate_stderr (process) ? Qt : Qnil;
|
|
1134 }
|
|
1135
|
428
|
1136
|
|
1137 /* Sending data to subprocess */
|
|
1138
|
444
|
1139 /* send some data to process PROCESS. If NONRELOCATABLE is non-NULL, it
|
428
|
1140 specifies the address of the data. Otherwise, the data comes from the
|
|
1141 object RELOCATABLE (either a string or a buffer). START and LEN
|
|
1142 specify the offset and length of the data to send.
|
|
1143
|
665
|
1144 Note that START and LEN are in Charbpos's if RELOCATABLE is a buffer,
|
428
|
1145 and in Bytecounts otherwise. */
|
|
1146
|
|
1147 void
|
444
|
1148 send_process (Lisp_Object process,
|
867
|
1149 Lisp_Object relocatable, const Ibyte *nonrelocatable,
|
428
|
1150 int start, int len)
|
|
1151 {
|
|
1152 /* This function can GC */
|
|
1153 struct gcpro gcpro1, gcpro2;
|
|
1154 Lisp_Object lstream = Qnil;
|
|
1155
|
444
|
1156 GCPRO2 (process, lstream);
|
428
|
1157
|
444
|
1158 if (NILP (DATA_OUTSTREAM (XPROCESS (process))))
|
563
|
1159 invalid_operation ("Process not open for writing", process);
|
428
|
1160
|
|
1161 if (nonrelocatable)
|
|
1162 lstream =
|
|
1163 make_fixed_buffer_input_stream (nonrelocatable + start, len);
|
|
1164 else if (BUFFERP (relocatable))
|
|
1165 lstream = make_lisp_buffer_input_stream (XBUFFER (relocatable),
|
|
1166 start, start + len, 0);
|
|
1167 else
|
|
1168 lstream = make_lisp_string_input_stream (relocatable, start, len);
|
|
1169
|
771
|
1170 if (debug_process_io)
|
|
1171 {
|
|
1172 if (nonrelocatable)
|
|
1173 stderr_out ("Writing: %s\n", nonrelocatable);
|
|
1174 else
|
|
1175 {
|
|
1176 stderr_out ("Writing: ");
|
|
1177 print_internal (relocatable, Qexternal_debugging_output, 0);
|
|
1178 }
|
|
1179 }
|
|
1180
|
444
|
1181 PROCMETH (send_process, (process, XLSTREAM (lstream)));
|
428
|
1182
|
|
1183 UNGCPRO;
|
|
1184 Lstream_delete (XLSTREAM (lstream));
|
|
1185 }
|
|
1186
|
|
1187 DEFUN ("process-tty-name", Fprocess_tty_name, 1, 1, 0, /*
|
|
1188 Return the name of the terminal PROCESS uses, or nil if none.
|
|
1189 This is the terminal that the process itself reads and writes on,
|
|
1190 not the name of the pty that Emacs uses to talk with that terminal.
|
|
1191 */
|
444
|
1192 (process))
|
428
|
1193 {
|
444
|
1194 CHECK_PROCESS (process);
|
1204
|
1195 return XPROCESS (process)->tty_name;
|
428
|
1196 }
|
|
1197
|
|
1198 DEFUN ("set-process-buffer", Fset_process_buffer, 2, 2, 0, /*
|
|
1199 Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
|
|
1200 */
|
444
|
1201 (process, buffer))
|
428
|
1202 {
|
444
|
1203 CHECK_PROCESS (process);
|
428
|
1204 if (!NILP (buffer))
|
|
1205 CHECK_BUFFER (buffer);
|
444
|
1206 XPROCESS (process)->buffer = buffer;
|
428
|
1207 return buffer;
|
|
1208 }
|
|
1209
|
|
1210 DEFUN ("process-buffer", Fprocess_buffer, 1, 1, 0, /*
|
|
1211 Return the buffer PROCESS is associated with.
|
|
1212 Output from PROCESS is inserted in this buffer
|
|
1213 unless PROCESS has a filter.
|
|
1214 */
|
444
|
1215 (process))
|
428
|
1216 {
|
444
|
1217 CHECK_PROCESS (process);
|
|
1218 return XPROCESS (process)->buffer;
|
428
|
1219 }
|
|
1220
|
853
|
1221 DEFUN ("set-process-stderr-buffer", Fset_process_stderr_buffer, 2, 2, 0, /*
|
|
1222 Set stderr buffer associated with PROCESS to BUFFER (a buffer, or nil).
|
|
1223 */
|
|
1224 (process, buffer))
|
|
1225 {
|
|
1226 CHECK_PROCESS (process);
|
|
1227 if (!XPROCESS (process)->separate_stderr)
|
|
1228 invalid_change ("stdout and stderr not separate", process);
|
|
1229 if (!NILP (buffer))
|
|
1230 CHECK_BUFFER (buffer);
|
|
1231 XPROCESS (process)->stderr_buffer = buffer;
|
|
1232 return buffer;
|
|
1233 }
|
|
1234
|
|
1235 DEFUN ("process-stderr-buffer", Fprocess_stderr_buffer, 1, 1, 0, /*
|
|
1236 Return the stderr buffer PROCESS is associated with.
|
|
1237 Output from the stderr of PROCESS is inserted in this buffer
|
|
1238 unless PROCESS has a stderr filter.
|
|
1239 */
|
|
1240 (process))
|
|
1241 {
|
|
1242 CHECK_PROCESS (process);
|
|
1243 if (!XPROCESS (process)->separate_stderr)
|
|
1244 invalid_change ("stdout and stderr not separate", process);
|
|
1245 return XPROCESS (process)->stderr_buffer;
|
|
1246 }
|
|
1247
|
428
|
1248 DEFUN ("process-mark", Fprocess_mark, 1, 1, 0, /*
|
|
1249 Return the marker for the end of the last output from PROCESS.
|
|
1250 */
|
444
|
1251 (process))
|
428
|
1252 {
|
444
|
1253 CHECK_PROCESS (process);
|
|
1254 return XPROCESS (process)->mark;
|
428
|
1255 }
|
|
1256
|
853
|
1257 DEFUN ("process-stderr-mark", Fprocess_stderr_mark, 1, 1, 0, /*
|
|
1258 Return the marker for the end of the last stderr output from PROCESS.
|
|
1259 */
|
|
1260 (process))
|
|
1261 {
|
|
1262 CHECK_PROCESS (process);
|
|
1263 if (!XPROCESS (process)->separate_stderr)
|
|
1264 invalid_operation ("stdout and stderr not separate", process);
|
|
1265 return XPROCESS (process)->stderr_mark;
|
|
1266 }
|
|
1267
|
428
|
1268 void
|
853
|
1269 set_process_filter (Lisp_Object process, Lisp_Object filter,
|
|
1270 int filter_does_read, int set_stderr)
|
428
|
1271 {
|
444
|
1272 CHECK_PROCESS (process);
|
853
|
1273 if (set_stderr && !XPROCESS (process)->separate_stderr)
|
|
1274 invalid_change ("stdout and stderr not separate", process);
|
863
|
1275 if (PROCESS_READABLE_P (XPROCESS (process)))
|
853
|
1276 {
|
|
1277 if (EQ (filter, Qt))
|
|
1278 event_stream_unselect_process (XPROCESS (process), !set_stderr,
|
|
1279 set_stderr);
|
|
1280 else
|
|
1281 event_stream_select_process (XPROCESS (process), !set_stderr,
|
|
1282 set_stderr);
|
|
1283 }
|
428
|
1284
|
853
|
1285 if (set_stderr)
|
|
1286 XPROCESS (process)->stderr_filter = filter;
|
|
1287 else
|
|
1288 XPROCESS (process)->filter = filter;
|
444
|
1289 XPROCESS (process)->filter_does_read = filter_does_read;
|
428
|
1290 }
|
|
1291
|
|
1292 DEFUN ("set-process-filter", Fset_process_filter, 2, 2, 0, /*
|
|
1293 Give PROCESS the filter function FILTER; nil means no filter.
|
853
|
1294 t means stop accepting output from the process. (If process was created
|
854
|
1295 with
|
853
|
1296 When a process has a filter, each time it does output
|
|
1297 the entire string of output is passed to the filter.
|
|
1298 The filter gets two arguments: the process and the string of output.
|
|
1299 If the process has a filter, its buffer is not used for output.
|
|
1300 */
|
|
1301 (process, filter))
|
|
1302 {
|
|
1303 set_process_filter (process, filter, 0, 0);
|
|
1304 return filter;
|
|
1305 }
|
|
1306
|
|
1307 DEFUN ("set-process-stderr-filter", Fset_process_stderr_filter, 2, 2, 0, /*
|
|
1308 Give PROCESS the stderr filter function FILTER; nil means no filter.
|
428
|
1309 t means stop accepting output from the process.
|
|
1310 When a process has a filter, each time it does output
|
|
1311 the entire string of output is passed to the filter.
|
|
1312 The filter gets two arguments: the process and the string of output.
|
|
1313 If the process has a filter, its buffer is not used for output.
|
|
1314 */
|
444
|
1315 (process, filter))
|
428
|
1316 {
|
853
|
1317 set_process_filter (process, filter, 0, 1);
|
428
|
1318 return filter;
|
|
1319 }
|
|
1320
|
|
1321 DEFUN ("process-filter", Fprocess_filter, 1, 1, 0, /*
|
|
1322 Return the filter function of PROCESS; nil if none.
|
|
1323 See `set-process-filter' for more info on filter functions.
|
|
1324 */
|
444
|
1325 (process))
|
428
|
1326 {
|
444
|
1327 CHECK_PROCESS (process);
|
|
1328 return XPROCESS (process)->filter;
|
428
|
1329 }
|
|
1330
|
853
|
1331 DEFUN ("process-stderr-filter", Fprocess_stderr_filter, 1, 1, 0, /*
|
|
1332 Return the filter function of PROCESS; nil if none.
|
|
1333 See `set-process-stderr-filter' for more info on filter functions.
|
|
1334 */
|
|
1335 (process))
|
|
1336 {
|
|
1337 CHECK_PROCESS (process);
|
|
1338 if (!XPROCESS (process)->separate_stderr)
|
|
1339 invalid_operation ("stdout and stderr not separate", process);
|
|
1340 return XPROCESS (process)->stderr_filter;
|
|
1341 }
|
|
1342
|
442
|
1343 DEFUN ("process-send-region", Fprocess_send_region, 3, 4, 0, /*
|
|
1344 Send current contents of the region between START and END as input to PROCESS.
|
444
|
1345 PROCESS may be a process or the name of a process, or a buffer or the
|
|
1346 name of a buffer, in which case the buffer's process is used. If it
|
|
1347 is nil, the current buffer's process is used.
|
442
|
1348 BUFFER specifies the buffer to look in; if nil, the current buffer is used.
|
853
|
1349 If the region is more than 100 or so characters long, it may be sent in
|
|
1350 several chunks. This may happen even for shorter regions. Output
|
444
|
1351 from processes can arrive in between chunks.
|
428
|
1352 */
|
442
|
1353 (process, start, end, buffer))
|
428
|
1354 {
|
|
1355 /* This function can GC */
|
665
|
1356 Charbpos bstart, bend;
|
442
|
1357 struct buffer *buf = decode_buffer (buffer, 0);
|
428
|
1358
|
793
|
1359 buffer = wrap_buffer (buf);
|
444
|
1360 process = get_process (process);
|
|
1361 get_buffer_range_char (buf, start, end, &bstart, &bend, 0);
|
442
|
1362
|
444
|
1363 send_process (process, buffer, 0, bstart, bend - bstart);
|
428
|
1364 return Qnil;
|
|
1365 }
|
|
1366
|
|
1367 DEFUN ("process-send-string", Fprocess_send_string, 2, 4, 0, /*
|
|
1368 Send PROCESS the contents of STRING as input.
|
444
|
1369 PROCESS may be a process or the name of a process, or a buffer or the
|
|
1370 name of a buffer, in which case the buffer's process is used. If it
|
|
1371 is nil, the current buffer's process is used.
|
|
1372 Optional arguments START and END specify part of STRING; see `substring'.
|
|
1373 If STRING is more than 100 or so characters long, it may be sent in
|
|
1374 several chunks. This may happen even for shorter strings. Output
|
|
1375 from processes can arrive in between chunks.
|
428
|
1376 */
|
444
|
1377 (process, string, start, end))
|
428
|
1378 {
|
|
1379 /* This function can GC */
|
444
|
1380 Bytecount bstart, bend;
|
428
|
1381
|
444
|
1382 process = get_process (process);
|
428
|
1383 CHECK_STRING (string);
|
444
|
1384 get_string_range_byte (string, start, end, &bstart, &bend,
|
428
|
1385 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
1386
|
444
|
1387 send_process (process, string, 0, bstart, bend - bstart);
|
428
|
1388 return Qnil;
|
|
1389 }
|
|
1390
|
|
1391
|
|
1392 DEFUN ("process-input-coding-system", Fprocess_input_coding_system, 1, 1, 0, /*
|
|
1393 Return PROCESS's input coding system.
|
|
1394 */
|
|
1395 (process))
|
|
1396 {
|
|
1397 process = get_process (process);
|
863
|
1398 CHECK_READABLE_PROCESS (process);
|
771
|
1399 return (coding_stream_detected_coding_system
|
|
1400 (XLSTREAM (XPROCESS (process)->coding_instream)));
|
428
|
1401 }
|
|
1402
|
|
1403 DEFUN ("process-output-coding-system", Fprocess_output_coding_system, 1, 1, 0, /*
|
|
1404 Return PROCESS's output coding system.
|
|
1405 */
|
|
1406 (process))
|
|
1407 {
|
|
1408 process = get_process (process);
|
440
|
1409 CHECK_LIVE_PROCESS (process);
|
771
|
1410 return (coding_stream_coding_system
|
|
1411 (XLSTREAM (XPROCESS (process)->coding_outstream)));
|
428
|
1412 }
|
|
1413
|
|
1414 DEFUN ("process-coding-system", Fprocess_coding_system, 1, 1, 0, /*
|
|
1415 Return a pair of coding-system for decoding and encoding of PROCESS.
|
|
1416 */
|
|
1417 (process))
|
|
1418 {
|
|
1419 process = get_process (process);
|
863
|
1420 CHECK_READABLE_PROCESS (process);
|
771
|
1421 return Fcons (coding_stream_detected_coding_system
|
428
|
1422 (XLSTREAM (XPROCESS (process)->coding_instream)),
|
771
|
1423 coding_stream_coding_system
|
428
|
1424 (XLSTREAM (XPROCESS (process)->coding_outstream)));
|
|
1425 }
|
|
1426
|
|
1427 DEFUN ("set-process-input-coding-system", Fset_process_input_coding_system,
|
|
1428 2, 2, 0, /*
|
|
1429 Set PROCESS's input coding system to CODESYS.
|
771
|
1430 This is used for reading data from PROCESS.
|
428
|
1431 */
|
|
1432 (process, codesys))
|
|
1433 {
|
771
|
1434 codesys = get_coding_system_for_text_file (codesys, 1);
|
428
|
1435 process = get_process (process);
|
863
|
1436 CHECK_READABLE_PROCESS (process);
|
440
|
1437
|
771
|
1438 set_coding_stream_coding_system
|
428
|
1439 (XLSTREAM (XPROCESS (process)->coding_instream), codesys);
|
|
1440 return Qnil;
|
|
1441 }
|
|
1442
|
|
1443 DEFUN ("set-process-output-coding-system", Fset_process_output_coding_system,
|
|
1444 2, 2, 0, /*
|
|
1445 Set PROCESS's output coding system to CODESYS.
|
771
|
1446 This is used for writing data to PROCESS.
|
428
|
1447 */
|
|
1448 (process, codesys))
|
|
1449 {
|
771
|
1450 codesys = get_coding_system_for_text_file (codesys, 0);
|
428
|
1451 process = get_process (process);
|
440
|
1452 CHECK_LIVE_PROCESS (process);
|
|
1453
|
771
|
1454 set_coding_stream_coding_system
|
428
|
1455 (XLSTREAM (XPROCESS (process)->coding_outstream), codesys);
|
|
1456 return Qnil;
|
|
1457 }
|
|
1458
|
|
1459 DEFUN ("set-process-coding-system", Fset_process_coding_system,
|
|
1460 1, 3, 0, /*
|
|
1461 Set coding-systems of PROCESS to DECODING and ENCODING.
|
440
|
1462 DECODING will be used to decode subprocess output and ENCODING to
|
|
1463 encode subprocess input.
|
428
|
1464 */
|
|
1465 (process, decoding, encoding))
|
|
1466 {
|
|
1467 if (!NILP (decoding))
|
|
1468 Fset_process_input_coding_system (process, decoding);
|
|
1469
|
|
1470 if (!NILP (encoding))
|
|
1471 Fset_process_output_coding_system (process, encoding);
|
|
1472
|
|
1473 return Qnil;
|
|
1474 }
|
|
1475
|
|
1476
|
|
1477 /************************************************************************/
|
|
1478 /* process status */
|
|
1479 /************************************************************************/
|
|
1480
|
|
1481 static Lisp_Object
|
|
1482 exec_sentinel_unwind (Lisp_Object datum)
|
|
1483 {
|
853
|
1484 XPROCESS (XCAR (datum))->sentinel = XCDR (datum);
|
|
1485 free_cons (datum);
|
428
|
1486 return Qnil;
|
|
1487 }
|
|
1488
|
|
1489 static void
|
444
|
1490 exec_sentinel (Lisp_Object process, Lisp_Object reason)
|
428
|
1491 {
|
|
1492 /* This function can GC */
|
|
1493 int speccount = specpdl_depth ();
|
444
|
1494 Lisp_Process *p = XPROCESS (process);
|
428
|
1495 Lisp_Object sentinel = p->sentinel;
|
|
1496
|
|
1497 if (NILP (sentinel))
|
|
1498 return;
|
|
1499
|
|
1500 /* Some weird FSFmacs crap here with
|
|
1501 Vdeactivate_mark and current_buffer->keymap */
|
|
1502
|
853
|
1503 /* Some FSF junk with running_asynch_code, to preserve the match
|
|
1504 data. Not necessary because we don't call process filters
|
|
1505 asynchronously (i.e. from within QUIT). */
|
|
1506
|
428
|
1507 /* Zilch the sentinel while it's running, to avoid recursive invocations;
|
853
|
1508 assure that it gets restored no matter how the sentinel exits.
|
|
1509
|
|
1510 (#### Why is this necessary? Probably another relic of asynchronous
|
|
1511 calling of process filters/sentinels.) */
|
428
|
1512 p->sentinel = Qnil;
|
853
|
1513 record_unwind_protect (exec_sentinel_unwind,
|
|
1514 noseeum_cons (process, sentinel));
|
|
1515 /* Don't catch errors here; we're not in any critical code. */
|
|
1516 call2 (sentinel, process, reason);
|
771
|
1517 unbind_to (speccount);
|
428
|
1518 }
|
|
1519
|
|
1520 DEFUN ("set-process-sentinel", Fset_process_sentinel, 2, 2, 0, /*
|
|
1521 Give PROCESS the sentinel SENTINEL; nil for none.
|
|
1522 The sentinel is called as a function when the process changes state.
|
|
1523 It gets two arguments: the process, and a string describing the change.
|
|
1524 */
|
444
|
1525 (process, sentinel))
|
428
|
1526 {
|
444
|
1527 CHECK_PROCESS (process);
|
|
1528 XPROCESS (process)->sentinel = sentinel;
|
428
|
1529 return sentinel;
|
|
1530 }
|
|
1531
|
|
1532 DEFUN ("process-sentinel", Fprocess_sentinel, 1, 1, 0, /*
|
|
1533 Return the sentinel of PROCESS; nil if none.
|
|
1534 See `set-process-sentinel' for more info on sentinels.
|
|
1535 */
|
444
|
1536 (process))
|
428
|
1537 {
|
444
|
1538 CHECK_PROCESS (process);
|
|
1539 return XPROCESS (process)->sentinel;
|
428
|
1540 }
|
|
1541
|
|
1542
|
442
|
1543 const char *
|
428
|
1544 signal_name (int signum)
|
|
1545 {
|
|
1546 if (signum >= 0 && signum < NSIG)
|
442
|
1547 return (const char *) sys_siglist[signum];
|
428
|
1548
|
442
|
1549 return (const char *) GETTEXT ("unknown signal");
|
428
|
1550 }
|
|
1551
|
|
1552 void
|
|
1553 update_process_status (Lisp_Object p,
|
|
1554 Lisp_Object status_symbol,
|
|
1555 int exit_code,
|
|
1556 int core_dumped)
|
|
1557 {
|
|
1558 XPROCESS (p)->tick++;
|
|
1559 process_tick++;
|
|
1560 XPROCESS (p)->status_symbol = status_symbol;
|
|
1561 XPROCESS (p)->exit_code = exit_code;
|
|
1562 XPROCESS (p)->core_dumped = core_dumped;
|
|
1563 }
|
|
1564
|
|
1565 /* Return a string describing a process status list. */
|
|
1566
|
|
1567 static Lisp_Object
|
440
|
1568 status_message (Lisp_Process *p)
|
428
|
1569 {
|
|
1570 Lisp_Object symbol = p->status_symbol;
|
|
1571 int code = p->exit_code;
|
|
1572 int coredump = p->core_dumped;
|
|
1573 Lisp_Object string, string2;
|
|
1574
|
|
1575 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
|
|
1576 {
|
|
1577 string = build_string (signal_name (code));
|
|
1578 if (coredump)
|
771
|
1579 string2 = build_msg_string (" (core dumped)\n");
|
428
|
1580 else
|
|
1581 string2 = build_string ("\n");
|
793
|
1582 set_string_char (string, 0,
|
867
|
1583 DOWNCASE (0, string_ichar (string, 0)));
|
428
|
1584 return concat2 (string, string2);
|
|
1585 }
|
|
1586 else if (EQ (symbol, Qexit))
|
|
1587 {
|
|
1588 if (code == 0)
|
771
|
1589 return build_msg_string ("finished\n");
|
428
|
1590 string = Fnumber_to_string (make_int (code));
|
|
1591 if (coredump)
|
771
|
1592 string2 = build_msg_string (" (core dumped)\n");
|
428
|
1593 else
|
|
1594 string2 = build_string ("\n");
|
771
|
1595 return concat2 (build_msg_string ("exited abnormally with code "),
|
428
|
1596 concat2 (string, string2));
|
|
1597 }
|
|
1598 else
|
|
1599 return Fcopy_sequence (Fsymbol_name (symbol));
|
|
1600 }
|
|
1601
|
|
1602 /* Tell status_notify() to check for terminated processes. We do this
|
|
1603 because on some systems we sometimes miss SIGCHLD calls. (Not sure
|
853
|
1604 why.) This is also used under Mswin. */
|
428
|
1605
|
|
1606 void
|
|
1607 kick_status_notify (void)
|
|
1608 {
|
|
1609 process_tick++;
|
|
1610 }
|
|
1611
|
|
1612
|
|
1613 /* Report all recent events of a change in process status
|
|
1614 (either run the sentinel or output a message).
|
|
1615 This is done while Emacs is waiting for keyboard input. */
|
|
1616
|
|
1617 void
|
|
1618 status_notify (void)
|
|
1619 {
|
|
1620 /* This function can GC */
|
|
1621 Lisp_Object tail = Qnil;
|
|
1622 Lisp_Object symbol = Qnil;
|
|
1623 Lisp_Object msg = Qnil;
|
|
1624 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1625 /* process_tick is volatile, so we have to remember it now.
|
444
|
1626 Otherwise, we get a race condition if SIGCHLD happens during
|
428
|
1627 this function.
|
|
1628
|
|
1629 (Actually, this is not the case anymore. The code to
|
|
1630 update the process structures has been moved out of the
|
|
1631 SIGCHLD handler. But for the moment I'm leaving this
|
|
1632 stuff in -- it can't hurt.) */
|
|
1633 int temp_process_tick;
|
|
1634
|
|
1635 MAYBE_PROCMETH (reap_exited_processes, ());
|
|
1636
|
|
1637 temp_process_tick = process_tick;
|
|
1638
|
|
1639 if (update_tick == temp_process_tick)
|
|
1640 return;
|
|
1641
|
|
1642 /* We need to gcpro tail; if read_process_output calls a filter
|
|
1643 which deletes a process and removes the cons to which tail points
|
|
1644 from Vprocess_alist, and then causes a GC, tail is an unprotected
|
|
1645 reference. */
|
|
1646 GCPRO3 (tail, symbol, msg);
|
|
1647
|
|
1648 for (tail = Vprocess_list; CONSP (tail); tail = XCDR (tail))
|
|
1649 {
|
444
|
1650 Lisp_Object process = XCAR (tail);
|
|
1651 Lisp_Process *p = XPROCESS (process);
|
428
|
1652 /* p->tick is also volatile. Same thing as above applies. */
|
|
1653 int this_process_tick;
|
|
1654
|
|
1655 /* #### extra check for terminated processes, in case a SIGCHLD
|
|
1656 got missed (this seems to happen sometimes, I'm not sure why).
|
|
1657 */
|
|
1658 if (INTP (p->pid))
|
|
1659 MAYBE_PROCMETH (update_status_if_terminated, (p));
|
|
1660
|
|
1661 this_process_tick = p->tick;
|
|
1662 if (this_process_tick != p->update_tick)
|
|
1663 {
|
|
1664 p->update_tick = this_process_tick;
|
|
1665
|
|
1666 /* If process is still active, read any output that remains. */
|
|
1667 while (!EQ (p->filter, Qt)
|
853
|
1668 && read_process_output (process, 0) > 0)
|
|
1669 ;
|
|
1670 while (p->separate_stderr && !EQ (p->stderr_filter, Qt)
|
|
1671 && read_process_output (process, 1) > 0)
|
428
|
1672 ;
|
|
1673
|
|
1674 /* Get the text to use for the message. */
|
|
1675 msg = status_message (p);
|
|
1676
|
|
1677 /* If process is terminated, deactivate it or delete it. */
|
|
1678 symbol = p->status_symbol;
|
|
1679
|
|
1680 if (EQ (symbol, Qsignal)
|
|
1681 || EQ (symbol, Qexit))
|
|
1682 {
|
|
1683 if (delete_exited_processes)
|
444
|
1684 remove_process (process);
|
428
|
1685 else
|
444
|
1686 deactivate_process (process);
|
428
|
1687 }
|
|
1688
|
|
1689 /* Now output the message suitably. */
|
|
1690 if (!NILP (p->sentinel))
|
444
|
1691 exec_sentinel (process, msg);
|
428
|
1692 /* Don't bother with a message in the buffer
|
|
1693 when a process becomes runnable. */
|
844
|
1694 else if (!EQ (symbol, Qrun) && !NILP (p->buffer) &&
|
|
1695 /* Avoid error if buffer is deleted
|
|
1696 (probably that's why the process is dead, too) */
|
|
1697 BUFFER_LIVE_P (XBUFFER (p->buffer)))
|
428
|
1698 {
|
844
|
1699 struct gcpro ngcpro1;
|
853
|
1700 int spec = process_setup_for_insertion (process, 0);
|
428
|
1701
|
844
|
1702 NGCPRO1 (process);
|
428
|
1703 buffer_insert_c_string (current_buffer, "\nProcess ");
|
|
1704 Finsert (1, &p->name);
|
|
1705 buffer_insert_c_string (current_buffer, " ");
|
|
1706 Finsert (1, &msg);
|
|
1707 Fset_marker (p->mark, make_int (BUF_PT (current_buffer)),
|
|
1708 p->buffer);
|
|
1709
|
844
|
1710 unbind_to (spec);
|
428
|
1711 NUNGCPRO;
|
|
1712 }
|
|
1713 }
|
|
1714 } /* end for */
|
|
1715
|
|
1716 /* in case buffers use %s in modeline-format */
|
|
1717 MARK_MODELINE_CHANGED;
|
|
1718 redisplay ();
|
|
1719
|
|
1720 update_tick = temp_process_tick;
|
|
1721
|
|
1722 UNGCPRO;
|
|
1723 }
|
|
1724
|
|
1725 DEFUN ("process-status", Fprocess_status, 1, 1, 0, /*
|
|
1726 Return the status of PROCESS.
|
|
1727 This is a symbol, one of these:
|
|
1728
|
|
1729 run -- for a process that is running.
|
|
1730 stop -- for a process stopped but continuable.
|
|
1731 exit -- for a process that has exited.
|
|
1732 signal -- for a process that has got a fatal signal.
|
|
1733 open -- for a network stream connection that is open.
|
|
1734 closed -- for a network stream connection that is closed.
|
|
1735 nil -- if arg is a process name and no such process exists.
|
|
1736
|
|
1737 PROCESS may be a process, a buffer, the name of a process or buffer, or
|
|
1738 nil, indicating the current buffer's process.
|
|
1739 */
|
444
|
1740 (process))
|
428
|
1741 {
|
|
1742 Lisp_Object status_symbol;
|
|
1743
|
444
|
1744 if (STRINGP (process))
|
|
1745 process = Fget_process (process);
|
428
|
1746 else
|
444
|
1747 process = get_process (process);
|
428
|
1748
|
444
|
1749 if (NILP (process))
|
428
|
1750 return Qnil;
|
|
1751
|
444
|
1752 status_symbol = XPROCESS (process)->status_symbol;
|
|
1753 if (network_connection_p (process))
|
428
|
1754 {
|
|
1755 if (EQ (status_symbol, Qrun))
|
|
1756 status_symbol = Qopen;
|
|
1757 else if (EQ (status_symbol, Qexit))
|
|
1758 status_symbol = Qclosed;
|
|
1759 }
|
|
1760 return status_symbol;
|
|
1761 }
|
|
1762
|
|
1763 DEFUN ("process-exit-status", Fprocess_exit_status, 1, 1, 0, /*
|
|
1764 Return the exit status of PROCESS or the signal number that killed it.
|
|
1765 If PROCESS has not yet exited or died, return 0.
|
|
1766 */
|
444
|
1767 (process))
|
428
|
1768 {
|
444
|
1769 CHECK_PROCESS (process);
|
|
1770 return make_int (XPROCESS (process)->exit_code);
|
428
|
1771 }
|
|
1772
|
|
1773
|
|
1774
|
442
|
1775 static int
|
|
1776 decode_signal (Lisp_Object signal_)
|
428
|
1777 {
|
442
|
1778 if (INTP (signal_))
|
|
1779 return XINT (signal_);
|
428
|
1780 else
|
|
1781 {
|
867
|
1782 Ibyte *name;
|
428
|
1783
|
442
|
1784 CHECK_SYMBOL (signal_);
|
793
|
1785 name = XSTRING_DATA (XSYMBOL (signal_)->name);
|
428
|
1786
|
793
|
1787 #define handle_signal(sym) do { \
|
|
1788 if (!qxestrcmp_c ( name, #sym)) \
|
|
1789 return sym; \
|
442
|
1790 } while (0)
|
428
|
1791
|
|
1792 handle_signal (SIGINT); /* ANSI */
|
|
1793 handle_signal (SIGILL); /* ANSI */
|
|
1794 handle_signal (SIGABRT); /* ANSI */
|
|
1795 handle_signal (SIGFPE); /* ANSI */
|
|
1796 handle_signal (SIGSEGV); /* ANSI */
|
|
1797 handle_signal (SIGTERM); /* ANSI */
|
|
1798
|
|
1799 #ifdef SIGHUP
|
|
1800 handle_signal (SIGHUP); /* POSIX */
|
|
1801 #endif
|
|
1802 #ifdef SIGQUIT
|
|
1803 handle_signal (SIGQUIT); /* POSIX */
|
|
1804 #endif
|
|
1805 #ifdef SIGTRAP
|
|
1806 handle_signal (SIGTRAP); /* POSIX */
|
|
1807 #endif
|
|
1808 #ifdef SIGKILL
|
|
1809 handle_signal (SIGKILL); /* POSIX */
|
|
1810 #endif
|
|
1811 #ifdef SIGUSR1
|
|
1812 handle_signal (SIGUSR1); /* POSIX */
|
|
1813 #endif
|
|
1814 #ifdef SIGUSR2
|
|
1815 handle_signal (SIGUSR2); /* POSIX */
|
|
1816 #endif
|
|
1817 #ifdef SIGPIPE
|
|
1818 handle_signal (SIGPIPE); /* POSIX */
|
|
1819 #endif
|
|
1820 #ifdef SIGALRM
|
|
1821 handle_signal (SIGALRM); /* POSIX */
|
|
1822 #endif
|
|
1823 #ifdef SIGCHLD
|
|
1824 handle_signal (SIGCHLD); /* POSIX */
|
|
1825 #endif
|
|
1826 #ifdef SIGCONT
|
|
1827 handle_signal (SIGCONT); /* POSIX */
|
|
1828 #endif
|
|
1829 #ifdef SIGSTOP
|
|
1830 handle_signal (SIGSTOP); /* POSIX */
|
|
1831 #endif
|
|
1832 #ifdef SIGTSTP
|
|
1833 handle_signal (SIGTSTP); /* POSIX */
|
|
1834 #endif
|
|
1835 #ifdef SIGTTIN
|
|
1836 handle_signal (SIGTTIN); /* POSIX */
|
|
1837 #endif
|
|
1838 #ifdef SIGTTOU
|
|
1839 handle_signal (SIGTTOU); /* POSIX */
|
|
1840 #endif
|
|
1841
|
|
1842 #ifdef SIGBUS
|
|
1843 handle_signal (SIGBUS); /* XPG5 */
|
|
1844 #endif
|
|
1845 #ifdef SIGPOLL
|
|
1846 handle_signal (SIGPOLL); /* XPG5 */
|
|
1847 #endif
|
|
1848 #ifdef SIGPROF
|
|
1849 handle_signal (SIGPROF); /* XPG5 */
|
|
1850 #endif
|
|
1851 #ifdef SIGSYS
|
|
1852 handle_signal (SIGSYS); /* XPG5 */
|
|
1853 #endif
|
|
1854 #ifdef SIGURG
|
|
1855 handle_signal (SIGURG); /* XPG5 */
|
|
1856 #endif
|
|
1857 #ifdef SIGXCPU
|
|
1858 handle_signal (SIGXCPU); /* XPG5 */
|
|
1859 #endif
|
|
1860 #ifdef SIGXFSZ
|
|
1861 handle_signal (SIGXFSZ); /* XPG5 */
|
|
1862 #endif
|
|
1863 #ifdef SIGVTALRM
|
|
1864 handle_signal (SIGVTALRM); /* XPG5 */
|
|
1865 #endif
|
|
1866
|
|
1867 #ifdef SIGIO
|
|
1868 handle_signal (SIGIO); /* BSD 4.2 */
|
|
1869 #endif
|
|
1870 #ifdef SIGWINCH
|
|
1871 handle_signal (SIGWINCH); /* BSD 4.3 */
|
|
1872 #endif
|
|
1873
|
|
1874 #ifdef SIGEMT
|
|
1875 handle_signal (SIGEMT);
|
|
1876 #endif
|
|
1877 #ifdef SIGINFO
|
|
1878 handle_signal (SIGINFO);
|
|
1879 #endif
|
|
1880 #ifdef SIGHWE
|
|
1881 handle_signal (SIGHWE);
|
|
1882 #endif
|
|
1883 #ifdef SIGPRE
|
|
1884 handle_signal (SIGPRE);
|
|
1885 #endif
|
|
1886 #ifdef SIGUME
|
|
1887 handle_signal (SIGUME);
|
|
1888 #endif
|
|
1889 #ifdef SIGDLK
|
|
1890 handle_signal (SIGDLK);
|
|
1891 #endif
|
|
1892 #ifdef SIGCPULIM
|
|
1893 handle_signal (SIGCPULIM);
|
|
1894 #endif
|
|
1895 #ifdef SIGIOT
|
|
1896 handle_signal (SIGIOT);
|
|
1897 #endif
|
|
1898 #ifdef SIGLOST
|
|
1899 handle_signal (SIGLOST);
|
|
1900 #endif
|
|
1901 #ifdef SIGSTKFLT
|
|
1902 handle_signal (SIGSTKFLT);
|
|
1903 #endif
|
|
1904 #ifdef SIGUNUSED
|
|
1905 handle_signal (SIGUNUSED);
|
|
1906 #endif
|
|
1907 #ifdef SIGDANGER
|
|
1908 handle_signal (SIGDANGER); /* AIX */
|
|
1909 #endif
|
|
1910 #ifdef SIGMSG
|
|
1911 handle_signal (SIGMSG);
|
|
1912 #endif
|
|
1913 #ifdef SIGSOUND
|
|
1914 handle_signal (SIGSOUND);
|
|
1915 #endif
|
|
1916 #ifdef SIGRETRACT
|
|
1917 handle_signal (SIGRETRACT);
|
|
1918 #endif
|
|
1919 #ifdef SIGGRANT
|
|
1920 handle_signal (SIGGRANT);
|
|
1921 #endif
|
|
1922 #ifdef SIGPWR
|
|
1923 handle_signal (SIGPWR);
|
|
1924 #endif
|
|
1925
|
|
1926 #undef handle_signal
|
|
1927
|
563
|
1928 invalid_constant ("Undefined signal name", signal_);
|
1204
|
1929 RETURN_NOT_REACHED (0);
|
442
|
1930 }
|
|
1931 }
|
|
1932
|
|
1933 /* Send signal number SIGNO to PROCESS.
|
|
1934 CURRENT-GROUP non-nil means send signal to the current
|
|
1935 foreground process group of the process's controlling terminal rather
|
|
1936 than to the process's own process group.
|
|
1937 This is used for various commands in shell mode.
|
|
1938 If NOMSG is zero, insert signal-announcements into process's buffers
|
|
1939 right away.
|
|
1940
|
|
1941 If we can, we try to signal PROCESS by sending control characters
|
|
1942 down the pty. This allows us to signal inferiors who have changed
|
|
1943 their uid, for which kill() would return an EPERM error, or to
|
|
1944 processes running on another computer through a remote login. */
|
|
1945
|
|
1946 static void
|
|
1947 process_send_signal (Lisp_Object process, int signo,
|
|
1948 int current_group, int nomsg)
|
|
1949 {
|
|
1950 /* This function can GC */
|
444
|
1951 process = get_process (process);
|
442
|
1952
|
444
|
1953 if (network_connection_p (process))
|
563
|
1954 invalid_operation ("Network connection is not a subprocess", process);
|
444
|
1955 CHECK_LIVE_PROCESS (process);
|
442
|
1956
|
444
|
1957 MAYBE_PROCMETH (kill_child_process, (process, signo, current_group, nomsg));
|
442
|
1958 }
|
|
1959
|
|
1960 DEFUN ("process-send-signal", Fprocess_send_signal, 1, 3, 0, /*
|
|
1961 Send signal SIGNAL to process PROCESS.
|
|
1962 SIGNAL may be an integer, or a symbol naming a signal, like `SIGSEGV'.
|
|
1963 PROCESS may be a process, a buffer, the name of a process or buffer, or
|
|
1964 nil, indicating the current buffer's process.
|
|
1965 Third arg CURRENT-GROUP non-nil means send signal to the current
|
|
1966 foreground process group of the process's controlling terminal rather
|
|
1967 than to the process's own process group.
|
|
1968 If the process is a shell that supports job control, this means
|
|
1969 send the signal to the current subjob rather than the shell.
|
|
1970 */
|
|
1971 (signal_, process, current_group))
|
|
1972 {
|
|
1973 /* This function can GC */
|
|
1974 process_send_signal (process, decode_signal (signal_),
|
|
1975 !NILP (current_group), 0);
|
|
1976 return process;
|
|
1977 }
|
|
1978
|
|
1979 DEFUN ("interrupt-process", Finterrupt_process, 0, 2, 0, /*
|
|
1980 Interrupt process PROCESS.
|
|
1981 See function `process-send-signal' for more details on usage.
|
|
1982 */
|
|
1983 (process, current_group))
|
|
1984 {
|
|
1985 /* This function can GC */
|
|
1986 process_send_signal (process, SIGINT, !NILP (current_group), 0);
|
|
1987 return process;
|
|
1988 }
|
|
1989
|
|
1990 DEFUN ("kill-process", Fkill_process, 0, 2, 0, /*
|
|
1991 Kill process PROCESS.
|
|
1992 See function `process-send-signal' for more details on usage.
|
|
1993 */
|
|
1994 (process, current_group))
|
|
1995 {
|
|
1996 /* This function can GC */
|
|
1997 #ifdef SIGKILL
|
|
1998 process_send_signal (process, SIGKILL, !NILP (current_group), 0);
|
|
1999 #else
|
563
|
2000 signal_error (Qunimplemented,
|
|
2001 "kill-process: Not supported on this system",
|
|
2002 Qunbound);
|
442
|
2003 #endif
|
|
2004 return process;
|
|
2005 }
|
|
2006
|
|
2007 DEFUN ("quit-process", Fquit_process, 0, 2, 0, /*
|
|
2008 Send QUIT signal to process PROCESS.
|
|
2009 See function `process-send-signal' for more details on usage.
|
|
2010 */
|
|
2011 (process, current_group))
|
|
2012 {
|
|
2013 /* This function can GC */
|
|
2014 #ifdef SIGQUIT
|
|
2015 process_send_signal (process, SIGQUIT, !NILP (current_group), 0);
|
|
2016 #else
|
563
|
2017 signal_error (Qunimplemented,
|
|
2018 "quit-process: Not supported on this system",
|
|
2019 Qunbound);
|
442
|
2020 #endif
|
|
2021 return process;
|
|
2022 }
|
|
2023
|
|
2024 DEFUN ("stop-process", Fstop_process, 0, 2, 0, /*
|
|
2025 Stop process PROCESS.
|
|
2026 See function `process-send-signal' for more details on usage.
|
|
2027 */
|
|
2028 (process, current_group))
|
|
2029 {
|
|
2030 /* This function can GC */
|
|
2031 #ifdef SIGTSTP
|
|
2032 process_send_signal (process, SIGTSTP, !NILP (current_group), 0);
|
|
2033 #else
|
563
|
2034 signal_error (Qunimplemented,
|
|
2035 "stop-process: Not supported on this system",
|
|
2036 Qunbound);
|
442
|
2037 #endif
|
|
2038 return process;
|
|
2039 }
|
|
2040
|
|
2041 DEFUN ("continue-process", Fcontinue_process, 0, 2, 0, /*
|
|
2042 Continue process PROCESS.
|
|
2043 See function `process-send-signal' for more details on usage.
|
|
2044 */
|
|
2045 (process, current_group))
|
|
2046 {
|
|
2047 /* This function can GC */
|
|
2048 #ifdef SIGCONT
|
|
2049 process_send_signal (process, SIGCONT, !NILP (current_group), 0);
|
|
2050 #else
|
563
|
2051 signal_error (Qunimplemented,
|
|
2052 "continue-process: Not supported on this system",
|
|
2053 Qunbound);
|
442
|
2054 #endif
|
|
2055 return process;
|
|
2056 }
|
|
2057
|
|
2058 DEFUN ("signal-process", Fsignal_process, 2, 2,
|
|
2059 "nProcess number: \nnSignal code: ", /*
|
|
2060 Send the process with process id PID the signal with code SIGNAL.
|
|
2061 PID must be an integer. The process need not be a child of this Emacs.
|
|
2062 SIGNAL may be an integer, or a symbol naming a signal, like `SIGSEGV'.
|
|
2063 */
|
|
2064 (pid, signal_))
|
|
2065 {
|
|
2066 CHECK_INT (pid);
|
|
2067
|
428
|
2068 return make_int (PROCMETH_OR_GIVEN (kill_process_by_pid,
|
442
|
2069 (XINT (pid), decode_signal (signal_)),
|
|
2070 -1));
|
428
|
2071 }
|
|
2072
|
|
2073 DEFUN ("process-send-eof", Fprocess_send_eof, 0, 1, 0, /*
|
|
2074 Make PROCESS see end-of-file in its input.
|
|
2075 PROCESS may be a process, a buffer, the name of a process or buffer, or
|
|
2076 nil, indicating the current buffer's process.
|
|
2077 If PROCESS is a network connection, or is a process communicating
|
|
2078 through a pipe (as opposed to a pty), then you cannot send any more
|
|
2079 text to PROCESS after you call this function.
|
|
2080 */
|
|
2081 (process))
|
|
2082 {
|
|
2083 /* This function can GC */
|
444
|
2084 process = get_process (process);
|
428
|
2085
|
|
2086 /* Make sure the process is really alive. */
|
444
|
2087 if (! EQ (XPROCESS (process)->status_symbol, Qrun))
|
563
|
2088 invalid_operation ("Process not running", process);
|
428
|
2089
|
444
|
2090 if (!MAYBE_INT_PROCMETH (process_send_eof, (process)))
|
428
|
2091 {
|
444
|
2092 if (!NILP (DATA_OUTSTREAM (XPROCESS (process))))
|
428
|
2093 {
|
853
|
2094 USID humpty, dumpty;
|
444
|
2095 Lstream_close (XLSTREAM (DATA_OUTSTREAM (XPROCESS (process))));
|
853
|
2096 event_stream_delete_io_streams (Qnil,
|
|
2097 XPROCESS (process)->pipe_outstream,
|
|
2098 Qnil, &humpty, &dumpty);
|
444
|
2099 XPROCESS (process)->pipe_outstream = Qnil;
|
|
2100 XPROCESS (process)->coding_outstream = Qnil;
|
428
|
2101 }
|
|
2102 }
|
|
2103
|
|
2104 return process;
|
|
2105 }
|
|
2106
|
|
2107
|
|
2108 /************************************************************************/
|
|
2109 /* deleting a process */
|
|
2110 /************************************************************************/
|
|
2111
|
|
2112 void
|
444
|
2113 deactivate_process (Lisp_Object process)
|
428
|
2114 {
|
444
|
2115 Lisp_Process *p = XPROCESS (process);
|
853
|
2116 USID in_usid, err_usid;
|
428
|
2117
|
|
2118 /* It's possible that we got as far in the process-creation
|
|
2119 process as creating the descriptors but didn't get so
|
|
2120 far as selecting the process for input. In this
|
|
2121 case, p->pid is nil: p->pid is set at the same time that
|
|
2122 the process is selected for input. */
|
|
2123 /* #### The comment does not look correct. event_stream_unselect_process
|
853
|
2124 is guarded by process->*_selected, so this is not a problem. - kkm*/
|
428
|
2125 /* Must call this before setting the streams to nil */
|
853
|
2126 event_stream_unselect_process (p, 1, 1);
|
428
|
2127
|
|
2128 if (!NILP (DATA_OUTSTREAM (p)))
|
|
2129 Lstream_close (XLSTREAM (DATA_OUTSTREAM (p)));
|
|
2130 if (!NILP (DATA_INSTREAM (p)))
|
|
2131 Lstream_close (XLSTREAM (DATA_INSTREAM (p)));
|
853
|
2132 if (!NILP (DATA_ERRSTREAM (p)))
|
|
2133 Lstream_close (XLSTREAM (DATA_ERRSTREAM (p)));
|
428
|
2134
|
|
2135 /* Provide minimal implementation for deactivate_process
|
|
2136 if there's no process-specific one */
|
|
2137 if (HAS_PROCMETH_P (deactivate_process))
|
853
|
2138 PROCMETH (deactivate_process, (p, &in_usid, &err_usid));
|
428
|
2139 else
|
853
|
2140 event_stream_delete_io_streams (p->pipe_instream,
|
|
2141 p->pipe_outstream,
|
|
2142 p->pipe_errstream,
|
|
2143 &in_usid, &err_usid);
|
428
|
2144
|
853
|
2145 if (in_usid != USID_DONTHASH)
|
|
2146 remhash ((const void*)in_usid, usid_to_process);
|
|
2147 if (err_usid != USID_DONTHASH)
|
|
2148 remhash ((const void*)err_usid, usid_to_process);
|
428
|
2149
|
|
2150 p->pipe_instream = Qnil;
|
|
2151 p->pipe_outstream = Qnil;
|
853
|
2152 p->pipe_errstream = Qnil;
|
428
|
2153 p->coding_instream = Qnil;
|
|
2154 p->coding_outstream = Qnil;
|
853
|
2155 p->coding_errstream = Qnil;
|
428
|
2156 }
|
|
2157
|
|
2158 static void
|
444
|
2159 remove_process (Lisp_Object process)
|
428
|
2160 {
|
444
|
2161 Vprocess_list = delq_no_quit (process, Vprocess_list);
|
428
|
2162
|
444
|
2163 deactivate_process (process);
|
428
|
2164 }
|
|
2165
|
|
2166 DEFUN ("delete-process", Fdelete_process, 1, 1, 0, /*
|
|
2167 Delete PROCESS: kill it and forget about it immediately.
|
|
2168 PROCESS may be a process or the name of one, or a buffer name.
|
|
2169 */
|
444
|
2170 (process))
|
428
|
2171 {
|
|
2172 /* This function can GC */
|
440
|
2173 Lisp_Process *p;
|
444
|
2174 process = get_process (process);
|
|
2175 p = XPROCESS (process);
|
|
2176 if (network_connection_p (process))
|
428
|
2177 {
|
|
2178 p->status_symbol = Qexit;
|
|
2179 p->exit_code = 0;
|
|
2180 p->core_dumped = 0;
|
|
2181 p->tick++;
|
|
2182 process_tick++;
|
|
2183 }
|
440
|
2184 else if (PROCESS_LIVE_P (p))
|
428
|
2185 {
|
444
|
2186 Fkill_process (process, Qnil);
|
428
|
2187 /* Do this now, since remove_process will make sigchld_handler do nothing. */
|
|
2188 p->status_symbol = Qsignal;
|
|
2189 p->exit_code = SIGKILL;
|
|
2190 p->core_dumped = 0;
|
|
2191 p->tick++;
|
|
2192 process_tick++;
|
|
2193 status_notify ();
|
|
2194 }
|
444
|
2195 remove_process (process);
|
428
|
2196 return Qnil;
|
|
2197 }
|
|
2198
|
|
2199 /* Kill all processes associated with `buffer'.
|
|
2200 If `buffer' is nil, kill all processes */
|
|
2201
|
|
2202 void
|
|
2203 kill_buffer_processes (Lisp_Object buffer)
|
|
2204 {
|
444
|
2205 LIST_LOOP_2 (process, Vprocess_list)
|
|
2206 if ((NILP (buffer) || EQ (XPROCESS (process)->buffer, buffer)))
|
|
2207 {
|
|
2208 if (network_connection_p (process))
|
|
2209 Fdelete_process (process);
|
|
2210 else if (PROCESS_LIVE_P (XPROCESS (process)))
|
|
2211 process_send_signal (process, SIGHUP, 0, 1);
|
|
2212 }
|
428
|
2213 }
|
|
2214
|
|
2215 DEFUN ("process-kill-without-query", Fprocess_kill_without_query, 1, 2, 0, /*
|
|
2216 Say no query needed if PROCESS is running when Emacs is exited.
|
|
2217 Optional second argument if non-nil says to require a query.
|
|
2218 Value is t if a query was formerly required.
|
|
2219 */
|
444
|
2220 (process, require_query_p))
|
428
|
2221 {
|
|
2222 int tem;
|
|
2223
|
444
|
2224 CHECK_PROCESS (process);
|
|
2225 tem = XPROCESS (process)->kill_without_query;
|
|
2226 XPROCESS (process)->kill_without_query = NILP (require_query_p);
|
428
|
2227
|
|
2228 return tem ? Qnil : Qt;
|
|
2229 }
|
|
2230
|
|
2231 DEFUN ("process-kill-without-query-p", Fprocess_kill_without_query_p, 1, 1, 0, /*
|
444
|
2232 Return t if PROCESS will be killed without query when emacs is exited.
|
428
|
2233 */
|
444
|
2234 (process))
|
428
|
2235 {
|
444
|
2236 CHECK_PROCESS (process);
|
|
2237 return XPROCESS (process)->kill_without_query ? Qt : Qnil;
|
428
|
2238 }
|
|
2239
|
|
2240
|
|
2241 #if 0
|
|
2242
|
826
|
2243 DEFUN ("process-connection", Fprocess_connection, 0, 1, 0, /*
|
428
|
2244 Return the connection type of `PROCESS'. This can be nil (pipe),
|
|
2245 t or pty (pty) or stream (socket connection).
|
|
2246 */
|
|
2247 (process))
|
|
2248 {
|
|
2249 return XPROCESS (process)->type;
|
|
2250 }
|
|
2251
|
|
2252 #endif /* 0 */
|
|
2253
|
814
|
2254
|
|
2255 static int
|
867
|
2256 getenv_internal (const Ibyte *var,
|
814
|
2257 Bytecount varlen,
|
867
|
2258 Ibyte **value,
|
814
|
2259 Bytecount *valuelen)
|
|
2260 {
|
|
2261 Lisp_Object scan;
|
|
2262
|
|
2263 assert (env_initted);
|
|
2264
|
|
2265 for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
|
|
2266 {
|
|
2267 Lisp_Object entry = XCAR (scan);
|
|
2268
|
|
2269 if (STRINGP (entry)
|
|
2270 && XSTRING_LENGTH (entry) > varlen
|
826
|
2271 && string_byte (entry, varlen) == '='
|
814
|
2272 #ifdef WIN32_NATIVE
|
|
2273 /* NT environment variables are case insensitive. */
|
|
2274 && ! memicmp (XSTRING_DATA (entry), var, varlen)
|
|
2275 #else /* not WIN32_NATIVE */
|
|
2276 && ! memcmp (XSTRING_DATA (entry), var, varlen)
|
|
2277 #endif /* not WIN32_NATIVE */
|
|
2278 )
|
|
2279 {
|
|
2280 *value = XSTRING_DATA (entry) + (varlen + 1);
|
|
2281 *valuelen = XSTRING_LENGTH (entry) - (varlen + 1);
|
|
2282 return 1;
|
|
2283 }
|
|
2284 }
|
|
2285
|
|
2286 return 0;
|
|
2287 }
|
|
2288
|
|
2289 static void
|
867
|
2290 putenv_internal (const Ibyte *var,
|
814
|
2291 Bytecount varlen,
|
867
|
2292 const Ibyte *value,
|
814
|
2293 Bytecount valuelen)
|
|
2294 {
|
|
2295 Lisp_Object scan;
|
|
2296
|
|
2297 assert (env_initted);
|
|
2298
|
|
2299 for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
|
|
2300 {
|
|
2301 Lisp_Object entry = XCAR (scan);
|
|
2302
|
|
2303 if (STRINGP (entry)
|
|
2304 && XSTRING_LENGTH (entry) > varlen
|
826
|
2305 && string_byte (entry, varlen) == '='
|
814
|
2306 #ifdef WIN32_NATIVE
|
|
2307 /* NT environment variables are case insensitive. */
|
|
2308 && ! memicmp (XSTRING_DATA (entry), var, varlen)
|
|
2309 #else /* not WIN32_NATIVE */
|
|
2310 && ! memcmp (XSTRING_DATA (entry), var, varlen)
|
|
2311 #endif /* not WIN32_NATIVE */
|
|
2312 )
|
|
2313 {
|
|
2314 XCAR (scan) = concat3 (make_string (var, varlen),
|
|
2315 build_string ("="),
|
|
2316 make_string (value, valuelen));
|
|
2317 return;
|
|
2318 }
|
|
2319 }
|
|
2320
|
|
2321 Vprocess_environment = Fcons (concat3 (make_string (var, varlen),
|
|
2322 build_string ("="),
|
|
2323 make_string (value, valuelen)),
|
|
2324 Vprocess_environment);
|
|
2325 }
|
|
2326
|
|
2327 /* NOTE:
|
|
2328
|
|
2329 FSF has this as a Lisp function, as follows. Generally moving things
|
|
2330 out of C and into Lisp is a good idea, but in this case the Lisp
|
|
2331 function is used so early in the startup sequence that it would be ugly
|
|
2332 to rearrange the early dumped code to accommodate this.
|
854
|
2333
|
814
|
2334 (defun getenv (variable)
|
|
2335 "Get the value of environment variable VARIABLE.
|
|
2336 VARIABLE should be a string. Value is nil if VARIABLE is undefined in
|
|
2337 the environment. Otherwise, value is a string.
|
|
2338
|
|
2339 This function consults the variable `process-environment'
|
|
2340 for its value."
|
|
2341 (interactive (list (read-envvar-name "Get environment variable: " t)))
|
|
2342 (let ((value (getenv-internal variable)))
|
|
2343 (when (interactive-p)
|
|
2344 (message "%s" (if value value "Not set")))
|
|
2345 value))
|
|
2346 */
|
|
2347
|
|
2348 DEFUN ("getenv", Fgetenv, 1, 2, "sEnvironment variable: \np", /*
|
|
2349 Return the value of environment variable VAR, as a string.
|
|
2350 VAR is a string, the name of the variable.
|
|
2351 When invoked interactively, prints the value in the echo area.
|
|
2352 */
|
|
2353 (var, interactivep))
|
|
2354 {
|
867
|
2355 Ibyte *value;
|
814
|
2356 Bytecount valuelen;
|
|
2357 Lisp_Object v = Qnil;
|
|
2358 struct gcpro gcpro1;
|
|
2359
|
|
2360 CHECK_STRING (var);
|
|
2361 GCPRO1 (v);
|
|
2362 if (getenv_internal (XSTRING_DATA (var), XSTRING_LENGTH (var),
|
|
2363 &value, &valuelen))
|
|
2364 v = make_string (value, valuelen);
|
|
2365 if (!NILP (interactivep))
|
|
2366 {
|
|
2367 if (NILP (v))
|
|
2368 message ("%s not defined in environment", XSTRING_DATA (var));
|
|
2369 else
|
|
2370 /* #### Should use Fprin1_to_string or Fprin1 to handle string
|
|
2371 containing quotes correctly. */
|
|
2372 message ("\"%s\"", value);
|
|
2373 }
|
|
2374 RETURN_UNGCPRO (v);
|
|
2375 }
|
|
2376
|
|
2377 /* A version of getenv that consults Vprocess_environment, easily
|
|
2378 callable from C.
|
|
2379
|
|
2380 (At init time, Vprocess_environment is initialized from the
|
|
2381 environment, stored in the global variable environ. [Note that
|
|
2382 at startup time, `environ' should be the same as the envp parameter
|
|
2383 passed to main(); however, later calls to putenv() may change
|
|
2384 `environ', making the envp parameter inaccurate.] Calls to getenv()
|
|
2385 and putenv() consult and modify `environ'. However, once
|
|
2386 Vprocess_environment is initted, XEmacs C code should *NEVER* call
|
|
2387 getenv() or putenv() directly, because (1) Lisp code that modifies
|
|
2388 the environment only modifies Vprocess_environment, not `environ';
|
|
2389 and (2) Vprocess_environment is in internal format but `environ'
|
|
2390 is in some external format, and getenv()/putenv() are not Mule-
|
|
2391 encapsulated.
|
|
2392
|
|
2393 WARNING: This value points into Lisp string data and thus will become
|
|
2394 invalid after a GC. */
|
|
2395
|
867
|
2396 Ibyte *
|
|
2397 egetenv (const CIbyte *var)
|
814
|
2398 {
|
|
2399 /* This cannot GC -- 7-28-00 ben */
|
867
|
2400 Ibyte *value;
|
814
|
2401 Bytecount valuelen;
|
|
2402
|
867
|
2403 if (getenv_internal ((const Ibyte *) var, strlen (var), &value, &valuelen))
|
814
|
2404 return value;
|
|
2405 else
|
|
2406 return 0;
|
|
2407 }
|
|
2408
|
|
2409 void
|
867
|
2410 eputenv (const CIbyte *var, const CIbyte *value)
|
814
|
2411 {
|
867
|
2412 putenv_internal ((Ibyte *) var, strlen (var), (Ibyte *) value,
|
814
|
2413 strlen (value));
|
|
2414 }
|
|
2415
|
|
2416
|
|
2417 /* This is not named init_process in order to avoid a conflict with NS 3.3 */
|
|
2418 void
|
|
2419 init_xemacs_process (void)
|
|
2420 {
|
|
2421 /* This function can GC */
|
|
2422
|
|
2423 MAYBE_PROCMETH (init_process, ());
|
|
2424
|
|
2425 Vprocess_list = Qnil;
|
|
2426
|
|
2427 if (usid_to_process)
|
|
2428 clrhash (usid_to_process);
|
|
2429 else
|
|
2430 usid_to_process = make_hash_table (32);
|
854
|
2431
|
814
|
2432 {
|
|
2433 /* jwz: always initialize Vprocess_environment, so that egetenv()
|
|
2434 works in temacs. */
|
|
2435 char **envp;
|
|
2436 Vprocess_environment = Qnil;
|
|
2437 for (envp = environ; envp && *envp; envp++)
|
|
2438 Vprocess_environment =
|
|
2439 Fcons (build_ext_string (*envp, Qnative), Vprocess_environment);
|
|
2440 /* This gets set back to 0 in disksave_object_finalization() */
|
|
2441 env_initted = 1;
|
|
2442 }
|
|
2443
|
|
2444 {
|
|
2445 /* Initialize shell-file-name from environment variables or best guess. */
|
|
2446 #ifdef WIN32_NATIVE
|
867
|
2447 const Ibyte *shell = egetenv ("SHELL");
|
814
|
2448 if (!shell) shell = egetenv ("COMSPEC");
|
|
2449 /* Should never happen! */
|
|
2450 if (!shell) shell =
|
867
|
2451 (Ibyte *) (GetVersion () & 0x80000000 ? "command" : "cmd");
|
814
|
2452 #else /* not WIN32_NATIVE */
|
867
|
2453 const Ibyte *shell = egetenv ("SHELL");
|
|
2454 if (!shell) shell = (Ibyte *) "/bin/sh";
|
814
|
2455 #endif
|
|
2456
|
|
2457 #if 0 /* defined (WIN32_NATIVE) */
|
|
2458 /* BAD BAD BAD. We do not wanting to be passing an XEmacs-created
|
|
2459 SHELL var down to some inferior Cygwin process, which might get
|
|
2460 screwed up.
|
854
|
2461
|
814
|
2462 There are a few broken apps (eterm/term.el, eterm/tshell.el,
|
|
2463 os-utils/terminal.el, texinfo/tex-mode.el) where this will
|
|
2464 cause problems. Those broken apps don't look at
|
|
2465 shell-file-name, instead just at explicit-shell-file-name,
|
|
2466 ESHELL and SHELL. They are apparently attempting to borrow
|
|
2467 what `M-x shell' uses, but that latter also looks at
|
|
2468 shell-file-name. What we want is for all of these apps to look
|
|
2469 at shell-file-name, so that the user can change the value of
|
|
2470 shell-file-name and everything will work out hunky-dorey.
|
|
2471 */
|
854
|
2472
|
814
|
2473 if (!egetenv ("SHELL"))
|
|
2474 {
|
867
|
2475 Ibyte *faux_var = alloca_array (Ibyte, 7 + qxestrlen (shell));
|
814
|
2476 qxesprintf (faux_var, "SHELL=%s", shell);
|
|
2477 Vprocess_environment = Fcons (build_intstring (faux_var),
|
|
2478 Vprocess_environment);
|
|
2479 }
|
|
2480 #endif /* 0 */
|
|
2481
|
|
2482 Vshell_file_name = build_intstring (shell);
|
|
2483 }
|
|
2484 }
|
|
2485
|
428
|
2486 void
|
|
2487 syms_of_process (void)
|
|
2488 {
|
442
|
2489 INIT_LRECORD_IMPLEMENTATION (process);
|
|
2490
|
563
|
2491 DEFSYMBOL (Qprocessp);
|
|
2492 DEFSYMBOL (Qprocess_live_p);
|
|
2493 DEFSYMBOL (Qrun);
|
|
2494 DEFSYMBOL (Qstop);
|
|
2495 DEFSYMBOL (Qopen);
|
|
2496 DEFSYMBOL (Qclosed);
|
863
|
2497 #if 0
|
|
2498 /* see comment at Fprocess_readable_p */
|
|
2499 DEFSYMBOL (&Qprocess_readable_p);
|
|
2500 #endif
|
563
|
2501 DEFSYMBOL (Qtcp);
|
|
2502 DEFSYMBOL (Qudp);
|
428
|
2503
|
|
2504 #ifdef HAVE_MULTICAST
|
563
|
2505 DEFSYMBOL (Qmulticast); /* Used for occasional warnings */
|
428
|
2506 #endif
|
|
2507
|
563
|
2508 DEFERROR_STANDARD (Qprocess_error, Qio_error);
|
|
2509 DEFERROR_STANDARD (Qnetwork_error, Qio_error);
|
|
2510
|
428
|
2511 DEFSUBR (Fprocessp);
|
440
|
2512 DEFSUBR (Fprocess_live_p);
|
863
|
2513 #if 0
|
|
2514 /* see comment at Fprocess_readable_p */
|
|
2515 DEFSUBR (Fprocess_readable_p);
|
|
2516 #endif
|
428
|
2517 DEFSUBR (Fget_process);
|
|
2518 DEFSUBR (Fget_buffer_process);
|
|
2519 DEFSUBR (Fdelete_process);
|
|
2520 DEFSUBR (Fprocess_status);
|
|
2521 DEFSUBR (Fprocess_exit_status);
|
|
2522 DEFSUBR (Fprocess_id);
|
|
2523 DEFSUBR (Fprocess_name);
|
|
2524 DEFSUBR (Fprocess_tty_name);
|
|
2525 DEFSUBR (Fprocess_command);
|
859
|
2526 DEFSUBR (Fprocess_has_separate_stderr_p);
|
428
|
2527 DEFSUBR (Fset_process_buffer);
|
853
|
2528 DEFSUBR (Fset_process_stderr_buffer);
|
428
|
2529 DEFSUBR (Fprocess_buffer);
|
|
2530 DEFSUBR (Fprocess_mark);
|
853
|
2531 DEFSUBR (Fprocess_stderr_buffer);
|
|
2532 DEFSUBR (Fprocess_stderr_mark);
|
428
|
2533 DEFSUBR (Fset_process_filter);
|
|
2534 DEFSUBR (Fprocess_filter);
|
853
|
2535 DEFSUBR (Fset_process_stderr_filter);
|
|
2536 DEFSUBR (Fprocess_stderr_filter);
|
428
|
2537 DEFSUBR (Fset_process_window_size);
|
|
2538 DEFSUBR (Fset_process_sentinel);
|
|
2539 DEFSUBR (Fprocess_sentinel);
|
|
2540 DEFSUBR (Fprocess_kill_without_query);
|
|
2541 DEFSUBR (Fprocess_kill_without_query_p);
|
|
2542 DEFSUBR (Fprocess_list);
|
|
2543 DEFSUBR (Fstart_process_internal);
|
|
2544 #ifdef HAVE_SOCKETS
|
|
2545 DEFSUBR (Fopen_network_stream_internal);
|
|
2546 #ifdef HAVE_MULTICAST
|
|
2547 DEFSUBR (Fopen_multicast_group_internal);
|
|
2548 #endif /* HAVE_MULTICAST */
|
|
2549 #endif /* HAVE_SOCKETS */
|
|
2550 DEFSUBR (Fprocess_send_region);
|
|
2551 DEFSUBR (Fprocess_send_string);
|
442
|
2552 DEFSUBR (Fprocess_send_signal);
|
428
|
2553 DEFSUBR (Finterrupt_process);
|
|
2554 DEFSUBR (Fkill_process);
|
|
2555 DEFSUBR (Fquit_process);
|
|
2556 DEFSUBR (Fstop_process);
|
|
2557 DEFSUBR (Fcontinue_process);
|
|
2558 DEFSUBR (Fprocess_send_eof);
|
|
2559 DEFSUBR (Fsignal_process);
|
|
2560 /* DEFSUBR (Fprocess_connection); */
|
|
2561 DEFSUBR (Fprocess_input_coding_system);
|
|
2562 DEFSUBR (Fprocess_output_coding_system);
|
|
2563 DEFSUBR (Fset_process_input_coding_system);
|
|
2564 DEFSUBR (Fset_process_output_coding_system);
|
|
2565 DEFSUBR (Fprocess_coding_system);
|
|
2566 DEFSUBR (Fset_process_coding_system);
|
814
|
2567 DEFSUBR (Fgetenv);
|
428
|
2568 }
|
|
2569
|
|
2570 void
|
|
2571 vars_of_process (void)
|
|
2572 {
|
|
2573 Fprovide (intern ("subprocesses"));
|
|
2574 #ifdef HAVE_SOCKETS
|
|
2575 Fprovide (intern ("network-streams"));
|
|
2576 #ifdef HAVE_MULTICAST
|
|
2577 Fprovide (intern ("multicast"));
|
|
2578 #endif /* HAVE_MULTICAST */
|
|
2579 #endif /* HAVE_SOCKETS */
|
|
2580 staticpro (&Vprocess_list);
|
|
2581
|
|
2582 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes /*
|
|
2583 *Non-nil means delete processes immediately when they exit.
|
|
2584 nil means don't delete them until `list-processes' is run.
|
|
2585 */ );
|
|
2586
|
|
2587 delete_exited_processes = 1;
|
|
2588
|
442
|
2589 DEFVAR_CONST_LISP ("null-device", &Vnull_device /*
|
|
2590 Name of the null device, which differs from system to system.
|
|
2591 The null device is a filename that acts as a sink for arbitrary amounts of
|
|
2592 data, which is discarded, or as a source for a zero-length file.
|
|
2593 It is available on all the systems that we currently support, but with
|
|
2594 different names (typically either `/dev/null' or `nul').
|
|
2595
|
|
2596 Note that there is also a /dev/zero on most modern Unix versions (including
|
|
2597 Cygwin), which acts like /dev/null when used as a sink, but as a source
|
|
2598 it sends a non-ending stream of zero bytes. It's used most often along
|
|
2599 with memory-mapping. We don't provide a Lisp variable for this because
|
|
2600 the operations needing this are lower level than what ELisp programs
|
|
2601 typically do, and in any case no equivalent exists under native MS Windows.
|
|
2602 */ );
|
|
2603 Vnull_device = build_string (NULL_DEVICE);
|
|
2604
|
428
|
2605 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type /*
|
|
2606 Control type of device used to communicate with subprocesses.
|
|
2607 Values are nil to use a pipe, or t or `pty' to use a pty.
|
|
2608 The value has no effect if the system has no ptys or if all ptys are busy:
|
|
2609 then a pipe is used in any case.
|
|
2610 The value takes effect when `start-process' is called.
|
|
2611 */ );
|
|
2612 Vprocess_connection_type = Qt;
|
|
2613
|
|
2614 DEFVAR_BOOL ("windowed-process-io", &windowed_process_io /*
|
|
2615 Enables input/output on standard handles of a windowed process.
|
|
2616 When this variable is nil (the default), XEmacs does not attempt to read
|
|
2617 standard output handle of a windowed process. Instead, the process is
|
|
2618 immediately marked as exited immediately upon successful launching. This is
|
|
2619 done because normal windowed processes do not use standard I/O, as they are
|
|
2620 not connected to any console.
|
|
2621
|
|
2622 When launching a specially crafted windowed process, which expects to be
|
|
2623 launched by XEmacs, or by other program which pipes its standard input and
|
|
2624 output, this variable must be set to non-nil, in which case XEmacs will
|
|
2625 treat this process just like a console process.
|
|
2626
|
|
2627 NOTE: You should never set this variable, only bind it.
|
|
2628
|
|
2629 Only Windows processes can be "windowed" or "console". This variable has no
|
|
2630 effect on UNIX processes, because all UNIX processes are "console".
|
|
2631 */ );
|
|
2632 windowed_process_io = 0;
|
|
2633
|
771
|
2634 DEFVAR_INT ("debug-process-io", &debug_process_io /*
|
|
2635 If non-zero, display data sent to or received from a process.
|
|
2636 */ );
|
|
2637 debug_process_io = 0;
|
|
2638
|
|
2639 DEFVAR_LISP ("default-process-coding-system",
|
|
2640 &Vdefault_process_coding_system /*
|
|
2641 Cons of coding systems used for process I/O by default.
|
|
2642 The car part is used for reading (decoding) data from a process, and
|
|
2643 the cdr part is used for writing (encoding) data to a process.
|
|
2644 */ );
|
|
2645 /* This below will get its default set correctly in code-init.el. */
|
|
2646 Vdefault_process_coding_system = Fcons (Qundecided, Qnil);
|
|
2647
|
853
|
2648 DEFVAR_LISP ("default-network-coding-system",
|
|
2649 &Vdefault_network_coding_system /*
|
|
2650 Cons of coding systems used for network I/O by default.
|
|
2651 The car part is used for reading (decoding) data from a process, and
|
|
2652 the cdr part is used for writing (encoding) data to a process.
|
|
2653 */ );
|
|
2654 Vdefault_network_coding_system = Fcons (Qundecided, Qnil);
|
|
2655
|
428
|
2656 #ifdef PROCESS_IO_BLOCKING
|
|
2657 DEFVAR_LISP ("network-stream-blocking-port-list", &network_stream_blocking_port_list /*
|
|
2658 List of port numbers or port names to set a blocking I/O mode with connection.
|
862
|
2659 Nil value means to set a default (non-blocking) I/O mode.
|
428
|
2660 The value takes effect when `open-network-stream-internal' is called.
|
|
2661 */ );
|
|
2662 network_stream_blocking_port_list = Qnil;
|
|
2663 #endif /* PROCESS_IO_BLOCKING */
|
814
|
2664
|
|
2665 /* This function can GC */
|
|
2666 DEFVAR_LISP ("shell-file-name", &Vshell_file_name /*
|
|
2667 *File name to load inferior shells from.
|
|
2668 Initialized from the SHELL environment variable.
|
|
2669 */ );
|
428
|
2670
|
814
|
2671 DEFVAR_LISP ("process-environment", &Vprocess_environment /*
|
|
2672 List of environment variables for subprocesses to inherit.
|
|
2673 Each element should be a string of the form ENVVARNAME=VALUE.
|
|
2674 The environment which Emacs inherits is placed in this variable
|
|
2675 when Emacs starts.
|
|
2676 */ );
|
|
2677
|
|
2678 Vlisp_EXEC_SUFFIXES = build_string (EXEC_SUFFIXES);
|
|
2679 staticpro (&Vlisp_EXEC_SUFFIXES);
|
|
2680 }
|