wording
[bpt/emacs.git] / lispref / processes.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001,
4 @c 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/processes
7 @node Processes, Display, Abbrevs, Top
8 @chapter Processes
9 @cindex child process
10 @cindex parent process
11 @cindex subprocess
12 @cindex process
13
14 In the terminology of operating systems, a @dfn{process} is a space in
15 which a program can execute. Emacs runs in a process. Emacs Lisp
16 programs can invoke other programs in processes of their own. These are
17 called @dfn{subprocesses} or @dfn{child processes} of the Emacs process,
18 which is their @dfn{parent process}.
19
20 A subprocess of Emacs may be @dfn{synchronous} or @dfn{asynchronous},
21 depending on how it is created. When you create a synchronous
22 subprocess, the Lisp program waits for the subprocess to terminate
23 before continuing execution. When you create an asynchronous
24 subprocess, it can run in parallel with the Lisp program. This kind of
25 subprocess is represented within Emacs by a Lisp object which is also
26 called a ``process.'' Lisp programs can use this object to communicate
27 with the subprocess or to control it. For example, you can send
28 signals, obtain status information, receive output from the process, or
29 send input to it.
30
31 @defun processp object
32 This function returns @code{t} if @var{object} is a process,
33 @code{nil} otherwise.
34 @end defun
35
36 @menu
37 * Subprocess Creation:: Functions that start subprocesses.
38 * Shell Arguments:: Quoting an argument to pass it to a shell.
39 * Synchronous Processes:: Details of using synchronous subprocesses.
40 * Asynchronous Processes:: Starting up an asynchronous subprocess.
41 * Deleting Processes:: Eliminating an asynchronous subprocess.
42 * Process Information:: Accessing run-status and other attributes.
43 * Input to Processes:: Sending input to an asynchronous subprocess.
44 * Signals to Processes:: Stopping, continuing or interrupting
45 an asynchronous subprocess.
46 * Output from Processes:: Collecting output from an asynchronous subprocess.
47 * Sentinels:: Sentinels run when process run-status changes.
48 * Query Before Exit:: Whether to query if exiting will kill a process.
49 * Transaction Queues:: Transaction-based communication with subprocesses.
50 * Network:: Opening network connections.
51 * Network Servers:: Network servers let Emacs accept net connections.
52 * Datagrams:: UDP network connections.
53 * Low-Level Network:: Lower-level but more general function
54 to create connections and servers.
55 * Misc Network:: Additional relevant functions for network connections.
56 * Byte Packing:: Using bindat to pack and unpack binary data.
57 @end menu
58
59 @node Subprocess Creation
60 @section Functions that Create Subprocesses
61
62 There are three functions that create a new subprocess in which to run
63 a program. One of them, @code{start-process}, creates an asynchronous
64 process and returns a process object (@pxref{Asynchronous Processes}).
65 The other two, @code{call-process} and @code{call-process-region},
66 create a synchronous process and do not return a process object
67 (@pxref{Synchronous Processes}).
68
69 Synchronous and asynchronous processes are explained in the following
70 sections. Since the three functions are all called in a similar
71 fashion, their common arguments are described here.
72
73 @cindex execute program
74 @cindex @code{PATH} environment variable
75 @cindex @code{HOME} environment variable
76 In all cases, the function's @var{program} argument specifies the
77 program to be run. An error is signaled if the file is not found or
78 cannot be executed. If the file name is relative, the variable
79 @code{exec-path} contains a list of directories to search. Emacs
80 initializes @code{exec-path} when it starts up, based on the value of
81 the environment variable @code{PATH}. The standard file name
82 constructs, @samp{~}, @samp{.}, and @samp{..}, are interpreted as
83 usual in @code{exec-path}, but environment variable substitutions
84 (@samp{$HOME}, etc.) are not recognized; use
85 @code{substitute-in-file-name} to perform them (@pxref{File Name
86 Expansion}). @code{nil} in this list refers to
87 @code{default-directory}.
88
89 Executing a program can also try adding suffixes to the specified
90 name:
91
92 @defvar exec-suffixes
93 This variable is a list of suffixes (strings) to try adding to the
94 specified program file name. The list should include @code{""} if you
95 want the name to be tried exactly as specified. The default value is
96 system-dependent.
97 @end defvar
98
99 @strong{Please note:} The argument @var{program} contains only the
100 name of the program; it may not contain any command-line arguments. You
101 must use @var{args} to provide those.
102
103 Each of the subprocess-creating functions has a @var{buffer-or-name}
104 argument which specifies where the standard output from the program will
105 go. It should be a buffer or a buffer name; if it is a buffer name,
106 that will create the buffer if it does not already exist. It can also
107 be @code{nil}, which says to discard the output unless a filter function
108 handles it. (@xref{Filter Functions}, and @ref{Read and Print}.)
109 Normally, you should avoid having multiple processes send output to the
110 same buffer because their output would be intermixed randomly.
111
112 @cindex program arguments
113 All three of the subprocess-creating functions have a @code{&rest}
114 argument, @var{args}. The @var{args} must all be strings, and they are
115 supplied to @var{program} as separate command line arguments. Wildcard
116 characters and other shell constructs have no special meanings in these
117 strings, since the strings are passed directly to the specified program.
118
119 The subprocess gets its current directory from the value of
120 @code{default-directory} (@pxref{File Name Expansion}).
121
122 @cindex environment variables, subprocesses
123 The subprocess inherits its environment from Emacs, but you can
124 specify overrides for it with @code{process-environment}. @xref{System
125 Environment}.
126
127 @defvar exec-directory
128 @pindex movemail
129 The value of this variable is a string, the name of a directory that
130 contains programs that come with GNU Emacs, programs intended for Emacs
131 to invoke. The program @code{movemail} is an example of such a program;
132 Rmail uses it to fetch new mail from an inbox.
133 @end defvar
134
135 @defopt exec-path
136 The value of this variable is a list of directories to search for
137 programs to run in subprocesses. Each element is either the name of a
138 directory (i.e., a string), or @code{nil}, which stands for the default
139 directory (which is the value of @code{default-directory}).
140 @cindex program directories
141
142 The value of @code{exec-path} is used by @code{call-process} and
143 @code{start-process} when the @var{program} argument is not an absolute
144 file name.
145 @end defopt
146
147 @node Shell Arguments
148 @section Shell Arguments
149 @cindex pass arguments to shell commands
150
151 Lisp programs sometimes need to run a shell and give it a command
152 that contains file names that were specified by the user. These
153 programs ought to be able to support any valid file name. But the shell
154 gives special treatment to certain characters, and if these characters
155 occur in the file name, they will confuse the shell. To handle these
156 characters, use the function @code{shell-quote-argument}:
157
158 @defun shell-quote-argument argument
159 This function returns a string which represents, in shell syntax,
160 an argument whose actual contents are @var{argument}. It should
161 work reliably to concatenate the return value into a shell command
162 and then pass it to a shell for execution.
163
164 Precisely what this function does depends on your operating system. The
165 function is designed to work with the syntax of your system's standard
166 shell; if you use an unusual shell, you will need to redefine this
167 function.
168
169 @example
170 ;; @r{This example shows the behavior on GNU and Unix systems.}
171 (shell-quote-argument "foo > bar")
172 @result{} "foo\\ \\>\\ bar"
173
174 ;; @r{This example shows the behavior on MS-DOS and MS-Windows.}
175 (shell-quote-argument "foo > bar")
176 @result{} "\"foo > bar\""
177 @end example
178
179 Here's an example of using @code{shell-quote-argument} to construct
180 a shell command:
181
182 @example
183 (concat "diff -c "
184 (shell-quote-argument oldfile)
185 " "
186 (shell-quote-argument newfile))
187 @end example
188 @end defun
189
190 @node Synchronous Processes
191 @section Creating a Synchronous Process
192 @cindex synchronous subprocess
193
194 After a @dfn{synchronous process} is created, Emacs waits for the
195 process to terminate before continuing. Starting Dired on GNU or
196 Unix@footnote{On other systems, Emacs uses a Lisp emulation of
197 @code{ls}; see @ref{Contents of Directories}.} is an example of this: it
198 runs @code{ls} in a synchronous process, then modifies the output
199 slightly. Because the process is synchronous, the entire directory
200 listing arrives in the buffer before Emacs tries to do anything with it.
201
202 While Emacs waits for the synchronous subprocess to terminate, the
203 user can quit by typing @kbd{C-g}. The first @kbd{C-g} tries to kill
204 the subprocess with a @code{SIGINT} signal; but it waits until the
205 subprocess actually terminates before quitting. If during that time the
206 user types another @kbd{C-g}, that kills the subprocess instantly with
207 @code{SIGKILL} and quits immediately (except on MS-DOS, where killing
208 other processes doesn't work). @xref{Quitting}.
209
210 The synchronous subprocess functions return an indication of how the
211 process terminated.
212
213 The output from a synchronous subprocess is generally decoded using a
214 coding system, much like text read from a file. The input sent to a
215 subprocess by @code{call-process-region} is encoded using a coding
216 system, much like text written into a file. @xref{Coding Systems}.
217
218 @defun call-process program &optional infile destination display &rest args
219 This function calls @var{program} in a separate process and waits for
220 it to finish.
221
222 The standard input for the process comes from file @var{infile} if
223 @var{infile} is not @code{nil}, and from the null device otherwise.
224 The argument @var{destination} says where to put the process output.
225 Here are the possibilities:
226
227 @table @asis
228 @item a buffer
229 Insert the output in that buffer, before point. This includes both the
230 standard output stream and the standard error stream of the process.
231
232 @item a string
233 Insert the output in a buffer with that name, before point.
234
235 @item @code{t}
236 Insert the output in the current buffer, before point.
237
238 @item @code{nil}
239 Discard the output.
240
241 @item 0
242 Discard the output, and return @code{nil} immediately without waiting
243 for the subprocess to finish.
244
245 In this case, the process is not truly synchronous, since it can run in
246 parallel with Emacs; but you can think of it as synchronous in that
247 Emacs is essentially finished with the subprocess as soon as this
248 function returns.
249
250 MS-DOS doesn't support asynchronous subprocesses, so this option doesn't
251 work there.
252
253 @item @code{(@var{real-destination} @var{error-destination})}
254 Keep the standard output stream separate from the standard error stream;
255 deal with the ordinary output as specified by @var{real-destination},
256 and dispose of the error output according to @var{error-destination}.
257 If @var{error-destination} is @code{nil}, that means to discard the
258 error output, @code{t} means mix it with the ordinary output, and a
259 string specifies a file name to redirect error output into.
260
261 You can't directly specify a buffer to put the error output in; that is
262 too difficult to implement. But you can achieve this result by sending
263 the error output to a temporary file and then inserting the file into a
264 buffer.
265 @end table
266
267 If @var{display} is non-@code{nil}, then @code{call-process} redisplays
268 the buffer as output is inserted. (However, if the coding system chosen
269 for decoding output is @code{undecided}, meaning deduce the encoding
270 from the actual data, then redisplay sometimes cannot continue once
271 non-@acronym{ASCII} characters are encountered. There are fundamental
272 reasons why it is hard to fix this; see @ref{Output from Processes}.)
273
274 Otherwise the function @code{call-process} does no redisplay, and the
275 results become visible on the screen only when Emacs redisplays that
276 buffer in the normal course of events.
277
278 The remaining arguments, @var{args}, are strings that specify command
279 line arguments for the program.
280
281 The value returned by @code{call-process} (unless you told it not to
282 wait) indicates the reason for process termination. A number gives the
283 exit status of the subprocess; 0 means success, and any other value
284 means failure. If the process terminated with a signal,
285 @code{call-process} returns a string describing the signal.
286
287 In the examples below, the buffer @samp{foo} is current.
288
289 @smallexample
290 @group
291 (call-process "pwd" nil t)
292 @result{} 0
293
294 ---------- Buffer: foo ----------
295 /usr/user/lewis/manual
296 ---------- Buffer: foo ----------
297 @end group
298
299 @group
300 (call-process "grep" nil "bar" nil "lewis" "/etc/passwd")
301 @result{} 0
302
303 ---------- Buffer: bar ----------
304 lewis:5LTsHm66CSWKg:398:21:Bil Lewis:/user/lewis:/bin/csh
305
306 ---------- Buffer: bar ----------
307 @end group
308 @end smallexample
309
310 Here is a good example of the use of @code{call-process}, which used to
311 be found in the definition of @code{insert-directory}:
312
313 @smallexample
314 @group
315 (call-process insert-directory-program nil t nil @var{switches}
316 (if full-directory-p
317 (concat (file-name-as-directory file) ".")
318 file))
319 @end group
320 @end smallexample
321 @end defun
322
323 @defun process-file program &optional infile buffer display &rest args
324 This function processes files synchronously in a separate process. It
325 is similar to @code{call-process} but may invoke a file handler based
326 on the value of the variable @code{default-directory}. The current
327 working directory of the subprocess is @code{default-directory}.
328
329 The arguments are handled in almost the same way as for
330 @code{call-process}, with the following differences:
331
332 Some file handlers may not support all combinations and forms of the
333 arguments @var{infile}, @var{buffer}, and @var{display}. For example,
334 some file handlers might behave as if @var{display} were @code{nil},
335 regardless of the value actually passed. As another example, some
336 file handlers might not support separating standard output and error
337 output by way of the @var{buffer} argument.
338
339 If a file handler is invoked, it determines the program to run based
340 on the first argument @var{program}. For instance, consider that a
341 handler for remote files is invoked. Then the path that is used for
342 searching the program might be different than @code{exec-path}.
343
344 The second argument @var{infile} may invoke a file handler. The file
345 handler could be different from the handler chosen for the
346 @code{process-file} function itself. (For example,
347 @code{default-directory} could be on a remote host, whereas
348 @var{infile} is on another remote host. Or @code{default-directory}
349 could be non-special, whereas @var{infile} is on a remote host.)
350
351 If @var{buffer} has the form @code{(@var{real-destination}
352 @var{error-destination})}, and @var{error-destination} names a file,
353 then the same remarks as for @var{infile} apply.
354
355 The remaining arguments (@var{args}) will be passed to the process
356 verbatim. Emacs is not involved in processing file names that are
357 present in @var{args}. To avoid confusion, it may be best to avoid
358 absolute file names in @var{args}, but rather to specify all file
359 names as relative to @code{default-directory}. The function
360 @code{file-relative-name} is useful for constructing such relative
361 file names.
362 @end defun
363
364 @defun call-process-region start end program &optional delete destination display &rest args
365 This function sends the text from @var{start} to @var{end} as
366 standard input to a process running @var{program}. It deletes the text
367 sent if @var{delete} is non-@code{nil}; this is useful when
368 @var{destination} is @code{t}, to insert the output in the current
369 buffer in place of the input.
370
371 The arguments @var{destination} and @var{display} control what to do
372 with the output from the subprocess, and whether to update the display
373 as it comes in. For details, see the description of
374 @code{call-process}, above. If @var{destination} is the integer 0,
375 @code{call-process-region} discards the output and returns @code{nil}
376 immediately, without waiting for the subprocess to finish (this only
377 works if asynchronous subprocesses are supported).
378
379 The remaining arguments, @var{args}, are strings that specify command
380 line arguments for the program.
381
382 The return value of @code{call-process-region} is just like that of
383 @code{call-process}: @code{nil} if you told it to return without
384 waiting; otherwise, a number or string which indicates how the
385 subprocess terminated.
386
387 In the following example, we use @code{call-process-region} to run the
388 @code{cat} utility, with standard input being the first five characters
389 in buffer @samp{foo} (the word @samp{input}). @code{cat} copies its
390 standard input into its standard output. Since the argument
391 @var{destination} is @code{t}, this output is inserted in the current
392 buffer.
393
394 @smallexample
395 @group
396 ---------- Buffer: foo ----------
397 input@point{}
398 ---------- Buffer: foo ----------
399 @end group
400
401 @group
402 (call-process-region 1 6 "cat" nil t)
403 @result{} 0
404
405 ---------- Buffer: foo ----------
406 inputinput@point{}
407 ---------- Buffer: foo ----------
408 @end group
409 @end smallexample
410
411 The @code{shell-command-on-region} command uses
412 @code{call-process-region} like this:
413
414 @smallexample
415 @group
416 (call-process-region
417 start end
418 shell-file-name ; @r{Name of program.}
419 nil ; @r{Do not delete region.}
420 buffer ; @r{Send output to @code{buffer}.}
421 nil ; @r{No redisplay during output.}
422 "-c" command) ; @r{Arguments for the shell.}
423 @end group
424 @end smallexample
425 @end defun
426
427 @defun call-process-shell-command command &optional infile destination display &rest args
428 This function executes the shell command @var{command} synchronously
429 in a separate process. The final arguments @var{args} are additional
430 arguments to add at the end of @var{command}. The other arguments
431 are handled as in @code{call-process}.
432 @end defun
433
434 @defun shell-command-to-string command
435 This function executes @var{command} (a string) as a shell command,
436 then returns the command's output as a string.
437 @end defun
438
439 @node Asynchronous Processes
440 @section Creating an Asynchronous Process
441 @cindex asynchronous subprocess
442
443 After an @dfn{asynchronous process} is created, Emacs and the subprocess
444 both continue running immediately. The process thereafter runs
445 in parallel with Emacs, and the two can communicate with each other
446 using the functions described in the following sections. However,
447 communication is only partially asynchronous: Emacs sends data to the
448 process only when certain functions are called, and Emacs accepts data
449 from the process only when Emacs is waiting for input or for a time
450 delay.
451
452 Here we describe how to create an asynchronous process.
453
454 @defun start-process name buffer-or-name program &rest args
455 This function creates a new asynchronous subprocess and starts the
456 program @var{program} running in it. It returns a process object that
457 stands for the new subprocess in Lisp. The argument @var{name}
458 specifies the name for the process object; if a process with this name
459 already exists, then @var{name} is modified (by appending @samp{<1>},
460 etc.) to be unique. The buffer @var{buffer-or-name} is the buffer to
461 associate with the process.
462
463 The remaining arguments, @var{args}, are strings that specify command
464 line arguments for the program.
465
466 In the example below, the first process is started and runs (rather,
467 sleeps) for 100 seconds. Meanwhile, the second process is started, and
468 given the name @samp{my-process<1>} for the sake of uniqueness. It
469 inserts the directory listing at the end of the buffer @samp{foo},
470 before the first process finishes. Then it finishes, and a message to
471 that effect is inserted in the buffer. Much later, the first process
472 finishes, and another message is inserted in the buffer for it.
473
474 @smallexample
475 @group
476 (start-process "my-process" "foo" "sleep" "100")
477 @result{} #<process my-process>
478 @end group
479
480 @group
481 (start-process "my-process" "foo" "ls" "-l" "/user/lewis/bin")
482 @result{} #<process my-process<1>>
483
484 ---------- Buffer: foo ----------
485 total 2
486 lrwxrwxrwx 1 lewis 14 Jul 22 10:12 gnuemacs --> /emacs
487 -rwxrwxrwx 1 lewis 19 Jul 30 21:02 lemon
488
489 Process my-process<1> finished
490
491 Process my-process finished
492 ---------- Buffer: foo ----------
493 @end group
494 @end smallexample
495 @end defun
496
497 @defun start-process-shell-command name buffer-or-name command &rest command-args
498 This function is like @code{start-process} except that it uses a shell
499 to execute the specified command. The argument @var{command} is a shell
500 command name, and @var{command-args} are the arguments for the shell
501 command. The variable @code{shell-file-name} specifies which shell to
502 use.
503
504 The point of running a program through the shell, rather than directly
505 with @code{start-process}, is so that you can employ shell features such
506 as wildcards in the arguments. It follows that if you include an
507 arbitrary user-specified arguments in the command, you should quote it
508 with @code{shell-quote-argument} first, so that any special shell
509 characters do @emph{not} have their special shell meanings. @xref{Shell
510 Arguments}.
511 @end defun
512
513 @defvar process-connection-type
514 @cindex pipes
515 @cindex @acronym{PTY}s
516 This variable controls the type of device used to communicate with
517 asynchronous subprocesses. If it is non-@code{nil}, then @acronym{PTY}s are
518 used, when available. Otherwise, pipes are used.
519
520 @acronym{PTY}s are usually preferable for processes visible to the user, as
521 in Shell mode, because they allow job control (@kbd{C-c}, @kbd{C-z},
522 etc.) to work between the process and its children, whereas pipes do
523 not. For subprocesses used for internal purposes by programs, it is
524 often better to use a pipe, because they are more efficient. In
525 addition, the total number of @acronym{PTY}s is limited on many systems and
526 it is good not to waste them.
527
528 The value of @code{process-connection-type} takes effect when
529 @code{start-process} is called. So you can specify how to communicate
530 with one subprocess by binding the variable around the call to
531 @code{start-process}.
532
533 @smallexample
534 @group
535 (let ((process-connection-type nil)) ; @r{Use a pipe.}
536 (start-process @dots{}))
537 @end group
538 @end smallexample
539
540 To determine whether a given subprocess actually got a pipe or a
541 @acronym{PTY}, use the function @code{process-tty-name} (@pxref{Process
542 Information}).
543 @end defvar
544
545 @node Deleting Processes
546 @section Deleting Processes
547 @cindex deleting processes
548
549 @dfn{Deleting a process} disconnects Emacs immediately from the
550 subprocess. Processes are deleted automatically after they terminate,
551 but not necessarily right away. You can delete a process explicitly
552 at any time. If you delete a terminated process explicitly before it
553 is deleted automatically, no harm results. Deleting a running
554 process sends a signal to terminate it (and its child processes if
555 any), and calls the process sentinel if it has one. @xref{Sentinels}.
556
557 When a process is deleted, the process object itself continues to
558 exist as long as other Lisp objects point to it. All the Lisp
559 primitives that work on process objects accept deleted processes, but
560 those that do I/O or send signals will report an error. The process
561 mark continues to point to the same place as before, usually into a
562 buffer where output from the process was being inserted.
563
564 @defopt delete-exited-processes
565 This variable controls automatic deletion of processes that have
566 terminated (due to calling @code{exit} or to a signal). If it is
567 @code{nil}, then they continue to exist until the user runs
568 @code{list-processes}. Otherwise, they are deleted immediately after
569 they exit.
570 @end defopt
571
572 @defun delete-process process
573 This function deletes a process, killing it with a @code{SIGKILL}
574 signal. The argument may be a process, the name of a process, a
575 buffer, or the name of a buffer. (A buffer or buffer-name stands for
576 the process that @code{get-buffer-process} returns.) Calling
577 @code{delete-process} on a running process terminates it, updates the
578 process status, and runs the sentinel (if any) immediately. If the
579 process has already terminated, calling @code{delete-process} has no
580 effect on its status, or on the running of its sentinel (which will
581 happen sooner or later).
582
583 @smallexample
584 @group
585 (delete-process "*shell*")
586 @result{} nil
587 @end group
588 @end smallexample
589 @end defun
590
591 @node Process Information
592 @section Process Information
593
594 Several functions return information about processes.
595 @code{list-processes} is provided for interactive use.
596
597 @deffn Command list-processes &optional query-only
598 This command displays a listing of all living processes. In addition,
599 it finally deletes any process whose status was @samp{Exited} or
600 @samp{Signaled}. It returns @code{nil}.
601
602 If @var{query-only} is non-@code{nil} then it lists only processes
603 whose query flag is non-@code{nil}. @xref{Query Before Exit}.
604 @end deffn
605
606 @defun process-list
607 This function returns a list of all processes that have not been deleted.
608
609 @smallexample
610 @group
611 (process-list)
612 @result{} (#<process display-time> #<process shell>)
613 @end group
614 @end smallexample
615 @end defun
616
617 @defun get-process name
618 This function returns the process named @var{name}, or @code{nil} if
619 there is none. An error is signaled if @var{name} is not a string.
620
621 @smallexample
622 @group
623 (get-process "shell")
624 @result{} #<process shell>
625 @end group
626 @end smallexample
627 @end defun
628
629 @defun process-command process
630 This function returns the command that was executed to start
631 @var{process}. This is a list of strings, the first string being the
632 program executed and the rest of the strings being the arguments that
633 were given to the program.
634
635 @smallexample
636 @group
637 (process-command (get-process "shell"))
638 @result{} ("/bin/csh" "-i")
639 @end group
640 @end smallexample
641 @end defun
642
643 @defun process-id process
644 This function returns the @acronym{PID} of @var{process}. This is an
645 integer that distinguishes the process @var{process} from all other
646 processes running on the same computer at the current time. The
647 @acronym{PID} of a process is chosen by the operating system kernel when the
648 process is started and remains constant as long as the process exists.
649 @end defun
650
651 @defun process-name process
652 This function returns the name of @var{process}.
653 @end defun
654
655 @defun process-status process-name
656 This function returns the status of @var{process-name} as a symbol.
657 The argument @var{process-name} must be a process, a buffer, a
658 process name (string) or a buffer name (string).
659
660 The possible values for an actual subprocess are:
661
662 @table @code
663 @item run
664 for a process that is running.
665 @item stop
666 for a process that is stopped but continuable.
667 @item exit
668 for a process that has exited.
669 @item signal
670 for a process that has received a fatal signal.
671 @item open
672 for a network connection that is open.
673 @item closed
674 for a network connection that is closed. Once a connection
675 is closed, you cannot reopen it, though you might be able to open
676 a new connection to the same place.
677 @item connect
678 for a non-blocking connection that is waiting to complete.
679 @item failed
680 for a non-blocking connection that has failed to complete.
681 @item listen
682 for a network server that is listening.
683 @item nil
684 if @var{process-name} is not the name of an existing process.
685 @end table
686
687 @smallexample
688 @group
689 (process-status "shell")
690 @result{} run
691 @end group
692 @group
693 (process-status (get-buffer "*shell*"))
694 @result{} run
695 @end group
696 @group
697 x
698 @result{} #<process xx<1>>
699 (process-status x)
700 @result{} exit
701 @end group
702 @end smallexample
703
704 For a network connection, @code{process-status} returns one of the symbols
705 @code{open} or @code{closed}. The latter means that the other side
706 closed the connection, or Emacs did @code{delete-process}.
707 @end defun
708
709 @defun process-exit-status process
710 This function returns the exit status of @var{process} or the signal
711 number that killed it. (Use the result of @code{process-status} to
712 determine which of those it is.) If @var{process} has not yet
713 terminated, the value is 0.
714 @end defun
715
716 @defun process-tty-name process
717 This function returns the terminal name that @var{process} is using for
718 its communication with Emacs---or @code{nil} if it is using pipes
719 instead of a terminal (see @code{process-connection-type} in
720 @ref{Asynchronous Processes}).
721 @end defun
722
723 @defun process-coding-system process
724 @anchor{Coding systems for a subprocess}
725 This function returns a cons cell describing the coding systems in use
726 for decoding output from @var{process} and for encoding input to
727 @var{process} (@pxref{Coding Systems}). The value has this form:
728
729 @example
730 (@var{coding-system-for-decoding} . @var{coding-system-for-encoding})
731 @end example
732 @end defun
733
734 @defun set-process-coding-system process &optional decoding-system encoding-system
735 This function specifies the coding systems to use for subsequent output
736 from and input to @var{process}. It will use @var{decoding-system} to
737 decode subprocess output, and @var{encoding-system} to encode subprocess
738 input.
739 @end defun
740
741 Every process also has a property list that you can use to store
742 miscellaneous values associated with the process.
743
744 @defun process-get process propname
745 This function returns the value of the @var{propname} property
746 of @var{process}.
747 @end defun
748
749 @defun process-put process propname value
750 This function sets the value of the @var{propname} property
751 of @var{process} to @var{value}.
752 @end defun
753
754 @defun process-plist process
755 This function returns the process plist of @var{process}.
756 @end defun
757
758 @defun set-process-plist process plist
759 This function sets the process plist of @var{process} to @var{plist}.
760 @end defun
761
762 @node Input to Processes
763 @section Sending Input to Processes
764 @cindex process input
765
766 Asynchronous subprocesses receive input when it is sent to them by
767 Emacs, which is done with the functions in this section. You must
768 specify the process to send input to, and the input data to send. The
769 data appears on the ``standard input'' of the subprocess.
770
771 Some operating systems have limited space for buffered input in a
772 @acronym{PTY}. On these systems, Emacs sends an @acronym{EOF}
773 periodically amidst the other characters, to force them through. For
774 most programs, these @acronym{EOF}s do no harm.
775
776 Subprocess input is normally encoded using a coding system before the
777 subprocess receives it, much like text written into a file. You can use
778 @code{set-process-coding-system} to specify which coding system to use
779 (@pxref{Process Information}). Otherwise, the coding system comes from
780 @code{coding-system-for-write}, if that is non-@code{nil}; or else from
781 the defaulting mechanism (@pxref{Default Coding Systems}).
782
783 Sometimes the system is unable to accept input for that process,
784 because the input buffer is full. When this happens, the send functions
785 wait a short while, accepting output from subprocesses, and then try
786 again. This gives the subprocess a chance to read more of its pending
787 input and make space in the buffer. It also allows filters, sentinels
788 and timers to run---so take account of that in writing your code.
789
790 In these functions, the @var{process} argument can be a process or
791 the name of a process, or a buffer or buffer name (which stands
792 for a process via @code{get-buffer-process}). @code{nil} means
793 the current buffer's process.
794
795 @defun process-send-string process string
796 This function sends @var{process} the contents of @var{string} as
797 standard input. If it is @code{nil}, the current buffer's process is used.
798
799 The function returns @code{nil}.
800
801 @smallexample
802 @group
803 (process-send-string "shell<1>" "ls\n")
804 @result{} nil
805 @end group
806
807
808 @group
809 ---------- Buffer: *shell* ----------
810 ...
811 introduction.texi syntax-tables.texi~
812 introduction.texi~ text.texi
813 introduction.txt text.texi~
814 ...
815 ---------- Buffer: *shell* ----------
816 @end group
817 @end smallexample
818 @end defun
819
820 @defun process-send-region process start end
821 This function sends the text in the region defined by @var{start} and
822 @var{end} as standard input to @var{process}.
823
824 An error is signaled unless both @var{start} and @var{end} are
825 integers or markers that indicate positions in the current buffer. (It
826 is unimportant which number is larger.)
827 @end defun
828
829 @defun process-send-eof &optional process
830 This function makes @var{process} see an end-of-file in its
831 input. The @acronym{EOF} comes after any text already sent to it.
832
833 The function returns @var{process}.
834
835 @smallexample
836 @group
837 (process-send-eof "shell")
838 @result{} "shell"
839 @end group
840 @end smallexample
841 @end defun
842
843 @defun process-running-child-p process
844 This function will tell you whether a subprocess has given control of
845 its terminal to its own child process. The value is @code{t} if this is
846 true, or if Emacs cannot tell; it is @code{nil} if Emacs can be certain
847 that this is not so.
848 @end defun
849
850 @node Signals to Processes
851 @section Sending Signals to Processes
852 @cindex process signals
853 @cindex sending signals
854 @cindex signals
855
856 @dfn{Sending a signal} to a subprocess is a way of interrupting its
857 activities. There are several different signals, each with its own
858 meaning. The set of signals and their names is defined by the operating
859 system. For example, the signal @code{SIGINT} means that the user has
860 typed @kbd{C-c}, or that some analogous thing has happened.
861
862 Each signal has a standard effect on the subprocess. Most signals
863 kill the subprocess, but some stop or resume execution instead. Most
864 signals can optionally be handled by programs; if the program handles
865 the signal, then we can say nothing in general about its effects.
866
867 You can send signals explicitly by calling the functions in this
868 section. Emacs also sends signals automatically at certain times:
869 killing a buffer sends a @code{SIGHUP} signal to all its associated
870 processes; killing Emacs sends a @code{SIGHUP} signal to all remaining
871 processes. (@code{SIGHUP} is a signal that usually indicates that the
872 user hung up the phone.)
873
874 Each of the signal-sending functions takes two optional arguments:
875 @var{process} and @var{current-group}.
876
877 The argument @var{process} must be either a process, a process
878 name, a buffer, a buffer name, or @code{nil}. A buffer or buffer name
879 stands for a process through @code{get-buffer-process}. @code{nil}
880 stands for the process associated with the current buffer. An error
881 is signaled if @var{process} does not identify a process.
882
883 The argument @var{current-group} is a flag that makes a difference
884 when you are running a job-control shell as an Emacs subprocess. If it
885 is non-@code{nil}, then the signal is sent to the current process-group
886 of the terminal that Emacs uses to communicate with the subprocess. If
887 the process is a job-control shell, this means the shell's current
888 subjob. If it is @code{nil}, the signal is sent to the process group of
889 the immediate subprocess of Emacs. If the subprocess is a job-control
890 shell, this is the shell itself.
891
892 The flag @var{current-group} has no effect when a pipe is used to
893 communicate with the subprocess, because the operating system does not
894 support the distinction in the case of pipes. For the same reason,
895 job-control shells won't work when a pipe is used. See
896 @code{process-connection-type} in @ref{Asynchronous Processes}.
897
898 @defun interrupt-process &optional process current-group
899 This function interrupts the process @var{process} by sending the
900 signal @code{SIGINT}. Outside of Emacs, typing the ``interrupt
901 character'' (normally @kbd{C-c} on some systems, and @code{DEL} on
902 others) sends this signal. When the argument @var{current-group} is
903 non-@code{nil}, you can think of this function as ``typing @kbd{C-c}''
904 on the terminal by which Emacs talks to the subprocess.
905 @end defun
906
907 @defun kill-process &optional process current-group
908 This function kills the process @var{process} by sending the
909 signal @code{SIGKILL}. This signal kills the subprocess immediately,
910 and cannot be handled by the subprocess.
911 @end defun
912
913 @defun quit-process &optional process current-group
914 This function sends the signal @code{SIGQUIT} to the process
915 @var{process}. This signal is the one sent by the ``quit
916 character'' (usually @kbd{C-b} or @kbd{C-\}) when you are not inside
917 Emacs.
918 @end defun
919
920 @defun stop-process &optional process current-group
921 This function stops the process @var{process} by sending the
922 signal @code{SIGTSTP}. Use @code{continue-process} to resume its
923 execution.
924
925 Outside of Emacs, on systems with job control, the ``stop character''
926 (usually @kbd{C-z}) normally sends this signal. When
927 @var{current-group} is non-@code{nil}, you can think of this function as
928 ``typing @kbd{C-z}'' on the terminal Emacs uses to communicate with the
929 subprocess.
930 @end defun
931
932 @defun continue-process &optional process current-group
933 This function resumes execution of the process @var{process} by sending
934 it the signal @code{SIGCONT}. This presumes that @var{process} was
935 stopped previously.
936 @end defun
937
938 @c Emacs 19 feature
939 @defun signal-process process signal
940 This function sends a signal to process @var{process}. The argument
941 @var{signal} specifies which signal to send; it should be an integer.
942
943 The @var{process} argument can be a system process @acronym{ID}; that
944 allows you to send signals to processes that are not children of
945 Emacs.
946 @end defun
947
948 @node Output from Processes
949 @section Receiving Output from Processes
950 @cindex process output
951 @cindex output from processes
952
953 There are two ways to receive the output that a subprocess writes to
954 its standard output stream. The output can be inserted in a buffer,
955 which is called the associated buffer of the process, or a function
956 called the @dfn{filter function} can be called to act on the output. If
957 the process has no buffer and no filter function, its output is
958 discarded.
959
960 When a subprocess terminates, Emacs reads any pending output,
961 then stops reading output from that subprocess. Therefore, if the
962 subprocess has children that are still live and still producing
963 output, Emacs won't receive that output.
964
965 Output from a subprocess can arrive only while Emacs is waiting: when
966 reading terminal input, in @code{sit-for} and @code{sleep-for}
967 (@pxref{Waiting}), and in @code{accept-process-output} (@pxref{Accepting
968 Output}). This minimizes the problem of timing errors that usually
969 plague parallel programming. For example, you can safely create a
970 process and only then specify its buffer or filter function; no output
971 can arrive before you finish, if the code in between does not call any
972 primitive that waits.
973
974 @defvar process-adaptive-read-buffering
975 On some systems, when Emacs reads the output from a subprocess, the
976 output data is read in very small blocks, potentially resulting in
977 very poor performance. This behavior can be remedied to some extent
978 by setting the variable @var{process-adaptive-read-buffering} to a
979 non-@code{nil} value (the default), as it will automatically delay reading
980 from such processes, thus allowing them to produce more output before
981 Emacs tries to read it.
982 @end defvar
983
984 It is impossible to separate the standard output and standard error
985 streams of the subprocess, because Emacs normally spawns the subprocess
986 inside a pseudo-TTY, and a pseudo-TTY has only one output channel. If
987 you want to keep the output to those streams separate, you should
988 redirect one of them to a file---for example, by using an appropriate
989 shell command.
990
991 @menu
992 * Process Buffers:: If no filter, output is put in a buffer.
993 * Filter Functions:: Filter functions accept output from the process.
994 * Decoding Output:: Filters can get unibyte or multibyte strings.
995 * Accepting Output:: How to wait until process output arrives.
996 @end menu
997
998 @node Process Buffers
999 @subsection Process Buffers
1000
1001 A process can (and usually does) have an @dfn{associated buffer},
1002 which is an ordinary Emacs buffer that is used for two purposes: storing
1003 the output from the process, and deciding when to kill the process. You
1004 can also use the buffer to identify a process to operate on, since in
1005 normal practice only one process is associated with any given buffer.
1006 Many applications of processes also use the buffer for editing input to
1007 be sent to the process, but this is not built into Emacs Lisp.
1008
1009 Unless the process has a filter function (@pxref{Filter Functions}),
1010 its output is inserted in the associated buffer. The position to insert
1011 the output is determined by the @code{process-mark}, which is then
1012 updated to point to the end of the text just inserted. Usually, but not
1013 always, the @code{process-mark} is at the end of the buffer.
1014
1015 @defun process-buffer process
1016 This function returns the associated buffer of the process
1017 @var{process}.
1018
1019 @smallexample
1020 @group
1021 (process-buffer (get-process "shell"))
1022 @result{} #<buffer *shell*>
1023 @end group
1024 @end smallexample
1025 @end defun
1026
1027 @defun process-mark process
1028 This function returns the process marker for @var{process}, which is the
1029 marker that says where to insert output from the process.
1030
1031 If @var{process} does not have a buffer, @code{process-mark} returns a
1032 marker that points nowhere.
1033
1034 Insertion of process output in a buffer uses this marker to decide where
1035 to insert, and updates it to point after the inserted text. That is why
1036 successive batches of output are inserted consecutively.
1037
1038 Filter functions normally should use this marker in the same fashion
1039 as is done by direct insertion of output in the buffer. A good
1040 example of a filter function that uses @code{process-mark} is found at
1041 the end of the following section.
1042
1043 When the user is expected to enter input in the process buffer for
1044 transmission to the process, the process marker separates the new input
1045 from previous output.
1046 @end defun
1047
1048 @defun set-process-buffer process buffer
1049 This function sets the buffer associated with @var{process} to
1050 @var{buffer}. If @var{buffer} is @code{nil}, the process becomes
1051 associated with no buffer.
1052 @end defun
1053
1054 @defun get-buffer-process buffer-or-name
1055 This function returns a nondeleted process associated with the buffer
1056 specified by @var{buffer-or-name}. If there are several processes
1057 associated with it, this function chooses one (currently, the one most
1058 recently created, but don't count on that). Deletion of a process
1059 (see @code{delete-process}) makes it ineligible for this function to
1060 return.
1061
1062 It is usually a bad idea to have more than one process associated with
1063 the same buffer.
1064
1065 @smallexample
1066 @group
1067 (get-buffer-process "*shell*")
1068 @result{} #<process shell>
1069 @end group
1070 @end smallexample
1071
1072 Killing the process's buffer deletes the process, which kills the
1073 subprocess with a @code{SIGHUP} signal (@pxref{Signals to Processes}).
1074 @end defun
1075
1076 @node Filter Functions
1077 @subsection Process Filter Functions
1078 @cindex filter function
1079 @cindex process filter
1080
1081 A process @dfn{filter function} is a function that receives the
1082 standard output from the associated process. If a process has a filter,
1083 then @emph{all} output from that process is passed to the filter. The
1084 process buffer is used directly for output from the process only when
1085 there is no filter.
1086
1087 The filter function can only be called when Emacs is waiting for
1088 something, because process output arrives only at such times. Emacs
1089 waits when reading terminal input, in @code{sit-for} and
1090 @code{sleep-for} (@pxref{Waiting}), and in @code{accept-process-output}
1091 (@pxref{Accepting Output}).
1092
1093 A filter function must accept two arguments: the associated process
1094 and a string, which is output just received from it. The function is
1095 then free to do whatever it chooses with the output.
1096
1097 Quitting is normally inhibited within a filter function---otherwise,
1098 the effect of typing @kbd{C-g} at command level or to quit a user
1099 command would be unpredictable. If you want to permit quitting inside
1100 a filter function, bind @code{inhibit-quit} to @code{nil}. In most
1101 cases, the right way to do this is with the macro
1102 @code{with-local-quit}. @xref{Quitting}.
1103
1104 If an error happens during execution of a filter function, it is
1105 caught automatically, so that it doesn't stop the execution of whatever
1106 program was running when the filter function was started. However, if
1107 @code{debug-on-error} is non-@code{nil}, the error-catching is turned
1108 off. This makes it possible to use the Lisp debugger to debug the
1109 filter function. @xref{Debugger}.
1110
1111 Many filter functions sometimes or always insert the text in the
1112 process's buffer, mimicking the actions of Emacs when there is no
1113 filter. Such filter functions need to use @code{set-buffer} in order to
1114 be sure to insert in that buffer. To avoid setting the current buffer
1115 semipermanently, these filter functions must save and restore the
1116 current buffer. They should also update the process marker, and in some
1117 cases update the value of point. Here is how to do these things:
1118
1119 @smallexample
1120 @group
1121 (defun ordinary-insertion-filter (proc string)
1122 (with-current-buffer (process-buffer proc)
1123 (let ((moving (= (point) (process-mark proc))))
1124 @end group
1125 @group
1126 (save-excursion
1127 ;; @r{Insert the text, advancing the process marker.}
1128 (goto-char (process-mark proc))
1129 (insert string)
1130 (set-marker (process-mark proc) (point)))
1131 (if moving (goto-char (process-mark proc))))))
1132 @end group
1133 @end smallexample
1134
1135 @noindent
1136 The reason to use @code{with-current-buffer}, rather than using
1137 @code{save-excursion} to save and restore the current buffer, is so as
1138 to preserve the change in point made by the second call to
1139 @code{goto-char}.
1140
1141 To make the filter force the process buffer to be visible whenever new
1142 text arrives, insert the following line just before the
1143 @code{with-current-buffer} construct:
1144
1145 @smallexample
1146 (display-buffer (process-buffer proc))
1147 @end smallexample
1148
1149 To force point to the end of the new output, no matter where it was
1150 previously, eliminate the variable @code{moving} and call
1151 @code{goto-char} unconditionally.
1152
1153 In earlier Emacs versions, every filter function that did regular
1154 expression searching or matching had to explicitly save and restore the
1155 match data. Now Emacs does this automatically for filter functions;
1156 they never need to do it explicitly. @xref{Match Data}.
1157
1158 A filter function that writes the output into the buffer of the
1159 process should check whether the buffer is still alive. If it tries to
1160 insert into a dead buffer, it will get an error. The expression
1161 @code{(buffer-name (process-buffer @var{process}))} returns @code{nil}
1162 if the buffer is dead.
1163
1164 The output to the function may come in chunks of any size. A program
1165 that produces the same output twice in a row may send it as one batch of
1166 200 characters one time, and five batches of 40 characters the next. If
1167 the filter looks for certain text strings in the subprocess output, make
1168 sure to handle the case where one of these strings is split across two
1169 or more batches of output.
1170
1171 @defun set-process-filter process filter
1172 This function gives @var{process} the filter function @var{filter}. If
1173 @var{filter} is @code{nil}, it gives the process no filter.
1174 @end defun
1175
1176 @defun process-filter process
1177 This function returns the filter function of @var{process}, or @code{nil}
1178 if it has none.
1179 @end defun
1180
1181 Here is an example of use of a filter function:
1182
1183 @smallexample
1184 @group
1185 (defun keep-output (process output)
1186 (setq kept (cons output kept)))
1187 @result{} keep-output
1188 @end group
1189 @group
1190 (setq kept nil)
1191 @result{} nil
1192 @end group
1193 @group
1194 (set-process-filter (get-process "shell") 'keep-output)
1195 @result{} keep-output
1196 @end group
1197 @group
1198 (process-send-string "shell" "ls ~/other\n")
1199 @result{} nil
1200 kept
1201 @result{} ("lewis@@slug[8] % "
1202 @end group
1203 @group
1204 "FINAL-W87-SHORT.MSS backup.otl kolstad.mss~
1205 address.txt backup.psf kolstad.psf
1206 backup.bib~ david.mss resume-Dec-86.mss~
1207 backup.err david.psf resume-Dec.psf
1208 backup.mss dland syllabus.mss
1209 "
1210 "#backups.mss# backup.mss~ kolstad.mss
1211 ")
1212 @end group
1213 @end smallexample
1214
1215 @ignore @c The code in this example doesn't show the right way to do things.
1216 Here is another, more realistic example, which demonstrates how to use
1217 the process mark to do insertion in the same fashion as is done when
1218 there is no filter function:
1219
1220 @smallexample
1221 @group
1222 ;; @r{Insert input in the buffer specified by @code{my-shell-buffer}}
1223 ;; @r{and make sure that buffer is shown in some window.}
1224 (defun my-process-filter (proc str)
1225 (let ((cur (selected-window))
1226 (pop-up-windows t))
1227 (pop-to-buffer my-shell-buffer)
1228 @end group
1229 @group
1230 (goto-char (point-max))
1231 (insert str)
1232 (set-marker (process-mark proc) (point-max))
1233 (select-window cur)))
1234 @end group
1235 @end smallexample
1236 @end ignore
1237
1238 @node Decoding Output
1239 @subsection Decoding Process Output
1240 @cindex decode process output
1241
1242 When Emacs writes process output directly into a multibyte buffer,
1243 it decodes the output according to the process output coding system.
1244 If the coding system is @code{raw-text} or @code{no-conversion}, Emacs
1245 converts the unibyte output to multibyte using
1246 @code{string-to-multibyte}, and inserts the resulting multibyte text.
1247
1248 You can use @code{set-process-coding-system} to specify which coding
1249 system to use (@pxref{Process Information}). Otherwise, the coding
1250 system comes from @code{coding-system-for-read}, if that is
1251 non-@code{nil}; or else from the defaulting mechanism (@pxref{Default
1252 Coding Systems}).
1253
1254 @strong{Warning:} Coding systems such as @code{undecided} which
1255 determine the coding system from the data do not work entirely
1256 reliably with asynchronous subprocess output. This is because Emacs
1257 has to process asynchronous subprocess output in batches, as it
1258 arrives. Emacs must try to detect the proper coding system from one
1259 batch at a time, and this does not always work. Therefore, if at all
1260 possible, specify a coding system that determines both the character
1261 code conversion and the end of line conversion---that is, one like
1262 @code{latin-1-unix}, rather than @code{undecided} or @code{latin-1}.
1263
1264 @cindex filter multibyte flag, of process
1265 @cindex process filter multibyte flag
1266 When Emacs calls a process filter function, it provides the process
1267 output as a multibyte string or as a unibyte string according to the
1268 process's filter multibyte flag. If the flag is non-@code{nil}, Emacs
1269 decodes the output according to the process output coding system to
1270 produce a multibyte string, and passes that to the process. If the
1271 flag is @code{nil}, Emacs puts the output into a unibyte string, with
1272 no decoding, and passes that.
1273
1274 When you create a process, the filter multibyte flag takes its
1275 initial value from @code{default-enable-multibyte-characters}. If you
1276 want to change the flag later on, use
1277 @code{set-process-filter-multibyte}.
1278
1279 @defun set-process-filter-multibyte process multibyte
1280 This function sets the filter multibyte flag of @var{process}
1281 to @var{multibyte}.
1282 @end defun
1283
1284 @defun process-filter-multibyte-p process
1285 This function returns the filter multibyte flag of @var{process}.
1286 @end defun
1287
1288 @node Accepting Output
1289 @subsection Accepting Output from Processes
1290 @cindex accept input from processes
1291
1292 Output from asynchronous subprocesses normally arrives only while
1293 Emacs is waiting for some sort of external event, such as elapsed time
1294 or terminal input. Occasionally it is useful in a Lisp program to
1295 explicitly permit output to arrive at a specific point, or even to wait
1296 until output arrives from a process.
1297
1298 @defun accept-process-output &optional process seconds millisec just-this-one
1299 This function allows Emacs to read pending output from processes. The
1300 output is inserted in the associated buffers or given to their filter
1301 functions. If @var{process} is non-@code{nil} then this function does
1302 not return until some output has been received from @var{process}.
1303
1304 @c Emacs 19 feature
1305 The arguments @var{seconds} and @var{millisec} let you specify timeout
1306 periods. The former specifies a period measured in seconds and the
1307 latter specifies one measured in milliseconds. The two time periods
1308 thus specified are added together, and @code{accept-process-output}
1309 returns after that much time whether or not there has been any
1310 subprocess output.
1311
1312 The argument @var{seconds} need not be an integer. If it is a floating
1313 point number, this function waits for a fractional number of seconds.
1314 If @var{seconds} is 0, the function accepts whatever output is
1315 pending but does not wait.
1316
1317 @c Emacs 22.1 feature
1318 If @var{process} is a process, and the argument @var{just-this-one} is
1319 non-@code{nil}, only output from that process is handled, suspending output
1320 from other processes until some output has been received from that
1321 process or the timeout expires. If @var{just-this-one} is an integer,
1322 also inhibit running timers. This feature is generally not
1323 recommended, but may be necessary for specific applications, such as
1324 speech synthesis.
1325
1326 The function @code{accept-process-output} returns non-@code{nil} if it
1327 did get some output, or @code{nil} if the timeout expired before output
1328 arrived.
1329 @end defun
1330
1331 @node Sentinels
1332 @section Sentinels: Detecting Process Status Changes
1333 @cindex process sentinel
1334 @cindex sentinel
1335
1336 A @dfn{process sentinel} is a function that is called whenever the
1337 associated process changes status for any reason, including signals
1338 (whether sent by Emacs or caused by the process's own actions) that
1339 terminate, stop, or continue the process. The process sentinel is
1340 also called if the process exits. The sentinel receives two
1341 arguments: the process for which the event occurred, and a string
1342 describing the type of event.
1343
1344 The string describing the event looks like one of the following:
1345
1346 @itemize @bullet
1347 @item
1348 @code{"finished\n"}.
1349
1350 @item
1351 @code{"exited abnormally with code @var{exitcode}\n"}.
1352
1353 @item
1354 @code{"@var{name-of-signal}\n"}.
1355
1356 @item
1357 @code{"@var{name-of-signal} (core dumped)\n"}.
1358 @end itemize
1359
1360 A sentinel runs only while Emacs is waiting (e.g., for terminal
1361 input, or for time to elapse, or for process output). This avoids the
1362 timing errors that could result from running them at random places in
1363 the middle of other Lisp programs. A program can wait, so that
1364 sentinels will run, by calling @code{sit-for} or @code{sleep-for}
1365 (@pxref{Waiting}), or @code{accept-process-output} (@pxref{Accepting
1366 Output}). Emacs also allows sentinels to run when the command loop is
1367 reading input. @code{delete-process} calls the sentinel when it
1368 terminates a running process.
1369
1370 Emacs does not keep a queue of multiple reasons to call the sentinel
1371 of one process; it records just the current status and the fact that
1372 there has been a change. Therefore two changes in status, coming in
1373 quick succession, can call the sentinel just once. However, process
1374 termination will always run the sentinel exactly once. This is
1375 because the process status can't change again after termination.
1376
1377 Emacs explicitly checks for output from the process before running
1378 the process sentinel. Once the sentinel runs due to process
1379 termination, no further output can arrive from the process.
1380
1381 A sentinel that writes the output into the buffer of the process
1382 should check whether the buffer is still alive. If it tries to insert
1383 into a dead buffer, it will get an error. If the buffer is dead,
1384 @code{(buffer-name (process-buffer @var{process}))} returns @code{nil}.
1385
1386 Quitting is normally inhibited within a sentinel---otherwise, the
1387 effect of typing @kbd{C-g} at command level or to quit a user command
1388 would be unpredictable. If you want to permit quitting inside a
1389 sentinel, bind @code{inhibit-quit} to @code{nil}. In most cases, the
1390 right way to do this is with the macro @code{with-local-quit}.
1391 @xref{Quitting}.
1392
1393 If an error happens during execution of a sentinel, it is caught
1394 automatically, so that it doesn't stop the execution of whatever
1395 programs was running when the sentinel was started. However, if
1396 @code{debug-on-error} is non-@code{nil}, the error-catching is turned
1397 off. This makes it possible to use the Lisp debugger to debug the
1398 sentinel. @xref{Debugger}.
1399
1400 While a sentinel is running, the process sentinel is temporarily
1401 set to @code{nil} so that the sentinel won't run recursively.
1402 For this reason it is not possible for a sentinel to specify
1403 a new sentinel.
1404
1405 In earlier Emacs versions, every sentinel that did regular expression
1406 searching or matching had to explicitly save and restore the match data.
1407 Now Emacs does this automatically for sentinels; they never need to do
1408 it explicitly. @xref{Match Data}.
1409
1410 @defun set-process-sentinel process sentinel
1411 This function associates @var{sentinel} with @var{process}. If
1412 @var{sentinel} is @code{nil}, then the process will have no sentinel.
1413 The default behavior when there is no sentinel is to insert a message in
1414 the process's buffer when the process status changes.
1415
1416 Changes in process sentinel take effect immediately---if the sentinel
1417 is slated to be run but has not been called yet, and you specify a new
1418 sentinel, the eventual call to the sentinel will use the new one.
1419
1420 @smallexample
1421 @group
1422 (defun msg-me (process event)
1423 (princ
1424 (format "Process: %s had the event `%s'" process event)))
1425 (set-process-sentinel (get-process "shell") 'msg-me)
1426 @result{} msg-me
1427 @end group
1428 @group
1429 (kill-process (get-process "shell"))
1430 @print{} Process: #<process shell> had the event `killed'
1431 @result{} #<process shell>
1432 @end group
1433 @end smallexample
1434 @end defun
1435
1436 @defun process-sentinel process
1437 This function returns the sentinel of @var{process}, or @code{nil} if it
1438 has none.
1439 @end defun
1440
1441 @defun waiting-for-user-input-p
1442 While a sentinel or filter function is running, this function returns
1443 non-@code{nil} if Emacs was waiting for keyboard input from the user at
1444 the time the sentinel or filter function was called, @code{nil} if it
1445 was not.
1446 @end defun
1447
1448 @node Query Before Exit
1449 @section Querying Before Exit
1450
1451 When Emacs exits, it terminates all its subprocesses by sending them
1452 the @code{SIGHUP} signal. Because subprocesses may be doing
1453 valuable work, Emacs normally asks the user to confirm that it is ok
1454 to terminate them. Each process has a query flag which, if
1455 non-@code{nil}, says that Emacs should ask for confirmation before
1456 exiting and thus killing that process. The default for the query flag
1457 is @code{t}, meaning @emph{do} query.
1458
1459 @defun process-query-on-exit-flag process
1460 This returns the query flag of @var{process}.
1461 @end defun
1462
1463 @defun set-process-query-on-exit-flag process flag
1464 This function sets the query flag of @var{process} to @var{flag}. It
1465 returns @var{flag}.
1466
1467 @smallexample
1468 @group
1469 ;; @r{Don't query about the shell process}
1470 (set-process-query-on-exit-flag (get-process "shell") nil)
1471 @result{} t
1472 @end group
1473 @end smallexample
1474 @end defun
1475
1476 @defun process-kill-without-query process &optional do-query
1477 This function clears the query flag of @var{process}, so that
1478 Emacs will not query the user on account of that process.
1479
1480 Actually, the function does more than that: it returns the old value of
1481 the process's query flag, and sets the query flag to @var{do-query}.
1482 Please don't use this function to do those things any more---please
1483 use the newer, cleaner functions @code{process-query-on-exit-flag} and
1484 @code{set-process-query-on-exit-flag} in all but the simplest cases.
1485 The only way you should use @code{process-kill-without-query} nowadays
1486 is like this:
1487
1488 @smallexample
1489 @group
1490 ;; @r{Don't query about the shell process}
1491 (process-kill-without-query (get-process "shell"))
1492 @end group
1493 @end smallexample
1494 @end defun
1495
1496 @node Transaction Queues
1497 @section Transaction Queues
1498 @cindex transaction queue
1499
1500 You can use a @dfn{transaction queue} to communicate with a subprocess
1501 using transactions. First use @code{tq-create} to create a transaction
1502 queue communicating with a specified process. Then you can call
1503 @code{tq-enqueue} to send a transaction.
1504
1505 @defun tq-create process
1506 This function creates and returns a transaction queue communicating with
1507 @var{process}. The argument @var{process} should be a subprocess
1508 capable of sending and receiving streams of bytes. It may be a child
1509 process, or it may be a TCP connection to a server, possibly on another
1510 machine.
1511 @end defun
1512
1513 @defun tq-enqueue queue question regexp closure fn &optional delay-question
1514 This function sends a transaction to queue @var{queue}. Specifying the
1515 queue has the effect of specifying the subprocess to talk to.
1516
1517 The argument @var{question} is the outgoing message that starts the
1518 transaction. The argument @var{fn} is the function to call when the
1519 corresponding answer comes back; it is called with two arguments:
1520 @var{closure}, and the answer received.
1521
1522 The argument @var{regexp} is a regular expression that should match
1523 text at the end of the entire answer, but nothing before; that's how
1524 @code{tq-enqueue} determines where the answer ends.
1525
1526 If the argument @var{delay-question} is non-nil, delay sending this
1527 question until the process has finished replying to any previous
1528 questions. This produces more reliable results with some processes.
1529
1530 The return value of @code{tq-enqueue} itself is not meaningful.
1531 @end defun
1532
1533 @defun tq-close queue
1534 Shut down transaction queue @var{queue}, waiting for all pending transactions
1535 to complete, and then terminate the connection or child process.
1536 @end defun
1537
1538 Transaction queues are implemented by means of a filter function.
1539 @xref{Filter Functions}.
1540
1541 @node Network
1542 @section Network Connections
1543 @cindex network connection
1544 @cindex TCP
1545 @cindex UDP
1546
1547 Emacs Lisp programs can open stream (TCP) and datagram (UDP) network
1548 connections to other processes on the same machine or other machines.
1549 A network connection is handled by Lisp much like a subprocess, and is
1550 represented by a process object. However, the process you are
1551 communicating with is not a child of the Emacs process, so it has no
1552 process @acronym{ID}, and you can't kill it or send it signals. All you
1553 can do is send and receive data. @code{delete-process} closes the
1554 connection, but does not kill the program at the other end; that
1555 program must decide what to do about closure of the connection.
1556
1557 Lisp programs can listen for connections by creating network
1558 servers. A network server is also represented by a kind of process
1559 object, but unlike a network connection, the network server never
1560 transfers data itself. When it receives a connection request, it
1561 creates a new network connection to represent the connection just
1562 made. (The network connection inherits certain information, including
1563 the process plist, from the server.) The network server then goes
1564 back to listening for more connection requests.
1565
1566 Network connections and servers are created by calling
1567 @code{make-network-process} with an argument list consisting of
1568 keyword/argument pairs, for example @code{:server t} to create a
1569 server process, or @code{:type 'datagram} to create a datagram
1570 connection. @xref{Low-Level Network}, for details. You can also use
1571 the @code{open-network-stream} function described below.
1572
1573 You can distinguish process objects representing network connections
1574 and servers from those representing subprocesses with the
1575 @code{process-status} function. The possible status values for
1576 network connections are @code{open}, @code{closed}, @code{connect},
1577 and @code{failed}. For a network server, the status is always
1578 @code{listen}. None of those values is possible for a real
1579 subprocess. @xref{Process Information}.
1580
1581 You can stop and resume operation of a network process by calling
1582 @code{stop-process} and @code{continue-process}. For a server
1583 process, being stopped means not accepting new connections. (Up to 5
1584 connection requests will be queued for when you resume the server; you
1585 can increase this limit, unless it is imposed by the operating
1586 system.) For a network stream connection, being stopped means not
1587 processing input (any arriving input waits until you resume the
1588 connection). For a datagram connection, some number of packets may be
1589 queued but input may be lost. You can use the function
1590 @code{process-command} to determine whether a network connection or
1591 server is stopped; a non-@code{nil} value means yes.
1592
1593 @defun open-network-stream name buffer-or-name host service
1594 This function opens a TCP connection, and returns a process object
1595 that represents the connection.
1596
1597 The @var{name} argument specifies the name for the process object. It
1598 is modified as necessary to make it unique.
1599
1600 The @var{buffer-or-name} argument is the buffer to associate with the
1601 connection. Output from the connection is inserted in the buffer,
1602 unless you specify a filter function to handle the output. If
1603 @var{buffer-or-name} is @code{nil}, it means that the connection is not
1604 associated with any buffer.
1605
1606 The arguments @var{host} and @var{service} specify where to connect to;
1607 @var{host} is the host name (a string), and @var{service} is the name of
1608 a defined network service (a string) or a port number (an integer).
1609 @end defun
1610
1611 @defun process-contact process &optional key
1612 This function returns information about how a network process was set
1613 up. For a connection, when @var{key} is @code{nil}, it returns
1614 @code{(@var{hostname} @var{service})} which specifies what you
1615 connected to.
1616
1617 If @var{key} is @code{t}, the value is the complete status information
1618 for the connection or server; that is, the list of keywords and values
1619 specified in @code{make-network-process}, except that some of the
1620 values represent the current status instead of what you specified:
1621
1622 @table @code
1623 @item :buffer
1624 The associated value is the process buffer.
1625 @item :filter
1626 The associated value is the process filter function.
1627 @item :sentinel
1628 The associated value is the process sentinel function.
1629 @item :remote
1630 In a connection, the address in internal format of the remote peer.
1631 @item :local
1632 The local address, in internal format.
1633 @item :service
1634 In a server, if you specified @code{t} for @var{service},
1635 this value is the actual port number.
1636 @end table
1637
1638 @code{:local} and @code{:remote} are included even if they were not
1639 specified explicitly in @code{make-network-process}.
1640
1641 If @var{key} is a keyword, the function returns the value corresponding
1642 to that keyword.
1643
1644 For an ordinary child process, this function always returns @code{t}.
1645 @end defun
1646
1647 @node Network Servers
1648 @section Network Servers
1649 @cindex network servers
1650
1651 You create a server by calling @code{make-network-process} with
1652 @code{:server t}. The server will listen for connection requests from
1653 clients. When it accepts a client connection request, that creates a
1654 new network connection, itself a process object, with the following
1655 parameters:
1656
1657 @itemize @bullet
1658 @item
1659 The connection's process name is constructed by concatenating the
1660 server process' @var{name} with a client identification string. The
1661 client identification string for an IPv4 connection looks like
1662 @samp{<@var{a}.@var{b}.@var{c}.@var{d}:@var{p}>}. Otherwise, it is a
1663 unique number in brackets, as in @samp{<@var{nnn}>}. The number
1664 is unique for each connection in the Emacs session.
1665
1666 @item
1667 If the server's filter is non-@code{nil}, the connection process does
1668 not get a separate process buffer; otherwise, Emacs creates a new
1669 buffer for the purpose. The buffer name is the server's buffer name
1670 or process name, concatenated with the client identification string.
1671
1672 The server's process buffer value is never used directly by Emacs, but
1673 it is passed to the log function, which can log connections by
1674 inserting text there.
1675
1676 @item
1677 The communication type and the process filter and sentinel are
1678 inherited from those of the server. The server never directly
1679 uses its filter and sentinel; their sole purpose is to initialize
1680 connections made to the server.
1681
1682 @item
1683 The connection's process contact info is set according to the client's
1684 addressing information (typically an IP address and a port number).
1685 This information is associated with the @code{process-contact}
1686 keywords @code{:host}, @code{:service}, @code{:remote}.
1687
1688 @item
1689 The connection's local address is set up according to the port
1690 number used for the connection.
1691
1692 @item
1693 The client process' plist is initialized from the server's plist.
1694 @end itemize
1695
1696 @node Datagrams
1697 @section Datagrams
1698 @cindex datagrams
1699
1700 A datagram connection communicates with individual packets rather
1701 than streams of data. Each call to @code{process-send} sends one
1702 datagram packet (@pxref{Input to Processes}), and each datagram
1703 received results in one call to the filter function.
1704
1705 The datagram connection doesn't have to talk with the same remote
1706 peer all the time. It has a @dfn{remote peer address} which specifies
1707 where to send datagrams to. Each time an incoming datagram is passed
1708 to the filter function, the peer address is set to the address that
1709 datagram came from; that way, if the filter function sends a datagram,
1710 it will go back to that place. You can specify the remote peer
1711 address when you create the datagram connection using the
1712 @code{:remote} keyword. You can change it later on by calling
1713 @code{set-process-datagram-address}.
1714
1715 @defun process-datagram-address process
1716 If @var{process} is a datagram connection or server, this function
1717 returns its remote peer address.
1718 @end defun
1719
1720 @defun set-process-datagram-address process address
1721 If @var{process} is a datagram connection or server, this function
1722 sets its remote peer address to @var{address}.
1723 @end defun
1724
1725 @node Low-Level Network
1726 @section Low-Level Network Access
1727
1728 You can also create network connections by operating at a lower
1729 level than that of @code{open-network-stream}, using
1730 @code{make-network-process}.
1731
1732 @menu
1733 * Proc: Network Processes. Using @code{make-network-process}.
1734 * Options: Network Options. Further control over network connections.
1735 * Features: Network Feature Testing.
1736 Determining which network features work on
1737 the machine you are using.
1738 @end menu
1739
1740 @node Network Processes
1741 @subsection @code{make-network-process}
1742
1743 The basic function for creating network connections and network
1744 servers is @code{make-network-process}. It can do either of those
1745 jobs, depending on the arguments you give it.
1746
1747 @defun make-network-process &rest args
1748 This function creates a network connection or server and returns the
1749 process object that represents it. The arguments @var{args} are a
1750 list of keyword/argument pairs. Omitting a keyword is always
1751 equivalent to specifying it with value @code{nil}, except for
1752 @code{:coding}, @code{:filter-multibyte}, and @code{:reuseaddr}. Here
1753 are the meaningful keywords:
1754
1755 @table @asis
1756 @item :name @var{name}
1757 Use the string @var{name} as the process name. It is modified if
1758 necessary to make it unique.
1759
1760 @item :type @var{type}
1761 Specify the communication type. A value of @code{nil} specifies a
1762 stream connection (the default); @code{datagram} specifies a datagram
1763 connection. Both connections and servers can be of either type.
1764
1765 @item :server @var{server-flag}
1766 If @var{server-flag} is non-@code{nil}, create a server. Otherwise,
1767 create a connection. For a stream type server, @var{server-flag} may
1768 be an integer which then specifies the length of the queue of pending
1769 connections to the server. The default queue length is 5.
1770
1771 @item :host @var{host}
1772 Specify the host to connect to. @var{host} should be a host name or
1773 Internet address, as a string, or the symbol @code{local} to specify
1774 the local host. If you specify @var{host} for a server, it must
1775 specify a valid address for the local host, and only clients
1776 connecting to that address will be accepted.
1777
1778 @item :service @var{service}
1779 @var{service} specifies a port number to connect to, or, for a server,
1780 the port number to listen on. It should be a service name that
1781 translates to a port number, or an integer specifying the port number
1782 directly. For a server, it can also be @code{t}, which means to let
1783 the system select an unused port number.
1784
1785 @item :family @var{family}
1786 @var{family} specifies the address (and protocol) family for
1787 communication. @code{nil} means determine the proper address family
1788 automatically for the given @var{host} and @var{service}.
1789 @code{local} specifies a Unix socket, in which case @var{host} is
1790 ignored. @code{ipv4} and @code{ipv6} specify to use IPv4 and IPv6
1791 respectively.
1792
1793 @item :local @var{local-address}
1794 For a server process, @var{local-address} is the address to listen on.
1795 It overrides @var{family}, @var{host} and @var{service}, and you
1796 may as well not specify them.
1797
1798 @item :remote @var{remote-address}
1799 For a connection, @var{remote-address} is the address to connect to.
1800 It overrides @var{family}, @var{host} and @var{service}, and you
1801 may as well not specify them.
1802
1803 For a datagram server, @var{remote-address} specifies the initial
1804 setting of the remote datagram address.
1805
1806 The format of @var{local-address} or @var{remote-address} depends on
1807 the address family:
1808
1809 @itemize -
1810 @item
1811 An IPv4 address is represented as a five-element vector of four 8-bit
1812 integers and one 16-bit integer
1813 @code{[@var{a} @var{b} @var{c} @var{d} @var{p}]} corresponding to
1814 numeric IPv4 address @var{a}.@var{b}.@var{c}.@var{d} and port number
1815 @var{p}.
1816
1817 @item
1818 An IPv6 address is represented as a nine-element vector of 16-bit
1819 integers @code{[@var{a} @var{b} @var{c} @var{d} @var{e} @var{f}
1820 @var{g} @var{h} @var{p}]} corresponding to numeric IPv6 address
1821 @var{a}:@var{b}:@var{c}:@var{d}:@var{e}:@var{f}:@var{g}:@var{h} and
1822 port number @var{p}.
1823
1824 @item
1825 A local address is represented as a string which specifies the address
1826 in the local address space.
1827
1828 @item
1829 An ``unsupported family'' address is represented by a cons
1830 @code{(@var{f} . @var{av})}, where @var{f} is the family number and
1831 @var{av} is a vector specifying the socket address using one element
1832 per address data byte. Do not rely on this format in portable code,
1833 as it may depend on implementation defined constants, data sizes, and
1834 data structure alignment.
1835 @end itemize
1836
1837 @item :nowait @var{bool}
1838 If @var{bool} is non-@code{nil} for a stream connection, return
1839 without waiting for the connection to complete. When the connection
1840 succeeds or fails, Emacs will call the sentinel function, with a
1841 second argument matching @code{"open"} (if successful) or
1842 @code{"failed"}. The default is to block, so that
1843 @code{make-network-process} does not return until the connection
1844 has succeeded or failed.
1845
1846 @item :stop @var{stopped}
1847 Start the network connection or server in the `stopped' state if
1848 @var{stopped} is non-@code{nil}.
1849
1850 @item :buffer @var{buffer}
1851 Use @var{buffer} as the process buffer.
1852
1853 @item :coding @var{coding}
1854 Use @var{coding} as the coding system for this process. To specify
1855 different coding systems for decoding data from the connection and for
1856 encoding data sent to it, specify @code{(@var{decoding} .
1857 @var{encoding})} for @var{coding}.
1858
1859 If you don't specify this keyword at all, the default
1860 is to determine the coding systems from the data.
1861
1862 @item :noquery @var{query-flag}
1863 Initialize the process query flag to @var{query-flag}.
1864 @xref{Query Before Exit}.
1865
1866 @item :filter @var{filter}
1867 Initialize the process filter to @var{filter}.
1868
1869 @item :filter-multibyte @var{bool}
1870 If @var{bool} is non-@code{nil}, strings given to the process filter
1871 are multibyte, otherwise they are unibyte. If you don't specify this
1872 keyword at all, the default is that the strings are multibyte if
1873 @code{default-enable-multibyte-characters} is non-@code{nil}.
1874
1875 @item :sentinel @var{sentinel}
1876 Initialize the process sentinel to @var{sentinel}.
1877
1878 @item :log @var{log}
1879 Initialize the log function of a server process to @var{log}. The log
1880 function is called each time the server accepts a network connection
1881 from a client. The arguments passed to the log function are
1882 @var{server}, @var{connection}, and @var{message}, where @var{server}
1883 is the server process, @var{connection} is the new process for the
1884 connection, and @var{message} is a string describing what has
1885 happened.
1886
1887 @item :plist @var{plist}
1888 Initialize the process plist to @var{plist}.
1889 @end table
1890
1891 The original argument list, modified with the actual connection
1892 information, is available via the @code{process-contact} function.
1893 @end defun
1894
1895 @node Network Options
1896 @subsection Network Options
1897
1898 The following network options can be specified when you create a
1899 network process. Except for @code{:reuseaddr}, you can also set or
1900 modify these options later, using @code{set-network-process-option}.
1901
1902 For a server process, the options specified with
1903 @code{make-network-process} are not inherited by the client
1904 connections, so you will need to set the necessary options for each
1905 child connection as it is created.
1906
1907 @table @asis
1908 @item :bindtodevice @var{device-name}
1909 If @var{device-name} is a non-empty string identifying a network
1910 interface name (see @code{network-interface-list}), only handle
1911 packets received on that interface. If @var{device-name} is @code{nil}
1912 (the default), handle packets received on any interface.
1913
1914 Using this option may require special privileges on some systems.
1915
1916 @item :broadcast @var{broadcast-flag}
1917 If @var{broadcast-flag} is non-@code{nil} for a datagram process, the
1918 process will receive datagram packet sent to a broadcast address, and
1919 be able to send packets to a broadcast address. Ignored for a stream
1920 connection.
1921
1922 @item :dontroute @var{dontroute-flag}
1923 If @var{dontroute-flag} is non-@code{nil}, the process can only send
1924 to hosts on the same network as the local host.
1925
1926 @item :keepalive @var{keepalive-flag}
1927 If @var{keepalive-flag} is non-@code{nil} for a stream connection,
1928 enable exchange of low-level keep-alive messages.
1929
1930 @item :linger @var{linger-arg}
1931 If @var{linger-arg} is non-@code{nil}, wait for successful
1932 transmission of all queued packets on the connection before it is
1933 deleted (see @code{delete-process}). If @var{linger-arg} is an
1934 integer, it specifies the maximum time in seconds to wait for queued
1935 packets to be sent before closing the connection. Default is
1936 @code{nil} which means to discard unsent queued packets when the
1937 process is deleted.
1938
1939 @item :oobinline @var{oobinline-flag}
1940 If @var{oobinline-flag} is non-@code{nil} for a stream connection,
1941 receive out-of-band data in the normal data stream. Otherwise, ignore
1942 out-of-band data.
1943
1944 @item :priority @var{priority}
1945 Set the priority for packets sent on this connection to the integer
1946 @var{priority}. The interpretation of this number is protocol
1947 specific, such as setting the TOS (type of service) field on IP
1948 packets sent on this connection. It may also have system dependent
1949 effects, such as selecting a specific output queue on the network
1950 interface.
1951
1952 @item :reuseaddr @var{reuseaddr-flag}
1953 If @var{reuseaddr-flag} is non-@code{nil} (the default) for a stream
1954 server process, allow this server to reuse a specific port number (see
1955 @code{:service}) unless another process on this host is already
1956 listening on that port. If @var{reuseaddr-flag} is @code{nil}, there
1957 may be a period of time after the last use of that port (by any
1958 process on the host), where it is not possible to make a new server on
1959 that port.
1960 @end table
1961
1962 @defun set-network-process-option process option value
1963 This function sets or modifies a network option for network process
1964 @var{process}. See @code{make-network-process} for details of options
1965 @var{option} and their corresponding values @var{value}.
1966
1967 The current setting of an option is available via the
1968 @code{process-contact} function.
1969 @end defun
1970
1971 @node Network Feature Testing
1972 @subsection Testing Availability of Network Features
1973
1974 To test for the availability of a given network feature, use
1975 @code{featurep} like this:
1976
1977 @example
1978 (featurep 'make-network-process '(@var{keyword} @var{value}))
1979 @end example
1980
1981 @noindent
1982 The result of the first form is @code{t} if it works to specify
1983 @var{keyword} with value @var{value} in @code{make-network-process}.
1984 The result of the second form is @code{t} if @var{keyword} is
1985 supported by @code{make-network-process}. Here are some of the
1986 @var{keyword}---@var{value} pairs you can test in
1987 this way.
1988
1989 @table @code
1990 @item (:nowait t)
1991 Non-@code{nil} if non-blocking connect is supported.
1992 @item (:type datagram)
1993 Non-@code{nil} if datagrams are supported.
1994 @item (:family local)
1995 Non-@code{nil} if local (a.k.a.@: ``UNIX domain'') sockets are supported.
1996 @item (:family ipv6)
1997 Non-@code{nil} if IPv6 is supported.
1998 @item (:service t)
1999 Non-@code{nil} if the system can select the port for a server.
2000 @end table
2001
2002 To test for the availability of a given network option, use
2003 @code{featurep} like this:
2004
2005 @example
2006 (featurep 'make-network-process '@var{keyword})
2007 @end example
2008
2009 @noindent
2010 Here are some of the options you can test in this way.
2011
2012 @table @code
2013 @item :bindtodevice
2014 @itemx :broadcast
2015 @itemx :dontroute
2016 @itemx :keepalive
2017 @itemx :linger
2018 @itemx :oobinline
2019 @itemx :priority
2020 @itemx :reuseaddr
2021 That particular network option is supported by
2022 @code{make-network-process} and @code{set-network-process-option}.
2023 @end table
2024
2025 @node Misc Network
2026 @section Misc Network Facilities
2027
2028 These additional functions are useful for creating and operating
2029 on network connections.
2030
2031 @defun network-interface-list
2032 This function returns a list describing the network interfaces
2033 of the machine you are using. The value is an alist whose
2034 elements have the form @code{(@var{name} . @var{address})}.
2035 @var{address} has the same form as the @var{local-address}
2036 and @var{remote-address} arguments to @code{make-network-process}.
2037 @end defun
2038
2039 @defun network-interface-info ifname
2040 This function returns information about the network interface named
2041 @var{ifname}. The value is a list of the form
2042 @code{(@var{addr} @var{bcast} @var{netmask} @var{hwaddr} @var{flags})}.
2043
2044 @table @var
2045 @item addr
2046 The Internet protocol address.
2047 @item bcast
2048 The broadcast address.
2049 @item netmask
2050 The network mask.
2051 @item hwaddr
2052 The layer 2 address (Ethernet MAC address, for instance).
2053 @item flags
2054 The current flags of the interface.
2055 @end table
2056 @end defun
2057
2058 @defun format-network-address address &optional omit-port
2059 This function converts the Lisp representation of a network address to
2060 a string.
2061
2062 A five-element vector @code{[@var{a} @var{b} @var{c} @var{d} @var{p}]}
2063 represents an IPv4 address @var{a}.@var{b}.@var{c}.@var{d} and port
2064 number @var{p}. @code{format-network-address} converts that to the
2065 string @code{"@var{a}.@var{b}.@var{c}.@var{d}:@var{p}"}.
2066
2067 A nine-element vector @code{[@var{a} @var{b} @var{c} @var{d} @var{e}
2068 @var{f} @var{g} @var{h} @var{p}]} represents an IPv6 address and port
2069 number. @code{format-network-address} converts that to the string
2070 @code{"[@var{a}:@var{b}:@var{c}:@var{d}:@var{e}:@var{f}:@var{g}:@var{h}]:@var{p}"}.
2071
2072 If the vector does not include the port number, @var{p}, or if
2073 @var{omit-port} is non-@code{nil}, the result does not include the
2074 @code{:@var{p}} suffix.
2075 @end defun
2076
2077 @node Byte Packing
2078 @section Packing and Unpacking Byte Arrays
2079 @cindex byte packing and unpacking
2080
2081 This section describes how to pack and unpack arrays of bytes,
2082 usually for binary network protocols. These functions convert byte arrays
2083 to alists, and vice versa. The byte array can be represented as a
2084 unibyte string or as a vector of integers, while the alist associates
2085 symbols either with fixed-size objects or with recursive sub-alists.
2086
2087 @cindex serializing
2088 @cindex deserializing
2089 @cindex packing
2090 @cindex unpacking
2091 Conversion from byte arrays to nested alists is also known as
2092 @dfn{deserializing} or @dfn{unpacking}, while going in the opposite
2093 direction is also known as @dfn{serializing} or @dfn{packing}.
2094
2095 @menu
2096 * Bindat Spec:: Describing data layout.
2097 * Bindat Functions:: Doing the unpacking and packing.
2098 * Bindat Examples:: Samples of what bindat.el can do for you!
2099 @end menu
2100
2101 @node Bindat Spec
2102 @subsection Describing Data Layout
2103
2104 To control unpacking and packing, you write a @dfn{data layout
2105 specification}, a special nested list describing named and typed
2106 @dfn{fields}. This specification controls length of each field to be
2107 processed, and how to pack or unpack it. We normally keep bindat specs
2108 in variables whose names end in @samp{-bindat-spec}; that kind of name
2109 is automatically recognized as ``risky.''
2110
2111 @cindex endianness
2112 @cindex big endian
2113 @cindex little endian
2114 @cindex network byte ordering
2115 A field's @dfn{type} describes the size (in bytes) of the object
2116 that the field represents and, in the case of multibyte fields, how
2117 the bytes are ordered within the field. The two possible orderings
2118 are ``big endian'' (also known as ``network byte ordering'') and
2119 ``little endian.'' For instance, the number @code{#x23cd} (decimal
2120 9165) in big endian would be the two bytes @code{#x23} @code{#xcd};
2121 and in little endian, @code{#xcd} @code{#x23}. Here are the possible
2122 type values:
2123
2124 @table @code
2125 @item u8
2126 @itemx byte
2127 Unsigned byte, with length 1.
2128
2129 @item u16
2130 @itemx word
2131 @itemx short
2132 Unsigned integer in network byte order, with length 2.
2133
2134 @item u24
2135 Unsigned integer in network byte order, with length 3.
2136
2137 @item u32
2138 @itemx dword
2139 @itemx long
2140 Unsigned integer in network byte order, with length 4.
2141 Note: These values may be limited by Emacs' integer implementation limits.
2142
2143 @item u16r
2144 @itemx u24r
2145 @itemx u32r
2146 Unsigned integer in little endian order, with length 2, 3 and 4, respectively.
2147
2148 @item str @var{len}
2149 String of length @var{len}.
2150
2151 @item strz @var{len}
2152 Zero-terminated string, in a fixed-size field with length @var{len}.
2153
2154 @item vec @var{len} [@var{type}]
2155 Vector of @var{len} elements of type @var{type}, or bytes if not
2156 @var{type} is specified.
2157 The @var{type} is any of the simple types above, or another vector
2158 specified as a list @code{(vec @var{len} [@var{type}])}.
2159
2160 @item ip
2161 Four-byte vector representing an Internet address. For example:
2162 @code{[127 0 0 1]} for localhost.
2163
2164 @item bits @var{len}
2165 List of set bits in @var{len} bytes. The bytes are taken in big
2166 endian order and the bits are numbered starting with @code{8 *
2167 @var{len} @minus{} 1} and ending with zero. For example: @code{bits
2168 2} unpacks @code{#x28} @code{#x1c} to @code{(2 3 4 11 13)} and
2169 @code{#x1c} @code{#x28} to @code{(3 5 10 11 12)}.
2170
2171 @item (eval @var{form})
2172 @var{form} is a Lisp expression evaluated at the moment the field is
2173 unpacked or packed. The result of the evaluation should be one of the
2174 above-listed type specifications.
2175 @end table
2176
2177 For a fixed-size field, the length @var{len} is given as an integer
2178 specifying the number of bytes in the field.
2179
2180 When the length of a field is not fixed, it typically depends on the
2181 value of a preceding field. In this case, the length @var{len} can be
2182 given either as a list @code{(@var{name} ...)} identifying a
2183 @dfn{field name} in the format specified for @code{bindat-get-field}
2184 below, or by an expression @code{(eval @var{form})} where @var{form}
2185 should evaluate to an integer, specifying the field length.
2186
2187 A field specification generally has the form @code{([@var{name}]
2188 @var{handler})}. The square braces indicate that @var{name} is
2189 optional. (Don't use names that are symbols meaningful as type
2190 specifications (above) or handler specifications (below), since that
2191 would be ambiguous.) @var{name} can be a symbol or the expression
2192 @code{(eval @var{form})}, in which case @var{form} should evaluate to
2193 a symbol.
2194
2195 @var{handler} describes how to unpack or pack the field and can be one
2196 of the following:
2197
2198 @table @code
2199 @item @var{type}
2200 Unpack/pack this field according to the type specification @var{type}.
2201
2202 @item eval @var{form}
2203 Evaluate @var{form}, a Lisp expression, for side-effect only. If the
2204 field name is specified, the value is bound to that field name.
2205
2206 @item fill @var{len}
2207 Skip @var{len} bytes. In packing, this leaves them unchanged,
2208 which normally means they remain zero. In unpacking, this means
2209 they are ignored.
2210
2211 @item align @var{len}
2212 Skip to the next multiple of @var{len} bytes.
2213
2214 @item struct @var{spec-name}
2215 Process @var{spec-name} as a sub-specification. This describes a
2216 structure nested within another structure.
2217
2218 @item union @var{form} (@var{tag} @var{spec})@dots{}
2219 @c ??? I don't see how one would actually use this.
2220 @c ??? what kind of expression would be useful for @var{form}?
2221 Evaluate @var{form}, a Lisp expression, find the first @var{tag}
2222 that matches it, and process its associated data layout specification
2223 @var{spec}. Matching can occur in one of three ways:
2224
2225 @itemize
2226 @item
2227 If a @var{tag} has the form @code{(eval @var{expr})}, evaluate
2228 @var{expr} with the variable @code{tag} dynamically bound to the value
2229 of @var{form}. A non-@code{nil} result indicates a match.
2230
2231 @item
2232 @var{tag} matches if it is @code{equal} to the value of @var{form}.
2233
2234 @item
2235 @var{tag} matches unconditionally if it is @code{t}.
2236 @end itemize
2237
2238 @item repeat @var{count} @var{field-specs}@dots{}
2239 Process the @var{field-specs} recursively, in order, then repeat
2240 starting from the first one, processing all the specs @var{count}
2241 times overall. The @var{count} is given using the same formats as a
2242 field length---if an @code{eval} form is used, it is evaluated just once.
2243 For correct operation, each spec in @var{field-specs} must include a name.
2244 @end table
2245
2246 For the @code{(eval @var{form})} forms used in a bindat specification,
2247 the @var{form} can access and update these dynamically bound variables
2248 during evaluation:
2249
2250 @table @code
2251 @item last
2252 Value of the last field processed.
2253
2254 @item bindat-raw
2255 The data as a byte array.
2256
2257 @item bindat-idx
2258 Current index (within @code{bindat-raw}) for unpacking or packing.
2259
2260 @item struct
2261 The alist containing the structured data that have been unpacked so
2262 far, or the entire structure being packed. You can use
2263 @code{bindat-get-field} to access specific fields of this structure.
2264
2265 @item count
2266 @itemx index
2267 Inside a @code{repeat} block, these contain the maximum number of
2268 repetitions (as specified by the @var{count} parameter), and the
2269 current repetition number (counting from 0). Setting @code{count} to
2270 zero will terminate the inner-most repeat block after the current
2271 repetition has completed.
2272 @end table
2273
2274 @node Bindat Functions
2275 @subsection Functions to Unpack and Pack Bytes
2276
2277 In the following documentation, @var{spec} refers to a data layout
2278 specification, @code{bindat-raw} to a byte array, and @var{struct} to an
2279 alist representing unpacked field data.
2280
2281 @defun bindat-unpack spec bindat-raw &optional bindat-idx
2282 This function unpacks data from the unibyte string or byte
2283 array @code{bindat-raw}
2284 according to @var{spec}. Normally this starts unpacking at the
2285 beginning of the byte array, but if @var{bindat-idx} is non-@code{nil}, it
2286 specifies a zero-based starting position to use instead.
2287
2288 The value is an alist or nested alist in which each element describes
2289 one unpacked field.
2290 @end defun
2291
2292 @defun bindat-get-field struct &rest name
2293 This function selects a field's data from the nested alist
2294 @var{struct}. Usually @var{struct} was returned by
2295 @code{bindat-unpack}. If @var{name} corresponds to just one argument,
2296 that means to extract a top-level field value. Multiple @var{name}
2297 arguments specify repeated lookup of sub-structures. An integer name
2298 acts as an array index.
2299
2300 For example, if @var{name} is @code{(a b 2 c)}, that means to find
2301 field @code{c} in the third element of subfield @code{b} of field
2302 @code{a}. (This corresponds to @code{struct.a.b[2].c} in C.)
2303 @end defun
2304
2305 Although packing and unpacking operations change the organization of
2306 data (in memory), they preserve the data's @dfn{total length}, which is
2307 the sum of all the fields' lengths, in bytes. This value is not
2308 generally inherent in either the specification or alist alone; instead,
2309 both pieces of information contribute to its calculation. Likewise, the
2310 length of a string or array being unpacked may be longer than the data's
2311 total length as described by the specification.
2312
2313 @defun bindat-length spec struct
2314 This function returns the total length of the data in @var{struct},
2315 according to @var{spec}.
2316 @end defun
2317
2318 @defun bindat-pack spec struct &optional bindat-raw bindat-idx
2319 This function returns a byte array packed according to @var{spec} from
2320 the data in the alist @var{struct}. Normally it creates and fills a
2321 new byte array starting at the beginning. However, if @var{bindat-raw}
2322 is non-@code{nil}, it specifies a pre-allocated unibyte string or vector to
2323 pack into. If @var{bindat-idx} is non-@code{nil}, it specifies the starting
2324 offset for packing into @code{bindat-raw}.
2325
2326 When pre-allocating, you should make sure @code{(length @var{bindat-raw})}
2327 meets or exceeds the total length to avoid an out-of-range error.
2328 @end defun
2329
2330 @defun bindat-ip-to-string ip
2331 Convert the Internet address vector @var{ip} to a string in the usual
2332 dotted notation.
2333
2334 @example
2335 (bindat-ip-to-string [127 0 0 1])
2336 @result{} "127.0.0.1"
2337 @end example
2338 @end defun
2339
2340 @node Bindat Examples
2341 @subsection Examples of Byte Unpacking and Packing
2342
2343 Here is a complete example of byte unpacking and packing:
2344
2345 @lisp
2346 (defvar fcookie-index-spec
2347 '((:version u32)
2348 (:count u32)
2349 (:longest u32)
2350 (:shortest u32)
2351 (:flags u32)
2352 (:delim u8)
2353 (:ignored fill 3)
2354 (:offset repeat (:count)
2355 (:foo u32)))
2356 "Description of a fortune cookie index file's contents.")
2357
2358 (defun fcookie (cookies &optional index)
2359 "Display a random fortune cookie from file COOKIES.
2360 Optional second arg INDEX specifies the associated index
2361 filename, which is by default constructed by appending
2362 \".dat\" to COOKIES. Display cookie text in possibly
2363 new buffer \"*Fortune Cookie: BASENAME*\" where BASENAME
2364 is COOKIES without the directory part."
2365 (interactive "fCookies file: ")
2366 (let* ((info (with-temp-buffer
2367 (insert-file-contents-literally
2368 (or index (concat cookies ".dat")))
2369 (bindat-unpack fcookie-index-spec
2370 (buffer-string))))
2371 (sel (random (bindat-get-field info :count)))
2372 (beg (cdar (bindat-get-field info :offset sel)))
2373 (end (or (cdar (bindat-get-field info
2374 :offset (1+ sel)))
2375 (nth 7 (file-attributes cookies)))))
2376 (switch-to-buffer
2377 (get-buffer-create
2378 (format "*Fortune Cookie: %s*"
2379 (file-name-nondirectory cookies))))
2380 (erase-buffer)
2381 (insert-file-contents-literally
2382 cookies nil beg (- end 3))))
2383
2384 (defun fcookie-create-index (cookies &optional index delim)
2385 "Scan file COOKIES, and write out its index file.
2386 Optional second arg INDEX specifies the index filename,
2387 which is by default constructed by appending \".dat\" to
2388 COOKIES. Optional third arg DELIM specifies the unibyte
2389 character which, when found on a line of its own in
2390 COOKIES, indicates the border between entries."
2391 (interactive "fCookies file: ")
2392 (setq delim (or delim ?%))
2393 (let ((delim-line (format "\n%c\n" delim))
2394 (count 0)
2395 (max 0)
2396 min p q len offsets)
2397 (unless (= 3 (string-bytes delim-line))
2398 (error "Delimiter cannot be represented in one byte"))
2399 (with-temp-buffer
2400 (insert-file-contents-literally cookies)
2401 (while (and (setq p (point))
2402 (search-forward delim-line (point-max) t)
2403 (setq len (- (point) 3 p)))
2404 (setq count (1+ count)
2405 max (max max len)
2406 min (min (or min max) len)
2407 offsets (cons (1- p) offsets))))
2408 (with-temp-buffer
2409 (set-buffer-multibyte nil)
2410 (insert
2411 (bindat-pack
2412 fcookie-index-spec
2413 `((:version . 2)
2414 (:count . ,count)
2415 (:longest . ,max)
2416 (:shortest . ,min)
2417 (:flags . 0)
2418 (:delim . ,delim)
2419 (:offset . ,(mapcar (lambda (o)
2420 (list (cons :foo o)))
2421 (nreverse offsets))))))
2422 (let ((coding-system-for-write 'raw-text-unix))
2423 (write-file (or index (concat cookies ".dat")))))))
2424 @end lisp
2425
2426 Following is an example of defining and unpacking a complex structure.
2427 Consider the following C structures:
2428
2429 @example
2430 struct header @{
2431 unsigned long dest_ip;
2432 unsigned long src_ip;
2433 unsigned short dest_port;
2434 unsigned short src_port;
2435 @};
2436
2437 struct data @{
2438 unsigned char type;
2439 unsigned char opcode;
2440 unsigned short length; /* In network byte order */
2441 unsigned char id[8]; /* null-terminated string */
2442 unsigned char data[/* (length + 3) & ~3 */];
2443 @};
2444
2445 struct packet @{
2446 struct header header;
2447 unsigned long counters[2]; /* In little endian order */
2448 unsigned char items;
2449 unsigned char filler[3];
2450 struct data item[/* items */];
2451
2452 @};
2453 @end example
2454
2455 The corresponding data layout specification:
2456
2457 @lisp
2458 (setq header-spec
2459 '((dest-ip ip)
2460 (src-ip ip)
2461 (dest-port u16)
2462 (src-port u16)))
2463
2464 (setq data-spec
2465 '((type u8)
2466 (opcode u8)
2467 (length u16) ;; network byte order
2468 (id strz 8)
2469 (data vec (length))
2470 (align 4)))
2471
2472 (setq packet-spec
2473 '((header struct header-spec)
2474 (counters vec 2 u32r) ;; little endian order
2475 (items u8)
2476 (fill 3)
2477 (item repeat (items)
2478 (struct data-spec))))
2479 @end lisp
2480
2481 A binary data representation:
2482
2483 @lisp
2484 (setq binary-data
2485 [ 192 168 1 100 192 168 1 101 01 28 21 32
2486 160 134 1 0 5 1 0 0 2 0 0 0
2487 2 3 0 5 ?A ?B ?C ?D ?E ?F 0 0 1 2 3 4 5 0 0 0
2488 1 4 0 7 ?B ?C ?D ?E ?F ?G 0 0 6 7 8 9 10 11 12 0 ])
2489 @end lisp
2490
2491 The corresponding decoded structure:
2492
2493 @lisp
2494 (setq decoded (bindat-unpack packet-spec binary-data))
2495 @result{}
2496 ((header
2497 (dest-ip . [192 168 1 100])
2498 (src-ip . [192 168 1 101])
2499 (dest-port . 284)
2500 (src-port . 5408))
2501 (counters . [100000 261])
2502 (items . 2)
2503 (item ((data . [1 2 3 4 5])
2504 (id . "ABCDEF")
2505 (length . 5)
2506 (opcode . 3)
2507 (type . 2))
2508 ((data . [6 7 8 9 10 11 12])
2509 (id . "BCDEFG")
2510 (length . 7)
2511 (opcode . 4)
2512 (type . 1))))
2513 @end lisp
2514
2515 Fetching data from this structure:
2516
2517 @lisp
2518 (bindat-get-field decoded 'item 1 'id)
2519 @result{} "BCDEFG"
2520 @end lisp
2521
2522 @ignore
2523 arch-tag: ba9da253-e65f-4e7f-b727-08fba0a1df7a
2524 @end ignore