Mercurial > emacs
annotate src/process.c @ 48283:2c1a49c60af1
#
author | André Spiegel <spiegel@gnu.org> |
---|---|
date | Wed, 13 Nov 2002 12:40:27 +0000 |
parents | a54c4e29ca9e |
children | 8e86004e885e |
rev | line source |
---|---|
578 | 1 /* Asynchronous subprocess control for GNU Emacs. |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999, |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3 2001, 2002 Free Software Foundation, Inc. |
578 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
1780
d01c59bac5c1
* frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as
Jim Blandy <jimb@redhat.com>
parents:
1683
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
578 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14131
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14131
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
578 | 21 |
22 | |
26313
9275b6adbad2
Undo last change and define _GNU_SOURCE before config.h.
Dave Love <fx@gnu.org>
parents:
26311
diff
changeset
|
23 #define _GNU_SOURCE /* to get strsignal declared with glibc 2 */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
24 #include <config.h> |
578 | 25 #include <signal.h> |
26 | |
588 | 27 /* This file is split into two parts by the following preprocessor |
28 conditional. The 'then' clause contains all of the support for | |
29 asynchronous subprocesses. The 'else' clause contains stub | |
30 versions of some of the asynchronous subprocess routines that are | |
31 often called elsewhere in Emacs, so we don't have to #ifdef the | |
32 sections that call them. */ | |
33 | |
34 | |
578 | 35 #ifdef subprocesses |
36 | |
37 #include <stdio.h> | |
38 #include <errno.h> | |
39 #include <setjmp.h> | |
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */ | |
41 #include <sys/file.h> | |
42 #include <sys/stat.h> | |
6158 | 43 #ifdef HAVE_UNISTD_H |
44 #include <unistd.h> | |
45 #endif | |
578 | 46 |
29035
95e767e77a88
(toplevel) [UNIX98_PTYS]: Include stdlib.h.
Gerd Moellmann <gerd@gnu.org>
parents:
29017
diff
changeset
|
47 #if defined(WINDOWSNT) || defined(UNIX98_PTYS) |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
48 #include <stdlib.h> |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
49 #include <fcntl.h> |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
50 #endif /* not WINDOWSNT */ |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
51 |
578 | 52 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */ |
53 #include <sys/socket.h> | |
54 #include <netdb.h> | |
55 #include <netinet/in.h> | |
56 #include <arpa/inet.h> | |
12749
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
57 #ifdef NEED_NET_ERRNO_H |
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
58 #include <net/errno.h> |
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
59 #endif /* NEED_NET_ERRNO_H */ |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
60 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
61 /* Are local (unix) sockets supported? */ |
43999
177616cff62b
Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
Kim F. Storm <storm@cua.dk>
parents:
43995
diff
changeset
|
62 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
63 #if !defined (AF_LOCAL) && defined (AF_UNIX) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
64 #define AF_LOCAL AF_UNIX |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
65 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
66 #ifdef AF_LOCAL |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
67 #define HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
68 #include <sys/un.h> |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
69 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
70 #endif |
578 | 71 #endif /* HAVE_SOCKETS */ |
72 | |
26313
9275b6adbad2
Undo last change and define _GNU_SOURCE before config.h.
Dave Love <fx@gnu.org>
parents:
26311
diff
changeset
|
73 /* TERM is a poor-man's SLIP, used on GNU/Linux. */ |
4914
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
74 #ifdef TERM |
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
75 #include <client.h> |
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
76 #endif |
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
77 |
7238
c9598edda1a2
(IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Paul Reilly <pmr@pajato.com>
parents:
7220
diff
changeset
|
78 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */ |
c9598edda1a2
(IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Paul Reilly <pmr@pajato.com>
parents:
7220
diff
changeset
|
79 #ifdef HAVE_BROKEN_INET_ADDR |
4998
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
80 #define IN_ADDR struct in_addr |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
81 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
82 #else |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
83 #define IN_ADDR unsigned long |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
84 #define NUMERIC_ADDR_ERROR (numeric_addr == -1) |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
85 #endif |
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
86 |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
87 #if defined(BSD_SYSTEM) || defined(STRIDE) |
578 | 88 #include <sys/ioctl.h> |
1012
a48ed1d416dd
* process.c (process_send_signal): Don't send SIGTSTP if the
Jim Blandy <jimb@redhat.com>
parents:
849
diff
changeset
|
89 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5) |
578 | 90 #include <fcntl.h> |
91 #endif /* HAVE_PTYS and no O_NDELAY */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
92 #endif /* BSD_SYSTEM || STRIDE */ |
578 | 93 |
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
94 #ifdef BROKEN_O_NONBLOCK |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
95 #undef O_NONBLOCK |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
96 #endif /* BROKEN_O_NONBLOCK */ |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
97 |
578 | 98 #ifdef NEED_BSDTTY |
99 #include <bsdtty.h> | |
100 #endif | |
101 | |
102 #ifdef IRIS | |
103 #include <sys/sysmacros.h> /* for "minor" */ | |
104 #endif /* not IRIS */ | |
48088 | 105 |
106 #ifdef HAVE_SYS_WAIT | |
107 #include <sys/wait.h> | |
108 #endif | |
578 | 109 |
110 #include "systime.h" | |
1047
1ab1ed32e82a
* process.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1030
diff
changeset
|
111 #include "systty.h" |
578 | 112 |
113 #include "lisp.h" | |
114 #include "window.h" | |
115 #include "buffer.h" | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
116 #include "charset.h" |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
117 #include "coding.h" |
578 | 118 #include "process.h" |
119 #include "termhooks.h" | |
120 #include "termopts.h" | |
121 #include "commands.h" | |
31099
0fe5afca71e4
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30582
diff
changeset
|
122 #include "keyboard.h" |
1780
d01c59bac5c1
* frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as
Jim Blandy <jimb@redhat.com>
parents:
1683
diff
changeset
|
123 #include "frame.h" |
16780 | 124 #include "blockinput.h" |
21514 | 125 #include "dispextern.h" |
26868 | 126 #include "composite.h" |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
127 #include "atimer.h" |
578 | 128 |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
129 Lisp_Object Qprocessp; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
130 Lisp_Object Qrun, Qstop, Qsignal; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
131 Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
132 Lisp_Object Qlocal, Qdatagram; |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
133 Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
134 Lisp_Object QClocal, QCremote, QCcoding; |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
135 Lisp_Object QCserver, QCnowait, QCnoquery, QCstop; |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
136 Lisp_Object QCsentinel, QClog, QCoptions; |
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
137 Lisp_Object Qlast_nonmenu_event; |
44041
134644f94850
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents:
44038
diff
changeset
|
138 /* QCfamily is declared and initialized in xfaces.c, |
134644f94850
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents:
44038
diff
changeset
|
139 QCfilter in keyboard.c. */ |
134644f94850
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents:
44038
diff
changeset
|
140 extern Lisp_Object QCfamily, QCfilter; |
134644f94850
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents:
44038
diff
changeset
|
141 |
578 | 142 /* Qexit is declared and initialized in eval.c. */ |
143 | |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
144 /* QCfamily is defined in xfaces.c. */ |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
145 extern Lisp_Object QCfamily; |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
146 /* QCfilter is defined in keyboard.c. */ |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
147 extern Lisp_Object QCfilter; |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
148 |
578 | 149 /* a process object is a network connection when its childp field is neither |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
150 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */ |
578 | 151 |
152 #ifdef HAVE_SOCKETS | |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
153 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp)) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
154 #define NETCONN1_P(p) (GC_CONSP ((p)->childp)) |
578 | 155 #else |
156 #define NETCONN_P(p) 0 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
157 #define NETCONN1_P(p) 0 |
578 | 158 #endif /* HAVE_SOCKETS */ |
159 | |
160 /* Define first descriptor number available for subprocesses. */ | |
161 #ifdef VMS | |
162 #define FIRST_PROC_DESC 1 | |
163 #else /* Not VMS */ | |
164 #define FIRST_PROC_DESC 3 | |
165 #endif | |
166 | |
167 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals | |
168 testing SIGCHLD. */ | |
169 | |
170 #if !defined (SIGCHLD) && defined (SIGCLD) | |
171 #define SIGCHLD SIGCLD | |
172 #endif /* SIGCLD */ | |
173 | |
174 #include "syssignal.h" | |
175 | |
4639 | 176 #include "syswait.h" |
578 | 177 |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
178 extern void set_waiting_for_input P_ ((EMACS_TIME *)); |
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
179 |
31099
0fe5afca71e4
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30582
diff
changeset
|
180 #ifndef USE_CRT_DLL |
5543 | 181 extern int errno; |
31099
0fe5afca71e4
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30582
diff
changeset
|
182 #endif |
5543 | 183 #ifdef VMS |
578 | 184 extern char *sys_errlist[]; |
5543 | 185 #endif |
578 | 186 |
8331
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
187 #ifndef HAVE_H_ERRNO |
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
188 extern int h_errno; |
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
189 #endif |
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
190 |
578 | 191 /* t means use pty, nil means use a pipe, |
192 maybe other values to come. */ | |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
193 static Lisp_Object Vprocess_connection_type; |
578 | 194 |
195 #ifdef SKTPAIR | |
196 #ifndef HAVE_SOCKETS | |
197 #include <sys/socket.h> | |
198 #endif | |
199 #endif /* SKTPAIR */ | |
200 | |
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
201 /* These next two vars are non-static since sysdep.c uses them in the |
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
202 emulation of `select'. */ |
578 | 203 /* Number of events of change of status of a process. */ |
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
204 int process_tick; |
578 | 205 /* Number of events for which the user or sentinel has been notified. */ |
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
206 int update_tick; |
578 | 207 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
208 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
209 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
210 #ifdef BROKEN_NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
211 #undef NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
212 #else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
213 #ifndef NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
214 #ifdef HAVE_SOCKETS |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
215 #ifdef HAVE_SELECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
216 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
217 #if defined (O_NONBLOCK) || defined (O_NDELAY) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
218 #if defined (EWOULDBLOCK) || defined (EINPROGRESS) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
219 #define NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
220 #endif /* EWOULDBLOCK || EINPROGRESS */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
221 #endif /* O_NONBLOCK || O_NDELAY */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
222 #endif /* HAVE_GETPEERNAME || GNU_LINUX */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
223 #endif /* HAVE_SELECT */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
224 #endif /* HAVE_SOCKETS */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
225 #endif /* NON_BLOCKING_CONNECT */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
226 #endif /* BROKEN_NON_BLOCKING_CONNECT */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
227 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
228 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
229 this system. We need to read full packets, so we need a |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
230 "non-destructive" select. So we require either native select, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
231 or emulation of select using FIONREAD. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
232 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
233 #ifdef BROKEN_DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
234 #undef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
235 #else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
236 #ifndef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
237 #ifdef HAVE_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
238 #if defined (HAVE_SELECT) || defined (FIONREAD) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
239 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
240 #define DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
241 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
242 #endif /* HAVE_SELECT || FIONREAD */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
243 #endif /* HAVE_SOCKETS */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
244 #endif /* DATAGRAM_SOCKETS */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
245 #endif /* BROKEN_DATAGRAM_SOCKETS */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
246 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
247 #ifdef TERM |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
248 #undef NON_BLOCKING_CONNECT |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
249 #undef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
250 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
251 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
252 |
10527
68b8191091a7
#include sysselect.h instead of defining things by hand.
Karl Heuer <kwzh@gnu.org>
parents:
10032
diff
changeset
|
253 #include "sysselect.h" |
578 | 254 |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
255 extern int keyboard_bit_set P_ ((SELECT_TYPE *)); |
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
256 |
13414
b035c6e41457
[HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13159
diff
changeset
|
257 /* If we support a window system, turn on the code to poll periodically |
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
258 to detect C-g. It isn't actually used when doing interrupt input. */ |
13414
b035c6e41457
[HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13159
diff
changeset
|
259 #ifdef HAVE_WINDOW_SYSTEM |
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
260 #define POLL_FOR_INPUT |
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
261 #endif |
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
262 |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
263 /* Mask of bits indicating the descriptors that we wait for input on. */ |
578 | 264 |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
265 static SELECT_TYPE input_wait_mask; |
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
266 |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
267 /* Mask that excludes keyboard input descriptor (s). */ |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
268 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
269 static SELECT_TYPE non_keyboard_wait_mask; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
270 |
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
271 /* Mask that excludes process input descriptor (s). */ |
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
272 |
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
273 static SELECT_TYPE non_process_wait_mask; |
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
274 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
275 /* Mask of bits indicating the descriptors that we wait for connect to |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
276 complete on. Once they complete, they are removed from this mask |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
277 and added to the input_wait_mask and non_keyboard_wait_mask. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
278 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
279 static SELECT_TYPE connect_wait_mask; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
280 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
281 /* Number of bits set in connect_wait_mask. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
282 static int num_pending_connects; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
283 |
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
284 /* The largest descriptor currently in use for a process object. */ |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
285 static int max_process_desc; |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
286 |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
287 /* The largest descriptor currently in use for keyboard input. */ |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
288 static int max_keyboard_desc; |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
289 |
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
290 /* Nonzero means delete a process right away if it exits. */ |
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
291 static int delete_exited_processes; |
578 | 292 |
293 /* Indexed by descriptor, gives the process (if any) for that descriptor */ | |
6164
d047d5a48e0e
(chan_process, Vprocess_alist): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
6158
diff
changeset
|
294 Lisp_Object chan_process[MAXDESC]; |
578 | 295 |
296 /* Alist of elements (NAME . PROCESS) */ | |
6164
d047d5a48e0e
(chan_process, Vprocess_alist): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
6158
diff
changeset
|
297 Lisp_Object Vprocess_alist; |
578 | 298 |
299 /* Buffered-ahead input char from process, indexed by channel. | |
300 -1 means empty (no char is buffered). | |
301 Used on sys V where the only way to tell if there is any | |
302 output from the process is to read at least one char. | |
303 Always -1 on systems that support FIONREAD. */ | |
304 | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
305 /* Don't make static; need to access externally. */ |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
306 int proc_buffered_char[MAXDESC]; |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
307 |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
308 /* Table of `struct coding-system' for each process. */ |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
309 static struct coding_system *proc_decode_coding_system[MAXDESC]; |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
310 static struct coding_system *proc_encode_coding_system[MAXDESC]; |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
311 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
312 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
313 /* Table of `partner address' for datagram sockets. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
314 struct sockaddr_and_len { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
315 struct sockaddr *sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
316 int len; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
317 } datagram_address[MAXDESC]; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
318 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0) |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
319 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
320 #else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
321 #define DATAGRAM_CHAN_P(chan) (0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
322 #define DATAGRAM_CONN_P(proc) (0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
323 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
324 |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
325 static Lisp_Object get_process (); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
326 static void exec_sentinel (); |
6158 | 327 |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
328 extern EMACS_TIME timer_check (); |
14785
e4a9806c1e83
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14758
diff
changeset
|
329 extern int timers_run; |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
330 |
6158 | 331 /* Maximum number of bytes to send to a pty without an eof. */ |
332 static int pty_max_bytes; | |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
333 |
21049
01e626b0a624
(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
20715
diff
changeset
|
334 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; |
19837
3bee81323f73
(create_process): Encode the new current dir.
Richard M. Stallman <rms@gnu.org>
parents:
19642
diff
changeset
|
335 |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
336 #ifdef HAVE_PTYS |
48088 | 337 #ifdef HAVE_PTY_H |
338 #include <pty.h> | |
339 #endif | |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
340 /* The file name of the pty opened by allocate_pty. */ |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
341 |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
342 static char pty_name[24]; |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
343 #endif |
578 | 344 |
345 /* Compute the Lisp form of the process status, p->status, from | |
346 the numeric status that was returned by `wait'. */ | |
347 | |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
348 Lisp_Object status_convert (); |
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
349 |
21514 | 350 void |
578 | 351 update_status (p) |
352 struct Lisp_Process *p; | |
353 { | |
354 union { int i; WAITTYPE wt; } u; | |
355 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16); | |
356 p->status = status_convert (u.wt); | |
357 p->raw_status_low = Qnil; | |
358 p->raw_status_high = Qnil; | |
359 } | |
360 | |
3608 | 361 /* Convert a process status word in Unix format to |
578 | 362 the list that we use internally. */ |
363 | |
364 Lisp_Object | |
365 status_convert (w) | |
366 WAITTYPE w; | |
367 { | |
368 if (WIFSTOPPED (w)) | |
369 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil)); | |
370 else if (WIFEXITED (w)) | |
371 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)), | |
372 WCOREDUMP (w) ? Qt : Qnil)); | |
373 else if (WIFSIGNALED (w)) | |
374 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)), | |
375 WCOREDUMP (w) ? Qt : Qnil)); | |
376 else | |
377 return Qrun; | |
378 } | |
379 | |
380 /* Given a status-list, extract the three pieces of information | |
381 and store them individually through the three pointers. */ | |
382 | |
383 void | |
384 decode_status (l, symbol, code, coredump) | |
385 Lisp_Object l; | |
386 Lisp_Object *symbol; | |
387 int *code; | |
388 int *coredump; | |
389 { | |
390 Lisp_Object tem; | |
391 | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
392 if (SYMBOLP (l)) |
578 | 393 { |
394 *symbol = l; | |
395 *code = 0; | |
396 *coredump = 0; | |
397 } | |
398 else | |
399 { | |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
400 *symbol = XCAR (l); |
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
401 tem = XCDR (l); |
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
402 *code = XFASTINT (XCAR (tem)); |
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
403 tem = XCDR (tem); |
578 | 404 *coredump = !NILP (tem); |
405 } | |
406 } | |
407 | |
408 /* Return a string describing a process status list. */ | |
409 | |
410 Lisp_Object | |
411 status_message (status) | |
412 Lisp_Object status; | |
413 { | |
414 Lisp_Object symbol; | |
415 int code, coredump; | |
416 Lisp_Object string, string2; | |
417 | |
418 decode_status (status, &symbol, &code, &coredump); | |
419 | |
420 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop)) | |
421 { | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
422 char *signame; |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26313
diff
changeset
|
423 synchronize_system_messages_locale (); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
424 signame = strsignal (code); |
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
425 if (signame == 0) |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
426 signame = "unknown"; |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
427 string = build_string (signame); |
578 | 428 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
46431
db28853d1e82
* process.c (status_message): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46411
diff
changeset
|
429 SSET (string, 0, DOWNCASE (SREF (string, 0))); |
578 | 430 return concat2 (string, string2); |
431 } | |
432 else if (EQ (symbol, Qexit)) | |
433 { | |
434 if (code == 0) | |
435 return build_string ("finished\n"); | |
2429
96b55f2f19cd
Rename int-to-string to number-to-string, since it can handle
Jim Blandy <jimb@redhat.com>
parents:
2357
diff
changeset
|
436 string = Fnumber_to_string (make_number (code)); |
578 | 437 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
438 return concat3 (build_string ("exited abnormally with code "), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
439 string, string2); |
578 | 440 } |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
441 else if (EQ (symbol, Qfailed)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
442 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
443 string = Fnumber_to_string (make_number (code)); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
444 string2 = build_string ("\n"); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
445 return concat3 (build_string ("failed with code "), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
446 string, string2); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
447 } |
578 | 448 else |
449 return Fcopy_sequence (Fsymbol_name (symbol)); | |
450 } | |
451 | |
452 #ifdef HAVE_PTYS | |
453 | |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
454 /* Open an available pty, returning a file descriptor. |
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
455 Return -1 on failure. |
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
456 The file name of the terminal corresponding to the pty |
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
457 is left in the variable pty_name. */ |
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
458 |
578 | 459 int |
460 allocate_pty () | |
461 { | |
462 struct stat stb; | |
21514 | 463 register int c, i; |
578 | 464 int fd; |
465 | |
624 | 466 /* Some systems name their pseudoterminals so that there are gaps in |
467 the usual sequence - for example, on HP9000/S700 systems, there | |
468 are no pseudoterminals with names ending in 'f'. So we wait for | |
469 three failures in a row before deciding that we've reached the | |
470 end of the ptys. */ | |
471 int failed_count = 0; | |
472 | |
578 | 473 #ifdef PTY_ITERATION |
474 PTY_ITERATION | |
475 #else | |
476 for (c = FIRST_PTY_LETTER; c <= 'z'; c++) | |
477 for (i = 0; i < 16; i++) | |
478 #endif | |
479 { | |
480 #ifdef PTY_NAME_SPRINTF | |
481 PTY_NAME_SPRINTF | |
482 #else | |
483 sprintf (pty_name, "/dev/pty%c%x", c, i); | |
484 #endif /* no PTY_NAME_SPRINTF */ | |
485 | |
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
486 #ifdef PTY_OPEN |
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
487 PTY_OPEN; |
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
488 #else /* no PTY_OPEN */ |
624 | 489 #ifdef IRIS |
490 /* Unusual IRIS code */ | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
491 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0); |
624 | 492 if (fd < 0) |
493 return -1; | |
494 if (fstat (fd, &stb) < 0) | |
495 return -1; | |
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
496 #else /* not IRIS */ |
578 | 497 if (stat (pty_name, &stb) < 0) |
624 | 498 { |
499 failed_count++; | |
500 if (failed_count >= 3) | |
501 return -1; | |
502 } | |
503 else | |
504 failed_count = 0; | |
578 | 505 #ifdef O_NONBLOCK |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
506 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0); |
578 | 507 #else |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
508 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0); |
578 | 509 #endif |
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
510 #endif /* not IRIS */ |
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
511 #endif /* no PTY_OPEN */ |
578 | 512 |
513 if (fd >= 0) | |
514 { | |
515 /* check to make certain that both sides are available | |
516 this avoids a nasty yet stupid bug in rlogins */ | |
517 #ifdef PTY_TTY_NAME_SPRINTF | |
518 PTY_TTY_NAME_SPRINTF | |
519 #else | |
520 sprintf (pty_name, "/dev/tty%c%x", c, i); | |
521 #endif /* no PTY_TTY_NAME_SPRINTF */ | |
522 #ifndef UNIPLUS | |
523 if (access (pty_name, 6) != 0) | |
524 { | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
525 emacs_close (fd); |
2887
0554478bfa71
* process.c [__sgi] (allocate_pty): Give up immediately if pty is
Jim Blandy <jimb@redhat.com>
parents:
2830
diff
changeset
|
526 #if !defined(IRIS) && !defined(__sgi) |
578 | 527 continue; |
528 #else | |
529 return -1; | |
530 #endif /* IRIS */ | |
531 } | |
532 #endif /* not UNIPLUS */ | |
533 setup_pty (fd); | |
534 return fd; | |
535 } | |
536 } | |
537 return -1; | |
538 } | |
539 #endif /* HAVE_PTYS */ | |
540 | |
541 Lisp_Object | |
542 make_process (name) | |
543 Lisp_Object name; | |
544 { | |
545 register Lisp_Object val, tem, name1; | |
546 register struct Lisp_Process *p; | |
547 char suffix[10]; | |
548 register int i; | |
549 | |
36434
40cfe4976f04
(make_process): Use allocate_process.
Gerd Moellmann <gerd@gnu.org>
parents:
35336
diff
changeset
|
550 p = allocate_process (); |
9969
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
551 |
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
552 XSETINT (p->infd, -1); |
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
553 XSETINT (p->outfd, -1); |
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
554 XSETFASTINT (p->pid, 0); |
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
555 XSETFASTINT (p->tick, 0); |
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
556 XSETFASTINT (p->update_tick, 0); |
578 | 557 p->raw_status_low = Qnil; |
558 p->raw_status_high = Qnil; | |
559 p->status = Qrun; | |
560 p->mark = Fmake_marker (); | |
561 | |
562 /* If name is already in use, modify it until it is unused. */ | |
563 | |
564 name1 = name; | |
565 for (i = 1; ; i++) | |
566 { | |
567 tem = Fget_process (name1); | |
568 if (NILP (tem)) break; | |
569 sprintf (suffix, "<%d>", i); | |
570 name1 = concat2 (name, build_string (suffix)); | |
571 } | |
572 name = name1; | |
573 p->name = name; | |
9969
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
574 XSETPROCESS (val, p); |
578 | 575 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist); |
576 return val; | |
577 } | |
578 | |
21514 | 579 void |
578 | 580 remove_process (proc) |
581 register Lisp_Object proc; | |
582 { | |
583 register Lisp_Object pair; | |
584 | |
585 pair = Frassq (proc, Vprocess_alist); | |
586 Vprocess_alist = Fdelq (pair, Vprocess_alist); | |
587 | |
588 deactivate_process (proc); | |
589 } | |
590 | |
591 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
592 doc: /* Return t if OBJECT is a process. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
593 (object) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
594 Lisp_Object object; |
578 | 595 { |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
596 return PROCESSP (object) ? Qt : Qnil; |
578 | 597 } |
598 | |
599 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
600 doc: /* Return the process named NAME, or nil if there is none. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
601 (name) |
578 | 602 register Lisp_Object name; |
603 { | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
604 if (PROCESSP (name)) |
578 | 605 return name; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
606 CHECK_STRING (name); |
578 | 607 return Fcdr (Fassoc (name, Vprocess_alist)); |
608 } | |
609 | |
610 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
611 doc: /* Return the (or a) process associated with BUFFER. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
612 BUFFER may be a buffer or the name of one. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
613 (buffer) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
614 register Lisp_Object buffer; |
578 | 615 { |
616 register Lisp_Object buf, tail, proc; | |
617 | |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
618 if (NILP (buffer)) return Qnil; |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
619 buf = Fget_buffer (buffer); |
578 | 620 if (NILP (buf)) return Qnil; |
621 | |
622 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) | |
623 { | |
624 proc = Fcdr (Fcar (tail)); | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
625 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf)) |
578 | 626 return proc; |
627 } | |
628 return Qnil; | |
629 } | |
630 | |
808 | 631 /* This is how commands for the user decode process arguments. It |
632 accepts a process, a process name, a buffer, a buffer name, or nil. | |
633 Buffers denote the first process in the buffer, and nil denotes the | |
634 current buffer. */ | |
578 | 635 |
4994
4146a65b9f02
(get_process): Add `static' to definition.
Richard M. Stallman <rms@gnu.org>
parents:
4914
diff
changeset
|
636 static Lisp_Object |
578 | 637 get_process (name) |
638 register Lisp_Object name; | |
639 { | |
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
640 register Lisp_Object proc, obj; |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
641 if (STRINGP (name)) |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
642 { |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
643 obj = Fget_process (name); |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
644 if (NILP (obj)) |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
645 obj = Fget_buffer (name); |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
646 if (NILP (obj)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
647 error ("Process %s does not exist", SDATA (name)); |
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
648 } |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
649 else if (NILP (name)) |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
650 obj = Fcurrent_buffer (); |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
651 else |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
652 obj = name; |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
653 |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
654 /* Now obj should be either a buffer object or a process object. |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
655 */ |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
656 if (BUFFERP (obj)) |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
657 { |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
658 proc = Fget_buffer_process (obj); |
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
659 if (NILP (proc)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
660 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name)); |
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
661 } |
578 | 662 else |
663 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
664 CHECK_PROCESS (obj); |
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
665 proc = obj; |
578 | 666 } |
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
667 return proc; |
578 | 668 } |
669 | |
670 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
671 doc: /* Delete PROCESS: kill it and forget about it immediately. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
672 PROCESS may be a process, a buffer, the name of a process or buffer, or |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
673 nil, indicating the current buffer's process. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
674 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
675 register Lisp_Object process; |
578 | 676 { |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
677 process = get_process (process); |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
678 XPROCESS (process)->raw_status_low = Qnil; |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
679 XPROCESS (process)->raw_status_high = Qnil; |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
680 if (NETCONN_P (process)) |
578 | 681 { |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
682 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil)); |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
683 XSETINT (XPROCESS (process)->tick, ++process_tick); |
578 | 684 } |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
685 else if (XINT (XPROCESS (process)->infd) >= 0) |
578 | 686 { |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
687 Fkill_process (process, Qnil); |
578 | 688 /* Do this now, since remove_process will make sigchld_handler do nothing. */ |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
689 XPROCESS (process)->status |
578 | 690 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil)); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
691 XSETINT (XPROCESS (process)->tick, ++process_tick); |
578 | 692 status_notify (); |
693 } | |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
694 remove_process (process); |
578 | 695 return Qnil; |
696 } | |
697 | |
698 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
699 doc: /* Return the status of PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
700 The returned value is one of the following symbols: |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
701 run -- for a process that is running. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
702 stop -- for a process stopped but continuable. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
703 exit -- for a process that has exited. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
704 signal -- for a process that has got a fatal signal. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
705 open -- for a network stream connection that is open. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
706 listen -- for a network stream server that is listening. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
707 closed -- for a network stream connection that is closed. |
43600
f21620032428
(Fprocess_status): Document connect and failed return values.
Kim F. Storm <storm@cua.dk>
parents:
43598
diff
changeset
|
708 connect -- when waiting for a non-blocking connection to complete. |
f21620032428
(Fprocess_status): Document connect and failed return values.
Kim F. Storm <storm@cua.dk>
parents:
43598
diff
changeset
|
709 failed -- when a non-blocking connection has failed. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
710 nil -- if arg is a process name and no such process exists. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
711 PROCESS may be a process, a buffer, the name of a process, or |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
712 nil, indicating the current buffer's process. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
713 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
714 register Lisp_Object process; |
578 | 715 { |
716 register struct Lisp_Process *p; | |
717 register Lisp_Object status; | |
7937
bf963799d8be
(Fprocess_status): Return nil for process name that has no process.
Richard M. Stallman <rms@gnu.org>
parents:
7893
diff
changeset
|
718 |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
719 if (STRINGP (process)) |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
720 process = Fget_process (process); |
7937
bf963799d8be
(Fprocess_status): Return nil for process name that has no process.
Richard M. Stallman <rms@gnu.org>
parents:
7893
diff
changeset
|
721 else |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
722 process = get_process (process); |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
723 |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
724 if (NILP (process)) |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
725 return process; |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
726 |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
727 p = XPROCESS (process); |
578 | 728 if (!NILP (p->raw_status_low)) |
729 update_status (p); | |
730 status = p->status; | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
731 if (CONSP (status)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
732 status = XCAR (status); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
733 if (NETCONN1_P (p)) |
578 | 734 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
735 if (EQ (status, Qexit)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
736 status = Qclosed; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
737 else if (EQ (p->command, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
738 status = Qstop; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
739 else if (EQ (status, Qrun)) |
578 | 740 status = Qopen; |
741 } | |
742 return status; | |
743 } | |
744 | |
745 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status, | |
746 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
747 doc: /* Return the exit status of PROCESS or the signal number that killed it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
748 If PROCESS has not yet exited or died, return 0. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
749 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
750 register Lisp_Object process; |
578 | 751 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
752 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
753 if (!NILP (XPROCESS (process)->raw_status_low)) |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
754 update_status (XPROCESS (process)); |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
755 if (CONSP (XPROCESS (process)->status)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
756 return XCAR (XCDR (XPROCESS (process)->status)); |
578 | 757 return make_number (0); |
758 } | |
759 | |
760 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
761 doc: /* Return the process id of PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
762 This is the pid of the Unix process which PROCESS uses or talks to. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
763 For a network connection, this value is nil. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
764 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
765 register Lisp_Object process; |
578 | 766 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
767 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
768 return XPROCESS (process)->pid; |
578 | 769 } |
770 | |
771 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
772 doc: /* Return the name of PROCESS, as a string. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
773 This is the name of the program invoked in PROCESS, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
774 possibly modified to make it unique among process names. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
775 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
776 register Lisp_Object process; |
578 | 777 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
778 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
779 return XPROCESS (process)->name; |
578 | 780 } |
781 | |
782 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
783 doc: /* Return the command that was executed to start PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
784 This is a list of strings, the first string being the program executed |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
785 and the rest of the strings being the arguments given to it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
786 For a non-child channel, this is nil. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
787 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
788 register Lisp_Object process; |
578 | 789 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
790 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
791 return XPROCESS (process)->command; |
578 | 792 } |
793 | |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
794 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
795 doc: /* Return the name of the terminal PROCESS uses, or nil if none. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
796 This is the terminal that the process itself reads and writes on, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
797 not the name of the pty that Emacs uses to talk with that terminal. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
798 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
799 register Lisp_Object process; |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
800 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
801 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
802 return XPROCESS (process)->tty_name; |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
803 } |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
804 |
578 | 805 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
806 2, 2, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
807 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
808 (process, buffer) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
809 register Lisp_Object process, buffer; |
578 | 810 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
811 struct Lisp_Process *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
812 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
813 CHECK_PROCESS (process); |
578 | 814 if (!NILP (buffer)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
815 CHECK_BUFFER (buffer); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
816 p = XPROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
817 p->buffer = buffer; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
818 if (NETCONN1_P (p)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
819 p->childp = Fplist_put (p->childp, QCbuffer, buffer); |
578 | 820 return buffer; |
821 } | |
822 | |
823 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
824 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
825 doc: /* Return the buffer PROCESS is associated with. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
826 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
827 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
828 register Lisp_Object process; |
578 | 829 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
830 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
831 return XPROCESS (process)->buffer; |
578 | 832 } |
833 | |
834 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
835 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
836 doc: /* Return the marker for the end of the last output from PROCESS. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
837 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
838 register Lisp_Object process; |
578 | 839 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
840 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
841 return XPROCESS (process)->mark; |
578 | 842 } |
843 | |
844 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
845 2, 2, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
846 doc: /* Give PROCESS the filter function FILTER; nil means no filter. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
847 t means stop accepting output from the process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
848 When a process has a filter, each time it does output |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
849 the entire string of output is passed to the filter. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
850 The filter gets two arguments: the process and the string of output. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
851 If the process has a filter, its buffer is not used for output. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
852 (process, filter) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
853 register Lisp_Object process, filter; |
578 | 854 { |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
855 struct Lisp_Process *p; |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
856 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
857 CHECK_PROCESS (process); |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
858 p = XPROCESS (process); |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
859 |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
860 /* Don't signal an error if the process' input file descriptor |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
861 is closed. This could make debugging Lisp more difficult, |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
862 for example when doing something like |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
863 |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
864 (setq process (start-process ...)) |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
865 (debug) |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
866 (set-process-filter process ...) */ |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
867 |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
868 if (XINT (p->infd) >= 0) |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
869 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
870 if (EQ (filter, Qt) && !EQ (p->status, Qlisten)) |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
871 { |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
872 FD_CLR (XINT (p->infd), &input_wait_mask); |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
873 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask); |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
874 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
875 else if (EQ (p->filter, Qt) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
876 && !EQ (p->command, Qt)) /* Network process not stopped. */ |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
877 { |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
878 FD_SET (XINT (p->infd), &input_wait_mask); |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
879 FD_SET (XINT (p->infd), &non_keyboard_wait_mask); |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
880 } |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
881 } |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
882 |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
883 p->filter = filter; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
884 if (NETCONN1_P (p)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
885 p->childp = Fplist_put (p->childp, QCfilter, filter); |
578 | 886 return filter; |
887 } | |
888 | |
889 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
890 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
891 doc: /* Returns the filter function of PROCESS; nil if none. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
892 See `set-process-filter' for more info on filter functions. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
893 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
894 register Lisp_Object process; |
578 | 895 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
896 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
897 return XPROCESS (process)->filter; |
578 | 898 } |
899 | |
900 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
901 2, 2, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
902 doc: /* Give PROCESS the sentinel SENTINEL; nil for none. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
903 The sentinel is called as a function when the process changes state. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
904 It gets two arguments: the process, and a string describing the change. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
905 (process, sentinel) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
906 register Lisp_Object process, sentinel; |
578 | 907 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
908 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
909 XPROCESS (process)->sentinel = sentinel; |
578 | 910 return sentinel; |
911 } | |
912 | |
913 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
914 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
915 doc: /* Return the sentinel of PROCESS; nil if none. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
916 See `set-process-sentinel' for more info on sentinels. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
917 (process) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
918 register Lisp_Object process; |
578 | 919 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
920 CHECK_PROCESS (process); |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
921 return XPROCESS (process)->sentinel; |
578 | 922 } |
923 | |
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
924 DEFUN ("set-process-window-size", Fset_process_window_size, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
925 Sset_process_window_size, 3, 3, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
926 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
927 (process, height, width) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
928 register Lisp_Object process, height, width; |
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
929 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
930 CHECK_PROCESS (process); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
931 CHECK_NATNUM (height); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
932 CHECK_NATNUM (width); |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
933 |
36659
c1c5ad73f700
(Fset_process_window_size): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents:
36623
diff
changeset
|
934 if (XINT (XPROCESS (process)->infd) < 0 |
36623
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
935 || set_window_size (XINT (XPROCESS (process)->infd), |
9fde2182c68a
(Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents:
36434
diff
changeset
|
936 XINT (height), XINT (width)) <= 0) |
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
937 return Qnil; |
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
938 else |
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
939 return Qt; |
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
940 } |
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
941 |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
942 DEFUN ("set-process-inherit-coding-system-flag", |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
943 Fset_process_inherit_coding_system_flag, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
944 Sset_process_inherit_coding_system_flag, 2, 2, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
945 doc: /* Determine whether buffer of PROCESS will inherit coding-system. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
946 If the second argument FLAG is non-nil, then the variable |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
947 `buffer-file-coding-system' of the buffer associated with PROCESS |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
948 will be bound to the value of the coding system used to decode |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
949 the process output. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
950 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
951 This is useful when the coding system specified for the process buffer |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
952 leaves either the character code conversion or the end-of-line conversion |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
953 unspecified, or if the coding system used to decode the process output |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
954 is more appropriate for saving the process buffer. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
955 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
956 Binding the variable `inherit-process-coding-system' to non-nil before |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
957 starting the process is an alternative way of setting the inherit flag |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
958 for the process which will run. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
959 (process, flag) |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
960 register Lisp_Object process, flag; |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
961 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
962 CHECK_PROCESS (process); |
21848
050ea21cec87
(Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents:
21798
diff
changeset
|
963 XPROCESS (process)->inherit_coding_system_flag = flag; |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
964 return flag; |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
965 } |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
966 |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
967 DEFUN ("process-inherit-coding-system-flag", |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
968 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
969 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
970 doc: /* Return the value of inherit-coding-system flag for PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
971 If this flag is t, `buffer-file-coding-system' of the buffer |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
972 associated with PROCESS will inherit the coding system used to decode |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
973 the process output. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
974 (process) |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
975 register Lisp_Object process; |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
976 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
977 CHECK_PROCESS (process); |
21848
050ea21cec87
(Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents:
21798
diff
changeset
|
978 return XPROCESS (process)->inherit_coding_system_flag; |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
979 } |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
980 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
981 DEFUN ("set-process-query-on-exit-flag", |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
982 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
983 2, 2, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
984 doc: /* Specify if query is needed for PROCESS when Emacs is exited. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
985 If the second argument FLAG is non-nil, emacs will query the user before |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
986 exiting if PROCESS is running. */) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
987 (process, flag) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
988 register Lisp_Object process, flag; |
578 | 989 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
990 CHECK_PROCESS (process); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
991 XPROCESS (process)->kill_without_query = Fnull (flag); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
992 return flag; |
578 | 993 } |
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
994 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
995 DEFUN ("process-query-on-exit-flag", |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
996 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
997 1, 1, 0, |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
998 doc: /* Return the current value of query on exit flag for PROCESS. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
999 (process) |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
1000 register Lisp_Object process; |
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
1001 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1002 CHECK_PROCESS (process); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1003 return Fnull (XPROCESS (process)->kill_without_query); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1004 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1005 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1006 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1007 Lisp_Object Fprocess_datagram_address (); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1008 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1009 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1010 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1011 1, 2, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1012 doc: /* Return the contact info of PROCESS; t for a real child. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1013 For a net connection, the value depends on the optional KEY arg. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1014 If KEY is nil, value is a cons cell of the form (HOST SERVICE), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1015 if KEY is t, the complete contact information for the connection is |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1016 returned, else the specific value for the keyword KEY is returned. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1017 See `make-network-process' for a list of keywords. */) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1018 (process, key) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1019 register Lisp_Object process, key; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1020 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1021 Lisp_Object contact; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1022 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1023 CHECK_PROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1024 contact = XPROCESS (process)->childp; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1025 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1026 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1027 if (DATAGRAM_CONN_P (process) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1028 && (EQ (key, Qt) || EQ (key, QCremote))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1029 contact = Fplist_put (contact, QCremote, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1030 Fprocess_datagram_address (process)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1031 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1032 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1033 if (!NETCONN_P (process) || EQ (key, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1034 return contact; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1035 if (NILP (key)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1036 return Fcons (Fplist_get (contact, QChost), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1037 Fcons (Fplist_get (contact, QCservice), Qnil)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1038 return Fplist_get (contact, key); |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
1039 } |
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
1040 |
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1041 #if 0 /* Turned off because we don't currently record this info |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1042 in the process. Perhaps add it. */ |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1043 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1044 doc: /* Return the connection type of PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1045 The value is nil for a pipe, t or `pty' for a pty, or `stream' for |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1046 a socket connection. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1047 (process) |
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1048 Lisp_Object process; |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1049 { |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1050 return XPROCESS (process)->type; |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1051 } |
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
1052 #endif |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1053 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1054 #ifdef HAVE_SOCKETS |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1055 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address, |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1056 1, 1, 0, |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1057 doc: /* Convert network ADDRESS from internal format to a string. |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1058 Returns nil if format of ADDRESS is invalid. */) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1059 (address) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1060 Lisp_Object address; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1061 { |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1062 if (NILP (address)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1063 return Qnil; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1064 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1065 if (STRINGP (address)) /* AF_LOCAL */ |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1066 return address; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1067 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1068 if (VECTORP (address)) /* AF_INET */ |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1069 { |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1070 register struct Lisp_Vector *p = XVECTOR (address); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1071 Lisp_Object args[6]; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1072 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1073 if (p->size != 5) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1074 return Qnil; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1075 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1076 args[0] = build_string ("%d.%d.%d.%d:%d"); |
48097
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1077 args[1] = p->contents[0]; |
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1078 args[2] = p->contents[1]; |
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1079 args[3] = p->contents[2]; |
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1080 args[4] = p->contents[3]; |
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1081 args[5] = p->contents[4]; |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1082 return Fformat (6, args); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1083 } |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1084 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1085 if (CONSP (address)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1086 { |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1087 Lisp_Object args[2]; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1088 args[0] = build_string ("<Family %d>"); |
48097
21d7f2c18976
(Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48088
diff
changeset
|
1089 args[1] = Fcar (address); |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1090 return Fformat (2, args); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1091 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1092 } |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1093 |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1094 return Qnil; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1095 } |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1096 #endif |
578 | 1097 |
1098 Lisp_Object | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1099 list_processes_1 (query_only) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1100 Lisp_Object query_only; |
578 | 1101 { |
1102 register Lisp_Object tail, tem; | |
1103 Lisp_Object proc, minspace, tem1; | |
1104 register struct Lisp_Process *p; | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1105 char tembuf[300]; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1106 int w_proc, w_buffer, w_tty; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1107 Lisp_Object i_status, i_buffer, i_tty, i_command; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1108 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1109 w_proc = 4; /* Proc */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1110 w_buffer = 6; /* Buffer */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1111 w_tty = 0; /* Omit if no ttys */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1112 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1113 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1114 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1115 int i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1116 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1117 proc = Fcdr (Fcar (tail)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1118 p = XPROCESS (proc); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1119 if (NILP (p->childp)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1120 continue; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1121 if (!NILP (query_only) && !NILP (p->kill_without_query)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1122 continue; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1123 if (STRINGP (p->name) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1124 && ( i = SCHARS (p->name), (i > w_proc))) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1125 w_proc = i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1126 if (!NILP (p->buffer)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1127 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1128 if (NILP (XBUFFER (p->buffer)->name) && w_buffer < 8) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1129 w_buffer = 8; /* (Killed) */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1130 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer))) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1131 w_buffer = i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1132 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1133 if (STRINGP (p->tty_name) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1134 && (i = SCHARS (p->tty_name), (i > w_tty))) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1135 w_tty = i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1136 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1137 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1138 XSETFASTINT (i_status, w_proc + 1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1139 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1140 if (w_tty) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1141 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1142 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1143 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1144 } else { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1145 i_tty = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1146 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1147 } |
578 | 1148 |
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
1149 XSETFASTINT (minspace, 1); |
578 | 1150 |
1151 set_buffer_internal (XBUFFER (Vstandard_output)); | |
1152 Fbuffer_disable_undo (Vstandard_output); | |
1153 | |
1154 current_buffer->truncate_lines = Qt; | |
1155 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1156 write_string ("Proc", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1157 Findent_to (i_status, minspace); write_string ("Status", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1158 Findent_to (i_buffer, minspace); write_string ("Buffer", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1159 if (!NILP (i_tty)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1160 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1161 Findent_to (i_tty, minspace); write_string ("Tty", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1162 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1163 Findent_to (i_command, minspace); write_string ("Command", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1164 write_string ("\n", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1165 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1166 write_string ("----", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1167 Findent_to (i_status, minspace); write_string ("------", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1168 Findent_to (i_buffer, minspace); write_string ("------", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1169 if (!NILP (i_tty)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1170 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1171 Findent_to (i_tty, minspace); write_string ("---", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1172 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1173 Findent_to (i_command, minspace); write_string ("-------", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1174 write_string ("\n", -1); |
578 | 1175 |
1176 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) | |
1177 { | |
1178 Lisp_Object symbol; | |
1179 | |
1180 proc = Fcdr (Fcar (tail)); | |
1181 p = XPROCESS (proc); | |
1182 if (NILP (p->childp)) | |
1183 continue; | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1184 if (!NILP (query_only) && !NILP (p->kill_without_query)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1185 continue; |
578 | 1186 |
1187 Finsert (1, &p->name); | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1188 Findent_to (i_status, minspace); |
578 | 1189 |
1190 if (!NILP (p->raw_status_low)) | |
1191 update_status (p); | |
1192 symbol = p->status; | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
1193 if (CONSP (p->status)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
1194 symbol = XCAR (p->status); |
578 | 1195 |
1196 | |
1197 if (EQ (symbol, Qsignal)) | |
1198 { | |
1199 Lisp_Object tem; | |
1200 tem = Fcar (Fcdr (p->status)); | |
1201 #ifdef VMS | |
1202 if (XINT (tem) < NSIG) | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1203 write_string (sys_errlist [XINT (tem)], -1); |
578 | 1204 else |
1205 #endif | |
1206 Fprinc (symbol, Qnil); | |
1207 } | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1208 else if (NETCONN1_P (p)) |
578 | 1209 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1210 if (EQ (symbol, Qexit)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1211 write_string ("closed", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1212 else if (EQ (p->command, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1213 write_string ("stopped", -1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1214 else if (EQ (symbol, Qrun)) |
578 | 1215 write_string ("open", -1); |
1216 else | |
1217 Fprinc (symbol, Qnil); | |
1218 } | |
1219 else | |
1220 Fprinc (symbol, Qnil); | |
1221 | |
1222 if (EQ (symbol, Qexit)) | |
1223 { | |
1224 Lisp_Object tem; | |
1225 tem = Fcar (Fcdr (p->status)); | |
1226 if (XFASTINT (tem)) | |
1227 { | |
11695
0f9b9c375416
(list_processes_1): Cast XFASTINT for passing to sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11609
diff
changeset
|
1228 sprintf (tembuf, " %d", (int) XFASTINT (tem)); |
578 | 1229 write_string (tembuf, -1); |
1230 } | |
1231 } | |
1232 | |
1233 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)) | |
1234 remove_process (proc); | |
1235 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1236 Findent_to (i_buffer, minspace); |
578 | 1237 if (NILP (p->buffer)) |
1238 insert_string ("(none)"); | |
1239 else if (NILP (XBUFFER (p->buffer)->name)) | |
1240 insert_string ("(Killed)"); | |
1241 else | |
1242 Finsert (1, &XBUFFER (p->buffer)->name); | |
1243 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1244 if (!NILP (i_tty)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1245 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1246 Findent_to (i_tty, minspace); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1247 if (STRINGP (p->tty_name)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1248 Finsert (1, &p->tty_name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1249 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1250 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1251 Findent_to (i_command, minspace); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1252 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1253 if (EQ (p->status, Qlisten)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1254 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1255 Lisp_Object port = Fplist_get (p->childp, QCservice); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1256 if (INTEGERP (port)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1257 port = Fnumber_to_string (port); |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1258 if (NILP (port)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1259 port = Fformat_network_address (Fplist_get (p->childp, QClocal)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1260 sprintf (tembuf, "(network %s server on %s)\n", |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
1261 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"), |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1262 (STRINGP (port) ? (char *)SDATA (port) : "?")); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1263 insert_string (tembuf); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1264 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1265 else if (NETCONN1_P (p)) |
578 | 1266 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1267 /* For a local socket, there is no host name, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1268 so display service instead. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1269 Lisp_Object host = Fplist_get (p->childp, QChost); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1270 if (!STRINGP (host)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1271 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1272 host = Fplist_get (p->childp, QCservice); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1273 if (INTEGERP (host)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1274 host = Fnumber_to_string (host); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1275 } |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1276 if (NILP (host)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1277 host = Fformat_network_address (Fplist_get (p->childp, QCremote)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1278 sprintf (tembuf, "(network %s connection to %s)\n", |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
1279 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"), |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
1280 (STRINGP (host) ? (char *)SDATA (host) : "?")); |
578 | 1281 insert_string (tembuf); |
1282 } | |
1283 else | |
1284 { | |
1285 tem = p->command; | |
1286 while (1) | |
1287 { | |
1288 tem1 = Fcar (tem); | |
1289 Finsert (1, &tem1); | |
1290 tem = Fcdr (tem); | |
1291 if (NILP (tem)) | |
1292 break; | |
1293 insert_string (" "); | |
1294 } | |
1295 insert_string ("\n"); | |
1296 } | |
1297 } | |
1298 return Qnil; | |
1299 } | |
1300 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1301 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P", |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1302 doc: /* Display a list of all processes. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1303 If optional argument QUERY-ONLY is non-nil, only processes with |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1304 the query-on-exit flag set will be listed. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1305 Any process listed as exited or signaled is actually eliminated |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1306 after the listing is made. */) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1307 (query_only) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1308 Lisp_Object query_only; |
578 | 1309 { |
1310 internal_with_output_to_temp_buffer ("*Process List*", | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
1311 list_processes_1, query_only); |
578 | 1312 return Qnil; |
1313 } | |
1314 | |
1315 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1316 doc: /* Return a list of all processes. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1317 () |
578 | 1318 { |
1319 return Fmapcar (Qcdr, Vprocess_alist); | |
1320 } | |
1321 | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1322 /* Starting asynchronous inferior processes. */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1323 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1324 static Lisp_Object start_process_unwind (); |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1325 |
578 | 1326 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1327 doc: /* Start a program in a subprocess. Return the process object for it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1328 NAME is name for process. It is modified if necessary to make it unique. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1329 BUFFER is the buffer or (buffer-name) to associate with the process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1330 Process output goes at end of that buffer, unless you specify |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1331 an output stream or filter function to handle the output. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1332 BUFFER may be also nil, meaning that this process is not associated |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1333 with any buffer. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1334 Third arg is program file name. It is searched for in PATH. |
40641
d94fc1022312
(Fstart_process): Add usage to doc-string.
Pavel Janík <Pavel@Janik.cz>
parents:
40231
diff
changeset
|
1335 Remaining arguments are strings to give program as arguments. |
44170
888d736c0e91
(set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents:
44073
diff
changeset
|
1336 |
40641
d94fc1022312
(Fstart_process): Add usage to doc-string.
Pavel Janík <Pavel@Janik.cz>
parents:
40231
diff
changeset
|
1337 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1338 (nargs, args) |
578 | 1339 int nargs; |
1340 register Lisp_Object *args; | |
1341 { | |
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1342 Lisp_Object buffer, name, program, proc, current_dir, tem; |
578 | 1343 #ifdef VMS |
1344 register unsigned char *new_argv; | |
1345 int len; | |
1346 #else | |
1347 register unsigned char **new_argv; | |
1348 #endif | |
1349 register int i; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45410
diff
changeset
|
1350 int count = SPECPDL_INDEX (); |
578 | 1351 |
1352 buffer = args[1]; | |
1353 if (!NILP (buffer)) | |
1354 buffer = Fget_buffer_create (buffer); | |
1355 | |
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1356 /* Make sure that the child will be able to chdir to the current |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1357 buffer's current directory, or its unhandled equivalent. We |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1358 can't just have the child check for an error when it does the |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1359 chdir, since it's in a vfork. |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1360 |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1361 We have to GCPRO around this because Fexpand_file_name and |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1362 Funhandled_file_name_directory might call a file name handling |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1363 function. The argument list is protected by the caller, so all |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1364 we really have to worry about is buffer. */ |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1365 { |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1366 struct gcpro gcpro1, gcpro2; |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1367 |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1368 current_dir = current_buffer->directory; |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1369 |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1370 GCPRO2 (buffer, current_dir); |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1371 |
10744
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1372 current_dir |
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1373 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir), |
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1374 Qnil); |
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1375 if (NILP (Ffile_accessible_directory_p (current_dir))) |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1376 report_file_error ("Setting current directory", |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1377 Fcons (current_buffer->directory, Qnil)); |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1378 |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1379 UNGCPRO; |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1380 } |
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1381 |
578 | 1382 name = args[0]; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1383 CHECK_STRING (name); |
578 | 1384 |
1385 program = args[2]; | |
1386 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1387 CHECK_STRING (program); |
578 | 1388 |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1389 proc = make_process (name); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1390 /* If an error occurs and we can't start the process, we want to |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1391 remove it from the process list. This means that each error |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1392 check in create_process doesn't need to call remove_process |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1393 itself; it's all taken care of here. */ |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1394 record_unwind_protect (start_process_unwind, proc); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1395 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1396 XPROCESS (proc)->childp = Qt; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1397 XPROCESS (proc)->command_channel_p = Qnil; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1398 XPROCESS (proc)->buffer = buffer; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1399 XPROCESS (proc)->sentinel = Qnil; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1400 XPROCESS (proc)->filter = Qnil; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1401 XPROCESS (proc)->command = Flist (nargs - 2, args + 2); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1402 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1403 /* Make the process marker point into the process buffer (if any). */ |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1404 if (!NILP (buffer)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1405 set_marker_both (XPROCESS (proc)->mark, buffer, |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1406 BUF_ZV (XBUFFER (buffer)), |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1407 BUF_ZV_BYTE (XBUFFER (buffer))); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1408 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1409 { |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1410 /* Decide coding systems for communicating with the process. Here |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1411 we don't setup the structure coding_system nor pay attention to |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1412 unibyte mode. They are done in create_process. */ |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1413 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1414 /* Qt denotes we have not yet called Ffind_operation_coding_system. */ |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1415 Lisp_Object coding_systems = Qt; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1416 Lisp_Object val, *args2; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1417 struct gcpro gcpro1, gcpro2; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1418 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1419 val = Vcoding_system_for_read; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1420 if (NILP (val)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1421 { |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1422 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1423 args2[0] = Qstart_process; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1424 for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1425 GCPRO2 (proc, current_dir); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1426 coding_systems = Ffind_operation_coding_system (nargs + 1, args2); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1427 UNGCPRO; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1428 if (CONSP (coding_systems)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1429 val = XCAR (coding_systems); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1430 else if (CONSP (Vdefault_process_coding_system)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1431 val = XCAR (Vdefault_process_coding_system); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1432 } |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1433 XPROCESS (proc)->decode_coding_system = val; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1434 |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1435 val = Vcoding_system_for_write; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1436 if (NILP (val)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1437 { |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1438 if (EQ (coding_systems, Qt)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1439 { |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1440 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1441 args2[0] = Qstart_process; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1442 for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1443 GCPRO2 (proc, current_dir); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1444 coding_systems = Ffind_operation_coding_system (nargs + 1, args2); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1445 UNGCPRO; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1446 } |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1447 if (CONSP (coding_systems)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1448 val = XCDR (coding_systems); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1449 else if (CONSP (Vdefault_process_coding_system)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1450 val = XCDR (Vdefault_process_coding_system); |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1451 } |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1452 XPROCESS (proc)->encode_coding_system = val; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1453 } |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1454 |
578 | 1455 #ifdef VMS |
1456 /* Make a one member argv with all args concatenated | |
1457 together separated by a blank. */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1458 len = SBYTES (program) + 2; |
578 | 1459 for (i = 3; i < nargs; i++) |
1460 { | |
1461 tem = args[i]; | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1462 CHECK_STRING (tem); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1463 len += SBYTES (tem) + 1; /* count the blank */ |
578 | 1464 } |
1465 new_argv = (unsigned char *) alloca (len); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1466 strcpy (new_argv, SDATA (program)); |
578 | 1467 for (i = 3; i < nargs; i++) |
1468 { | |
1469 tem = args[i]; | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1470 CHECK_STRING (tem); |
578 | 1471 strcat (new_argv, " "); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1472 strcat (new_argv, SDATA (tem)); |
578 | 1473 } |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1474 /* Need to add code here to check for program existence on VMS */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1475 |
578 | 1476 #else /* not VMS */ |
1477 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *)); | |
1478 | |
47020
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1479 /* If program file name is not absolute, search our path for it. |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1480 Put the name we will really use in TEM. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1481 if (!IS_DIRECTORY_SEP (SREF (program, 0)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1482 && !(SCHARS (program) > 1 |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1483 && IS_DEVICE_SEP (SREF (program, 1)))) |
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1484 { |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1485 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1486 |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1487 tem = Qnil; |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1488 GCPRO4 (name, program, buffer, current_dir); |
45005
084928cfcfcb
(Fstart_process): Update call to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44890
diff
changeset
|
1489 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK)); |
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1490 UNGCPRO; |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1491 if (NILP (tem)) |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1492 report_file_error ("Searching for program", Fcons (program, Qnil)); |
12648
98aba238cf62
(Fstart_process): Don't expand the file name before trying openp.
Richard M. Stallman <rms@gnu.org>
parents:
12541
diff
changeset
|
1493 tem = Fexpand_file_name (tem, Qnil); |
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1494 } |
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1495 else |
12491
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1496 { |
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1497 if (!NILP (Ffile_directory_p (program))) |
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1498 error ("Specified program for new process is a directory"); |
47020
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1499 tem = program; |
12491
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1500 } |
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1501 |
47020
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1502 /* If program file name starts with /: for quoting a magic name, |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1503 discard that. */ |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1504 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/' |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1505 && SREF (tem, 1) == ':') |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1506 tem = Fsubstring (tem, make_number (2), Qnil); |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1507 |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1508 /* Encode the file name and put it in NEW_ARGV. |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1509 That's where the child will use it to execute the program. */ |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1510 tem = ENCODE_FILE (tem); |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1511 new_argv[0] = SDATA (tem); |
de9a20871faa
(Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents:
46431
diff
changeset
|
1512 |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1513 /* Here we encode arguments by the coding system used for sending |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1514 data to the process. We don't support using different coding |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1515 systems for encoding arguments and for encoding data sent to the |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1516 process. */ |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1517 |
578 | 1518 for (i = 3; i < nargs; i++) |
1519 { | |
1520 tem = args[i]; | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
1521 CHECK_STRING (tem); |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1522 if (STRING_MULTIBYTE (tem)) |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1523 tem = (code_convert_string_norecord |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
1524 (tem, XPROCESS (proc)->encode_coding_system, 1)); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
1525 new_argv[i - 2] = SDATA (tem); |
578 | 1526 } |
1527 new_argv[i - 2] = 0; | |
1528 #endif /* not VMS */ | |
1529 | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1530 XPROCESS (proc)->decoding_buf = make_uninit_string (0); |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1531 XPROCESS (proc)->decoding_carryover = make_number (0); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1532 XPROCESS (proc)->encoding_buf = make_uninit_string (0); |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1533 XPROCESS (proc)->encoding_carryover = make_number (0); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1534 |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
1535 XPROCESS (proc)->inherit_coding_system_flag |
21848
050ea21cec87
(Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents:
21798
diff
changeset
|
1536 = (NILP (buffer) || !inherit_process_coding_system |
050ea21cec87
(Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents:
21798
diff
changeset
|
1537 ? Qnil : Qt); |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
1538 |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
1539 create_process (proc, (char **) new_argv, current_dir); |
578 | 1540 |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1541 return unbind_to (count, proc); |
578 | 1542 } |
1543 | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1544 /* This function is the unwind_protect form for Fstart_process. If |
14036 | 1545 PROC doesn't have its pid set, then we know someone has signaled |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1546 an error and the process wasn't started successfully, so we should |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1547 remove it from the process list. */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1548 static Lisp_Object |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1549 start_process_unwind (proc) |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1550 Lisp_Object proc; |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1551 { |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
1552 if (!PROCESSP (proc)) |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1553 abort (); |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1554 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1555 /* Was PROC started successfully? */ |
3685
47d7fda8a609
(start_process_unwind): Use XINT.
Richard M. Stallman <rms@gnu.org>
parents:
3666
diff
changeset
|
1556 if (XINT (XPROCESS (proc)->pid) <= 0) |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1557 remove_process (proc); |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1558 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1559 return Qnil; |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1560 } |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1561 |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1562 void |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1563 create_process_1 (timer) |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1564 struct atimer *timer; |
578 | 1565 { |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1566 /* Nothing to do. */ |
578 | 1567 } |
1568 | |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1569 |
578 | 1570 #if 0 /* This doesn't work; see the note before sigchld_handler. */ |
1571 #ifdef USG | |
1572 #ifdef SIGCHLD | |
1573 /* Mimic blocking of signals on system V, which doesn't really have it. */ | |
1574 | |
1575 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */ | |
1576 int sigchld_deferred; | |
1577 | |
1578 SIGTYPE | |
1579 create_process_sigchld () | |
1580 { | |
1581 signal (SIGCHLD, create_process_sigchld); | |
1582 | |
1583 sigchld_deferred = 1; | |
1584 } | |
1585 #endif | |
1586 #endif | |
1587 #endif | |
1588 | |
1589 #ifndef VMS /* VMS version of this function is in vmsproc.c. */ | |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
1590 void |
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1591 create_process (process, new_argv, current_dir) |
578 | 1592 Lisp_Object process; |
1593 char **new_argv; | |
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1594 Lisp_Object current_dir; |
578 | 1595 { |
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1596 int pid, inchannel, outchannel; |
578 | 1597 int sv[2]; |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1598 #ifdef POSIX_SIGNALS |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1599 sigset_t procmask; |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1600 sigset_t blocked; |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1601 struct sigaction sigint_action; |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1602 struct sigaction sigquit_action; |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1603 #ifdef AIX |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1604 struct sigaction sighup_action; |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1605 #endif |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1606 #else /* !POSIX_SIGNALS */ |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
1607 #if 0 |
578 | 1608 #ifdef SIGCHLD |
1609 SIGTYPE (*sigchld)(); | |
1610 #endif | |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
1611 #endif /* 0 */ |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1612 #endif /* !POSIX_SIGNALS */ |
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1613 /* Use volatile to protect variables from being clobbered by longjmp. */ |
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1614 volatile int forkin, forkout; |
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1615 volatile int pty_flag = 0; |
31099
0fe5afca71e4
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30582
diff
changeset
|
1616 #ifndef USE_CRT_DLL |
578 | 1617 extern char **environ; |
31099
0fe5afca71e4
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30582
diff
changeset
|
1618 #endif |
578 | 1619 |
1620 inchannel = outchannel = -1; | |
1621 | |
1622 #ifdef HAVE_PTYS | |
7748
9a9c8372af80
(create_process): Get a pty for any non-nil Vprocess_connection_type value.
Richard M. Stallman <rms@gnu.org>
parents:
7605
diff
changeset
|
1623 if (!NILP (Vprocess_connection_type)) |
578 | 1624 outchannel = inchannel = allocate_pty (); |
1625 | |
1626 if (inchannel >= 0) | |
1627 { | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
1628 #if ! defined (USG) || defined (USG_SUBTTY_WORKS) |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
1629 /* On most USG systems it does not work to open the pty's tty here, |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
1630 then close it and reopen it in the child. */ |
578 | 1631 #ifdef O_NOCTTY |
1632 /* Don't let this terminal become our controlling terminal | |
1633 (in case we don't have one). */ | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1634 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0); |
578 | 1635 #else |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1636 forkout = forkin = emacs_open (pty_name, O_RDWR, 0); |
578 | 1637 #endif |
1638 if (forkin < 0) | |
1639 report_file_error ("Opening pty", Qnil); | |
1640 #else | |
1641 forkin = forkout = -1; | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
1642 #endif /* not USG, or USG_SUBTTY_WORKS */ |
578 | 1643 pty_flag = 1; |
1644 } | |
1645 else | |
1646 #endif /* HAVE_PTYS */ | |
1647 #ifdef SKTPAIR | |
1648 { | |
1649 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0) | |
1650 report_file_error ("Opening socketpair", Qnil); | |
1651 outchannel = inchannel = sv[0]; | |
1652 forkout = forkin = sv[1]; | |
1653 } | |
1654 #else /* not SKTPAIR */ | |
1655 { | |
25129
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1656 int tem; |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1657 tem = pipe (sv); |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1658 if (tem < 0) |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1659 report_file_error ("Creating pipe", Qnil); |
578 | 1660 inchannel = sv[0]; |
1661 forkout = sv[1]; | |
25129
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1662 tem = pipe (sv); |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1663 if (tem < 0) |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1664 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1665 emacs_close (inchannel); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1666 emacs_close (forkout); |
25129
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1667 report_file_error ("Creating pipe", Qnil); |
4f3c8f1cec96
(create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents:
25009
diff
changeset
|
1668 } |
578 | 1669 outchannel = sv[1]; |
1670 forkin = sv[0]; | |
1671 } | |
1672 #endif /* not SKTPAIR */ | |
1673 | |
1674 #if 0 | |
1675 /* Replaced by close_process_descs */ | |
1676 set_exclusive_use (inchannel); | |
1677 set_exclusive_use (outchannel); | |
1678 #endif | |
1679 | |
1680 /* Stride people say it's a mystery why this is needed | |
1681 as well as the O_NDELAY, but that it fails without this. */ | |
1682 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS)) | |
1683 { | |
1684 int one = 1; | |
1685 ioctl (inchannel, FIONBIO, &one); | |
1686 } | |
1687 #endif | |
1688 | |
1689 #ifdef O_NONBLOCK | |
1690 fcntl (inchannel, F_SETFL, O_NONBLOCK); | |
14405
4aa693528ee3
(create_process): Set outchannel to be non-blocking.
Richard M. Stallman <rms@gnu.org>
parents:
14404
diff
changeset
|
1691 fcntl (outchannel, F_SETFL, O_NONBLOCK); |
578 | 1692 #else |
1693 #ifdef O_NDELAY | |
1694 fcntl (inchannel, F_SETFL, O_NDELAY); | |
14405
4aa693528ee3
(create_process): Set outchannel to be non-blocking.
Richard M. Stallman <rms@gnu.org>
parents:
14404
diff
changeset
|
1695 fcntl (outchannel, F_SETFL, O_NDELAY); |
578 | 1696 #endif |
1697 #endif | |
1698 | |
1699 /* Record this as an active process, with its channels. | |
1700 As a result, child_setup will close Emacs's side of the pipes. */ | |
1701 chan_process[inchannel] = process; | |
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
1702 XSETINT (XPROCESS (process)->infd, inchannel); |
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
1703 XSETINT (XPROCESS (process)->outfd, outchannel); |
578 | 1704 /* Record the tty descriptor used in the subprocess. */ |
1705 if (forkin < 0) | |
1706 XPROCESS (process)->subtty = Qnil; | |
1707 else | |
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
1708 XSETFASTINT (XPROCESS (process)->subtty, forkin); |
578 | 1709 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil); |
1710 XPROCESS (process)->status = Qrun; | |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1711 if (!proc_decode_coding_system[inchannel]) |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1712 proc_decode_coding_system[inchannel] |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1713 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1714 setup_coding_system (XPROCESS (process)->decode_coding_system, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1715 proc_decode_coding_system[inchannel]); |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1716 if (!proc_encode_coding_system[outchannel]) |
22848 | 1717 proc_encode_coding_system[outchannel] |
1718 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1719 setup_coding_system (XPROCESS (process)->encode_coding_system, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1720 proc_encode_coding_system[outchannel]); |
578 | 1721 |
1722 /* Delay interrupts until we have a chance to store | |
1723 the new fork's pid in its process structure */ | |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1724 #ifdef POSIX_SIGNALS |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1725 sigemptyset (&blocked); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1726 #ifdef SIGCHLD |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1727 sigaddset (&blocked, SIGCHLD); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1728 #endif |
41856
0028402ed7d1
(create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents:
40656
diff
changeset
|
1729 #ifdef HAVE_WORKING_VFORK |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1730 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal', |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1731 this sets the parent's signal handlers as well as the child's. |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1732 So delay all interrupts whose handlers the child might munge, |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1733 and record the current handlers so they can be restored later. */ |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1734 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action ); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1735 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1736 #ifdef AIX |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1737 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action ); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1738 #endif |
41856
0028402ed7d1
(create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents:
40656
diff
changeset
|
1739 #endif /* HAVE_WORKING_VFORK */ |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1740 sigprocmask (SIG_BLOCK, &blocked, &procmask); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1741 #else /* !POSIX_SIGNALS */ |
578 | 1742 #ifdef SIGCHLD |
1743 #ifdef BSD4_1 | |
1744 sighold (SIGCHLD); | |
1745 #else /* not BSD4_1 */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
1746 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
578 | 1747 sigsetmask (sigmask (SIGCHLD)); |
1748 #else /* ordinary USG */ | |
1749 #if 0 | |
1750 sigchld_deferred = 0; | |
1751 sigchld = signal (SIGCHLD, create_process_sigchld); | |
1752 #endif | |
1753 #endif /* ordinary USG */ | |
1754 #endif /* not BSD4_1 */ | |
1755 #endif /* SIGCHLD */ | |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1756 #endif /* !POSIX_SIGNALS */ |
578 | 1757 |
7893
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1758 FD_SET (inchannel, &input_wait_mask); |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
1759 FD_SET (inchannel, &non_keyboard_wait_mask); |
7893
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1760 if (inchannel > max_process_desc) |
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1761 max_process_desc = inchannel; |
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1762 |
578 | 1763 /* Until we store the proper pid, enable sigchld_handler |
1764 to recognize an unknown pid as standing for this process. | |
1765 It is very important not to let this `marker' value stay | |
1766 in the table after this function has returned; if it does | |
1767 it might cause call-process to hang and subsequent asynchronous | |
1768 processes to get their return values scrambled. */ | |
1769 XSETINT (XPROCESS (process)->pid, -1); | |
1770 | |
16780 | 1771 BLOCK_INPUT; |
1772 | |
578 | 1773 { |
1774 /* child_setup must clobber environ on systems with true vfork. | |
1775 Protect it from permanent change. */ | |
1776 char **save_environ = environ; | |
1777 | |
21049
01e626b0a624
(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
20715
diff
changeset
|
1778 current_dir = ENCODE_FILE (current_dir); |
19837
3bee81323f73
(create_process): Encode the new current dir.
Richard M. Stallman <rms@gnu.org>
parents:
19642
diff
changeset
|
1779 |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1780 #ifndef WINDOWSNT |
578 | 1781 pid = vfork (); |
1782 if (pid == 0) | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1783 #endif /* not WINDOWSNT */ |
578 | 1784 { |
1785 int xforkin = forkin; | |
1786 int xforkout = forkout; | |
1787 | |
1788 #if 0 /* This was probably a mistake--it duplicates code later on, | |
1789 but fails to handle all the cases. */ | |
1790 /* Make sure SIGCHLD is not blocked in the child. */ | |
1791 sigsetmask (SIGEMPTYMASK); | |
1792 #endif | |
1793 | |
1794 /* Make the pty be the controlling terminal of the process. */ | |
1795 #ifdef HAVE_PTYS | |
1796 /* First, disconnect its current controlling terminal. */ | |
1797 #ifdef HAVE_SETSID | |
7266
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1798 /* We tried doing setsid only if pty_flag, but it caused |
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1799 process_set_signal to fail on SGI when using a pipe. */ |
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1800 setsid (); |
1030
9934251d8219
(WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
1012
diff
changeset
|
1801 /* Make the pty's terminal the controlling terminal. */ |
3023
cfd999700613
(create_process): Ignore retval from TIOCSTTY.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1802 if (pty_flag) |
6975
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1803 { |
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1804 #ifdef TIOCSCTTY |
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1805 /* We ignore the return value |
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1806 because faith@cs.unc.edu says that is necessary on Linux. */ |
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1807 ioctl (xforkin, TIOCSCTTY, 0); |
1030
9934251d8219
(WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
1012
diff
changeset
|
1808 #endif |
6975
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1809 } |
578 | 1810 #else /* not HAVE_SETSID */ |
5181
31874690939f
(create_process): Do setpgrp for USG regardless of IRIX.
Richard M. Stallman <rms@gnu.org>
parents:
5161
diff
changeset
|
1811 #ifdef USG |
5347
21bffe027a7d
(create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents:
5332
diff
changeset
|
1812 /* It's very important to call setpgrp here and no time |
578 | 1813 afterwards. Otherwise, we lose our controlling tty which |
1814 is set when we open the pty. */ | |
1815 setpgrp (); | |
1816 #endif /* USG */ | |
1817 #endif /* not HAVE_SETSID */ | |
7116
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1818 #if defined (HAVE_TERMIOS) && defined (LDISC1) |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1819 if (pty_flag && xforkin >= 0) |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1820 { |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1821 struct termios t; |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1822 tcgetattr (xforkin, &t); |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1823 t.c_lflag = LDISC1; |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1824 if (tcsetattr (xforkin, TCSANOW, &t) < 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1825 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39); |
7116
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1826 } |
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1827 #else |
6947
c5f990fad6bb
(create_process): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6928
diff
changeset
|
1828 #if defined (NTTYDISC) && defined (TIOCSETD) |
6393
7de1d288460e
(create_process): Skip the ioctl if fd is -1.
Karl Heuer <kwzh@gnu.org>
parents:
6390
diff
changeset
|
1829 if (pty_flag && xforkin >= 0) |
5548
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1830 { |
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1831 /* Use new line discipline. */ |
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1832 int ldisc = NTTYDISC; |
7605
53186c2698e5
(create_process): Don't complain about error from TIOCSETD.
Richard M. Stallman <rms@gnu.org>
parents:
7486
diff
changeset
|
1833 ioctl (xforkin, TIOCSETD, &ldisc); |
5548
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1834 } |
5347
21bffe027a7d
(create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents:
5332
diff
changeset
|
1835 #endif |
7116
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1836 #endif |
578 | 1837 #ifdef TIOCNOTTY |
1838 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you | |
1839 can do TIOCSPGRP only to the process's controlling tty. */ | |
1840 if (pty_flag) | |
1841 { | |
1842 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here? | |
1843 I can't test it since I don't have 4.3. */ | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1844 int j = emacs_open ("/dev/tty", O_RDWR, 0); |
578 | 1845 ioctl (j, TIOCNOTTY, 0); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1846 emacs_close (j); |
3826
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3810
diff
changeset
|
1847 #ifndef USG |
578 | 1848 /* In order to get a controlling terminal on some versions |
1849 of BSD, it is necessary to put the process in pgrp 0 | |
1850 before it opens the terminal. */ | |
16127
8d6d35b486c0
(create_process): Test HAVE_SETPGID for using setpgid.
Richard M. Stallman <rms@gnu.org>
parents:
16116
diff
changeset
|
1851 #ifdef HAVE_SETPGID |
9882
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1852 setpgid (0, 0); |
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1853 #else |
578 | 1854 setpgrp (0, 0); |
1855 #endif | |
9882
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1856 #endif |
578 | 1857 } |
1858 #endif /* TIOCNOTTY */ | |
1859 | |
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1860 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY) |
578 | 1861 /*** There is a suggestion that this ought to be a |
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1862 conditional on TIOCSPGRP, |
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1863 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)). |
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1864 Trying the latter gave the wrong results on Debian GNU/Linux 1.1; |
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1865 that system does seem to need this code, even though |
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1866 both HAVE_SETSID and TIOCSCTTY are defined. */ |
578 | 1867 /* Now close the pty (if we had it open) and reopen it. |
1868 This makes the pty the controlling terminal of the subprocess. */ | |
1869 if (pty_flag) | |
1870 { | |
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1871 #ifdef SET_CHILD_PTY_PGRP |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1872 int pgrp = getpid (); |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1873 #endif |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1874 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1875 /* I wonder if emacs_close (emacs_open (pty_name, ...)) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1876 would work? */ |
578 | 1877 if (xforkin >= 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1878 emacs_close (xforkin); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1879 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0); |
578 | 1880 |
11514
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1881 if (xforkin < 0) |
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1882 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1883 emacs_write (1, "Couldn't open the pty terminal ", 31); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1884 emacs_write (1, pty_name, strlen (pty_name)); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1885 emacs_write (1, "\n", 1); |
11514
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1886 _exit (1); |
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1887 } |
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1888 |
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1889 #ifdef SET_CHILD_PTY_PGRP |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1890 ioctl (xforkin, TIOCSPGRP, &pgrp); |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1891 ioctl (xforkout, TIOCSPGRP, &pgrp); |
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1892 #endif |
578 | 1893 } |
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1894 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */ |
15368
6229fb866493
(create_process): Add DONT_OPEN_PTY conditional.
Richard M. Stallman <rms@gnu.org>
parents:
15355
diff
changeset
|
1895 |
578 | 1896 #ifdef SETUP_SLAVE_PTY |
7058
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1897 if (pty_flag) |
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1898 { |
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1899 SETUP_SLAVE_PTY; |
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1900 } |
578 | 1901 #endif /* SETUP_SLAVE_PTY */ |
1902 #ifdef AIX | |
1903 /* On AIX, we've disabled SIGHUP above once we start a child on a pty. | |
1904 Now reenable it in the child, so it will die when we want it to. */ | |
1905 if (pty_flag) | |
1906 signal (SIGHUP, SIG_DFL); | |
1907 #endif | |
1908 #endif /* HAVE_PTYS */ | |
1909 | |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1910 signal (SIGINT, SIG_DFL); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1911 signal (SIGQUIT, SIG_DFL); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1912 |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1913 /* Stop blocking signals in the child. */ |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1914 #ifdef POSIX_SIGNALS |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1915 sigprocmask (SIG_SETMASK, &procmask, 0); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1916 #else /* !POSIX_SIGNALS */ |
578 | 1917 #ifdef SIGCHLD |
1918 #ifdef BSD4_1 | |
1919 sigrelse (SIGCHLD); | |
1920 #else /* not BSD4_1 */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
1921 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
578 | 1922 sigsetmask (SIGEMPTYMASK); |
1923 #else /* ordinary USG */ | |
1207
af619d68a576
* process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents:
1180
diff
changeset
|
1924 #if 0 |
578 | 1925 signal (SIGCHLD, sigchld); |
1207
af619d68a576
* process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents:
1180
diff
changeset
|
1926 #endif |
578 | 1927 #endif /* ordinary USG */ |
1928 #endif /* not BSD4_1 */ | |
1929 #endif /* SIGCHLD */ | |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1930 #endif /* !POSIX_SIGNALS */ |
8390
ee13e8728666
(create_process): Set default handling for SIGINT, etc.
Richard M. Stallman <rms@gnu.org>
parents:
8354
diff
changeset
|
1931 |
7059
6a55de48ade5
(create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7058
diff
changeset
|
1932 if (pty_flag) |
6a55de48ade5
(create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7058
diff
changeset
|
1933 child_setup_tty (xforkout); |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1934 #ifdef WINDOWSNT |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1935 pid = child_setup (xforkin, xforkout, xforkout, |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1936 new_argv, 1, current_dir); |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1937 #else /* not WINDOWSNT */ |
578 | 1938 child_setup (xforkin, xforkout, xforkout, |
638 | 1939 new_argv, 1, current_dir); |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1940 #endif /* not WINDOWSNT */ |
578 | 1941 } |
1942 environ = save_environ; | |
1943 } | |
1944 | |
16780 | 1945 UNBLOCK_INPUT; |
1946 | |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1947 /* This runs in the Emacs process. */ |
578 | 1948 if (pid < 0) |
7157
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1949 { |
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1950 if (forkin >= 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1951 emacs_close (forkin); |
7157
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1952 if (forkin != forkout && forkout >= 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1953 emacs_close (forkout); |
7157
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1954 } |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1955 else |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1956 { |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1957 /* vfork succeeded. */ |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1958 XSETFASTINT (XPROCESS (process)->pid, pid); |
578 | 1959 |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1960 #ifdef WINDOWSNT |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1961 register_child (pid, inchannel); |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1962 #endif /* WINDOWSNT */ |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1963 |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1964 /* If the subfork execv fails, and it exits, |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1965 this close hangs. I don't know why. |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1966 So have an interrupt jar it loose. */ |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1967 { |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1968 struct atimer *timer; |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1969 EMACS_TIME offset; |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1970 |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1971 stop_polling (); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1972 EMACS_SET_SECS_USECS (offset, 1, 0); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1973 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1974 |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1975 XPROCESS (process)->subtty = Qnil; |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1976 if (forkin >= 0) |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1977 emacs_close (forkin); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1978 |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1979 cancel_atimer (timer); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1980 start_polling (); |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1981 } |
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
1982 |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1983 if (forkin != forkout && forkout >= 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
1984 emacs_close (forkout); |
578 | 1985 |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
1986 #ifdef HAVE_PTYS |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1987 if (pty_flag) |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1988 XPROCESS (process)->tty_name = build_string (pty_name); |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1989 else |
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
1990 #endif |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1991 XPROCESS (process)->tty_name = Qnil; |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1992 } |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1993 |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1994 /* Restore the signal state whether vfork succeeded or not. |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1995 (We will signal an error, below, if it failed.) */ |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1996 #ifdef POSIX_SIGNALS |
41856
0028402ed7d1
(create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents:
40656
diff
changeset
|
1997 #ifdef HAVE_WORKING_VFORK |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1998 /* Restore the parent's signal handlers. */ |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1999 sigaction (SIGINT, &sigint_action, 0); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2000 sigaction (SIGQUIT, &sigquit_action, 0); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2001 #ifdef AIX |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2002 sigaction (SIGHUP, &sighup_action, 0); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2003 #endif |
41856
0028402ed7d1
(create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents:
40656
diff
changeset
|
2004 #endif /* HAVE_WORKING_VFORK */ |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2005 /* Stop blocking signals in the parent. */ |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2006 sigprocmask (SIG_SETMASK, &procmask, 0); |
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2007 #else /* !POSIX_SIGNALS */ |
578 | 2008 #ifdef SIGCHLD |
2009 #ifdef BSD4_1 | |
2010 sigrelse (SIGCHLD); | |
2011 #else /* not BSD4_1 */ | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
2012 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
578 | 2013 sigsetmask (SIGEMPTYMASK); |
2014 #else /* ordinary USG */ | |
2015 #if 0 | |
2016 signal (SIGCHLD, sigchld); | |
2017 /* Now really handle any of these signals | |
2018 that came in during this function. */ | |
2019 if (sigchld_deferred) | |
2020 kill (getpid (), SIGCHLD); | |
2021 #endif | |
2022 #endif /* ordinary USG */ | |
2023 #endif /* not BSD4_1 */ | |
2024 #endif /* SIGCHLD */ | |
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
2025 #endif /* !POSIX_SIGNALS */ |
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
2026 |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
2027 /* Now generate the error if vfork failed. */ |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
2028 if (pid < 0) |
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
2029 report_file_error ("Doing vfork", Qnil); |
578 | 2030 } |
2031 #endif /* not VMS */ | |
2032 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2033 |
578 | 2034 #ifdef HAVE_SOCKETS |
2035 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2036 /* Convert an internal struct sockaddr to a lisp object (vector or string). |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2037 The address family of sa is not included in the result. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2038 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2039 static Lisp_Object |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2040 conv_sockaddr_to_lisp (sa, len) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2041 struct sockaddr *sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2042 int len; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2043 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2044 Lisp_Object address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2045 int i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2046 unsigned char *cp; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2047 register struct Lisp_Vector *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2048 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2049 switch (sa->sa_family) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2050 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2051 case AF_INET: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2052 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2053 struct sockaddr_in *sin = (struct sockaddr_in *) sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2054 len = sizeof (sin->sin_addr) + 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2055 address = Fmake_vector (make_number (len), Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2056 p = XVECTOR (address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2057 p->contents[--len] = make_number (ntohs (sin->sin_port)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2058 cp = (unsigned char *)&sin->sin_addr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2059 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2060 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2061 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2062 case AF_LOCAL: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2063 { |
44038
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2064 struct sockaddr_un *sockun = (struct sockaddr_un *) sa; |
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2065 for (i = 0; i < sizeof (sockun->sun_path); i++) |
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2066 if (sockun->sun_path[i] == 0) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2067 break; |
44038
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2068 return make_unibyte_string (sockun->sun_path, i); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2069 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2070 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2071 default: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2072 len -= sizeof (sa->sa_family); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2073 address = Fcons (make_number (sa->sa_family), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2074 Fmake_vector (make_number (len), Qnil)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2075 p = XVECTOR (XCDR (address)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2076 cp = (unsigned char *) sa + sizeof (sa->sa_family); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2077 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2078 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2079 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2080 i = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2081 while (i < len) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2082 p->contents[i++] = make_number (*cp++); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2083 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2084 return address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2085 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2086 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2087 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2088 /* Get family and required size for sockaddr structure to hold ADDRESS. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2089 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2090 static int |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2091 get_lisp_to_sockaddr_size (address, familyp) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2092 Lisp_Object address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2093 int *familyp; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2094 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2095 register struct Lisp_Vector *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2096 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2097 if (VECTORP (address)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2098 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2099 p = XVECTOR (address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2100 if (p->size == 5) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2101 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2102 *familyp = AF_INET; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2103 return sizeof (struct sockaddr_in); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2104 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2105 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2106 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2107 else if (STRINGP (address)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2108 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2109 *familyp = AF_LOCAL; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2110 return sizeof (struct sockaddr_un); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2111 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2112 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2113 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2114 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2115 struct sockaddr *sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2116 *familyp = XINT (XCAR (address)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2117 p = XVECTOR (XCDR (address)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2118 return p->size + sizeof (sa->sa_family); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2119 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2120 return 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2121 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2122 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2123 /* Convert an address object (vector or string) to an internal sockaddr. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2124 Format of address has already been validated by size_lisp_to_sockaddr. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2125 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2126 static void |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2127 conv_lisp_to_sockaddr (family, address, sa, len) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2128 int family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2129 Lisp_Object address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2130 struct sockaddr *sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2131 int len; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2132 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2133 register struct Lisp_Vector *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2134 register unsigned char *cp; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2135 register int i; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2136 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2137 bzero (sa, len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2138 sa->sa_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2139 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2140 if (VECTORP (address)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2141 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2142 p = XVECTOR (address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2143 if (family == AF_INET) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2144 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2145 struct sockaddr_in *sin = (struct sockaddr_in *) sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2146 len = sizeof (sin->sin_addr) + 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2147 i = XINT (p->contents[--len]); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2148 sin->sin_port = htons (i); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2149 cp = (unsigned char *)&sin->sin_addr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2150 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2151 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2152 else if (STRINGP (address)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2153 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2154 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2155 if (family == AF_LOCAL) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2156 { |
44038
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2157 struct sockaddr_un *sockun = (struct sockaddr_un *) sa; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2158 cp = SDATA (address); |
44038
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2159 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++) |
e2339254ba48
(conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents:
44013
diff
changeset
|
2160 sockun->sun_path[i] = *cp++; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2161 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2162 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2163 return; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2164 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2165 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2166 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2167 p = XVECTOR (XCDR (address)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2168 cp = (unsigned char *)sa + sizeof (sa->sa_family); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2169 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2170 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2171 for (i = 0; i < len; i++) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2172 if (INTEGERP (p->contents[i])) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2173 *cp++ = XFASTINT (p->contents[i]) & 0xff; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2174 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2175 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2176 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2177 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2178 1, 1, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2179 doc: /* Get the current datagram address associated with PROCESS. */) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2180 (process) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2181 Lisp_Object process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2182 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2183 int channel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2184 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2185 CHECK_PROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2186 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2187 if (!DATAGRAM_CONN_P (process)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2188 return Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2189 |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
2190 channel = XINT (XPROCESS (process)->infd); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2191 return conv_sockaddr_to_lisp (datagram_address[channel].sa, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2192 datagram_address[channel].len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2193 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2194 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2195 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2196 2, 2, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2197 doc: /* Set the datagram address for PROCESS to ADDRESS. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2198 Returns nil upon error setting address, ADDRESS otherwise. */) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2199 (process, address) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2200 Lisp_Object process, address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2201 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2202 int channel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2203 int family, len; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2204 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2205 CHECK_PROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2206 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2207 if (!DATAGRAM_CONN_P (process)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2208 return Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2209 |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
2210 channel = XINT (XPROCESS (process)->infd); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2211 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2212 len = get_lisp_to_sockaddr_size (address, &family); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2213 if (datagram_address[channel].len != len) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2214 return Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2215 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2216 return address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2217 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2218 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2219 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2220 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2221 static struct socket_options { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2222 /* The name of this option. Should be lowercase version of option |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2223 name without SO_ prefix. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2224 char *name; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2225 /* Length of name. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2226 int nlen; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2227 /* Option level SOL_... */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2228 int optlevel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2229 /* Option number SO_... */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2230 int optnum; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2231 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_STR, SOPT_LINGER } opttype; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2232 } socket_options[] = |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2233 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2234 #ifdef SO_BINDTODEVICE |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2235 { "bindtodevice", 12, SOL_SOCKET, SO_BINDTODEVICE, SOPT_STR }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2236 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2237 #ifdef SO_BROADCAST |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2238 { "broadcast", 9, SOL_SOCKET, SO_BROADCAST, SOPT_BOOL }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2239 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2240 #ifdef SO_DONTROUTE |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2241 { "dontroute", 9, SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2242 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2243 #ifdef SO_KEEPALIVE |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2244 { "keepalive", 9, SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2245 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2246 #ifdef SO_LINGER |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2247 { "linger", 6, SOL_SOCKET, SO_LINGER, SOPT_LINGER }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2248 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2249 #ifdef SO_OOBINLINE |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2250 { "oobinline", 9, SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2251 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2252 #ifdef SO_PRIORITY |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2253 { "priority", 8, SOL_SOCKET, SO_PRIORITY, SOPT_INT }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2254 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2255 #ifdef SO_REUSEADDR |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2256 { "reuseaddr", 9, SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL }, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2257 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2258 { 0, 0, 0, 0, SOPT_UNKNOWN } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2259 }; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2260 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2261 /* Process list of socket options OPTS on socket S. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2262 Only check if options are supported is S < 0. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2263 If NO_ERROR is non-zero, continue silently if an option |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2264 cannot be set. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2265 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2266 Each element specifies one option. An element is either a string |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2267 "OPTION=VALUE" or a cons (OPTION . VALUE) where OPTION is a string |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2268 or a symbol. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2269 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2270 static int |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2271 set_socket_options (s, opts, no_error) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2272 int s; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2273 Lisp_Object opts; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2274 int no_error; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2275 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2276 if (!CONSP (opts)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2277 opts = Fcons (opts, Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2278 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2279 while (CONSP (opts)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2280 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2281 Lisp_Object opt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2282 Lisp_Object val; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2283 char *name, *arg; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2284 struct socket_options *sopt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2285 int ret = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2286 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2287 opt = XCAR (opts); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2288 opts = XCDR (opts); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2289 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2290 name = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2291 val = Qt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2292 if (CONSP (opt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2293 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2294 val = XCDR (opt); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2295 opt = XCAR (opt); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2296 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2297 if (STRINGP (opt)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2298 name = (char *) SDATA (opt); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2299 else if (SYMBOLP (opt)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2300 name = (char *) SDATA (SYMBOL_NAME (opt)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2301 else { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2302 error ("Mal-formed option list"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2303 return 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2304 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2305 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2306 if (strncmp (name, "no", 2) == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2307 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2308 val = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2309 name += 2; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2310 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2311 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2312 arg = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2313 for (sopt = socket_options; sopt->name; sopt++) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2314 if (strncmp (name, sopt->name, sopt->nlen) == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2315 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2316 if (name[sopt->nlen] == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2317 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2318 if (name[sopt->nlen] == '=') |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2319 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2320 arg = name + sopt->nlen + 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2321 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2322 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2323 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2324 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2325 switch (sopt->opttype) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2326 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2327 case SOPT_BOOL: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2328 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2329 int optval; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2330 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2331 return 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2332 if (arg) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2333 optval = (*arg == '0' || *arg == 'n') ? 0 : 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2334 else if (INTEGERP (val)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2335 optval = XINT (val) == 0 ? 0 : 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2336 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2337 optval = NILP (val) ? 0 : 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2338 ret = setsockopt (s, sopt->optlevel, sopt->optnum, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2339 &optval, sizeof (optval)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2340 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2341 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2342 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2343 case SOPT_INT: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2344 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2345 int optval; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2346 if (arg) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2347 optval = atoi(arg); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2348 else if (INTEGERP (val)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2349 optval = XINT (val); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2350 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2351 error ("Bad option argument for %s", name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2352 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2353 return 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2354 ret = setsockopt (s, sopt->optlevel, sopt->optnum, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2355 &optval, sizeof (optval)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2356 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2357 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2358 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2359 case SOPT_STR: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2360 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2361 if (!arg) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2362 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2363 if (NILP (val)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2364 arg = ""; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2365 else if (STRINGP (val)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2366 arg = (char *) SDATA (val); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2367 else if (XSYMBOL (val)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2368 arg = (char *) SDATA (SYMBOL_NAME (val)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2369 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2370 error ("Invalid argument to %s option", name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2371 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2372 ret = setsockopt (s, sopt->optlevel, sopt->optnum, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2373 arg, strlen (arg)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2374 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2375 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2376 #ifdef SO_LINGER |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2377 case SOPT_LINGER: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2378 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2379 struct linger linger; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2380 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2381 linger.l_onoff = 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2382 linger.l_linger = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2383 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2384 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2385 return 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2386 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2387 if (arg) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2388 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2389 if (*arg == 'n' || *arg == 't' || *arg == 'y') |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2390 linger.l_onoff = (*arg == 'n') ? 0 : 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2391 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2392 linger.l_linger = atoi(arg); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2393 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2394 else if (INTEGERP (val)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2395 linger.l_linger = XINT (val); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2396 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2397 linger.l_onoff = NILP (val) ? 0 : 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2398 ret = setsockopt (s, sopt->optlevel, sopt->optnum, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2399 &linger, sizeof (linger)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2400 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2401 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2402 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2403 default: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2404 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2405 return 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2406 if (no_error) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2407 continue; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2408 error ("Unsupported option: %s", name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2409 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2410 if (ret < 0 && ! no_error) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2411 report_file_error ("Cannot set network option: %s", opt); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2412 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2413 return 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2414 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2415 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2416 DEFUN ("set-network-process-options", |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2417 Fset_network_process_options, Sset_network_process_options, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2418 1, MANY, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2419 doc: /* Set one or more options for network process PROCESS. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2420 Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE). |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2421 A boolean value is false if it either zero or nil, true otherwise. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2422 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2423 The following options are known. Consult the relevant system manual |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2424 pages for more information. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2425 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2426 bindtodevice=NAME -- bind to interface NAME, or remove binding if nil. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2427 broadcast=BOOL -- Allow send and receive of datagram broadcasts. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2428 dontroute=BOOL -- Only send to directly connected hosts. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2429 keepalive=BOOL -- Send keep-alive messages on network stream. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2430 linger=BOOL or TIMEOUT -- Send queued messages before closing. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2431 oobinline=BOOL -- Place out-of-band data in receive data stream. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2432 priority=INT -- Set protocol defined priority for sent packets. |
44170
888d736c0e91
(set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents:
44073
diff
changeset
|
2433 reuseaddr=BOOL -- Allow reusing a recently used address. |
888d736c0e91
(set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents:
44073
diff
changeset
|
2434 |
888d736c0e91
(set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents:
44073
diff
changeset
|
2435 usage: (set-network-process-options PROCESS &rest OPTIONS) */) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2436 (nargs, args) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2437 int nargs; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2438 Lisp_Object *args; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2439 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2440 Lisp_Object process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2441 Lisp_Object opts; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2442 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2443 process = args[0]; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2444 CHECK_PROCESS (process); |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
2445 if (nargs > 1 && XINT (XPROCESS (process)->infd) >= 0) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2446 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2447 opts = Flist (nargs, args); |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
2448 set_socket_options (XINT (XPROCESS (process)->infd), opts, 0); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2449 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2450 return process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2451 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2452 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2453 /* A version of request_sigio suitable for a record_unwind_protect. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2454 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2455 Lisp_Object |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2456 unwind_request_sigio (dummy) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2457 Lisp_Object dummy; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2458 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2459 if (interrupt_input) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2460 request_sigio (); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2461 return Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2462 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2463 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2464 /* Create a network stream/datagram client/server process. Treated |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2465 exactly like a normal process when reading and writing. Primary |
578 | 2466 differences are in status display and process deletion. A network |
2467 connection has no PID; you cannot signal it. All you can do is | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2468 stop/continue it and deactivate/close it via delete-process */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2469 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2470 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2471 0, MANY, 0, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2472 doc: /* Create and return a network server or client process. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2473 |
43995
110955214222
(Fmake_network_process): Remove unused variable `sa'.
Pavel Janík <Pavel@Janik.cz>
parents:
43968
diff
changeset
|
2474 In Emacs, network connections are represented by process objects, so |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2475 input and output work as for subprocesses and `delete-process' closes |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2476 a network connection. However, a network process has no process id, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2477 it cannot be signalled, and the status codes are different from normal |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2478 processes. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2479 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2480 Arguments are specified as keyword/argument pairs. The following |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2481 arguments are defined: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2482 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2483 :name NAME -- NAME is name for process. It is modified if necessary |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2484 to make it unique. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2485 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2486 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2487 with the process. Process output goes at end of that buffer, unless |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2488 you specify an output stream or filter function to handle the output. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2489 BUFFER may be also nil, meaning that this process is not associated |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2490 with any buffer. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2491 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2492 :host HOST -- HOST is name of the host to connect to, or its IP |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2493 address. The symbol `local' specifies the local host. If specified |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2494 for a server process, it must be a valid name or address for the local |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2495 host, and only clients connecting to that address will be accepted. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2496 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2497 :service SERVICE -- SERVICE is name of the service desired, or an |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2498 integer specifying a port number to connect to. If SERVICE is t, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2499 a random port number is selected for the server. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2500 |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2501 :type TYPE -- TYPE is the type of connection. The default (nil) is a |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2502 stream type connection, `datagram' creates a datagram type connection. |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2503 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2504 :family FAMILY -- FAMILY is the address (and protocol) family for the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2505 service specified by HOST and SERVICE. The default address family is |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2506 Inet (or IPv4) for the host and port number specified by HOST and |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2507 SERVICE. Other address families supported are: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2508 local -- for a local (i.e. UNIX) address specified by SERVICE. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2509 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2510 :local ADDRESS -- ADDRESS is the local address used for the connection. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2511 This parameter is ignored when opening a client process. When specified |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2512 for a server process, the FAMILY, HOST and SERVICE args are ignored. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2513 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2514 :remote ADDRESS -- ADDRESS is the remote partner's address for the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2515 connection. This parameter is ignored when opening a stream server |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2516 process. For a datagram server process, it specifies the initial |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2517 setting of the remote datagram address. When specified for a client |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2518 process, the FAMILY, HOST, and SERVICE args are ignored. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2519 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2520 The format of ADDRESS depends on the address family: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2521 - An IPv4 address is represented as an vector of integers [A B C D P] |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2522 corresponding to numeric IP address A.B.C.D and port number P. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2523 - A local address is represented as a string with the address in the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2524 local address space. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2525 - An "unsupported family" address is represented by a cons (F . AV) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2526 where F is the family number and AV is a vector containing the socket |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2527 address data with one element per address data byte. Do not rely on |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2528 this format in portable code, as it may depend on implementation |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2529 defined constants, data sizes, and data structure alignment. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2530 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2531 :coding CODING -- CODING is coding system for this process. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2532 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2533 :options OPTIONS -- Set the specified options for the network process. |
44170
888d736c0e91
(set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents:
44073
diff
changeset
|
2534 See `set-network-process-options' for details. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2535 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2536 :nowait BOOL -- If BOOL is non-nil for a stream type client process, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2537 return without waiting for the connection to complete; instead, the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2538 sentinel function will be called with second arg matching "open" (if |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2539 successful) or "failed" when the connect completes. Default is to use |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2540 a blocking connect (i.e. wait) for stream type connections. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2541 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2542 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2543 running when emacs is exited. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2544 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2545 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2546 In the stopped state, a server process does not accept new |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2547 connections, and a client process does not handle incoming traffic. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2548 The stopped state is cleared by `continue-process' and set by |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2549 `stop-process'. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2550 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2551 :filter FILTER -- Install FILTER as the process filter. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2552 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2553 :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2554 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2555 :log LOG -- Install LOG as the server process log function. This |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
2556 function is called when the server accepts a network connection from a |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2557 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2558 is the server process, CLIENT is the new process for the connection, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2559 and MESSAGE is a string. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2560 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2561 :server BOOL -- if BOOL is non-nil, create a server process for the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2562 specified FAMILY, SERVICE, and connection type (stream or datagram). |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2563 Default is a client process. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2564 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2565 A server process will listen for and accept connections from |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2566 clients. When a client connection is accepted, a new network process |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2567 is created for the connection with the following parameters: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2568 - The client's process name is constructed by concatenating the server |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2569 process' NAME and a client identification string. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2570 - If the FILTER argument is non-nil, the client process will not get a |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2571 separate process buffer; otherwise, the client's process buffer is a newly |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2572 created buffer named after the server process' BUFFER name or process |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2573 NAME concatenated with the client identification string. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2574 - The connection type and the process filter and sentinel parameters are |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2575 inherited from the server process' TYPE, FILTER and SENTINEL. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2576 - The client process' contact info is set according to the client's |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2577 addressing information (typically an IP address and a port number). |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2578 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2579 Notice that the FILTER and SENTINEL args are never used directly by |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2580 the server process. Also, the BUFFER argument is not used directly by |
47542
62a08cd28e83
(make-network-process): Doc fix (there is no network-server-log-function hook).
Kim F. Storm <storm@cua.dk>
parents:
47431
diff
changeset
|
2581 the server process, but via the optional :log function, accepted (and |
62a08cd28e83
(make-network-process): Doc fix (there is no network-server-log-function hook).
Kim F. Storm <storm@cua.dk>
parents:
47431
diff
changeset
|
2582 failed) connections may be logged in the server process' buffer. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2583 |
43995
110955214222
(Fmake_network_process): Remove unused variable `sa'.
Pavel Janík <Pavel@Janik.cz>
parents:
43968
diff
changeset
|
2584 usage: (make-network-process &rest ARGS) */) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2585 (nargs, args) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2586 int nargs; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2587 Lisp_Object *args; |
578 | 2588 { |
2589 Lisp_Object proc; | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2590 Lisp_Object contact; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2591 struct Lisp_Process *p; |
32032
633b826a56f3
(Fopen_network_stream) [HAVE_GETADDRINFO]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
31806
diff
changeset
|
2592 #ifdef HAVE_GETADDRINFO |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2593 struct addrinfo ai, *res, *lres; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2594 struct addrinfo hints; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2595 char *portstring, portbuf[128]; |
32032
633b826a56f3
(Fopen_network_stream) [HAVE_GETADDRINFO]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
31806
diff
changeset
|
2596 #else /* HAVE_GETADDRINFO */ |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2597 struct _emacs_addrinfo |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2598 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2599 int ai_family; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2600 int ai_socktype; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2601 int ai_protocol; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2602 int ai_addrlen; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2603 struct sockaddr *ai_addr; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2604 struct _emacs_addrinfo *ai_next; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2605 } ai, *res, *lres; |
25262
ccf83ed7326a
(Fopen_network_stream): Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents:
25248
diff
changeset
|
2606 #endif /* HAVE_GETADDRINFO */ |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2607 struct sockaddr_in address_in; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2608 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2609 struct sockaddr_un address_un; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2610 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2611 int port; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2612 int ret = 0; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2613 int xerrno = 0; |
25262
ccf83ed7326a
(Fopen_network_stream): Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents:
25248
diff
changeset
|
2614 int s = -1, outch, inch; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2615 struct gcpro gcpro1; |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
2616 int retry = 0; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45410
diff
changeset
|
2617 int count = SPECPDL_INDEX (); |
25705
1f109108fa7e
(Fopen_network_stream): Avoid socket decriptor leak.
Andreas Schwab <schwab@suse.de>
parents:
25645
diff
changeset
|
2618 int count1; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2619 Lisp_Object QCaddress; /* one of QClocal or QCremote */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2620 Lisp_Object tem; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2621 Lisp_Object name, buffer, host, service, address; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2622 Lisp_Object filter, sentinel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2623 int is_non_blocking_client = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2624 int is_server = 0; |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2625 int socktype; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2626 int family = -1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2627 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2628 if (nargs == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2629 return Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2630 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2631 /* Save arguments for process-contact and clone-process. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2632 contact = Flist (nargs, args); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2633 GCPRO1 (contact); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2634 |
15355
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
2635 #ifdef WINDOWSNT |
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
2636 /* Ensure socket support is loaded if available. */ |
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
2637 init_winsock (TRUE); |
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
2638 #endif |
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
2639 |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2640 /* :type TYPE (nil: stream, datagram */ |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2641 tem = Fplist_get (contact, QCtype); |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2642 if (NILP (tem)) |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2643 socktype = SOCK_STREAM; |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2644 #ifdef DATAGRAM_SOCKETS |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2645 else if (EQ (tem, Qdatagram)) |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2646 socktype = SOCK_DGRAM; |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2647 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2648 else |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
2649 error ("Unsupported connection type"); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2650 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2651 /* :server BOOL */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2652 tem = Fplist_get (contact, QCserver); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2653 if (!NILP (tem)) |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
2654 { |
45099
8a33d836b6fb
(Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents:
45005
diff
changeset
|
2655 /* Don't support network sockets when non-blocking mode is |
8a33d836b6fb
(Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents:
45005
diff
changeset
|
2656 not available, since a blocked Emacs is not useful. */ |
8a33d836b6fb
(Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents:
45005
diff
changeset
|
2657 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY)) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2658 error ("Network servers not supported"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2659 #else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2660 is_server = 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2661 #endif |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
2662 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2663 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2664 /* Make QCaddress an alias for :local (server) or :remote (client). */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2665 QCaddress = is_server ? QClocal : QCremote; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2666 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2667 /* :wait BOOL */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2668 if (!is_server && socktype == SOCK_STREAM |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2669 && (tem = Fplist_get (contact, QCnowait), !NILP (tem))) |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
2670 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2671 #ifndef NON_BLOCKING_CONNECT |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2672 error ("Non-blocking connect not supported"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2673 #else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2674 is_non_blocking_client = 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2675 #endif |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
2676 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2677 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2678 name = Fplist_get (contact, QCname); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2679 buffer = Fplist_get (contact, QCbuffer); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2680 filter = Fplist_get (contact, QCfilter); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2681 sentinel = Fplist_get (contact, QCsentinel); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2682 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2683 CHECK_STRING (name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2684 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2685 #ifdef TERM |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2686 /* Let's handle TERM before things get complicated ... */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2687 host = Fplist_get (contact, QChost); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2688 CHECK_STRING (host); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2689 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2690 service = Fplist_get (contact, QCservice); |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
2691 if (INTEGERP (service)) |
578 | 2692 port = htons ((unsigned short) XINT (service)); |
2693 else | |
2694 { | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2695 struct servent *svc_info; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
2696 CHECK_STRING (service); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2697 svc_info = getservbyname (SDATA (service), "tcp"); |
578 | 2698 if (svc_info == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2699 error ("Unknown service: %s", SDATA (service)); |
578 | 2700 port = svc_info->s_port; |
2701 } | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2702 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2703 s = connect_server (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2704 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2705 report_file_error ("error creating socket", Fcons (name, Qnil)); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2706 send_command (s, C_PORT, 0, "%s:%d", SDATA (host), ntohs (port)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2707 send_command (s, C_DUMB, 1, 0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2708 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2709 #else /* not TERM */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2710 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2711 /* Initialize addrinfo structure in case we don't use getaddrinfo. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2712 ai.ai_socktype = socktype; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2713 ai.ai_protocol = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2714 ai.ai_next = NULL; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2715 res = &ai; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2716 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2717 /* :local ADDRESS or :remote ADDRESS */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2718 address = Fplist_get (contact, QCaddress); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2719 if (!NILP (address)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2720 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2721 host = service = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2722 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2723 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2724 error ("Malformed :address"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2725 ai.ai_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2726 ai.ai_addr = alloca (ai.ai_addrlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2727 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2728 goto open_socket; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2729 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2730 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2731 /* :family FAMILY -- nil (for Inet), local, or integer. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2732 tem = Fplist_get (contact, QCfamily); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2733 if (INTEGERP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2734 family = XINT (tem); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2735 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2736 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2737 if (NILP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2738 family = AF_INET; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2739 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2740 else if (EQ (tem, Qlocal)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2741 family = AF_LOCAL; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2742 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2743 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2744 if (family < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2745 error ("Unknown address family"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2746 ai.ai_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2747 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2748 /* :service SERVICE -- string, integer (port number), or t (random port). */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2749 service = Fplist_get (contact, QCservice); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2750 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2751 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2752 if (family == AF_LOCAL) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2753 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2754 /* Host is not used. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2755 host = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2756 CHECK_STRING (service); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2757 bzero (&address_un, sizeof address_un); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2758 address_un.sun_family = AF_LOCAL; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2759 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2760 ai.ai_addr = (struct sockaddr *) &address_un; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2761 ai.ai_addrlen = sizeof address_un; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2762 goto open_socket; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2763 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2764 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2765 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2766 /* :host HOST -- hostname, ip address, or 'local for localhost. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2767 host = Fplist_get (contact, QChost); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2768 if (!NILP (host)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2769 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2770 if (EQ (host, Qlocal)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2771 host = build_string ("localhost"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2772 CHECK_STRING (host); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2773 } |
578 | 2774 |
13777
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
2775 /* Slow down polling to every ten seconds. |
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
2776 Some kernels have a bug which causes retrying connect to fail |
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
2777 after a connect. Polling can interfere with gethostbyname too. */ |
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
2778 #ifdef POLL_FOR_INPUT |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2779 if (socktype == SOCK_STREAM) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2780 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2781 record_unwind_protect (unwind_stop_other_atimers, Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2782 bind_polling_period (10); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2783 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2784 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2785 |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
2786 #ifdef HAVE_GETADDRINFO |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2787 /* If we have a host, use getaddrinfo to resolve both host and service. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2788 Otherwise, use getservbyname to lookup the service. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2789 if (!NILP (host)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2790 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2791 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2792 /* SERVICE can either be a string or int. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2793 Convert to a C string for later use by getaddrinfo. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2794 if (EQ (service, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2795 portstring = "0"; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2796 else if (INTEGERP (service)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2797 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2798 sprintf (portbuf, "%ld", (long) XINT (service)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2799 portstring = portbuf; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2800 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2801 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2802 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2803 CHECK_STRING (service); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2804 portstring = SDATA (service); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2805 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2806 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2807 immediate_quit = 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2808 QUIT; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2809 memset (&hints, 0, sizeof (hints)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2810 hints.ai_flags = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2811 hints.ai_family = NILP (Fplist_member (contact, QCfamily)) ? AF_UNSPEC : family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2812 hints.ai_socktype = socktype; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2813 hints.ai_protocol = 0; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2814 ret = getaddrinfo (SDATA (host), portstring, &hints, &res); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2815 if (ret) |
32074
a889f9fc59a7
(Fopen_network_stream): Use HAVE_GAI_STRERROR.
Dave Love <fx@gnu.org>
parents:
32032
diff
changeset
|
2816 #ifdef HAVE_GAI_STRERROR |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2817 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret)); |
32074
a889f9fc59a7
(Fopen_network_stream): Use HAVE_GAI_STRERROR.
Dave Love <fx@gnu.org>
parents:
32032
diff
changeset
|
2818 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2819 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2820 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2821 immediate_quit = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2822 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2823 goto open_socket; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2824 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2825 #endif /* HAVE_GETADDRINFO */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2826 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2827 /* We end up here if getaddrinfo is not defined, or in case no hostname |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2828 has been specified (e.g. for a local server process). */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2829 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2830 if (EQ (service, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2831 port = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2832 else if (INTEGERP (service)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2833 port = htons ((unsigned short) XINT (service)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2834 else |
8287
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
2835 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2836 struct servent *svc_info; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2837 CHECK_STRING (service); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2838 svc_info = getservbyname (SDATA (service), |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2839 (socktype == SOCK_DGRAM ? "udp" : "tcp")); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2840 if (svc_info == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2841 error ("Unknown service: %s", SDATA (service)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2842 port = svc_info->s_port; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2843 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2844 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2845 bzero (&address_in, sizeof address_in); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2846 address_in.sin_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2847 address_in.sin_addr.s_addr = INADDR_ANY; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2848 address_in.sin_port = port; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2849 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2850 #ifndef HAVE_GETADDRINFO |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2851 if (!NILP (host)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2852 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2853 struct hostent *host_info_ptr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2854 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2855 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2856 as it may `hang' emacs for a very long time. */ |
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
2857 immediate_quit = 1; |
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
2858 QUIT; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2859 host_info_ptr = gethostbyname (SDATA (host)); |
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
2860 immediate_quit = 0; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2861 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2862 if (host_info_ptr) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2863 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2864 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2865 host_info_ptr->h_length); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2866 family = host_info_ptr->h_addrtype; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2867 address_in.sin_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2868 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2869 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2870 /* Attempt to interpret host as numeric inet address */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2871 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2872 IN_ADDR numeric_addr; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2873 numeric_addr = inet_addr ((char *) SDATA (host)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2874 if (NUMERIC_ADDR_ERROR) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
2875 error ("Unknown host \"%s\"", SDATA (host)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2876 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2877 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2878 sizeof (address_in.sin_addr)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2879 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2880 |
8287
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
2881 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2882 #endif /* not HAVE_GETADDRINFO */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2883 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2884 ai.ai_family = family; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2885 ai.ai_addr = (struct sockaddr *) &address_in; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2886 ai.ai_addrlen = sizeof address_in; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2887 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2888 open_socket: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2889 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2890 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2891 when connect is interrupted. So let's not let it get interrupted. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2892 Note we do not turn off polling, because polling is only used |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2893 when not interrupt_input, and thus not normally used on the systems |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2894 which have this bug. On systems which use polling, there's no way |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2895 to quit if polling is turned off. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2896 if (interrupt_input |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2897 && !is_server && socktype == SOCK_STREAM) |
578 | 2898 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2899 /* Comment from KFS: The original open-network-stream code |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2900 didn't unwind protect this, but it seems like the proper |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2901 thing to do. In any case, I don't see how it could harm to |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2902 do this -- and it makes cleanup (using unbind_to) easier. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2903 record_unwind_protect (unwind_request_sigio, Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2904 unrequest_sigio (); |
578 | 2905 } |
2906 | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2907 /* Do this in case we never enter the for-loop below. */ |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45410
diff
changeset
|
2908 count1 = SPECPDL_INDEX (); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2909 s = -1; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2910 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2911 for (lres = res; lres; lres = lres->ai_next) |
578 | 2912 { |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2913 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2914 if (s < 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2915 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2916 xerrno = errno; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2917 continue; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2918 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2919 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2920 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2921 if (!is_server && socktype == SOCK_DGRAM) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2922 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2923 #endif /* DATAGRAM_SOCKETS */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2924 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2925 #ifdef NON_BLOCKING_CONNECT |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2926 if (is_non_blocking_client) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2927 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2928 #ifdef O_NONBLOCK |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2929 ret = fcntl (s, F_SETFL, O_NONBLOCK); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2930 #else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2931 ret = fcntl (s, F_SETFL, O_NDELAY); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2932 #endif |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2933 if (ret < 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2934 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2935 xerrno = errno; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2936 emacs_close (s); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2937 s = -1; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2938 continue; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2939 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2940 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2941 #endif |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2942 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2943 /* Make us close S if quit. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2944 record_unwind_protect (close_file_unwind, make_number (s)); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2945 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2946 if (is_server) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2947 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2948 /* Configure as a server socket. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2949 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2950 if (family != AF_LOCAL) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2951 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2952 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2953 int optval = 1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2954 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2955 report_file_error ("Cannot set reuse option on server socket.", Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2956 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2957 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2958 if (bind (s, lres->ai_addr, lres->ai_addrlen)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2959 report_file_error ("Cannot bind server socket", Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2960 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2961 #ifdef HAVE_GETSOCKNAME |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2962 if (EQ (service, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2963 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2964 struct sockaddr_in sa1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2965 int len1 = sizeof (sa1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2966 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2967 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2968 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2969 service = make_number (sa1.sin_port); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2970 contact = Fplist_put (contact, QCservice, service); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2971 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2972 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2973 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2974 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2975 if (socktype == SOCK_STREAM && listen (s, 5)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2976 report_file_error ("Cannot listen on server socket", Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2977 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2978 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2979 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2980 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
2981 retry_connect: |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2982 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2983 immediate_quit = 1; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2984 QUIT; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2985 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2986 /* This turns off all alarm-based interrupts; the |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2987 bind_polling_period call above doesn't always turn all the |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2988 short-interval ones off, especially if interrupt_input is |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2989 set. |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2990 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2991 It'd be nice to be able to control the connect timeout |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2992 though. Would non-blocking connect calls be portable? |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2993 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2994 This used to be conditioned by HAVE_GETADDRINFO. Why? */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2995 |
43642
bfd9fa0143d9
(Fopen_network_stream): Always call turn_on_atimers around connect.
Kim F. Storm <storm@cua.dk>
parents:
43617
diff
changeset
|
2996 turn_on_atimers (0); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2997 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2998 ret = connect (s, lres->ai_addr, lres->ai_addrlen); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
2999 xerrno = errno; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3000 |
43642
bfd9fa0143d9
(Fopen_network_stream): Always call turn_on_atimers around connect.
Kim F. Storm <storm@cua.dk>
parents:
43617
diff
changeset
|
3001 turn_on_atimers (1); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3002 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3003 if (ret == 0 || xerrno == EISCONN) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3004 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3005 /* The unwind-protect will be discarded afterwards. |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3006 Likewise for immediate_quit. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3007 break; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3008 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3009 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3010 #ifdef NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3011 #ifdef EINPROGRESS |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3012 if (is_non_blocking_client && xerrno == EINPROGRESS) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3013 break; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3014 #else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3015 #ifdef EWOULDBLOCK |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3016 if (is_non_blocking_client && xerrno == EWOULDBLOCK) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3017 break; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3018 #endif |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3019 #endif |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3020 #endif |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3021 |
14671
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
3022 immediate_quit = 0; |
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
3023 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3024 if (xerrno == EINTR) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3025 goto retry_connect; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3026 if (xerrno == EADDRINUSE && retry < 20) |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3027 { |
12378
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
3028 /* A delay here is needed on some FreeBSD systems, |
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
3029 and it is harmless, since this retrying takes time anyway |
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
3030 and should be infrequent. */ |
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
3031 Fsleep_for (make_number (1), Qnil); |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3032 retry++; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3033 goto retry_connect; |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3034 } |
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3035 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3036 /* Discard the unwind protect closing S. */ |
25705
1f109108fa7e
(Fopen_network_stream): Avoid socket decriptor leak.
Andreas Schwab <schwab@suse.de>
parents:
25645
diff
changeset
|
3037 specpdl_ptr = specpdl + count1; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3038 emacs_close (s); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3039 s = -1; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3040 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3041 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3042 if (s >= 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3043 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3044 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3045 if (socktype == SOCK_DGRAM) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3046 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3047 if (datagram_address[s].sa) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3048 abort (); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3049 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3050 datagram_address[s].len = lres->ai_addrlen; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3051 if (is_server) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3052 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3053 Lisp_Object remote; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3054 bzero (datagram_address[s].sa, lres->ai_addrlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3055 if (remote = Fplist_get (contact, QCremote), !NILP (remote)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3056 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3057 int rfamily, rlen; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3058 rlen = get_lisp_to_sockaddr_size (remote, &rfamily); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3059 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3060 conv_lisp_to_sockaddr (rfamily, remote, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3061 datagram_address[s].sa, rlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3062 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3063 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3064 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3065 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3066 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3067 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3068 contact = Fplist_put (contact, QCaddress, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3069 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3070 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3071 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3072 #ifdef HAVE_GETADDRINFO |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3073 if (res != &ai) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3074 freeaddrinfo (res); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3075 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3076 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3077 immediate_quit = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3078 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3079 /* Discard the unwind protect for closing S, if any. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3080 specpdl_ptr = specpdl + count1; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3081 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3082 /* Unwind bind_polling_period and request_sigio. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3083 unbind_to (count, Qnil); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3084 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3085 if (s < 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3086 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3087 /* If non-blocking got this far - and failed - assume non-blocking is |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3088 not supported after all. This is probably a wrong assumption, but |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3089 the normal blocking calls to open-network-stream handles this error |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3090 better. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3091 if (is_non_blocking_client) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3092 return Qnil; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3093 |
578 | 3094 errno = xerrno; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3095 if (is_server) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3096 report_file_error ("make server process failed", contact); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3097 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3098 report_file_error ("make client process failed", contact); |
578 | 3099 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3100 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3101 tem = Fplist_get (contact, QCoptions); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3102 if (!NILP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3103 set_socket_options (s, tem, 1); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3104 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3105 #endif /* not TERM */ |
578 | 3106 |
3107 inch = s; | |
17247
351006378b51
(Fopen_network_stream): Use same socket for in and out.
Richard M. Stallman <rms@gnu.org>
parents:
17224
diff
changeset
|
3108 outch = s; |
578 | 3109 |
3110 if (!NILP (buffer)) | |
3111 buffer = Fget_buffer_create (buffer); | |
3112 proc = make_process (name); | |
3113 | |
3114 chan_process[inch] = proc; | |
3115 | |
3116 #ifdef O_NONBLOCK | |
3117 fcntl (inch, F_SETFL, O_NONBLOCK); | |
3118 #else | |
3119 #ifdef O_NDELAY | |
3120 fcntl (inch, F_SETFL, O_NDELAY); | |
3121 #endif | |
3122 #endif | |
3123 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3124 p = XPROCESS (proc); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3125 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3126 p->childp = contact; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3127 p->buffer = buffer; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3128 p->sentinel = sentinel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3129 p->filter = filter; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3130 p->log = Fplist_get (contact, QClog); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3131 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3132 p->kill_without_query = Qt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3133 if ((tem = Fplist_get (contact, QCstop), !NILP (tem))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3134 p->command = Qt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3135 p->pid = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3136 XSETINT (p->infd, inch); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3137 XSETINT (p->outfd, outch); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3138 if (is_server && socktype == SOCK_STREAM) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3139 p->status = Qlisten; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3140 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3141 #ifdef NON_BLOCKING_CONNECT |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3142 if (is_non_blocking_client) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3143 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3144 /* We may get here if connect did succeed immediately. However, |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3145 in that case, we still need to signal this like a non-blocking |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3146 connection. */ |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3147 p->status = Qconnect; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3148 if (!FD_ISSET (inch, &connect_wait_mask)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3149 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3150 FD_SET (inch, &connect_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3151 num_pending_connects++; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3152 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3153 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3154 else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3155 #endif |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3156 /* A server may have a client filter setting of Qt, but it must |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3157 still listen for incoming connects unless it is stopped. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3158 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3159 || (EQ (p->status, Qlisten) && NILP (p->command))) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3160 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3161 FD_SET (inch, &input_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3162 FD_SET (inch, &non_keyboard_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3163 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3164 |
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3165 if (inch > max_process_desc) |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3166 max_process_desc = inch; |
578 | 3167 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3168 tem = Fplist_member (contact, QCcoding); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3169 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem)))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3170 tem = Qnil; /* No error message (too late!). */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3171 |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3172 { |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3173 /* Setup coding systems for communicating with the network stream. */ |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3174 struct gcpro gcpro1; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3175 /* Qt denotes we have not yet called Ffind_operation_coding_system. */ |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3176 Lisp_Object coding_systems = Qt; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3177 Lisp_Object args[5], val; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3178 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3179 if (!NILP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3180 val = XCAR (XCDR (tem)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3181 else if (!NILP (Vcoding_system_for_read)) |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3182 val = Vcoding_system_for_read; |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
3183 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters)) |
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
3184 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters))) |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3185 /* We dare not decode end-of-line format by setting VAL to |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3186 Qraw_text, because the existing Emacs Lisp libraries |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3187 assume that they receive bare code including a sequene of |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3188 CR LF. */ |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3189 val = Qnil; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3190 else |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3191 { |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3192 if (NILP (host) || NILP (service)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3193 coding_systems = Qnil; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3194 else |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3195 { |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3196 args[0] = Qopen_network_stream, args[1] = name, |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3197 args[2] = buffer, args[3] = host, args[4] = service; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3198 GCPRO1 (proc); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3199 coding_systems = Ffind_operation_coding_system (5, args); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3200 UNGCPRO; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3201 } |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3202 if (CONSP (coding_systems)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
3203 val = XCAR (coding_systems); |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3204 else if (CONSP (Vdefault_process_coding_system)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
3205 val = XCAR (Vdefault_process_coding_system); |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3206 else |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3207 val = Qnil; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3208 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3209 p->decode_coding_system = val; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3210 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3211 if (!NILP (tem)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3212 val = XCAR (XCDR (tem)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3213 else if (!NILP (Vcoding_system_for_write)) |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3214 val = Vcoding_system_for_write; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3215 else if (NILP (current_buffer->enable_multibyte_characters)) |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3216 val = Qnil; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3217 else |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3218 { |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3219 if (EQ (coding_systems, Qt)) |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3220 { |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3221 if (NILP (host) || NILP (service)) |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3222 coding_systems = Qnil; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3223 else |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3224 { |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3225 args[0] = Qopen_network_stream, args[1] = name, |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3226 args[2] = buffer, args[3] = host, args[4] = service; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3227 GCPRO1 (proc); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3228 coding_systems = Ffind_operation_coding_system (5, args); |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3229 UNGCPRO; |
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
3230 } |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3231 } |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3232 if (CONSP (coding_systems)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
3233 val = XCDR (coding_systems); |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3234 else if (CONSP (Vdefault_process_coding_system)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
3235 val = XCDR (Vdefault_process_coding_system); |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3236 else |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3237 val = Qnil; |
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3238 } |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3239 p->encode_coding_system = val; |
22019
bb9dd4758e7e
(Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents:
21978
diff
changeset
|
3240 } |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3241 |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3242 if (!proc_decode_coding_system[inch]) |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3243 proc_decode_coding_system[inch] |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3244 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3245 setup_coding_system (p->decode_coding_system, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3246 proc_decode_coding_system[inch]); |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3247 if (!proc_encode_coding_system[outch]) |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3248 proc_encode_coding_system[outch] |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3249 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3250 setup_coding_system (p->encode_coding_system, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3251 proc_encode_coding_system[outch]); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3252 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3253 p->decoding_buf = make_uninit_string (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3254 p->decoding_carryover = make_number (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3255 p->encoding_buf = make_uninit_string (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3256 p->encoding_carryover = make_number (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3257 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3258 p->inherit_coding_system_flag |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3259 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system |
21848
050ea21cec87
(Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents:
21798
diff
changeset
|
3260 ? Qnil : Qt); |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
3261 |
578 | 3262 UNGCPRO; |
3263 return proc; | |
3264 } | |
3265 #endif /* HAVE_SOCKETS */ | |
3266 | |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
3267 void |
578 | 3268 deactivate_process (proc) |
3269 Lisp_Object proc; | |
3270 { | |
3271 register int inchannel, outchannel; | |
3272 register struct Lisp_Process *p = XPROCESS (proc); | |
3273 | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3274 inchannel = XINT (p->infd); |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3275 outchannel = XINT (p->outfd); |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3276 |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3277 if (inchannel >= 0) |
578 | 3278 { |
3279 /* Beware SIGCHLD hereabouts. */ | |
3280 flush_pending_output (inchannel); | |
3281 #ifdef VMS | |
3282 { | |
3283 VMS_PROC_STUFF *get_vms_process_pointer (), *vs; | |
3284 sys$dassgn (outchannel); | |
2357
9faa3a02ea97
* process.c [VMS] (DCL_PROMPT): Remove hack.
Jim Blandy <jimb@redhat.com>
parents:
2290
diff
changeset
|
3285 vs = get_vms_process_pointer (p->pid); |
578 | 3286 if (vs) |
3287 give_back_vms_process_stuff (vs); | |
3288 } | |
3289 #else | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3290 emacs_close (inchannel); |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3291 if (outchannel >= 0 && outchannel != inchannel) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3292 emacs_close (outchannel); |
578 | 3293 #endif |
3294 | |
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
3295 XSETINT (p->infd, -1); |
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
3296 XSETINT (p->outfd, -1); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3297 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3298 if (DATAGRAM_CHAN_P (inchannel)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3299 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3300 xfree (datagram_address[inchannel].sa); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3301 datagram_address[inchannel].sa = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3302 datagram_address[inchannel].len = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3303 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3304 #endif |
578 | 3305 chan_process[inchannel] = Qnil; |
3306 FD_CLR (inchannel, &input_wait_mask); | |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
3307 FD_CLR (inchannel, &non_keyboard_wait_mask); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3308 if (FD_ISSET (inchannel, &connect_wait_mask)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3309 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3310 FD_CLR (inchannel, &connect_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3311 if (--num_pending_connects < 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3312 abort (); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3313 } |
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3314 if (inchannel == max_process_desc) |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3315 { |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3316 int i; |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3317 /* We just closed the highest-numbered process input descriptor, |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3318 so recompute the highest-numbered one now. */ |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3319 max_process_desc = 0; |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3320 for (i = 0; i < MAXDESC; i++) |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3321 if (!NILP (chan_process[i])) |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3322 max_process_desc = i; |
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
3323 } |
578 | 3324 } |
3325 } | |
3326 | |
3327 /* Close all descriptors currently in use for communication | |
3328 with subprocess. This is used in a newly-forked subprocess | |
3329 to get rid of irrelevant descriptors. */ | |
3330 | |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
3331 void |
578 | 3332 close_process_descs () |
3333 { | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3334 #ifndef WINDOWSNT |
578 | 3335 int i; |
3336 for (i = 0; i < MAXDESC; i++) | |
3337 { | |
3338 Lisp_Object process; | |
3339 process = chan_process[i]; | |
3340 if (!NILP (process)) | |
3341 { | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3342 int in = XINT (XPROCESS (process)->infd); |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3343 int out = XINT (XPROCESS (process)->outfd); |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3344 if (in >= 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3345 emacs_close (in); |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3346 if (out >= 0 && in != out) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3347 emacs_close (out); |
578 | 3348 } |
3349 } | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3350 #endif |
578 | 3351 } |
3352 | |
3353 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3354 0, 3, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3355 doc: /* Allow any pending output from subprocesses to be read by Emacs. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3356 It is read into the process' buffers or given to their filter functions. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3357 Non-nil arg PROCESS means do not return until some output has been received |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3358 from PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3359 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3360 seconds and microseconds to wait; return after that much time whether |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3361 or not there is input. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3362 Return non-nil iff we received any output before the timeout expired. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3363 (process, timeout, timeout_msecs) |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
3364 register Lisp_Object process, timeout, timeout_msecs; |
578 | 3365 { |
3366 int seconds; | |
3367 int useconds; | |
3368 | |
24598
078d53377010
(Faccept_process_output): Check validity of PROCESS.
Richard M. Stallman <rms@gnu.org>
parents:
24352
diff
changeset
|
3369 if (! NILP (process)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
3370 CHECK_PROCESS (process); |
24598
078d53377010
(Faccept_process_output): Check validity of PROCESS.
Richard M. Stallman <rms@gnu.org>
parents:
24352
diff
changeset
|
3371 |
578 | 3372 if (! NILP (timeout_msecs)) |
3373 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
3374 CHECK_NUMBER (timeout_msecs); |
578 | 3375 useconds = XINT (timeout_msecs); |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
3376 if (!INTEGERP (timeout)) |
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
3377 XSETINT (timeout, 0); |
578 | 3378 |
3379 { | |
3380 int carry = useconds / 1000000; | |
3381 | |
3382 XSETINT (timeout, XINT (timeout) + carry); | |
3383 useconds -= carry * 1000000; | |
3384 | |
3385 /* I think this clause is necessary because C doesn't | |
3386 guarantee a particular rounding direction for negative | |
3387 integers. */ | |
3388 if (useconds < 0) | |
3389 { | |
3390 XSETINT (timeout, XINT (timeout) - 1); | |
3391 useconds += 1000000; | |
3392 } | |
3393 } | |
3394 } | |
1180
9bf82484415d
(Faccept_process_output): Initialize useconds.
Richard M. Stallman <rms@gnu.org>
parents:
1047
diff
changeset
|
3395 else |
9bf82484415d
(Faccept_process_output): Initialize useconds.
Richard M. Stallman <rms@gnu.org>
parents:
1047
diff
changeset
|
3396 useconds = 0; |
578 | 3397 |
3398 if (! NILP (timeout)) | |
3399 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
3400 CHECK_NUMBER (timeout); |
578 | 3401 seconds = XINT (timeout); |
14605
80196bfd8b94
(Faccept_process_output): Accept sub-second timeouts.
Erik Naggum <erik@naggum.no>
parents:
14544
diff
changeset
|
3402 if (seconds < 0 || (seconds == 0 && useconds == 0)) |
578 | 3403 seconds = -1; |
3404 } | |
3405 else | |
3406 { | |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
3407 if (NILP (process)) |
578 | 3408 seconds = -1; |
3409 else | |
3410 seconds = 0; | |
3411 } | |
3412 | |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
3413 if (NILP (process)) |
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
3414 XSETFASTINT (process, 0); |
650 | 3415 |
578 | 3416 return |
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
3417 (wait_reading_process_input (seconds, useconds, process, 0) |
578 | 3418 ? Qt : Qnil); |
3419 } | |
3420 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3421 /* Accept a connection for server process SERVER on CHANNEL. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3422 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3423 static int connect_counter = 0; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3424 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3425 static void |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3426 server_accept_connection (server, channel) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3427 Lisp_Object server; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3428 int channel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3429 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3430 Lisp_Object proc, caller, name, buffer; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3431 Lisp_Object contact, host, service; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3432 struct Lisp_Process *ps= XPROCESS (server); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3433 struct Lisp_Process *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3434 int s; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3435 union u_sockaddr { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3436 struct sockaddr sa; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3437 struct sockaddr_in in; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3438 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3439 struct sockaddr_un un; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3440 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3441 } saddr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3442 int len = sizeof saddr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3443 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3444 s = accept (channel, &saddr.sa, &len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3445 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3446 if (s < 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3447 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3448 int code = errno; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3449 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3450 if (code == EAGAIN) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3451 return; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3452 #ifdef EWOULDBLOCK |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3453 if (code == EWOULDBLOCK) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3454 return; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3455 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3456 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3457 if (!NILP (ps->log)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3458 call3 (ps->log, server, Qnil, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3459 concat3 (build_string ("accept failed with code"), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3460 Fnumber_to_string (make_number (code)), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3461 build_string ("\n"))); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3462 return; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3463 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3464 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3465 connect_counter++; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3466 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3467 /* Setup a new process to handle the connection. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3468 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3469 /* Generate a unique identification of the caller, and build contact |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3470 information for this process. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3471 host = Qt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3472 service = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3473 switch (saddr.sa.sa_family) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3474 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3475 case AF_INET: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3476 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3477 Lisp_Object args[5]; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3478 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3479 args[0] = build_string ("%d.%d.%d.%d"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3480 args[1] = make_number (*ip++); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3481 args[2] = make_number (*ip++); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3482 args[3] = make_number (*ip++); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3483 args[4] = make_number (*ip++); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3484 host = Fformat (5, args); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3485 service = make_number (ntohs (saddr.in.sin_port)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3486 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3487 args[0] = build_string (" <%s:%d>"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3488 args[1] = host; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3489 args[2] = service; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3490 caller = Fformat (3, args); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3491 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3492 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3493 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3494 #ifdef HAVE_LOCAL_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3495 case AF_LOCAL: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3496 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3497 default: |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3498 caller = Fnumber_to_string (make_number (connect_counter)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3499 caller = concat3 (build_string (" <*"), caller, build_string ("*>")); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3500 break; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3501 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3502 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3503 /* Create a new buffer name for this process if it doesn't have a |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3504 filter. The new buffer name is based on the buffer name or |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3505 process name of the server process concatenated with the caller |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3506 identification. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3507 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3508 if (!NILP (ps->filter) && !EQ (ps->filter, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3509 buffer = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3510 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3511 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3512 buffer = ps->buffer; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3513 if (!NILP (buffer)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3514 buffer = Fbuffer_name (buffer); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3515 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3516 buffer = ps->name; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3517 if (!NILP (buffer)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3518 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3519 buffer = concat2 (buffer, caller); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3520 buffer = Fget_buffer_create (buffer); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3521 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3522 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3523 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3524 /* Generate a unique name for the new server process. Combine the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3525 server process name with the caller identification. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3526 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3527 name = concat2 (ps->name, caller); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3528 proc = make_process (name); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3529 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3530 chan_process[s] = proc; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3531 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3532 #ifdef O_NONBLOCK |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3533 fcntl (s, F_SETFL, O_NONBLOCK); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3534 #else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3535 #ifdef O_NDELAY |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3536 fcntl (s, F_SETFL, O_NDELAY); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3537 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3538 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3539 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3540 p = XPROCESS (proc); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3541 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3542 /* Build new contact information for this setup. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3543 contact = Fcopy_sequence (ps->childp); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3544 contact = Fplist_put (contact, QCserver, Qnil); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3545 contact = Fplist_put (contact, QChost, host); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3546 if (!NILP (service)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3547 contact = Fplist_put (contact, QCservice, service); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3548 contact = Fplist_put (contact, QCremote, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3549 conv_sockaddr_to_lisp (&saddr.sa, len)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3550 #ifdef HAVE_GETSOCKNAME |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3551 len = sizeof saddr; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3552 if (getsockname (channel, &saddr.sa, &len) == 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3553 contact = Fplist_put (contact, QClocal, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3554 conv_sockaddr_to_lisp (&saddr.sa, len)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3555 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3556 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3557 p->childp = contact; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3558 p->buffer = buffer; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3559 p->sentinel = ps->sentinel; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3560 p->filter = ps->filter; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3561 p->command = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3562 p->pid = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3563 XSETINT (p->infd, s); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3564 XSETINT (p->outfd, s); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3565 p->status = Qrun; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3566 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3567 /* Client processes for accepted connections are not stopped initially. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3568 if (!EQ (p->filter, Qt)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3569 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3570 FD_SET (s, &input_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3571 FD_SET (s, &non_keyboard_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3572 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3573 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3574 if (s > max_process_desc) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3575 max_process_desc = s; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3576 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3577 /* Setup coding system for new process based on server process. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3578 This seems to be the proper thing to do, as the coding system |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3579 of the new process should reflect the settings at the time the |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3580 server socket was opened; not the current settings. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3581 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3582 p->decode_coding_system = ps->decode_coding_system; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3583 p->encode_coding_system = ps->encode_coding_system; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3584 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3585 if (!proc_decode_coding_system[s]) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3586 proc_decode_coding_system[s] |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3587 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3588 setup_coding_system (p->decode_coding_system, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3589 proc_decode_coding_system[s]); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3590 if (!proc_encode_coding_system[s]) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3591 proc_encode_coding_system[s] |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3592 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3593 setup_coding_system (p->encode_coding_system, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3594 proc_encode_coding_system[s]); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3595 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3596 p->decoding_buf = make_uninit_string (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3597 p->decoding_carryover = make_number (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3598 p->encoding_buf = make_uninit_string (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3599 p->encoding_carryover = make_number (0); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3600 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3601 p->inherit_coding_system_flag |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3602 = (NILP (buffer) ? Qnil : ps->inherit_coding_system_flag); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3603 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3604 if (!NILP (ps->log)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3605 call3 (ps->log, server, proc, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3606 concat3 (build_string ("accept from "), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3607 (STRINGP (host) ? host : build_string ("-")), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3608 build_string ("\n"))); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3609 |
44314
f76a1425eb34
(DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44194
diff
changeset
|
3610 if (!NILP (p->sentinel)) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3611 exec_sentinel (proc, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3612 concat3 (build_string ("open from "), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3613 (STRINGP (host) ? host : build_string ("-")), |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3614 build_string ("\n"))); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3615 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
3616 |
578 | 3617 /* This variable is different from waiting_for_input in keyboard.c. |
3618 It is used to communicate to a lisp process-filter/sentinel (via the | |
3619 function Fwaiting_for_user_input_p below) whether emacs was waiting | |
3620 for user-input when that process-filter was called. | |
3621 waiting_for_input cannot be used as that is by definition 0 when | |
8570
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
3622 lisp code is being evalled. |
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
3623 This is also used in record_asynch_buffer_change. |
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
3624 For that purpose, this must be 0 |
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
3625 when not inside wait_reading_process_input. */ |
578 | 3626 static int waiting_for_user_input_p; |
3627 | |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3628 /* This is here so breakpoints can be put on it. */ |
21514 | 3629 static void |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3630 wait_reading_process_input_1 () |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3631 { |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3632 } |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3633 |
578 | 3634 /* Read and dispose of subprocess output while waiting for timeout to |
3635 elapse and/or keyboard input to be available. | |
3636 | |
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3637 TIME_LIMIT is: |
578 | 3638 timeout in seconds, or |
3639 zero for no limit, or | |
3640 -1 means gobble data immediately available but don't wait for any. | |
3641 | |
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3642 MICROSECS is: |
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3643 an additional duration to wait, measured in microseconds. |
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3644 If this is nonzero and time_limit is 0, then the timeout |
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3645 consists of MICROSECS only. |
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3646 |
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3647 READ_KBD is a lisp value: |
578 | 3648 0 to ignore keyboard input, or |
3649 1 to return when input is available, or | |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
3650 -1 meaning caller will actually read the input, so don't throw to |
578 | 3651 the quit handler, or |
6569 | 3652 a cons cell, meaning wait until its car is non-nil |
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3653 (and gobble terminal input into the buffer if any arrives), or |
650 | 3654 a process object, meaning wait until something arrives from that |
3655 process. The return value is true iff we read some input from | |
3656 that process. | |
578 | 3657 |
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3658 DO_DISPLAY != 0 means redisplay should be done to show subprocess |
578 | 3659 output that arrives. |
3660 | |
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
3661 If READ_KBD is a pointer to a struct Lisp_Process, then the |
578 | 3662 function returns true iff we received input from that process |
3663 before the timeout elapsed. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3510
diff
changeset
|
3664 Otherwise, return true iff we received input from any process. */ |
578 | 3665 |
21514 | 3666 int |
578 | 3667 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) |
650 | 3668 int time_limit, microsecs; |
3669 Lisp_Object read_kbd; | |
3670 int do_display; | |
578 | 3671 { |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
3672 register int channel, nfds; |
578 | 3673 static SELECT_TYPE Available; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3674 static SELECT_TYPE Connecting; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3675 int check_connect, no_avail; |
578 | 3676 int xerrno; |
3677 Lisp_Object proc; | |
25770
3a44b5298cd5
(list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25760
diff
changeset
|
3678 EMACS_TIME timeout, end_time; |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3679 int wait_channel = -1; |
578 | 3680 struct Lisp_Process *wait_proc = 0; |
3681 int got_some_input = 0; | |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3682 /* Either nil or a cons cell, the car of which is of interest and |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3683 may be changed outside of this routine. */ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3684 Lisp_Object wait_for_cell = Qnil; |
578 | 3685 |
3686 FD_ZERO (&Available); | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3687 FD_ZERO (&Connecting); |
578 | 3688 |
650 | 3689 /* If read_kbd is a process to watch, set wait_proc and wait_channel |
3690 accordingly. */ | |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
3691 if (PROCESSP (read_kbd)) |
578 | 3692 { |
650 | 3693 wait_proc = XPROCESS (read_kbd); |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3694 wait_channel = XINT (wait_proc->infd); |
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
3695 XSETFASTINT (read_kbd, 0); |
578 | 3696 } |
3697 | |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
3698 /* If waiting for non-nil in a cell, record where. */ |
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
3699 if (CONSP (read_kbd)) |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
3700 { |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3701 wait_for_cell = read_kbd; |
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
3702 XSETFASTINT (read_kbd, 0); |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
3703 } |
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
3704 |
650 | 3705 waiting_for_user_input_p = XINT (read_kbd); |
578 | 3706 |
3707 /* Since we may need to wait several times, | |
3708 compute the absolute time to return at. */ | |
3709 if (time_limit || microsecs) | |
3710 { | |
3711 EMACS_GET_TIME (end_time); | |
3712 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs); | |
3713 EMACS_ADD_TIME (end_time, end_time, timeout); | |
3714 } | |
48168
8314ced58ef2
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
48097
diff
changeset
|
3715 #ifdef POLLING_PROBLEM_IN_SELECT |
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
3716 /* AlainF 5-Jul-1996 |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
3717 HP-UX 10.10 seem to have problems with signals coming in |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
3718 Causes "poll: interrupted system call" messages when Emacs is run |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
3719 in an X window |
47431
8871e67384e4
(wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents:
47020
diff
changeset
|
3720 Turn off periodic alarms (in case they are in use), |
8871e67384e4
(wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents:
47020
diff
changeset
|
3721 and then turn off any other atimers. */ |
8871e67384e4
(wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents:
47020
diff
changeset
|
3722 stop_polling (); |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
3723 turn_on_atimers (0); |
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
3724 #endif |
578 | 3725 |
3726 while (1) | |
3727 { | |
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3728 int timeout_reduced_for_timers = 0; |
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3729 |
578 | 3730 /* If calling from keyboard input, do not quit |
3731 since we want to return C-g as an input character. | |
3732 Otherwise, do pending quit if requested. */ | |
650 | 3733 if (XINT (read_kbd) >= 0) |
578 | 3734 QUIT; |
3735 | |
4639 | 3736 /* Exit now if the cell we're waiting for became non-nil. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3737 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell))) |
4639 | 3738 break; |
3739 | |
578 | 3740 /* Compute time from now till when time limit is up */ |
3741 /* Exit if already run out */ | |
3742 if (time_limit == -1) | |
3743 { | |
3744 /* -1 specified for timeout means | |
3745 gobble output available now | |
3746 but don't wait at all. */ | |
3747 | |
3748 EMACS_SET_SECS_USECS (timeout, 0, 0); | |
3749 } | |
3750 else if (time_limit || microsecs) | |
3751 { | |
3752 EMACS_GET_TIME (timeout); | |
3753 EMACS_SUB_TIME (timeout, end_time, timeout); | |
3754 if (EMACS_TIME_NEG_P (timeout)) | |
3755 break; | |
3756 } | |
3757 else | |
3758 { | |
3759 EMACS_SET_SECS_USECS (timeout, 100000, 0); | |
3760 } | |
3761 | |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
3762 /* Normally we run timers here. |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
3763 But not if wait_for_cell; in those cases, |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
3764 the wait is supposed to be short, |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
3765 and those callers cannot handle running arbitrary Lisp code here. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3766 if (NILP (wait_for_cell)) |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3767 { |
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3768 EMACS_TIME timer_delay; |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3769 |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3770 do |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3771 { |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3772 int old_timers_run = timers_run; |
37465
f790d83ea743
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
37413
diff
changeset
|
3773 struct buffer *old_buffer = current_buffer; |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3774 |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3775 timer_delay = timer_check (1); |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3776 |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3777 /* If a timer has run, this might have changed buffers |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3778 an alike. Make read_key_sequence aware of that. */ |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3779 if (timers_run != old_timers_run |
37465
f790d83ea743
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
37413
diff
changeset
|
3780 && old_buffer != current_buffer |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3781 && waiting_for_user_input_p == -1) |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3782 record_asynch_buffer_change (); |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
3783 |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3784 if (timers_run != old_timers_run && do_display) |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3785 /* We must retry, since a timer may have requeued itself |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3786 and that could alter the time_delay. */ |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
3787 redisplay_preserve_echo_area (9); |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3788 else |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3789 break; |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3790 } |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
3791 while (!detect_input_pending ()); |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3792 |
18230
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
3793 /* If there is unread keyboard input, also return. */ |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
3794 if (XINT (read_kbd) != 0 |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
3795 && requeued_events_pending_p ()) |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
3796 break; |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
3797 |
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3798 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1) |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3799 { |
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3800 EMACS_TIME difference; |
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3801 EMACS_SUB_TIME (difference, timer_delay, timeout); |
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3802 if (EMACS_TIME_NEG_P (difference)) |
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3803 { |
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3804 timeout = timer_delay; |
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3805 timeout_reduced_for_timers = 1; |
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3806 } |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3807 } |
14935
3e0dc64a5cb8
(wait_reading_process_input): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
14890
diff
changeset
|
3808 /* If time_limit is -1, we are not going to wait at all. */ |
3e0dc64a5cb8
(wait_reading_process_input): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
14890
diff
changeset
|
3809 else if (time_limit != -1) |
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3810 { |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3811 /* This is so a breakpoint can be put here. */ |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3812 wait_reading_process_input_1 (); |
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
3813 } |
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3814 } |
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
3815 |
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3816 /* Cause C-g and alarm signals to take immediate action, |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3817 and cause input available signals to zero out timeout. |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3818 |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3819 It is important that we do this before checking for process |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3820 activity. If we get a SIGCHLD after the explicit checks for |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3821 process activity, timeout is the only way we will know. */ |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3822 if (XINT (read_kbd) < 0) |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3823 set_waiting_for_input (&timeout); |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3824 |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3825 /* If status of something has changed, and no input is |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3826 available, notify the user of the change right away. After |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3827 this explicit check, we'll let the SIGCHLD handler zap |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3828 timeout to get our attention. */ |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3829 if (update_tick != process_tick && do_display) |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3830 { |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3831 SELECT_TYPE Atemp, Ctemp; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3832 |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3833 Atemp = input_wait_mask; |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3834 #ifdef MAC_OSX |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3835 /* On Mac OS X, the SELECT system call always says input is |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3836 present (for reading) at stdin, even when none is. This |
45318 | 3837 causes the call to SELECT below to return 1 and |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3838 status_notify not to be called. As a result output of |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3839 subprocesses are incorrectly discarded. */ |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3840 FD_CLR (0, &Atemp); |
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
44372
diff
changeset
|
3841 #endif |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3842 Ctemp = connect_wait_mask; |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3843 EMACS_SET_SECS_USECS (timeout, 0, 0); |
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
3844 if ((select (max (max_process_desc, max_keyboard_desc) + 1, |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3845 &Atemp, |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3846 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0), |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3847 (SELECT_TYPE *)0, &timeout) |
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
3848 <= 0)) |
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3849 { |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3850 /* It's okay for us to do this and then continue with |
5534 | 3851 the loop, since timeout has already been zeroed out. */ |
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3852 clear_waiting_for_input (); |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3853 status_notify (); |
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
3854 } |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3855 } |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3856 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3857 /* Don't wait for output from a non-running process. Just |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3858 read whatever data has already been received. */ |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3859 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low)) |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3860 update_status (wait_proc); |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3861 if (wait_proc != 0 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3862 && ! EQ (wait_proc->status, Qrun) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3863 && ! EQ (wait_proc->status, Qconnect)) |
2893
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
3864 { |
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3865 int nread, total_nread = 0; |
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3866 |
2893
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
3867 clear_waiting_for_input (); |
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3868 XSETPROCESS (proc, wait_proc); |
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3869 |
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3870 /* Read data from the process, until we exhaust it. */ |
25894
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3871 while (XINT (wait_proc->infd) >= 0) |
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3872 { |
25894
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3873 nread = read_process_output (proc, XINT (wait_proc->infd)); |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3874 |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3875 if (nread == 0) |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3876 break; |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3877 |
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3878 if (0 < nread) |
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3879 total_nread += nread; |
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3880 #ifdef EIO |
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3881 else if (nread == -1 && EIO == errno) |
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3882 break; |
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3883 #endif |
25894
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3884 #ifdef EAGAIN |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3885 else if (nread == -1 && EAGAIN == errno) |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3886 break; |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3887 #endif |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3888 #ifdef EWOULDBLOCK |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3889 else if (nread == -1 && EWOULDBLOCK == errno) |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3890 break; |
8bd3e6fbf42f
(wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents:
25770
diff
changeset
|
3891 #endif |
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
3892 } |
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3893 if (total_nread > 0 && do_display) |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
3894 redisplay_preserve_echo_area (10); |
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
3895 |
2893
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
3896 break; |
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
3897 } |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3898 |
578 | 3899 /* Wait till there is something to do */ |
3900 | |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
3901 if (!NILP (wait_for_cell)) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3902 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3903 Available = non_process_wait_mask; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3904 check_connect = 0; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3905 } |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
3906 else |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3907 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3908 if (! XINT (read_kbd)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3909 Available = non_keyboard_wait_mask; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3910 else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3911 Available = input_wait_mask; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3912 check_connect = (num_pending_connects > 0); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3913 } |
578 | 3914 |
765 | 3915 /* If frame size has changed or the window is newly mapped, |
648 | 3916 redisplay now, before we start to wait. There is a race |
3917 condition here; if a SIGIO arrives between now and the select | |
1655
05e84e6c7d04
Tue Dec 1 23:42:25 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1594
diff
changeset
|
3918 and indicates that a frame is trashed, the select may block |
05e84e6c7d04
Tue Dec 1 23:42:25 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1594
diff
changeset
|
3919 displaying a trashed screen. */ |
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
3920 if (frame_garbaged && do_display) |
11728
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
3921 { |
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
3922 clear_waiting_for_input (); |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
3923 redisplay_preserve_echo_area (11); |
11728
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
3924 if (XINT (read_kbd) < 0) |
11744
52a2c8e81bb7
(wait_reading_process_input): Pass arg in new call to set_waiting_for_input.
Richard M. Stallman <rms@gnu.org>
parents:
11728
diff
changeset
|
3925 set_waiting_for_input (&timeout); |
11728
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
3926 } |
648 | 3927 |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3928 no_avail = 0; |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
3929 if (XINT (read_kbd) && detect_input_pending ()) |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
3930 { |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
3931 nfds = 0; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3932 no_avail = 1; |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
3933 } |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
3934 else |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3935 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3936 if (check_connect) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3937 Connecting = connect_wait_mask; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3938 nfds = select (max (max_process_desc, max_keyboard_desc) + 1, |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3939 &Available, |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3940 (check_connect ? &Connecting : (SELECT_TYPE *)0), |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3941 (SELECT_TYPE *)0, &timeout); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3942 } |
588 | 3943 |
578 | 3944 xerrno = errno; |
3945 | |
3946 /* Make C-g and alarm signals set flags again */ | |
3947 clear_waiting_for_input (); | |
3948 | |
3949 /* If we woke up due to SIGWINCH, actually change size now. */ | |
25356
5db69f7aadca
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25262
diff
changeset
|
3950 do_pending_window_change (0); |
578 | 3951 |
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3952 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
3953 /* We wanted the full specified time, so return now. */ |
578 | 3954 break; |
3955 if (nfds < 0) | |
3956 { | |
3957 if (xerrno == EINTR) | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3958 no_avail = 1; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3959 #ifdef ultrix |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3960 /* Ultrix select seems to return ENOMEM when it is |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3961 interrupted. Treat it just like EINTR. Bleah. Note |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3962 that we want to test for the "ultrix" CPP symbol, not |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3963 "__ultrix__"; the latter is only defined under GCC, but |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3964 not by DEC's bundled CC. -JimB */ |
1323
25b5b55a3916
* process.c (wait_reading_process_input): If the select returns
Jim Blandy <jimb@redhat.com>
parents:
1207
diff
changeset
|
3965 else if (xerrno == ENOMEM) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3966 no_avail = 1; |
1323
25b5b55a3916
* process.c (wait_reading_process_input): If the select returns
Jim Blandy <jimb@redhat.com>
parents:
1207
diff
changeset
|
3967 #endif |
578 | 3968 #ifdef ALLIANT |
3969 /* This happens for no known reason on ALLIANT. | |
3970 I am guessing that this is the right response. -- RMS. */ | |
3971 else if (xerrno == EFAULT) | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3972 no_avail = 1; |
578 | 3973 #endif |
3974 else if (xerrno == EBADF) | |
3975 { | |
3976 #ifdef AIX | |
3977 /* AIX doesn't handle PTY closure the same way BSD does. On AIX, | |
3978 the child's closure of the pts gives the parent a SIGHUP, and | |
3979 the ptc file descriptor is automatically closed, | |
3980 yielding EBADF here or at select() call above. | |
3981 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF | |
5534 | 3982 in m/ibmrt-aix.h), and here we just ignore the select error. |
578 | 3983 Cleanup occurs c/o status_notify after SIGCLD. */ |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3984 no_avail = 1; /* Cannot depend on values returned */ |
578 | 3985 #else |
3986 abort (); | |
3987 #endif | |
3988 } | |
3989 else | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
3990 error ("select error: %s", emacs_strerror (xerrno)); |
578 | 3991 } |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3992 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3993 if (no_avail) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3994 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3995 FD_ZERO (&Available); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3996 check_connect = 0; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3997 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
3998 |
2815
60f122cfe785
* process.c (wait_reading_process_input): If we're running
Jim Blandy <jimb@redhat.com>
parents:
2610
diff
changeset
|
3999 #if defined(sun) && !defined(USG5_4) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4000 if (nfds > 0 && keyboard_bit_set (&Available) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4001 && interrupt_input) |
2830 | 4002 /* System sometimes fails to deliver SIGIO. |
4003 | |
4004 David J. Mackenzie says that Emacs doesn't compile under | |
4005 Solaris if this code is enabled, thus the USG5_4 in the CPP | |
4006 conditional. "I haven't noticed any ill effects so far. | |
4007 If you find a Solaris expert somewhere, they might know | |
4008 better." */ | |
578 | 4009 kill (getpid (), SIGIO); |
4010 #endif | |
4011 | |
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4012 #if 0 /* When polling is used, interrupt_input is 0, |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4013 so get_input_pending should read the input. |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4014 So this should not be needed. */ |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4015 /* If we are using polling for input, |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4016 and we see input available, make it get read now. |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4017 Otherwise it might not actually get read for a second. |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4018 And on hpux, since we turn off polling in wait_reading_process_input, |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4019 it might never get read at all if we don't spend much time |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4020 outside of wait_reading_process_input. */ |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4021 if (XINT (read_kbd) && interrupt_input |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4022 && keyboard_bit_set (&Available) |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4023 && input_polling_used ()) |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4024 kill (getpid (), SIGALRM); |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4025 #endif |
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4026 |
578 | 4027 /* Check for keyboard input */ |
4028 /* If there is any, return immediately | |
4029 to give it higher priority than subprocesses */ | |
4030 | |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4031 if (XINT (read_kbd) != 0) |
14613 | 4032 { |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4033 int old_timers_run = timers_run; |
37465
f790d83ea743
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
37413
diff
changeset
|
4034 struct buffer *old_buffer = current_buffer; |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4035 int leave = 0; |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4036 |
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
4037 if (detect_input_pending_run_timers (do_display)) |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4038 { |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4039 swallow_events (do_display); |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4040 if (detect_input_pending_run_timers (do_display)) |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4041 leave = 1; |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4042 } |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4043 |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4044 /* If a timer has run, this might have changed buffers |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4045 an alike. Make read_key_sequence aware of that. */ |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4046 if (timers_run != old_timers_run |
37465
f790d83ea743
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
37413
diff
changeset
|
4047 && waiting_for_user_input_p == -1 |
f790d83ea743
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
37413
diff
changeset
|
4048 && old_buffer != current_buffer) |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4049 record_asynch_buffer_change (); |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4050 |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4051 if (leave) |
14613 | 4052 break; |
37398
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4053 } |
756d2f4e4058
(wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents:
36659
diff
changeset
|
4054 |
18230
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
4055 /* If there is unread keyboard input, also return. */ |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
4056 if (XINT (read_kbd) != 0 |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
4057 && requeued_events_pending_p ()) |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
4058 break; |
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
4059 |
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4060 /* If we are not checking for keyboard input now, |
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4061 do process events (but don't run any timers). |
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4062 This is so that X events will be processed. |
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
4063 Otherwise they may have to wait until polling takes place. |
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4064 That would causes delays in pasting selections, for example. |
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4065 |
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4066 (We used to do this only if wait_for_cell.) */ |
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
4067 if (XINT (read_kbd) == 0 && detect_input_pending ()) |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4068 { |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4069 swallow_events (do_display); |
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
4070 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */ |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4071 if (detect_input_pending ()) |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4072 break; |
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
4073 #endif |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4074 } |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4075 |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
4076 /* Exit now if the cell we're waiting for became non-nil. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
4077 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell))) |
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
4078 break; |
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
4079 |
621 | 4080 #ifdef SIGIO |
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4081 /* If we think we have keyboard input waiting, but didn't get SIGIO, |
578 | 4082 go read it. This can happen with X on BSD after logging out. |
4083 In that case, there really is no input and no SIGIO, | |
4084 but select says there is input. */ | |
4085 | |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
4086 if (XINT (read_kbd) && interrupt_input |
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4087 && keyboard_bit_set (&Available)) |
14736
b17ec81a6294
(wait_reading_process_input): Use getpid when generating SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
14671
diff
changeset
|
4088 kill (getpid (), SIGIO); |
621 | 4089 #endif |
578 | 4090 |
4091 if (! wait_proc) | |
4092 got_some_input |= nfds > 0; | |
4093 | |
624 | 4094 /* If checking input just got us a size-change event from X, |
4095 obey it now if we should. */ | |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
4096 if (XINT (read_kbd) || ! NILP (wait_for_cell)) |
25356
5db69f7aadca
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25262
diff
changeset
|
4097 do_pending_window_change (0); |
624 | 4098 |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
4099 /* Check for data from a process. */ |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4100 if (no_avail || nfds == 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4101 continue; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4102 |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
4103 /* Really FIRST_PROC_DESC should be 0 on Unix, |
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
4104 but this is safer in the short run. */ |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4105 for (channel = 0; channel <= max_process_desc; channel++) |
578 | 4106 { |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4107 if (FD_ISSET (channel, &Available) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4108 && FD_ISSET (channel, &non_keyboard_wait_mask)) |
578 | 4109 { |
4110 int nread; | |
4111 | |
4112 /* If waiting for this channel, arrange to return as | |
4113 soon as no more input to be processed. No more | |
4114 waiting. */ | |
4115 if (wait_channel == channel) | |
4116 { | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
4117 wait_channel = -1; |
578 | 4118 time_limit = -1; |
4119 got_some_input = 1; | |
4120 } | |
4121 proc = chan_process[channel]; | |
4122 if (NILP (proc)) | |
4123 continue; | |
4124 | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4125 /* If this is a server stream socket, accept connection. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4126 if (EQ (XPROCESS (proc)->status, Qlisten)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4127 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4128 server_accept_connection (proc, channel); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4129 continue; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4130 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4131 |
578 | 4132 /* Read data from the process, starting with our |
4133 buffered-ahead character if we have one. */ | |
4134 | |
4135 nread = read_process_output (proc, channel); | |
4136 if (nread > 0) | |
4137 { | |
4138 /* Since read_process_output can run a filter, | |
4139 which can call accept-process-output, | |
4140 don't try to read from any other processes | |
4141 before doing the select again. */ | |
4142 FD_ZERO (&Available); | |
4143 | |
4144 if (do_display) | |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
4145 redisplay_preserve_echo_area (12); |
578 | 4146 } |
4147 #ifdef EWOULDBLOCK | |
4148 else if (nread == -1 && errno == EWOULDBLOCK) | |
4149 ; | |
15405
c27bb6e69e2d
(wait_reading_process_input): Move the O_NONBLOCK and
Richard M. Stallman <rms@gnu.org>
parents:
15368
diff
changeset
|
4150 #endif |
15406 | 4151 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK, |
4152 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */ | |
578 | 4153 #ifdef O_NONBLOCK |
4154 else if (nread == -1 && errno == EAGAIN) | |
4155 ; | |
4156 #else | |
4157 #ifdef O_NDELAY | |
4158 else if (nread == -1 && errno == EAGAIN) | |
4159 ; | |
4160 /* Note that we cannot distinguish between no input | |
4161 available now and a closed pipe. | |
4162 With luck, a closed pipe will be accompanied by | |
4163 subprocess termination and SIGCHLD. */ | |
4164 else if (nread == 0 && !NETCONN_P (proc)) | |
4165 ; | |
648 | 4166 #endif /* O_NDELAY */ |
4167 #endif /* O_NONBLOCK */ | |
578 | 4168 #ifdef HAVE_PTYS |
4169 /* On some OSs with ptys, when the process on one end of | |
4170 a pty exits, the other end gets an error reading with | |
4171 errno = EIO instead of getting an EOF (0 bytes read). | |
4172 Therefore, if we get an error reading and errno = | |
4173 EIO, just continue, because the child process has | |
4174 exited and should clean itself up soon (e.g. when we | |
23035
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4175 get a SIGCHLD). |
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4176 |
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4177 However, it has been known to happen that the SIGCHLD |
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4178 got lost. So raise the signl again just in case. |
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4179 It can't hurt. */ |
578 | 4180 else if (nread == -1 && errno == EIO) |
23035
8d68b82a4d8c
(wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents:
22939
diff
changeset
|
4181 kill (getpid (), SIGCHLD); |
648 | 4182 #endif /* HAVE_PTYS */ |
4183 /* If we can detect process termination, don't consider the process | |
4184 gone just because its pipe is closed. */ | |
578 | 4185 #ifdef SIGCHLD |
4186 else if (nread == 0 && !NETCONN_P (proc)) | |
4187 ; | |
4188 #endif | |
4189 else | |
4190 { | |
4191 /* Preserve status of processes already terminated. */ | |
4192 XSETINT (XPROCESS (proc)->tick, ++process_tick); | |
4193 deactivate_process (proc); | |
4194 if (!NILP (XPROCESS (proc)->raw_status_low)) | |
4195 update_status (XPROCESS (proc)); | |
4196 if (EQ (XPROCESS (proc)->status, Qrun)) | |
4197 XPROCESS (proc)->status | |
4198 = Fcons (Qexit, Fcons (make_number (256), Qnil)); | |
4199 } | |
4200 } | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4201 #ifdef NON_BLOCKING_CONNECT |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4202 if (check_connect && FD_ISSET (channel, &Connecting)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4203 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4204 struct Lisp_Process *p; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4205 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4206 FD_CLR (channel, &connect_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4207 if (--num_pending_connects < 0) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4208 abort (); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4209 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4210 proc = chan_process[channel]; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4211 if (NILP (proc)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4212 continue; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4213 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4214 p = XPROCESS (proc); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4215 |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4216 #ifdef GNU_LINUX |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4217 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems. |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4218 So only use it on systems where it is known to work. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4219 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4220 int xlen = sizeof(xerrno); |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4221 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen)) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4222 xerrno = errno; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4223 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4224 #else |
44013
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4225 { |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4226 struct sockaddr pname; |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4227 int pnamelen = sizeof(pname); |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4228 |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4229 /* If connection failed, getpeername will fail. */ |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4230 xerrno = 0; |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4231 if (getpeername(channel, &pname, &pnamelen) < 0) |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4232 { |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4233 /* Obtain connect failure code through error slippage. */ |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4234 char dummy; |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4235 xerrno = errno; |
44013
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4236 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0) |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4237 xerrno = errno; |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4238 } |
da239fc7bb6c
(wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents:
43999
diff
changeset
|
4239 } |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4240 #endif |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4241 if (xerrno) |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4242 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4243 XSETINT (p->tick, ++process_tick); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4244 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil)); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4245 deactivate_process (proc); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4246 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4247 else |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4248 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4249 p->status = Qrun; |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4250 /* Execute the sentinel here. If we had relied on |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4251 status_notify to do it later, it will read input |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4252 from the process before calling the sentinel. */ |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4253 exec_sentinel (proc, build_string ("open\n")); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4254 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt)) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4255 { |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4256 FD_SET (XINT (p->infd), &input_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4257 FD_SET (XINT (p->infd), &non_keyboard_wait_mask); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4258 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4259 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4260 } |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
4261 #endif /* NON_BLOCKING_CONNECT */ |
648 | 4262 } /* end for each file descriptor */ |
4263 } /* end while exit conditions not met */ | |
4264 | |
8570
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
4265 waiting_for_user_input_p = 0; |
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
4266 |
648 | 4267 /* If calling from keyboard input, do not quit |
4268 since we want to return C-g as an input character. | |
4269 Otherwise, do pending quit if requested. */ | |
650 | 4270 if (XINT (read_kbd) >= 0) |
648 | 4271 { |
4272 /* Prevent input_pending from remaining set if we quit. */ | |
4273 clear_input_pending (); | |
4274 QUIT; | |
4275 } | |
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4276 #ifdef hpux |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4277 /* AlainF 5-Jul-1996 |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4278 HP-UX 10.10 seems to have problems with signals coming in |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4279 Causes "poll: interrupted system call" messages when Emacs is run |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4280 in an X window |
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4281 Turn periodic alarms back on */ |
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
4282 start_polling (); |
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
4283 #endif |
25009
5733af0b62ce
(wait_reading_process_input): Show and hide busy
Gerd Moellmann <gerd@gnu.org>
parents:
24933
diff
changeset
|
4284 |
578 | 4285 return got_some_input; |
4286 } | |
4287 | |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4288 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */ |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4289 |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4290 static Lisp_Object |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4291 read_process_output_call (fun_and_args) |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4292 Lisp_Object fun_and_args; |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4293 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
4294 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args)); |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4295 } |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4296 |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4297 static Lisp_Object |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4298 read_process_output_error_handler (error) |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4299 Lisp_Object error; |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4300 { |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4301 cmd_error_internal (error, "error in process filter: "); |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4302 Vinhibit_quit = Qt; |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4303 update_echo_area (); |
11277
d4547e4b0aab
(read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
4304 Fsleep_for (make_number (2), Qnil); |
27558 | 4305 return Qt; |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4306 } |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4307 |
578 | 4308 /* Read pending output from the process channel, |
4309 starting with our buffered-ahead character if we have one. | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4310 Yield number of decoded characters read. |
578 | 4311 |
4312 This function reads at most 1024 characters. | |
4313 If you want to read all available subprocess output, | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4314 you must call it repeatedly until it returns zero. |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4315 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4316 The characters read are decoded according to PROC's coding-system |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4317 for decoding. */ |
578 | 4318 |
21514 | 4319 int |
578 | 4320 read_process_output (proc, channel) |
4321 Lisp_Object proc; | |
4322 register int channel; | |
4323 { | |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4324 register int nchars, nbytes; |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4325 char *chars; |
578 | 4326 register Lisp_Object outstream; |
4327 register struct buffer *old = current_buffer; | |
4328 register struct Lisp_Process *p = XPROCESS (proc); | |
4329 register int opoint; | |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4330 struct coding_system *coding = proc_decode_coding_system[channel]; |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4331 int carryover = XINT (p->decoding_carryover); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4332 int readmax = 1024; |
578 | 4333 |
4334 #ifdef VMS | |
4335 VMS_PROC_STUFF *vs, *get_vms_process_pointer(); | |
4336 | |
4337 vs = get_vms_process_pointer (p->pid); | |
4338 if (vs) | |
4339 { | |
4340 if (!vs->iosb[0]) | |
25248
f0fc8443bdbb
(Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents:
25129
diff
changeset
|
4341 return (0); /* Really weird if it does this */ |
578 | 4342 if (!(vs->iosb[0] & 1)) |
4343 return -1; /* I/O error */ | |
4344 } | |
4345 else | |
4346 error ("Could not get VMS process pointer"); | |
4347 chars = vs->inputBuffer; | |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4348 nbytes = clean_vms_buffer (chars, vs->iosb[1]); |
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4349 if (nbytes <= 0) |
578 | 4350 { |
4351 start_vms_process_read (vs); /* Crank up the next read on the process */ | |
4352 return 1; /* Nothing worth printing, say we got 1 */ | |
4353 } | |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4354 if (carryover > 0) |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4355 { |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4356 /* The data carried over in the previous decoding (which are at |
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4357 the tail of decoding buffer) should be prepended to the new |
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4358 data read to decode all together. */ |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4359 chars = (char *) alloca (nbytes + carryover); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4360 bcopy (SDATA (p->decoding_buf), buf, carryover); |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4361 bcopy (vs->inputBuffer, chars + carryover, nbytes); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4362 } |
578 | 4363 #else /* not VMS */ |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4364 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4365 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4366 /* A datagram is one packet; allow at least 1500+ bytes of data |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4367 corresponding to the typical Ethernet frame size. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4368 if (DATAGRAM_CHAN_P (channel)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4369 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4370 /* carryover = 0; */ /* Does carryover make sense for datagrams? */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4371 readmax += 1024; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4372 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4373 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4374 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4375 chars = (char *) alloca (carryover + readmax); |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4376 if (carryover) |
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4377 /* See the comment above. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4378 bcopy (SDATA (p->decoding_buf), chars, carryover); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4379 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4380 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4381 /* We have a working select, so proc_buffered_char is always -1. */ |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4382 if (DATAGRAM_CHAN_P (channel)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4383 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4384 int len = datagram_address[channel].len; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4385 nbytes = recvfrom (channel, chars + carryover, readmax - carryover, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4386 0, datagram_address[channel].sa, &len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4387 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4388 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4389 #endif |
578 | 4390 if (proc_buffered_char[channel] < 0) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4391 nbytes = emacs_read (channel, chars + carryover, readmax - carryover); |
578 | 4392 else |
4393 { | |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4394 chars[carryover] = proc_buffered_char[channel]; |
578 | 4395 proc_buffered_char[channel] = -1; |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4396 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1 - carryover); |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4397 if (nbytes < 0) |
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4398 nbytes = 1; |
578 | 4399 else |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4400 nbytes = nbytes + 1; |
578 | 4401 } |
4402 #endif /* not VMS */ | |
4403 | |
22523
b02a5ea8cf93
(read_process_output): Handle carryover correctly.
Kenichi Handa <handa@m17n.org>
parents:
22019
diff
changeset
|
4404 XSETINT (p->decoding_carryover, 0); |
b02a5ea8cf93
(read_process_output): Handle carryover correctly.
Kenichi Handa <handa@m17n.org>
parents:
22019
diff
changeset
|
4405 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4406 /* At this point, NBYTES holds number of bytes just received |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4407 (including the one in proc_buffered_char[channel]). */ |
23879
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4408 if (nbytes <= 0) |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4409 { |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4410 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK) |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4411 return nbytes; |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4412 coding->mode |= CODING_MODE_LAST_BLOCK; |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
4413 } |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4414 |
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4415 /* Now set NBYTES how many bytes we must decode. */ |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4416 nbytes += carryover; |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
4417 |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4418 /* Read and dispose of the process output. */ |
578 | 4419 outstream = p->filter; |
4420 if (!NILP (outstream)) | |
4421 { | |
4422 /* We inhibit quit here instead of just catching it so that | |
4423 hitting ^G when a filter happens to be running won't screw | |
4424 it up. */ | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45410
diff
changeset
|
4425 int count = SPECPDL_INDEX (); |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4426 Lisp_Object odeactivate; |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4427 Lisp_Object obuffer, okeymap; |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4428 Lisp_Object text; |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4429 int outer_running_asynch_code = running_asynch_code; |
23460
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
4430 int waiting = waiting_for_user_input_p; |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4431 |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4432 /* No need to gcpro these, because all we do with them later |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4433 is test them for EQness, and none of them should be a string. */ |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4434 odeactivate = Vdeactivate_mark; |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4435 XSETBUFFER (obuffer, current_buffer); |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4436 okeymap = current_buffer->keymap; |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4437 |
578 | 4438 specbind (Qinhibit_quit, Qt); |
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
4439 specbind (Qlast_nonmenu_event, Qt); |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4440 |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4441 /* In case we get recursively called, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4442 and we already saved the match data nonrecursively, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4443 save the same match data in safely recursive fashion. */ |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4444 if (outer_running_asynch_code) |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4445 { |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4446 Lisp_Object tem; |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4447 /* Don't clobber the CURRENT match data, either! */ |
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
4448 tem = Fmatch_data (Qnil, Qnil); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4449 restore_match_data (); |
21177
73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
Richard M. Stallman <rms@gnu.org>
parents:
21049
diff
changeset
|
4450 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
Richard M. Stallman <rms@gnu.org>
parents:
21049
diff
changeset
|
4451 Fset_match_data (tem); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4452 } |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4453 |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4454 /* For speed, if a search happens within this code, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4455 save the match data in a special nonrecursive fashion. */ |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
9969
diff
changeset
|
4456 running_asynch_code = 1; |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4457 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4458 text = decode_coding_string (make_unibyte_string (chars, nbytes), |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4459 coding, 0); |
31136
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4460 if (NILP (buffer_defaults.enable_multibyte_characters)) |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4461 /* We had better return unibyte string. */ |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4462 text = string_make_unibyte (text); |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4463 |
30582 | 4464 Vlast_coding_system_used = coding->symbol; |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4465 /* A new coding system might be found. */ |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4466 if (!EQ (p->decode_coding_system, coding->symbol)) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4467 { |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4468 p->decode_coding_system = coding->symbol; |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4469 |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4470 /* Don't call setup_coding_system for |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4471 proc_decode_coding_system[channel] here. It is done in |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4472 detect_coding called via decode_coding above. */ |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4473 |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4474 /* If a coding system for encoding is not yet decided, we set |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4475 it as the same as coding-system for decoding. |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4476 |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4477 But, before doing that we must check if |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4478 proc_encode_coding_system[p->outfd] surely points to a |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4479 valid memory because p->outfd will be changed once EOF is |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4480 sent to the process. */ |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4481 if (NILP (p->encode_coding_system) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4482 && proc_encode_coding_system[XINT (p->outfd)]) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4483 { |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4484 p->encode_coding_system = coding->symbol; |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4485 setup_coding_system (coding->symbol, |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4486 proc_encode_coding_system[XINT (p->outfd)]); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4487 } |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4488 } |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4489 |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4490 carryover = nbytes - coding->consumed; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4491 bcopy (chars + coding->consumed, SDATA (p->decoding_buf), |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4492 carryover); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4493 XSETINT (p->decoding_carryover, carryover); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4494 nbytes = SBYTES (text); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4495 nchars = SCHARS (text); |
34647
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4496 if (nbytes > 0) |
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4497 internal_condition_case_1 (read_process_output_call, |
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4498 Fcons (outstream, |
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4499 Fcons (proc, Fcons (text, Qnil))), |
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4500 !NILP (Vdebug_on_error) ? Qnil : Qerror, |
1898b3c996ff
(read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents:
34352
diff
changeset
|
4501 read_process_output_error_handler); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4502 |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4503 /* If we saved the match data nonrecursively, restore it now. */ |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
9969
diff
changeset
|
4504 restore_match_data (); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4505 running_asynch_code = outer_running_asynch_code; |
578 | 4506 |
3666
c7ff787b096f
(read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3608
diff
changeset
|
4507 /* Handling the process output should not deactivate the mark. */ |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4508 Vdeactivate_mark = odeactivate; |
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4509 |
23460
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
4510 /* Restore waiting_for_user_input_p as it was |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
4511 when we were called, in case the filter clobbered it. */ |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
4512 waiting_for_user_input_p = waiting; |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
4513 |
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4514 #if 0 /* Call record_asynch_buffer_change unconditionally, |
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4515 because we might have changed minor modes or other things |
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4516 that affect key bindings. */ |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4517 if (! EQ (Fcurrent_buffer (), obuffer) |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4518 || ! EQ (current_buffer->keymap, okeymap)) |
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4519 #endif |
13159
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4520 /* But do it only if the caller is actually going to read events. |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4521 Otherwise there's no need to make him wake up, and it could |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4522 cause trouble (for example it would make Fsit_for return). */ |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4523 if (waiting_for_user_input_p == -1) |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4524 record_asynch_buffer_change (); |
6748
b1cde622fa65
(read_process_output): If buffer changes, record that fact.
Karl Heuer <kwzh@gnu.org>
parents:
6569
diff
changeset
|
4525 |
578 | 4526 #ifdef VMS |
4527 start_vms_process_read (vs); | |
4528 #endif | |
5561
fd7524d61a8d
(read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents:
5548
diff
changeset
|
4529 unbind_to (count, Qnil); |
578 | 4530 return nchars; |
4531 } | |
4532 | |
4533 /* If no filter, write into buffer if it isn't dead. */ | |
4534 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name)) | |
4535 { | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4536 Lisp_Object old_read_only; |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4537 int old_begv, old_zv; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4538 int old_begv_byte, old_zv_byte; |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4539 Lisp_Object odeactivate; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4540 int before, before_byte; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4541 int opoint_byte; |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4542 Lisp_Object text; |
34352
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4543 struct buffer *b; |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4544 |
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4545 odeactivate = Vdeactivate_mark; |
578 | 4546 |
4547 Fset_buffer (p->buffer); | |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
4548 opoint = PT; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4549 opoint_byte = PT_BYTE; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4550 old_read_only = current_buffer->read_only; |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4551 old_begv = BEGV; |
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4552 old_zv = ZV; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4553 old_begv_byte = BEGV_BYTE; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4554 old_zv_byte = ZV_BYTE; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4555 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4556 current_buffer->read_only = Qnil; |
578 | 4557 |
4558 /* Insert new output into buffer | |
4559 at the current end-of-output marker, | |
4560 thus preserving logical ordering of input and output. */ | |
4561 if (XMARKER (p->mark)->buffer) | |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4562 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV), |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4563 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark), |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4564 ZV_BYTE)); |
578 | 4565 else |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4566 SET_PT_BOTH (ZV, ZV_BYTE); |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4567 before = PT; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4568 before_byte = PT_BYTE; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4569 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4570 /* If the output marker is outside of the visible region, save |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4571 the restriction and widen. */ |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
4572 if (! (BEGV <= PT && PT <= ZV)) |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4573 Fwiden (); |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4574 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4575 text = decode_coding_string (make_unibyte_string (chars, nbytes), |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4576 coding, 0); |
30582 | 4577 Vlast_coding_system_used = coding->symbol; |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4578 /* A new coding system might be found. See the comment in the |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4579 similar code in the previous `if' block. */ |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4580 if (!EQ (p->decode_coding_system, coding->symbol)) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4581 { |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4582 p->decode_coding_system = coding->symbol; |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4583 if (NILP (p->encode_coding_system) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4584 && proc_encode_coding_system[XINT (p->outfd)]) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4585 { |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4586 p->encode_coding_system = coding->symbol; |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4587 setup_coding_system (coding->symbol, |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4588 proc_encode_coding_system[XINT (p->outfd)]); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4589 } |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4590 } |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4591 carryover = nbytes - coding->consumed; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4592 bcopy (chars + coding->consumed, SDATA (p->decoding_buf), |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4593 carryover); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4594 XSETINT (p->decoding_carryover, carryover); |
31419
bd258f4dc0fa
(read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents:
31136
diff
changeset
|
4595 /* Adjust the multibyteness of TEXT to that of the buffer. */ |
bd258f4dc0fa
(read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents:
31136
diff
changeset
|
4596 if (NILP (current_buffer->enable_multibyte_characters) |
bd258f4dc0fa
(read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents:
31136
diff
changeset
|
4597 != ! STRING_MULTIBYTE (text)) |
bd258f4dc0fa
(read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents:
31136
diff
changeset
|
4598 text = (STRING_MULTIBYTE (text) |
32395
11b8c07e5fed
(read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
32371
diff
changeset
|
4599 ? Fstring_as_unibyte (text) |
11b8c07e5fed
(read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
32371
diff
changeset
|
4600 : Fstring_as_multibyte (text)); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4601 nbytes = SBYTES (text); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4602 nchars = SCHARS (text); |
32395
11b8c07e5fed
(read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
32371
diff
changeset
|
4603 /* Insert before markers in case we are inserting where |
11b8c07e5fed
(read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
32371
diff
changeset
|
4604 the buffer's mark is, and the user's next command is Meta-y. */ |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4605 insert_from_string_before_markers (text, 0, 0, nchars, nbytes, 0); |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
4606 |
34352
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4607 /* Make sure the process marker's position is valid when the |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4608 process buffer is changed in the signal_after_change above. |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4609 W3 is known to do that. */ |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4610 if (BUFFERP (p->buffer) |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4611 && (b = XBUFFER (p->buffer), b != current_buffer)) |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4612 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b)); |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4613 else |
642fb6c53a10
(read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents:
32864
diff
changeset
|
4614 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4615 |
578 | 4616 update_mode_lines++; |
4617 | |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4618 /* Make sure opoint and the old restrictions |
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4619 float ahead of any new text just as point would. */ |
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4620 if (opoint >= before) |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4621 { |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4622 opoint += PT - before; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4623 opoint_byte += PT_BYTE - before_byte; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4624 } |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4625 if (old_begv > before) |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4626 { |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4627 old_begv += PT - before; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4628 old_begv_byte += PT_BYTE - before_byte; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4629 } |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4630 if (old_zv >= before) |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4631 { |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4632 old_zv += PT - before; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4633 old_zv_byte += PT_BYTE - before_byte; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4634 } |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4635 |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4636 /* If the restriction isn't what it should be, set it. */ |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4637 if (old_begv != BEGV || old_zv != ZV) |
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4638 Fnarrow_to_region (make_number (old_begv), make_number (old_zv)); |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4639 |
3666
c7ff787b096f
(read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3608
diff
changeset
|
4640 /* Handling the process output should not deactivate the mark. */ |
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4641 Vdeactivate_mark = odeactivate; |
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
4642 |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
4643 current_buffer->read_only = old_read_only; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4644 SET_PT_BOTH (opoint, opoint_byte); |
578 | 4645 set_buffer_internal (old); |
4646 } | |
4647 #ifdef VMS | |
4648 start_vms_process_read (vs); | |
4649 #endif | |
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
4650 return nbytes; |
578 | 4651 } |
4652 | |
4653 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p, | |
4654 0, 0, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4655 doc: /* Returns non-nil if emacs is waiting for input from the user. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4656 This is intended for use by asynchronous process output filters and sentinels. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4657 () |
578 | 4658 { |
7352
ef89b78c1a92
(wait_reading_process_input): Don't call prepare_menu_bars
Richard M. Stallman <rms@gnu.org>
parents:
7266
diff
changeset
|
4659 return (waiting_for_user_input_p ? Qt : Qnil); |
578 | 4660 } |
4661 | |
4662 /* Sending data to subprocess */ | |
4663 | |
4664 jmp_buf send_process_frame; | |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4665 Lisp_Object process_sent_to; |
578 | 4666 |
4667 SIGTYPE | |
4668 send_process_trap () | |
4669 { | |
4670 #ifdef BSD4_1 | |
4671 sigrelse (SIGPIPE); | |
4672 sigrelse (SIGALRM); | |
4673 #endif /* BSD4_1 */ | |
4674 longjmp (send_process_frame, 1); | |
4675 } | |
4676 | |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4677 /* Send some data to process PROC. |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4678 BUF is the beginning of the data; LEN is the number of characters. |
32864
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4679 OBJECT is the Lisp object that the data comes from. If OBJECT is |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4680 nil or t, it means that the data comes from C string. |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4681 |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4682 If OBJECT is not nil, the data is encoded by PROC's coding-system |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4683 for encoding before it is sent. |
28157
336858b2b11a
(send_process): Add a hint that the function
Gerd Moellmann <gerd@gnu.org>
parents:
28012
diff
changeset
|
4684 |
336858b2b11a
(send_process): Add a hint that the function
Gerd Moellmann <gerd@gnu.org>
parents:
28012
diff
changeset
|
4685 This function can evaluate Lisp code and can garbage collect. */ |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4686 |
21514 | 4687 void |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4688 send_process (proc, buf, len, object) |
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
4689 volatile Lisp_Object proc; |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4690 unsigned char *volatile buf; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4691 volatile int len; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4692 volatile Lisp_Object object; |
578 | 4693 { |
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
4694 /* Use volatile to protect variables from being clobbered by longjmp. */ |
578 | 4695 int rv; |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4696 struct coding_system *coding; |
15895
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
4697 struct gcpro gcpro1; |
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
4698 |
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
4699 GCPRO1 (object); |
578 | 4700 |
4701 #ifdef VMS | |
4702 struct Lisp_Process *p = XPROCESS (proc); | |
4703 VMS_PROC_STUFF *vs, *get_vms_process_pointer(); | |
4704 #endif /* VMS */ | |
4705 | |
4706 if (! NILP (XPROCESS (proc)->raw_status_low)) | |
4707 update_status (XPROCESS (proc)); | |
4708 if (! EQ (XPROCESS (proc)->status, Qrun)) | |
28012
9c8bcd7e4a4f
(send_process): Remove local variable `procname' that
Gerd Moellmann <gerd@gnu.org>
parents:
27861
diff
changeset
|
4709 error ("Process %s not running", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4710 SDATA (XPROCESS (proc)->name)); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4711 if (XINT (XPROCESS (proc)->outfd) < 0) |
28012
9c8bcd7e4a4f
(send_process): Remove local variable `procname' that
Gerd Moellmann <gerd@gnu.org>
parents:
27861
diff
changeset
|
4712 error ("Output file descriptor of %s is closed", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4713 SDATA (XPROCESS (proc)->name)); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4714 |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4715 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)]; |
20433
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
4716 Vlast_coding_system_used = coding->symbol; |
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
4717 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4718 if ((STRINGP (object) && STRING_MULTIBYTE (object)) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4719 || (BUFFERP (object) |
32864
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4720 && !NILP (XBUFFER (object)->enable_multibyte_characters)) |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4721 || EQ (object, Qt)) |
31136
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4722 { |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4723 if (!EQ (coding->symbol, XPROCESS (proc)->encode_coding_system)) |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4724 /* The coding system for encoding was changed to raw-text |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4725 because we sent a unibyte text previously. Now we are |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4726 sending a multibyte text, thus we must encode it by the |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4727 original coding system specified for the current |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4728 process. */ |
42600
93254645e03b
(send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents:
41969
diff
changeset
|
4729 setup_coding_system (XPROCESS (proc)->encode_coding_system, coding); |
93254645e03b
(send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents:
41969
diff
changeset
|
4730 /* src_multibyte should be set to 1 _after_ a call to |
93254645e03b
(send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents:
41969
diff
changeset
|
4731 setup_coding_system, since it resets src_multibyte to |
93254645e03b
(send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents:
41969
diff
changeset
|
4732 zero. */ |
93254645e03b
(send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents:
41969
diff
changeset
|
4733 coding->src_multibyte = 1; |
31136
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4734 } |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4735 else |
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4736 { |
32864
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4737 /* For sending a unibyte text, character code conversion should |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4738 not take place but EOL conversion should. So, setup raw-text |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4739 or one of the subsidiary if we have not yet done it. */ |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4740 if (coding->type != coding_type_raw_text) |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4741 { |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4742 if (CODING_REQUIRE_FLUSHING (coding)) |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4743 { |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4744 /* But, before changing the coding, we must flush out data. */ |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4745 coding->mode |= CODING_MODE_LAST_BLOCK; |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4746 send_process (proc, "", 0, Qt); |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4747 } |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4748 coding->src_multibyte = 0; |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4749 setup_raw_text_coding_system (coding); |
21acd0c60f5d
(send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents:
32395
diff
changeset
|
4750 } |
31136
d1344c992a9a
(create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents:
31099
diff
changeset
|
4751 } |
29017
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
4752 coding->dst_multibyte = 0; |
8f10362eb5ff
(Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents:
28157
diff
changeset
|
4753 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4754 if (CODING_REQUIRE_ENCODING (coding)) |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4755 { |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4756 int require = encoding_buffer_size (coding, len); |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4757 int from_byte = -1, from = -1, to = -1; |
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
4758 unsigned char *temp_buf = NULL; |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4759 |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4760 if (BUFFERP (object)) |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4761 { |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4762 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4763 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4764 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4765 } |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4766 else if (STRINGP (object)) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4767 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4768 from_byte = buf - SDATA (object); |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4769 from = string_byte_to_char (object, from_byte); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4770 to = string_byte_to_char (object, from_byte + len); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4771 } |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4772 |
39429
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4773 if (coding->composing != COMPOSITION_DISABLED) |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4774 { |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4775 if (from_byte >= 0) |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4776 coding_save_composition (coding, from, to, object); |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4777 else |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4778 coding->composing = COMPOSITION_DISABLED; |
9de129194439
(send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents:
39406
diff
changeset
|
4779 } |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4780 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4781 if (SBYTES (XPROCESS (proc)->encoding_buf) < require) |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4782 XPROCESS (proc)->encoding_buf = make_uninit_string (require); |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4783 |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4784 if (from_byte >= 0) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4785 buf = (BUFFERP (object) |
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4786 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4787 : SDATA (object) + from_byte); |
30580
5d92193ed196
(read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents:
29921
diff
changeset
|
4788 |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4789 object = XPROCESS (proc)->encoding_buf; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4790 encode_coding (coding, (char *) buf, SDATA (object), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4791 len, SBYTES (object)); |
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4792 len = coding->produced; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4793 buf = SDATA (object); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4794 if (temp_buf) |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4795 xfree (temp_buf); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4796 } |
578 | 4797 |
4798 #ifdef VMS | |
4799 vs = get_vms_process_pointer (p->pid); | |
4800 if (vs == 0) | |
4801 error ("Could not find this process: %x", p->pid); | |
4802 else if (write_to_vms_process (vs, buf, len)) | |
4803 ; | |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4804 #else /* not VMS */ |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4805 |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4806 if (pty_max_bytes == 0) |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4807 { |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4808 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON) |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4809 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd), |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4810 _PC_MAX_CANON); |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4811 if (pty_max_bytes < 0) |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4812 pty_max_bytes = 250; |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4813 #else |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4814 pty_max_bytes = 250; |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4815 #endif |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4816 /* Deduct one, to leave space for the eof. */ |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4817 pty_max_bytes--; |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4818 } |
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4819 |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4820 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2, |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4821 CFLAGS="-g -O": The value of the parameter `proc' is clobbered |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4822 when returning with longjmp despite being declared volatile. */ |
578 | 4823 if (!setjmp (send_process_frame)) |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4824 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4825 process_sent_to = proc; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4826 while (len > 0) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4827 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4828 int this = len; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4829 SIGTYPE (*old_sigpipe)(); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4830 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4831 /* Decide how much data we can send in one batch. |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4832 Long lines need to be split into multiple batches. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4833 if (!NILP (XPROCESS (proc)->pty_flag)) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4834 { |
39812
66e0816837a8
Update calls to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39429
diff
changeset
|
4835 /* Starting this at zero is always correct when not the first |
66e0816837a8
Update calls to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39429
diff
changeset
|
4836 iteration because the previous iteration ended by sending C-d. |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4837 It may not be correct for the first iteration |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4838 if a partial line was sent in a separate send_process call. |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4839 If that proves worth handling, we need to save linepos |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4840 in the process object. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4841 int linepos = 0; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4842 unsigned char *ptr = (unsigned char *) buf; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4843 unsigned char *end = (unsigned char *) buf + len; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4844 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4845 /* Scan through this text for a line that is too long. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4846 while (ptr != end && linepos < pty_max_bytes) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4847 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4848 if (*ptr == '\n') |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4849 linepos = 0; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4850 else |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4851 linepos++; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4852 ptr++; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4853 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4854 /* If we found one, break the line there |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4855 and put in a C-d to force the buffer through. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4856 this = ptr - buf; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4857 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4858 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4859 /* Send this batch, using one or more write calls. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4860 while (this > 0) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4861 { |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4862 int outfd = XINT (XPROCESS (proc)->outfd); |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4863 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4864 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4865 if (DATAGRAM_CHAN_P (outfd)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4866 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4867 rv = sendto (outfd, (char *) buf, this, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4868 0, datagram_address[outfd].sa, |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4869 datagram_address[outfd].len); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4870 if (rv < 0 && errno == EMSGSIZE) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4871 report_file_error ("sending datagram", Fcons (proc, Qnil)); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4872 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4873 else |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4874 #endif |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
4875 rv = emacs_write (outfd, (char *) buf, this); |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4876 signal (SIGPIPE, old_sigpipe); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4877 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4878 if (rv < 0) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4879 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4880 if (0 |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4881 #ifdef EWOULDBLOCK |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4882 || errno == EWOULDBLOCK |
6158 | 4883 #endif |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4884 #ifdef EAGAIN |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4885 || errno == EAGAIN |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4886 #endif |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4887 ) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4888 /* Buffer is full. Wait, accepting input; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4889 that may allow the program |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4890 to finish doing output and read more. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4891 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4892 Lisp_Object zero; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4893 int offset = 0; |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4894 |
27705
2c53eb482802
(send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents:
27669
diff
changeset
|
4895 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4896 /* A gross hack to work around a bug in FreeBSD. |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4897 In the following sequence, read(2) returns |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4898 bogus data: |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4899 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4900 write(2) 1022 bytes |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4901 write(2) 954 bytes, get EAGAIN |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4902 read(2) 1024 bytes in process_read_output |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4903 read(2) 11 bytes in process_read_output |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4904 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4905 That is, read(2) returns more bytes than have |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4906 ever been written successfully. The 1033 bytes |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4907 read are the 1022 bytes written successfully |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4908 after processing (for example with CRs added if |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4909 the terminal is set up that way which it is |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4910 here). The same bytes will be seen again in a |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4911 later read(2), without the CRs. */ |
27705
2c53eb482802
(send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents:
27669
diff
changeset
|
4912 |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4913 if (errno == EAGAIN) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4914 { |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4915 int flags = FWRITE; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4916 ioctl (XINT (XPROCESS (proc)->outfd), TIOCFLUSH, |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4917 &flags); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4918 } |
27705
2c53eb482802
(send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents:
27669
diff
changeset
|
4919 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */ |
2c53eb482802
(send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents:
27669
diff
changeset
|
4920 |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4921 /* Running filters might relocate buffers or strings. |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4922 Arrange to relocate BUF. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4923 if (BUFFERP (object)) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4924 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4925 else if (STRINGP (object)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4926 offset = buf - SDATA (object); |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4927 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4928 XSETFASTINT (zero, 0); |
16718
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
4929 #ifdef EMACS_HAS_USECS |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4930 wait_reading_process_input (0, 20000, zero, 0); |
16718
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
4931 #else |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4932 wait_reading_process_input (1, 0, zero, 0); |
16718
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
4933 #endif |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
4934 |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4935 if (BUFFERP (object)) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4936 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4937 else if (STRINGP (object)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4938 buf = offset + SDATA (object); |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4939 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4940 rv = 0; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4941 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4942 else |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4943 /* This is a real error. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4944 report_file_error ("writing to process", Fcons (proc, Qnil)); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4945 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4946 buf += rv; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4947 len -= rv; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4948 this -= rv; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4949 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4950 |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4951 /* If we sent just part of the string, put in an EOF |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4952 to force it through, before we send the rest. */ |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4953 if (len > 0) |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4954 Fprocess_send_eof (proc); |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4955 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4956 } |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4957 #endif /* not VMS */ |
578 | 4958 else |
4959 { | |
31806
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4960 #ifndef VMS |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4961 proc = process_sent_to; |
b148beb59511
(process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
31419
diff
changeset
|
4962 #endif |
578 | 4963 XPROCESS (proc)->raw_status_low = Qnil; |
4964 XPROCESS (proc)->raw_status_high = Qnil; | |
4965 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil)); | |
4966 XSETINT (XPROCESS (proc)->tick, ++process_tick); | |
4967 deactivate_process (proc); | |
4968 #ifdef VMS | |
28012
9c8bcd7e4a4f
(send_process): Remove local variable `procname' that
Gerd Moellmann <gerd@gnu.org>
parents:
27861
diff
changeset
|
4969 error ("Error writing to process %s; closed it", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4970 SDATA (XPROCESS (proc)->name)); |
578 | 4971 #else |
28012
9c8bcd7e4a4f
(send_process): Remove local variable `procname' that
Gerd Moellmann <gerd@gnu.org>
parents:
27861
diff
changeset
|
4972 error ("SIGPIPE raised on process %s; closed it", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
4973 SDATA (XPROCESS (proc)->name)); |
578 | 4974 #endif |
4975 } | |
15895
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
4976 |
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
4977 UNGCPRO; |
578 | 4978 } |
4979 | |
4980 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4981 3, 3, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4982 doc: /* Send current contents of region as input to PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4983 PROCESS may be a process, a buffer, the name of a process or buffer, or |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4984 nil, indicating the current buffer's process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4985 Called from program, takes three arguments, PROCESS, START and END. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4986 If the region is more than 500 characters long, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4987 it is sent in several bunches. This may happen even for shorter regions. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4988 Output from processes can arrive in between bunches. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4989 (process, start, end) |
578 | 4990 Lisp_Object process, start, end; |
4991 { | |
4992 Lisp_Object proc; | |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4993 int start1, end1; |
578 | 4994 |
4995 proc = get_process (process); | |
4996 validate_region (&start, &end); | |
4997 | |
4998 if (XINT (start) < GPT && XINT (end) > GPT) | |
18739
60f002497be1
(Fprocess_send_region): Convert move_gap argument to int.
Richard M. Stallman <rms@gnu.org>
parents:
18708
diff
changeset
|
4999 move_gap (XINT (start)); |
578 | 5000 |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
5001 start1 = CHAR_TO_BYTE (XINT (start)); |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
5002 end1 = CHAR_TO_BYTE (XINT (end)); |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
5003 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1, |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5004 Fcurrent_buffer ()); |
578 | 5005 |
5006 return Qnil; | |
5007 } | |
5008 | |
5009 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5010 2, 2, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5011 doc: /* Send PROCESS the contents of STRING as input. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5012 PROCESS may be a process, a buffer, the name of a process or buffer, or |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5013 nil, indicating the current buffer's process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5014 If STRING is more than 500 characters long, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5015 it is sent in several bunches. This may happen even for shorter strings. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5016 Output from processes can arrive in between bunches. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5017 (process, string) |
578 | 5018 Lisp_Object process, string; |
5019 { | |
5020 Lisp_Object proc; | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
5021 CHECK_STRING (string); |
578 | 5022 proc = get_process (process); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5023 send_process (proc, SDATA (string), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5024 SBYTES (string), string); |
578 | 5025 return Qnil; |
5026 } | |
5027 | |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5028 DEFUN ("process-running-child-p", Fprocess_running_child_p, |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5029 Sprocess_running_child_p, 0, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5030 doc: /* Return t if PROCESS has given the terminal to a child. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5031 If the operating system does not make it possible to find out, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5032 return t unconditionally. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5033 (process) |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5034 Lisp_Object process; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5035 { |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5036 /* Initialize in case ioctl doesn't exist or gives an error, |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5037 in a way that will cause returning t. */ |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5038 int gid = 0; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5039 Lisp_Object proc; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5040 struct Lisp_Process *p; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5041 |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5042 proc = get_process (process); |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5043 p = XPROCESS (proc); |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5044 |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5045 if (!EQ (p->childp, Qt)) |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5046 error ("Process %s is not a subprocess", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5047 SDATA (p->name)); |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5048 if (XINT (p->infd) < 0) |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5049 error ("Process %s is not active", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5050 SDATA (p->name)); |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5051 |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5052 #ifdef TIOCGPGRP |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5053 if (!NILP (p->subtty)) |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5054 ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid); |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5055 else |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5056 ioctl (XINT (p->infd), TIOCGPGRP, &gid); |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5057 #endif /* defined (TIOCGPGRP ) */ |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5058 |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5059 if (gid == XFASTINT (p->pid)) |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5060 return Qnil; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5061 return Qt; |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5062 } |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5063 |
578 | 5064 /* send a signal number SIGNO to PROCESS. |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5065 If CURRENT_GROUP is t, that means send to the process group |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5066 that currently owns the terminal being used to communicate with PROCESS. |
578 | 5067 This is used for various commands in shell mode. |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5068 If CURRENT_GROUP is lambda, that means send to the process group |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5069 that currently owns the terminal, but only if it is NOT the shell itself. |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5070 |
578 | 5071 If NOMSG is zero, insert signal-announcements into process's buffers |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5072 right away. |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5073 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5074 If we can, we try to signal PROCESS by sending control characters |
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
5075 down the pty. This allows us to signal inferiors who have changed |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5076 their uid, for which killpg would return an EPERM error. */ |
578 | 5077 |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5078 static void |
578 | 5079 process_send_signal (process, signo, current_group, nomsg) |
5080 Lisp_Object process; | |
5081 int signo; | |
5082 Lisp_Object current_group; | |
5083 int nomsg; | |
5084 { | |
5085 Lisp_Object proc; | |
5086 register struct Lisp_Process *p; | |
5087 int gid; | |
5088 int no_pgrp = 0; | |
5089 | |
5090 proc = get_process (process); | |
5091 p = XPROCESS (proc); | |
5092 | |
5093 if (!EQ (p->childp, Qt)) | |
5094 error ("Process %s is not a subprocess", | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5095 SDATA (p->name)); |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5096 if (XINT (p->infd) < 0) |
578 | 5097 error ("Process %s is not active", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5098 SDATA (p->name)); |
578 | 5099 |
5100 if (NILP (p->pty_flag)) | |
5101 current_group = Qnil; | |
5102 | |
5103 /* If we are using pgrps, get a pgrp number and make it negative. */ | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5104 if (NILP (current_group)) |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5105 /* Send the signal to the shell's process group. */ |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5106 gid = XFASTINT (p->pid); |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5107 else |
578 | 5108 { |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5109 #ifdef SIGNALS_VIA_CHARACTERS |
578 | 5110 /* If possible, send signals to the entire pgrp |
5111 by sending an input character to it. */ | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5112 |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5113 /* TERMIOS is the latest and bestest, and seems most likely to |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5114 work. If the system has it, use it. */ |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5115 #ifdef HAVE_TERMIOS |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5116 struct termios t; |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5117 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5118 switch (signo) |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5119 { |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5120 case SIGINT: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5121 tcgetattr (XINT (p->infd), &t); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5122 send_process (proc, &t.c_cc[VINTR], 1, Qnil); |
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
5123 return; |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5124 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5125 case SIGQUIT: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5126 tcgetattr (XINT (p->infd), &t); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5127 send_process (proc, &t.c_cc[VQUIT], 1, Qnil); |
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
5128 return; |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5129 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5130 case SIGTSTP: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5131 tcgetattr (XINT (p->infd), &t); |
7414
33e5afbb62bf
(process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH.
Richard M. Stallman <rms@gnu.org>
parents:
7352
diff
changeset
|
5132 #if defined (VSWTCH) && !defined (PREFER_VSUSP) |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5133 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil); |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5134 #else |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5135 send_process (proc, &t.c_cc[VSUSP], 1, Qnil); |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5136 #endif |
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
5137 return; |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5138 } |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5139 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5140 #else /* ! HAVE_TERMIOS */ |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5141 |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5142 /* On Berkeley descendants, the following IOCTL's retrieve the |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5143 current control characters. */ |
578 | 5144 #if defined (TIOCGLTC) && defined (TIOCGETC) |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5145 |
578 | 5146 struct tchars c; |
5147 struct ltchars lc; | |
5148 | |
5149 switch (signo) | |
5150 { | |
5151 case SIGINT: | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5152 ioctl (XINT (p->infd), TIOCGETC, &c); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5153 send_process (proc, &c.t_intrc, 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5154 return; |
578 | 5155 case SIGQUIT: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5156 ioctl (XINT (p->infd), TIOCGETC, &c); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5157 send_process (proc, &c.t_quitc, 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5158 return; |
1012
a48ed1d416dd
* process.c (process_send_signal): Don't send SIGTSTP if the
Jim Blandy <jimb@redhat.com>
parents:
849
diff
changeset
|
5159 #ifdef SIGTSTP |
578 | 5160 case SIGTSTP: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5161 ioctl (XINT (p->infd), TIOCGLTC, &lc); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5162 send_process (proc, &lc.t_suspc, 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5163 return; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5164 #endif /* ! defined (SIGTSTP) */ |
578 | 5165 } |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5166 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5167 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5168 |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5169 /* On SYSV descendants, the TCGETA ioctl retrieves the current control |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5170 characters. */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5171 #ifdef TCGETA |
578 | 5172 struct termio t; |
5173 switch (signo) | |
5174 { | |
5175 case SIGINT: | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5176 ioctl (XINT (p->infd), TCGETA, &t); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5177 send_process (proc, &t.c_cc[VINTR], 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5178 return; |
578 | 5179 case SIGQUIT: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5180 ioctl (XINT (p->infd), TCGETA, &t); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5181 send_process (proc, &t.c_cc[VQUIT], 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5182 return; |
1569
52a69b6a8f96
* process.c [SYSV]: Don't include <termios.h>, <termio.h>, or
Jim Blandy <jimb@redhat.com>
parents:
1522
diff
changeset
|
5183 #ifdef SIGTSTP |
578 | 5184 case SIGTSTP: |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5185 ioctl (XINT (p->infd), TCGETA, &t); |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5186 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil); |
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
5187 return; |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5188 #endif /* ! defined (SIGTSTP) */ |
578 | 5189 } |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5190 #else /* ! defined (TCGETA) */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5191 Your configuration files are messed up. |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5192 /* If your system configuration files define SIGNALS_VIA_CHARACTERS, |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5193 you'd better be using one of the alternatives above! */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5194 #endif /* ! defined (TCGETA) */ |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5195 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */ |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5196 #endif /* ! defined HAVE_TERMIOS */ |
46314
7c8eab7f2bd6
(process_send_signal): Add abort call.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
5197 abort (); |
7c8eab7f2bd6
(process_send_signal): Add abort call.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
5198 /* The code above always returns from the function. */ |
7c8eab7f2bd6
(process_send_signal): Add abort call.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
5199 #endif /* defined (SIGNALS_VIA_CHARACTERS) */ |
849 | 5200 |
5201 #ifdef TIOCGPGRP | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5202 /* Get the current pgrp using the tty itself, if we have that. |
578 | 5203 Otherwise, use the pty to get the pgrp. |
5204 On pfa systems, saka@pfu.fujitsu.co.JP writes: | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5205 "TIOCGPGRP symbol defined in sys/ioctl.h at E50. |
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5206 But, TIOCGPGRP does not work on E50 ;-P works fine on E60" |
578 | 5207 His patch indicates that if TIOCGPGRP returns an error, then |
5208 we should just assume that p->pid is also the process group id. */ | |
5209 { | |
5210 int err; | |
5211 | |
5212 if (!NILP (p->subtty)) | |
5213 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid); | |
5214 else | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5215 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid); |
578 | 5216 |
5217 if (err == -1) | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5218 /* If we can't get the information, assume |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5219 the shell owns the tty. */ |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5220 gid = XFASTINT (p->pid); |
578 | 5221 } |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5222 |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5223 /* It is not clear whether anything really can set GID to -1. |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5224 Perhaps on some system one of those ioctls can or could do so. |
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5225 Or perhaps this is vestigial. */ |
578 | 5226 if (gid == -1) |
5227 no_pgrp = 1; | |
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
5228 #else /* ! defined (TIOCGPGRP ) */ |
849 | 5229 /* Can't select pgrps on this system, so we know that |
5230 the child itself heads the pgrp. */ | |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5231 gid = XFASTINT (p->pid); |
849 | 5232 #endif /* ! defined (TIOCGPGRP ) */ |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5233 |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5234 /* If current_group is lambda, and the shell owns the terminal, |
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5235 don't send any signal. */ |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5236 if (EQ (current_group, Qlambda) && gid == XFASTINT (p->pid)) |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
5237 return; |
578 | 5238 } |
5239 | |
5240 switch (signo) | |
5241 { | |
5242 #ifdef SIGCONT | |
5243 case SIGCONT: | |
5244 p->raw_status_low = Qnil; | |
5245 p->raw_status_high = Qnil; | |
5246 p->status = Qrun; | |
5247 XSETINT (p->tick, ++process_tick); | |
5248 if (!nomsg) | |
5249 status_notify (); | |
5250 break; | |
849 | 5251 #endif /* ! defined (SIGCONT) */ |
578 | 5252 case SIGINT: |
5253 #ifdef VMS | |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5254 send_process (proc, "\003", 1, Qnil); /* ^C */ |
578 | 5255 goto whoosh; |
5256 #endif | |
5257 case SIGQUIT: | |
5258 #ifdef VMS | |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5259 send_process (proc, "\031", 1, Qnil); /* ^Y */ |
578 | 5260 goto whoosh; |
5261 #endif | |
5262 case SIGKILL: | |
5263 #ifdef VMS | |
5264 sys$forcex (&(XFASTINT (p->pid)), 0, 1); | |
5265 whoosh: | |
5266 #endif | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5267 flush_pending_output (XINT (p->infd)); |
578 | 5268 break; |
5269 } | |
5270 | |
5271 /* If we don't have process groups, send the signal to the immediate | |
5272 subprocess. That isn't really right, but it's better than any | |
5273 obvious alternative. */ | |
5274 if (no_pgrp) | |
5275 { | |
5276 kill (XFASTINT (p->pid), signo); | |
5277 return; | |
5278 } | |
5279 | |
5280 /* gid may be a pid, or minus a pgrp's number */ | |
5281 #ifdef TIOCSIGSEND | |
5282 if (!NILP (current_group)) | |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5283 ioctl (XINT (p->infd), TIOCSIGSEND, signo); |
578 | 5284 else |
5285 { | |
5286 gid = - XFASTINT (p->pid); | |
5287 kill (gid, signo); | |
5288 } | |
849 | 5289 #else /* ! defined (TIOCSIGSEND) */ |
46411
d17e7d2c1766
(create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents:
46370
diff
changeset
|
5290 EMACS_KILLPG (gid, signo); |
849 | 5291 #endif /* ! defined (TIOCSIGSEND) */ |
578 | 5292 } |
5293 | |
5294 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5295 doc: /* Interrupt process PROCESS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5296 PROCESS may be a process, a buffer, or the name of a process or buffer. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5297 nil or no arg means current buffer's process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5298 Second arg CURRENT-GROUP non-nil means send signal to |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5299 the current process-group of the process's controlling terminal |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5300 rather than to the process's own process group. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5301 If the process is a shell, this means interrupt current subjob |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5302 rather than the shell. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5303 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5304 If CURRENT-GROUP is `lambda', and if the shell owns the terminal, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5305 don't send the signal. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5306 (process, current_group) |
578 | 5307 Lisp_Object process, current_group; |
5308 { | |
5309 process_send_signal (process, SIGINT, current_group, 0); | |
5310 return process; | |
5311 } | |
5312 | |
5313 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5314 doc: /* Kill process PROCESS. May be process or name of one. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5315 See function `interrupt-process' for more details on usage. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5316 (process, current_group) |
578 | 5317 Lisp_Object process, current_group; |
5318 { | |
5319 process_send_signal (process, SIGKILL, current_group, 0); | |
5320 return process; | |
5321 } | |
5322 | |
5323 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5324 doc: /* Send QUIT signal to process PROCESS. May be process or name of one. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5325 See function `interrupt-process' for more details on usage. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5326 (process, current_group) |
578 | 5327 Lisp_Object process, current_group; |
5328 { | |
5329 process_send_signal (process, SIGQUIT, current_group, 0); | |
5330 return process; | |
5331 } | |
5332 | |
5333 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5334 doc: /* Stop process PROCESS. May be process or name of one. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5335 See function `interrupt-process' for more details on usage. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5336 If PROCESS is a network process, inhibit handling of incoming traffic. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5337 (process, current_group) |
578 | 5338 Lisp_Object process, current_group; |
5339 { | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5340 #ifdef HAVE_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5341 if (PROCESSP (process) && NETCONN_P (process)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5342 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5343 struct Lisp_Process *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5344 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5345 p = XPROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5346 if (NILP (p->command) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5347 && XINT (p->infd) >= 0) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5348 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5349 FD_CLR (XINT (p->infd), &input_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5350 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5351 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5352 p->command = Qt; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5353 return process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5354 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5355 #endif |
578 | 5356 #ifndef SIGTSTP |
5357 error ("no SIGTSTP support"); | |
5358 #else | |
5359 process_send_signal (process, SIGTSTP, current_group, 0); | |
5360 #endif | |
5361 return process; | |
5362 } | |
5363 | |
5364 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5365 doc: /* Continue process PROCESS. May be process or name of one. |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5366 See function `interrupt-process' for more details on usage. |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5367 If PROCESS is a network process, resume handling of incoming traffic. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5368 (process, current_group) |
578 | 5369 Lisp_Object process, current_group; |
5370 { | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5371 #ifdef HAVE_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5372 if (PROCESSP (process) && NETCONN_P (process)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5373 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5374 struct Lisp_Process *p; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5375 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5376 p = XPROCESS (process); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5377 if (EQ (p->command, Qt) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5378 && XINT (p->infd) >= 0 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5379 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten))) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5380 { |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5381 FD_SET (XINT (p->infd), &input_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5382 FD_SET (XINT (p->infd), &non_keyboard_wait_mask); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5383 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5384 p->command = Qnil; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5385 return process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5386 } |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5387 #endif |
578 | 5388 #ifdef SIGCONT |
5389 process_send_signal (process, SIGCONT, current_group, 0); | |
5390 #else | |
5391 error ("no SIGCONT support"); | |
5392 #endif | |
5393 return process; | |
5394 } | |
5395 | |
5396 DEFUN ("signal-process", Fsignal_process, Ssignal_process, | |
48053
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5397 2, 2, "sProcess (name or number): \nnSignal code: ", |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5398 doc: /* Send PROCESS the signal with code SIGCODE. |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5399 PROCESS may also be an integer specifying the process id of the |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5400 process to signal; in this case, the process need not be a child of |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5401 this Emacs. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5402 SIGCODE may be an integer, or a symbol whose name is a signal name. */) |
48053
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5403 (process, sigcode) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5404 Lisp_Object process, sigcode; |
578 | 5405 { |
48053
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5406 Lisp_Object pid; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5407 |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5408 if (INTEGERP (process)) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5409 { |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5410 pid = process; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5411 goto got_it; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5412 } |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5413 |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5414 if (STRINGP (process)) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5415 { |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5416 Lisp_Object tem; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5417 if (tem = Fget_process (process), NILP (tem)) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5418 { |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5419 pid = Fstring_to_number (process, make_number (10)); |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5420 if (XINT (pid) != 0) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5421 goto got_it; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5422 } |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5423 process = tem; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5424 } |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5425 else |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5426 process = get_process (process); |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5427 |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5428 if (NILP (process)) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5429 return process; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5430 |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5431 CHECK_PROCESS (process); |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5432 pid = XPROCESS (process)->pid; |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5433 if (!INTEGERP (pid) || XINT (pid) <= 0) |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5434 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name)); |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5435 |
f840e449c328
(Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents:
47987
diff
changeset
|
5436 got_it: |
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5437 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5438 #define handle_signal(NAME, VALUE) \ |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5439 else if (!strcmp (name, NAME)) \ |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5440 XSETINT (sigcode, VALUE) |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5441 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5442 if (INTEGERP (sigcode)) |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5443 ; |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5444 else |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5445 { |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5446 unsigned char *name; |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5447 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
5448 CHECK_SYMBOL (sigcode); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5449 name = SDATA (SYMBOL_NAME (sigcode)); |
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5450 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5451 if (0) |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5452 ; |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5453 #ifdef SIGHUP |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5454 handle_signal ("SIGHUP", SIGHUP); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5455 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5456 #ifdef SIGINT |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5457 handle_signal ("SIGINT", SIGINT); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5458 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5459 #ifdef SIGQUIT |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5460 handle_signal ("SIGQUIT", SIGQUIT); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5461 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5462 #ifdef SIGILL |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5463 handle_signal ("SIGILL", SIGILL); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5464 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5465 #ifdef SIGABRT |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5466 handle_signal ("SIGABRT", SIGABRT); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5467 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5468 #ifdef SIGEMT |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5469 handle_signal ("SIGEMT", SIGEMT); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5470 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5471 #ifdef SIGKILL |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5472 handle_signal ("SIGKILL", SIGKILL); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5473 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5474 #ifdef SIGFPE |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5475 handle_signal ("SIGFPE", SIGFPE); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5476 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5477 #ifdef SIGBUS |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5478 handle_signal ("SIGBUS", SIGBUS); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5479 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5480 #ifdef SIGSEGV |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5481 handle_signal ("SIGSEGV", SIGSEGV); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5482 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5483 #ifdef SIGSYS |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5484 handle_signal ("SIGSYS", SIGSYS); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5485 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5486 #ifdef SIGPIPE |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5487 handle_signal ("SIGPIPE", SIGPIPE); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5488 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5489 #ifdef SIGALRM |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5490 handle_signal ("SIGALRM", SIGALRM); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5491 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5492 #ifdef SIGTERM |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5493 handle_signal ("SIGTERM", SIGTERM); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5494 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5495 #ifdef SIGURG |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5496 handle_signal ("SIGURG", SIGURG); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5497 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5498 #ifdef SIGSTOP |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5499 handle_signal ("SIGSTOP", SIGSTOP); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5500 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5501 #ifdef SIGTSTP |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5502 handle_signal ("SIGTSTP", SIGTSTP); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5503 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5504 #ifdef SIGCONT |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5505 handle_signal ("SIGCONT", SIGCONT); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5506 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5507 #ifdef SIGCHLD |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5508 handle_signal ("SIGCHLD", SIGCHLD); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5509 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5510 #ifdef SIGTTIN |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5511 handle_signal ("SIGTTIN", SIGTTIN); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5512 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5513 #ifdef SIGTTOU |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5514 handle_signal ("SIGTTOU", SIGTTOU); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5515 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5516 #ifdef SIGIO |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5517 handle_signal ("SIGIO", SIGIO); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5518 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5519 #ifdef SIGXCPU |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5520 handle_signal ("SIGXCPU", SIGXCPU); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5521 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5522 #ifdef SIGXFSZ |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5523 handle_signal ("SIGXFSZ", SIGXFSZ); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5524 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5525 #ifdef SIGVTALRM |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5526 handle_signal ("SIGVTALRM", SIGVTALRM); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5527 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5528 #ifdef SIGPROF |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5529 handle_signal ("SIGPROF", SIGPROF); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5530 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5531 #ifdef SIGWINCH |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5532 handle_signal ("SIGWINCH", SIGWINCH); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5533 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5534 #ifdef SIGINFO |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5535 handle_signal ("SIGINFO", SIGINFO); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5536 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5537 #ifdef SIGUSR1 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5538 handle_signal ("SIGUSR1", SIGUSR1); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5539 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5540 #ifdef SIGUSR2 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5541 handle_signal ("SIGUSR2", SIGUSR2); |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5542 #endif |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5543 else |
11148
117b32676686
(Fsignal_process): SIGCODE is a symbol, not a string.
Karl Heuer <kwzh@gnu.org>
parents:
11144
diff
changeset
|
5544 error ("Undefined signal name %s", name); |
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5545 } |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5546 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5547 #undef handle_signal |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5548 |
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
5549 return make_number (kill (XINT (pid), XINT (sigcode))); |
578 | 5550 } |
5551 | |
5552 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5553 doc: /* Make PROCESS see end-of-file in its input. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5554 EOF comes after any text already sent to it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5555 PROCESS may be a process, a buffer, the name of a process or buffer, or |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5556 nil, indicating the current buffer's process. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5557 If PROCESS is a network connection, or is a process communicating |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5558 through a pipe (as opposed to a pty), then you cannot send any more |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5559 text to PROCESS after you call this function. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5560 (process) |
578 | 5561 Lisp_Object process; |
5562 { | |
5563 Lisp_Object proc; | |
23879
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5564 struct coding_system *coding; |
578 | 5565 |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5566 if (DATAGRAM_CONN_P (process)) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5567 return process; |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5568 |
578 | 5569 proc = get_process (process); |
23879
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5570 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)]; |
2221
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5571 |
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5572 /* Make sure the process is really alive. */ |
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5573 if (! NILP (XPROCESS (proc)->raw_status_low)) |
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5574 update_status (XPROCESS (proc)); |
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5575 if (! EQ (XPROCESS (proc)->status, Qrun)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
5576 error ("Process %s not running", SDATA (XPROCESS (proc)->name)); |
2221
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
5577 |
23879
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5578 if (CODING_REQUIRE_FLUSHING (coding)) |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5579 { |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5580 coding->mode |= CODING_MODE_LAST_BLOCK; |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5581 send_process (proc, "", 0, Qnil); |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5582 } |
18e5d1cfa74b
(read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents:
23762
diff
changeset
|
5583 |
578 | 5584 #ifdef VMS |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5585 send_process (proc, "\032", 1, Qnil); /* ^z */ |
578 | 5586 #else |
5587 if (!NILP (XPROCESS (proc)->pty_flag)) | |
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
5588 send_process (proc, "\004", 1, Qnil); |
578 | 5589 else |
5590 { | |
22939
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5591 int old_outfd, new_outfd; |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5592 |
18329
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
5593 #ifdef HAVE_SHUTDOWN |
18328
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5594 /* If this is a network connection, or socketpair is used |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5595 for communication with the subprocess, call shutdown to cause EOF. |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5596 (In some old system, shutdown to socketpair doesn't work. |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5597 Then we just can't win.) */ |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5598 if (NILP (XPROCESS (proc)->pid) |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5599 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd)) |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5600 shutdown (XINT (XPROCESS (proc)->outfd), 1); |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5601 /* In case of socketpair, outfd == infd, so don't close it. */ |
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
5602 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd)) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5603 emacs_close (XINT (XPROCESS (proc)->outfd)); |
18329
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
5604 #else /* not HAVE_SHUTDOWN */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5605 emacs_close (XINT (XPROCESS (proc)->outfd)); |
18329
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
5606 #endif /* not HAVE_SHUTDOWN */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5607 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0); |
22939
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5608 old_outfd = XINT (XPROCESS (proc)->outfd); |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5609 |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5610 if (!proc_encode_coding_system[new_outfd]) |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5611 proc_encode_coding_system[new_outfd] |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5612 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5613 bcopy (proc_encode_coding_system[old_outfd], |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5614 proc_encode_coding_system[new_outfd], |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5615 sizeof (struct coding_system)); |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5616 bzero (proc_encode_coding_system[old_outfd], |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5617 sizeof (struct coding_system)); |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5618 |
572895549f80
(Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
22864
diff
changeset
|
5619 XSETINT (XPROCESS (proc)->outfd, new_outfd); |
578 | 5620 } |
5621 #endif /* VMS */ | |
5622 return process; | |
5623 } | |
5624 | |
5625 /* Kill all processes associated with `buffer'. | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5626 If `buffer' is nil, kill all processes */ |
578 | 5627 |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
5628 void |
578 | 5629 kill_buffer_processes (buffer) |
5630 Lisp_Object buffer; | |
5631 { | |
5632 Lisp_Object tail, proc; | |
5633 | |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5634 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail)) |
578 | 5635 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5636 proc = XCDR (XCAR (tail)); |
9952
9daedd94a204
(NETCONN_P, kill_buffer_processes): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9882
diff
changeset
|
5637 if (GC_PROCESSP (proc) |
578 | 5638 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer))) |
5639 { | |
5640 if (NETCONN_P (proc)) | |
7764
fad00b057e50
(kill_buffer_processes): For net conn, use Fdelete_process.
Richard M. Stallman <rms@gnu.org>
parents:
7748
diff
changeset
|
5641 Fdelete_process (proc); |
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
5642 else if (XINT (XPROCESS (proc)->infd) >= 0) |
578 | 5643 process_send_signal (proc, SIGHUP, Qnil, 1); |
5644 } | |
5645 } | |
5646 } | |
5647 | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5648 /* On receipt of a signal that a child status has changed, loop asking |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5649 about children with changed statuses until the system says there |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5650 are no more. |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5651 |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5652 All we do is change the status; we do not run sentinels or print |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5653 notifications. That is saved for the next time keyboard input is |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5654 done, in order to avoid timing errors. |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5655 |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5656 ** WARNING: this can be called during garbage collection. |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5657 Therefore, it must not be fooled by the presence of mark bits in |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5658 Lisp objects. |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5659 |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5660 ** USG WARNING: Although it is not obvious from the documentation |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5661 in signal(2), on a USG system the SIGCLD handler MUST NOT call |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5662 signal() before executing at least one wait(), otherwise the |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5663 handler will be called again, resulting in an infinite loop. The |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5664 relevant portion of the documentation reads "SIGCLD signals will be |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5665 queued and the signal-catching function will be continually |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5666 reentered until the queue is empty". Invoking signal() causes the |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5667 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5668 Inc. */ |
578 | 5669 |
5670 SIGTYPE | |
5671 sigchld_handler (signo) | |
5672 int signo; | |
5673 { | |
5674 int old_errno = errno; | |
5675 Lisp_Object proc; | |
5676 register struct Lisp_Process *p; | |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5677 extern EMACS_TIME *input_available_clear_time; |
578 | 5678 |
5679 #ifdef BSD4_1 | |
5680 extern int sigheld; | |
5681 sigheld |= sigbit (SIGCHLD); | |
5682 #endif | |
5683 | |
5684 while (1) | |
5685 { | |
5686 register int pid; | |
5687 WAITTYPE w; | |
5688 Lisp_Object tail; | |
5689 | |
5690 #ifdef WNOHANG | |
5691 #ifndef WUNTRACED | |
5692 #define WUNTRACED 0 | |
5693 #endif /* no WUNTRACED */ | |
5694 /* Keep trying to get a status until we get a definitive result. */ | |
5695 do | |
5696 { | |
5697 errno = 0; | |
5698 pid = wait3 (&w, WNOHANG | WUNTRACED, 0); | |
5699 } | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5700 while (pid < 0 && errno == EINTR); |
578 | 5701 |
5702 if (pid <= 0) | |
5703 { | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5704 /* PID == 0 means no processes found, PID == -1 means a real |
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5705 failure. We have done all our job, so return. */ |
578 | 5706 |
5707 /* USG systems forget handlers when they are used; | |
5708 must reestablish each time */ | |
16116
80a67b8f39e9
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents:
16076
diff
changeset
|
5709 #if defined (USG) && !defined (POSIX_SIGNALS) |
578 | 5710 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */ |
5711 #endif | |
5712 #ifdef BSD4_1 | |
5713 sigheld &= ~sigbit (SIGCHLD); | |
5714 sigrelse (SIGCHLD); | |
5715 #endif | |
5716 errno = old_errno; | |
5717 return; | |
5718 } | |
5719 #else | |
5720 pid = wait (&w); | |
5721 #endif /* no WNOHANG */ | |
5722 | |
5723 /* Find the process that signaled us, and record its status. */ | |
5724 | |
5725 p = 0; | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5726 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail)) |
578 | 5727 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5728 proc = XCDR (XCAR (tail)); |
578 | 5729 p = XPROCESS (proc); |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5730 if (GC_EQ (p->childp, Qt) && XINT (p->pid) == pid) |
578 | 5731 break; |
5732 p = 0; | |
5733 } | |
5734 | |
5735 /* Look for an asynchronous process whose pid hasn't been filled | |
5736 in yet. */ | |
5737 if (p == 0) | |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5738 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail)) |
578 | 5739 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5740 proc = XCDR (XCAR (tail)); |
578 | 5741 p = XPROCESS (proc); |
39361
2d3bee6a3848
(sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents:
37758
diff
changeset
|
5742 if (GC_INTEGERP (p->pid) && XINT (p->pid) == -1) |
578 | 5743 break; |
5744 p = 0; | |
5745 } | |
5746 | |
5747 /* Change the status of the process that was found. */ | |
5748 if (p != 0) | |
5749 { | |
5750 union { int i; WAITTYPE wt; } u; | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5751 int clear_desc_flag = 0; |
578 | 5752 |
5753 XSETINT (p->tick, ++process_tick); | |
5754 u.wt = w; | |
12324
41bd44279127
(sigchld_handler): Change XSETFASTINT to XSETINT.
Richard M. Stallman <rms@gnu.org>
parents:
12215
diff
changeset
|
5755 XSETINT (p->raw_status_low, u.i & 0xffff); |
41bd44279127
(sigchld_handler): Change XSETFASTINT to XSETINT.
Richard M. Stallman <rms@gnu.org>
parents:
12215
diff
changeset
|
5756 XSETINT (p->raw_status_high, u.i >> 16); |
578 | 5757 |
5758 /* If process has terminated, stop waiting for its output. */ | |
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5759 if ((WIFSIGNALED (w) || WIFEXITED (w)) |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5760 && XINT (p->infd) >= 0) |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5761 clear_desc_flag = 1; |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5762 |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5763 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */ |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5764 if (clear_desc_flag) |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5765 { |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5766 FD_CLR (XINT (p->infd), &input_wait_mask); |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5767 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask); |
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
5768 } |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5769 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5770 /* Tell wait_reading_process_input that it needs to wake up and |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5771 look around. */ |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5772 if (input_available_clear_time) |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5773 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); |
578 | 5774 } |
5775 | |
5776 /* There was no asynchronous process found for that id. Check | |
5777 if we have a synchronous process. */ | |
5778 else | |
5779 { | |
5780 synch_process_alive = 0; | |
5781 | |
5782 /* Report the status of the synchronous process. */ | |
5783 if (WIFEXITED (w)) | |
5784 synch_process_retcode = WRETCODE (w); | |
5785 else if (WIFSIGNALED (w)) | |
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5786 { |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5787 int code = WTERMSIG (w); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5788 char *signame; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5789 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26313
diff
changeset
|
5790 synchronize_system_messages_locale (); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5791 signame = strsignal (code); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
5792 |
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5793 if (signame == 0) |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5794 signame = "unknown"; |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5795 |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5796 synch_process_death = signame; |
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
5797 } |
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5798 |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5799 /* Tell wait_reading_process_input that it needs to wake up and |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5800 look around. */ |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5801 if (input_available_clear_time) |
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
5802 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); |
578 | 5803 } |
5804 | |
5805 /* On some systems, we must return right away. | |
5806 If any more processes want to signal us, we will | |
5807 get another signal. | |
5808 Otherwise (on systems that have WNOHANG), loop around | |
5809 to use up all the processes that have something to tell us. */ | |
39406
9dd4ad9bc53e
(sigchld_handler) [LINUX]: Don't return from
Gerd Moellmann <gerd@gnu.org>
parents:
39361
diff
changeset
|
5810 #if (defined WINDOWSNT \ |
41969
e669966d496e
Test GNU_LINUX, not LINUX.
Richard M. Stallman <rms@gnu.org>
parents:
41856
diff
changeset
|
5811 || (defined USG && !defined GNU_LINUX \ |
39406
9dd4ad9bc53e
(sigchld_handler) [LINUX]: Don't return from
Gerd Moellmann <gerd@gnu.org>
parents:
39361
diff
changeset
|
5812 && !(defined HPUX && defined WNOHANG))) |
16116
80a67b8f39e9
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents:
16076
diff
changeset
|
5813 #if defined (USG) && ! defined (POSIX_SIGNALS) |
578 | 5814 signal (signo, sigchld_handler); |
5815 #endif | |
5816 errno = old_errno; | |
5817 return; | |
5818 #endif /* USG, but not HPUX with WNOHANG */ | |
5819 } | |
5820 } | |
5821 | |
5822 | |
5823 static Lisp_Object | |
5824 exec_sentinel_unwind (data) | |
5825 Lisp_Object data; | |
5826 { | |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5827 XPROCESS (XCAR (data))->sentinel = XCDR (data); |
578 | 5828 return Qnil; |
5829 } | |
5830 | |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5831 static Lisp_Object |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5832 exec_sentinel_error_handler (error) |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5833 Lisp_Object error; |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5834 { |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5835 cmd_error_internal (error, "error in process sentinel: "); |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5836 Vinhibit_quit = Qt; |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5837 update_echo_area (); |
11277
d4547e4b0aab
(read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
5838 Fsleep_for (make_number (2), Qnil); |
27558 | 5839 return Qt; |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5840 } |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5841 |
578 | 5842 static void |
5843 exec_sentinel (proc, reason) | |
5844 Lisp_Object proc, reason; | |
5845 { | |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5846 Lisp_Object sentinel, obuffer, odeactivate, okeymap; |
578 | 5847 register struct Lisp_Process *p = XPROCESS (proc); |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
45410
diff
changeset
|
5848 int count = SPECPDL_INDEX (); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5849 int outer_running_asynch_code = running_asynch_code; |
23460
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5850 int waiting = waiting_for_user_input_p; |
578 | 5851 |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5852 /* No need to gcpro these, because all we do with them later |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5853 is test them for EQness, and none of them should be a string. */ |
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
5854 odeactivate = Vdeactivate_mark; |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5855 XSETBUFFER (obuffer, current_buffer); |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5856 okeymap = current_buffer->keymap; |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5857 |
578 | 5858 sentinel = p->sentinel; |
5859 if (NILP (sentinel)) | |
5860 return; | |
5861 | |
5862 /* Zilch the sentinel while it's running, to avoid recursive invocations; | |
5863 assure that it gets restored no matter how the sentinel exits. */ | |
5864 p->sentinel = Qnil; | |
5865 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel)); | |
5866 /* Inhibit quit so that random quits don't screw up a running filter. */ | |
5867 specbind (Qinhibit_quit, Qt); | |
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
5868 specbind (Qlast_nonmenu_event, Qt); |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5869 |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5870 /* In case we get recursively called, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5871 and we already saved the match data nonrecursively, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5872 save the same match data in safely recursive fashion. */ |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5873 if (outer_running_asynch_code) |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5874 { |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5875 Lisp_Object tem; |
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
5876 tem = Fmatch_data (Qnil, Qnil); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5877 restore_match_data (); |
21177
73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
Richard M. Stallman <rms@gnu.org>
parents:
21049
diff
changeset
|
5878 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
Richard M. Stallman <rms@gnu.org>
parents:
21049
diff
changeset
|
5879 Fset_match_data (tem); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5880 } |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5881 |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5882 /* For speed, if a search happens within this code, |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5883 save the match data in a special nonrecursive fashion. */ |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
9969
diff
changeset
|
5884 running_asynch_code = 1; |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5885 |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5886 internal_condition_case_1 (read_process_output_call, |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5887 Fcons (sentinel, |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5888 Fcons (proc, Fcons (reason, Qnil))), |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5889 !NILP (Vdebug_on_error) ? Qnil : Qerror, |
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
5890 exec_sentinel_error_handler); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5891 |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5892 /* If we saved the match data nonrecursively, restore it now. */ |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
9969
diff
changeset
|
5893 restore_match_data (); |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5894 running_asynch_code = outer_running_asynch_code; |
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
5895 |
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
5896 Vdeactivate_mark = odeactivate; |
23460
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5897 |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5898 /* Restore waiting_for_user_input_p as it was |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5899 when we were called, in case the filter clobbered it. */ |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5900 waiting_for_user_input_p = waiting; |
94f4ba741f22
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
23405
diff
changeset
|
5901 |
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
5902 #if 0 |
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5903 if (! EQ (Fcurrent_buffer (), obuffer) |
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
5904 || ! EQ (current_buffer->keymap, okeymap)) |
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
5905 #endif |
13159
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
5906 /* But do it only if the caller is actually going to read events. |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
5907 Otherwise there's no need to make him wake up, and it could |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
5908 cause trouble (for example it would make Fsit_for return). */ |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
5909 if (waiting_for_user_input_p == -1) |
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
5910 record_asynch_buffer_change (); |
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
5911 |
5561
fd7524d61a8d
(read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents:
5548
diff
changeset
|
5912 unbind_to (count, Qnil); |
578 | 5913 } |
5914 | |
5915 /* Report all recent events of a change in process status | |
5916 (either run the sentinel or output a message). | |
44372 | 5917 This is usually done while Emacs is waiting for keyboard input |
5918 but can be done at other times. */ | |
578 | 5919 |
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
5920 void |
578 | 5921 status_notify () |
5922 { | |
5923 register Lisp_Object proc, buffer; | |
6515
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
5924 Lisp_Object tail, msg; |
578 | 5925 struct gcpro gcpro1, gcpro2; |
5926 | |
6515
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
5927 tail = Qnil; |
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
5928 msg = Qnil; |
578 | 5929 /* We need to gcpro tail; if read_process_output calls a filter |
5930 which deletes a process and removes the cons to which tail points | |
5931 from Vprocess_alist, and then causes a GC, tail is an unprotected | |
5932 reference. */ | |
5933 GCPRO2 (tail, msg); | |
5934 | |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5935 /* Set this now, so that if new processes are created by sentinels |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5936 that we run, we get called again to handle their status changes. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5937 update_tick = process_tick; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5938 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5939 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) |
578 | 5940 { |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5941 Lisp_Object symbol; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5942 register struct Lisp_Process *p; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5943 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5944 proc = Fcdr (Fcar (tail)); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5945 p = XPROCESS (proc); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5946 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5947 if (XINT (p->tick) != XINT (p->update_tick)) |
578 | 5948 { |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5949 XSETINT (p->update_tick, XINT (p->tick)); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5950 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5951 /* If process is still active, read any output that remains. */ |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5952 while (! EQ (p->filter, Qt) |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
5953 && ! EQ (p->status, Qconnect) |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5954 && ! EQ (p->status, Qlisten) |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
5955 && ! EQ (p->command, Qt) /* Network process not stopped. */ |
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5956 && XINT (p->infd) >= 0 |
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
5957 && read_process_output (proc, XINT (p->infd)) > 0); |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5958 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5959 buffer = p->buffer; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5960 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5961 /* Get the text to use for the message. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5962 if (!NILP (p->raw_status_low)) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5963 update_status (p); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5964 msg = status_message (p->status); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5965 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5966 /* If process is terminated, deactivate it or delete it. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5967 symbol = p->status; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5968 if (CONSP (p->status)) |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25356
diff
changeset
|
5969 symbol = XCAR (p->status); |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5970 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5971 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5972 || EQ (symbol, Qclosed)) |
578 | 5973 { |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5974 if (delete_exited_processes) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5975 remove_process (proc); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5976 else |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5977 deactivate_process (proc); |
578 | 5978 } |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5979 |
16464
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
5980 /* The actions above may have further incremented p->tick. |
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
5981 So set p->update_tick again |
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
5982 so that an error in the sentinel will not cause |
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
5983 this code to be run again. */ |
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
5984 XSETINT (p->update_tick, XINT (p->tick)); |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5985 /* Now output the message suitably. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5986 if (!NILP (p->sentinel)) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5987 exec_sentinel (proc, msg); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5988 /* Don't bother with a message in the buffer |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5989 when a process becomes runnable. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5990 else if (!EQ (symbol, Qrun) && !NILP (buffer)) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5991 { |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5992 Lisp_Object ro, tem; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5993 struct buffer *old = current_buffer; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
5994 int opoint, opoint_byte; |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
5995 int before, before_byte; |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5996 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5997 ro = XBUFFER (buffer)->read_only; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5998 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
5999 /* Avoid error if buffer is deleted |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6000 (probably that's why the process is dead, too) */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6001 if (NILP (XBUFFER (buffer)->name)) |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6002 continue; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6003 Fset_buffer (buffer); |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6004 |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
6005 opoint = PT; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6006 opoint_byte = PT_BYTE; |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6007 /* Insert new output into buffer |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6008 at the current end-of-output marker, |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6009 thus preserving logical ordering of input and output. */ |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6010 if (XMARKER (p->mark)->buffer) |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6011 Fgoto_char (p->mark); |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6012 else |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6013 SET_PT_BOTH (ZV, ZV_BYTE); |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6014 |
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6015 before = PT; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6016 before_byte = PT_BYTE; |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6017 |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6018 tem = current_buffer->read_only; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6019 current_buffer->read_only = Qnil; |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6020 insert_string ("\nProcess "); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6021 Finsert (1, &p->name); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6022 insert_string (" "); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6023 Finsert (1, &msg); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6024 current_buffer->read_only = tem; |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6025 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6026 |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6027 if (opoint >= before) |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6028 SET_PT_BOTH (opoint + (PT - before), |
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6029 opoint_byte + (PT_BYTE - before_byte)); |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6030 else |
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
6031 SET_PT_BOTH (opoint, opoint_byte); |
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
6032 |
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6033 set_buffer_internal (old); |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6034 } |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6035 } |
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
6036 } /* end for */ |
578 | 6037 |
6038 update_mode_lines++; /* in case buffers use %s in mode-line-format */ | |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
6039 redisplay_preserve_echo_area (13); |
578 | 6040 |
6041 UNGCPRO; | |
6042 } | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6043 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6044 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6045 DEFUN ("set-process-coding-system", Fset_process_coding_system, |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6046 Sset_process_coding_system, 1, 3, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6047 doc: /* Set coding systems of PROCESS to DECODING and ENCODING. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6048 DECODING will be used to decode subprocess output and ENCODING to |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6049 encode subprocess input. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6050 (proc, decoding, encoding) |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6051 register Lisp_Object proc, decoding, encoding; |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6052 { |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6053 register struct Lisp_Process *p; |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6054 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
6055 CHECK_PROCESS (proc); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6056 p = XPROCESS (proc); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6057 if (XINT (p->infd) < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
6058 error ("Input file descriptor of %s closed", SDATA (p->name)); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6059 if (XINT (p->outfd) < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46314
diff
changeset
|
6060 error ("Output file descriptor of %s closed", SDATA (p->name)); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6061 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6062 p->decode_coding_system = Fcheck_coding_system (decoding); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6063 p->encode_coding_system = Fcheck_coding_system (encoding); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6064 setup_coding_system (decoding, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
6065 proc_decode_coding_system[XINT (p->infd)]); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6066 setup_coding_system (encoding, |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
6067 proc_encode_coding_system[XINT (p->outfd)]); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6068 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6069 return Qnil; |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6070 } |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6071 |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6072 DEFUN ("process-coding-system", |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6073 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6074 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6075 (proc) |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6076 register Lisp_Object proc; |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6077 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40641
diff
changeset
|
6078 CHECK_PROCESS (proc); |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6079 return Fcons (XPROCESS (proc)->decode_coding_system, |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6080 XPROCESS (proc)->encode_coding_system); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6081 } |
578 | 6082 |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6083 /* The first time this is called, assume keyboard input comes from DESC |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6084 instead of from where we used to expect it. |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6085 Subsequent calls mean assume input keyboard can come from DESC |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6086 in addition to other places. */ |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6087 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6088 static int add_keyboard_wait_descriptor_called_flag; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6089 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6090 void |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6091 add_keyboard_wait_descriptor (desc) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6092 int desc; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6093 { |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6094 if (! add_keyboard_wait_descriptor_called_flag) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6095 FD_CLR (0, &input_wait_mask); |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6096 add_keyboard_wait_descriptor_called_flag = 1; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6097 FD_SET (desc, &input_wait_mask); |
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
6098 FD_SET (desc, &non_process_wait_mask); |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6099 if (desc > max_keyboard_desc) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6100 max_keyboard_desc = desc; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6101 } |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6102 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6103 /* From now on, do not expect DESC to give keyboard input. */ |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6104 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6105 void |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6106 delete_keyboard_wait_descriptor (desc) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6107 int desc; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6108 { |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6109 int fd; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6110 int lim = max_keyboard_desc; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6111 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6112 FD_CLR (desc, &input_wait_mask); |
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
6113 FD_CLR (desc, &non_process_wait_mask); |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6114 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6115 if (desc == max_keyboard_desc) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6116 for (fd = 0; fd < lim; fd++) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6117 if (FD_ISSET (fd, &input_wait_mask) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6118 && !FD_ISSET (fd, &non_keyboard_wait_mask)) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6119 max_keyboard_desc = fd; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6120 } |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6121 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6122 /* Return nonzero if *MASK has a bit set |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6123 that corresponds to one of the keyboard input descriptors. */ |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6124 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6125 int |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6126 keyboard_bit_set (mask) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6127 SELECT_TYPE *mask; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6128 { |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6129 int fd; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6130 |
12541
33a4586124e9
(keyboard_bit_set): Fix one-off in loop end.
Karl Heuer <kwzh@gnu.org>
parents:
12491
diff
changeset
|
6131 for (fd = 0; fd <= max_keyboard_desc; fd++) |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6132 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6133 && !FD_ISSET (fd, &non_keyboard_wait_mask)) |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6134 return 1; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6135 |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6136 return 0; |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6137 } |
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6138 |
21514 | 6139 void |
578 | 6140 init_process () |
6141 { | |
6142 register int i; | |
6143 | |
6144 #ifdef SIGCHLD | |
6145 #ifndef CANNOT_DUMP | |
6146 if (! noninteractive || initialized) | |
6147 #endif | |
6148 signal (SIGCHLD, sigchld_handler); | |
6149 #endif | |
6150 | |
6151 FD_ZERO (&input_wait_mask); | |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6152 FD_ZERO (&non_keyboard_wait_mask); |
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
6153 FD_ZERO (&non_process_wait_mask); |
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
6154 max_process_desc = 0; |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
6155 |
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
6156 FD_SET (0, &input_wait_mask); |
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
6157 |
578 | 6158 Vprocess_alist = Qnil; |
6159 for (i = 0; i < MAXDESC; i++) | |
6160 { | |
6161 chan_process[i] = Qnil; | |
6162 proc_buffered_char[i] = -1; | |
6163 } | |
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
6164 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system); |
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
6165 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6166 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6167 bzero (datagram_address, sizeof datagram_address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6168 #endif |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6169 |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6170 #ifdef HAVE_SOCKETS |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6171 { |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6172 Lisp_Object subfeatures = Qnil; |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6173 #define ADD_SUBFEATURE(key, val) \ |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6174 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures) |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6175 |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6176 #ifdef NON_BLOCKING_CONNECT |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6177 ADD_SUBFEATURE (QCnowait, Qt); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6178 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6179 #ifdef DATAGRAM_SOCKETS |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6180 ADD_SUBFEATURE (QCtype, Qdatagram); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6181 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6182 #ifdef HAVE_LOCAL_SOCKETS |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6183 ADD_SUBFEATURE (QCfamily, Qlocal); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6184 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6185 #ifdef HAVE_GETSOCKNAME |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6186 ADD_SUBFEATURE (QCservice, Qt); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6187 #endif |
45118
cc30538ffb5c
(init_process): Only add server subfeature if we can
Jason Rumney <jasonr@gnu.org>
parents:
45099
diff
changeset
|
6188 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY)) |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6189 ADD_SUBFEATURE (QCserver, Qt); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6190 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6191 #ifdef SO_BINDTODEVICE |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6192 ADD_SUBFEATURE (QCoptions, intern ("bindtodevice")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6193 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6194 #ifdef SO_BROADCAST |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6195 ADD_SUBFEATURE (QCoptions, intern ("broadcast")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6196 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6197 #ifdef SO_DONTROUTE |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6198 ADD_SUBFEATURE (QCoptions, intern ("dontroute")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6199 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6200 #ifdef SO_KEEPALIVE |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6201 ADD_SUBFEATURE (QCoptions, intern ("keepalive")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6202 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6203 #ifdef SO_LINGER |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6204 ADD_SUBFEATURE (QCoptions, intern ("linger")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6205 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6206 #ifdef SO_OOBINLINE |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6207 ADD_SUBFEATURE (QCoptions, intern ("oobinline")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6208 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6209 #ifdef SO_PRIORITY |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6210 ADD_SUBFEATURE (QCoptions, intern ("priority")); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6211 #endif |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6212 #ifdef SO_REUSEADDR |
44073
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6213 ADD_SUBFEATURE (QCoptions, intern ("reuseaddr")); |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6214 #endif |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6215 Fprovide (intern ("make-network-process"), subfeatures); |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6216 } |
9984126a7008
(init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents:
44067
diff
changeset
|
6217 #endif /* HAVE_SOCKETS */ |
578 | 6218 } |
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
6219 |
21514 | 6220 void |
578 | 6221 syms_of_process () |
6222 { | |
6223 Qprocessp = intern ("processp"); | |
6224 staticpro (&Qprocessp); | |
6225 Qrun = intern ("run"); | |
6226 staticpro (&Qrun); | |
6227 Qstop = intern ("stop"); | |
6228 staticpro (&Qstop); | |
6229 Qsignal = intern ("signal"); | |
6230 staticpro (&Qsignal); | |
6231 | |
6232 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it | |
6233 here again. | |
6234 | |
6235 Qexit = intern ("exit"); | |
6236 staticpro (&Qexit); */ | |
6237 | |
6238 Qopen = intern ("open"); | |
6239 staticpro (&Qopen); | |
6240 Qclosed = intern ("closed"); | |
6241 staticpro (&Qclosed); | |
43598
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
6242 Qconnect = intern ("connect"); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
6243 staticpro (&Qconnect); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
6244 Qfailed = intern ("failed"); |
f49377cf2e3c
(Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents:
42600
diff
changeset
|
6245 staticpro (&Qfailed); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6246 Qlisten = intern ("listen"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6247 staticpro (&Qlisten); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6248 Qlocal = intern ("local"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6249 staticpro (&Qlocal); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6250 Qdatagram = intern ("datagram"); |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6251 staticpro (&Qdatagram); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6252 |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6253 QCname = intern (":name"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6254 staticpro (&QCname); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6255 QCbuffer = intern (":buffer"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6256 staticpro (&QCbuffer); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6257 QChost = intern (":host"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6258 staticpro (&QChost); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6259 QCservice = intern (":service"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6260 staticpro (&QCservice); |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6261 QCtype = intern (":type"); |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6262 staticpro (&QCtype); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6263 QClocal = intern (":local"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6264 staticpro (&QClocal); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6265 QCremote = intern (":remote"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6266 staticpro (&QCremote); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6267 QCcoding = intern (":coding"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6268 staticpro (&QCcoding); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6269 QCserver = intern (":server"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6270 staticpro (&QCserver); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6271 QCnowait = intern (":nowait"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6272 staticpro (&QCnowait); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6273 QCsentinel = intern (":sentinel"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6274 staticpro (&QCsentinel); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6275 QClog = intern (":log"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6276 staticpro (&QClog); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6277 QCnoquery = intern (":noquery"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6278 staticpro (&QCnoquery); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6279 QCstop = intern (":stop"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6280 staticpro (&QCstop); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6281 QCoptions = intern (":options"); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6282 staticpro (&QCoptions); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6283 |
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
6284 Qlast_nonmenu_event = intern ("last-nonmenu-event"); |
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
6285 staticpro (&Qlast_nonmenu_event); |
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
6286 |
578 | 6287 staticpro (&Vprocess_alist); |
6288 | |
6289 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6290 doc: /* *Non-nil means delete processes immediately when they exit. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6291 nil means don't delete them until `list-processes' is run. */); |
578 | 6292 |
6293 delete_exited_processes = 1; | |
6294 | |
6295 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6296 doc: /* Control type of device used to communicate with subprocesses. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6297 Values are nil to use a pipe, or t or `pty' to use a pty. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6298 The value has no effect if the system has no ptys or if all ptys are busy: |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6299 then a pipe is used in any case. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6300 The value takes effect when `start-process' is called. */); |
578 | 6301 Vprocess_connection_type = Qt; |
6302 | |
6303 defsubr (&Sprocessp); | |
6304 defsubr (&Sget_process); | |
6305 defsubr (&Sget_buffer_process); | |
6306 defsubr (&Sdelete_process); | |
6307 defsubr (&Sprocess_status); | |
6308 defsubr (&Sprocess_exit_status); | |
6309 defsubr (&Sprocess_id); | |
6310 defsubr (&Sprocess_name); | |
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
6311 defsubr (&Sprocess_tty_name); |
578 | 6312 defsubr (&Sprocess_command); |
6313 defsubr (&Sset_process_buffer); | |
6314 defsubr (&Sprocess_buffer); | |
6315 defsubr (&Sprocess_mark); | |
6316 defsubr (&Sset_process_filter); | |
6317 defsubr (&Sprocess_filter); | |
6318 defsubr (&Sset_process_sentinel); | |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
6319 defsubr (&Sprocess_sentinel); |
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
6320 defsubr (&Sset_process_window_size); |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6321 defsubr (&Sset_process_inherit_coding_system_flag); |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6322 defsubr (&Sprocess_inherit_coding_system_flag); |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6323 defsubr (&Sset_process_query_on_exit_flag); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6324 defsubr (&Sprocess_query_on_exit_flag); |
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
6325 defsubr (&Sprocess_contact); |
578 | 6326 defsubr (&Slist_processes); |
6327 defsubr (&Sprocess_list); | |
6328 defsubr (&Sstart_process); | |
6329 #ifdef HAVE_SOCKETS | |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6330 defsubr (&Sset_network_process_options); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6331 defsubr (&Smake_network_process); |
47987
b30942bd85f3
(Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents:
47542
diff
changeset
|
6332 defsubr (&Sformat_network_address); |
578 | 6333 #endif /* HAVE_SOCKETS */ |
43968
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6334 #ifdef DATAGRAM_SOCKETS |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6335 defsubr (&Sprocess_datagram_address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6336 defsubr (&Sset_process_datagram_address); |
7ec801358b7e
(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents:
43642
diff
changeset
|
6337 #endif |
578 | 6338 defsubr (&Saccept_process_output); |
6339 defsubr (&Sprocess_send_region); | |
6340 defsubr (&Sprocess_send_string); | |
6341 defsubr (&Sinterrupt_process); | |
6342 defsubr (&Skill_process); | |
6343 defsubr (&Squit_process); | |
6344 defsubr (&Sstop_process); | |
6345 defsubr (&Scontinue_process); | |
24352
023601636a18
(syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents:
23930
diff
changeset
|
6346 defsubr (&Sprocess_running_child_p); |
578 | 6347 defsubr (&Sprocess_send_eof); |
6348 defsubr (&Ssignal_process); | |
6349 defsubr (&Swaiting_for_user_input_p); | |
6350 /* defsubr (&Sprocess_connection); */ | |
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6351 defsubr (&Sset_process_coding_system); |
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
6352 defsubr (&Sprocess_coding_system); |
578 | 6353 } |
6354 | |
588 | 6355 |
6356 #else /* not subprocesses */ | |
6357 | |
6358 #include <sys/types.h> | |
6359 #include <errno.h> | |
6360 | |
6361 #include "lisp.h" | |
6362 #include "systime.h" | |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6363 #include "charset.h" |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6364 #include "coding.h" |
588 | 6365 #include "termopts.h" |
12132
017f32786ed3
[!subprocesses]: Include sysselect.h.
Karl Heuer <kwzh@gnu.org>
parents:
11926
diff
changeset
|
6366 #include "sysselect.h" |
588 | 6367 |
765 | 6368 extern int frame_garbaged; |
588 | 6369 |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6370 extern EMACS_TIME timer_check (); |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6371 extern int timers_run; |
588 | 6372 |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6373 Lisp_Object QCtype; |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6374 |
588 | 6375 /* As described above, except assuming that there are no subprocesses: |
6376 | |
6377 Wait for timeout to elapse and/or keyboard input to be available. | |
6378 | |
6379 time_limit is: | |
6380 timeout in seconds, or | |
6381 zero for no limit, or | |
6382 -1 means gobble data immediately available but don't wait for any. | |
6383 | |
650 | 6384 read_kbd is a Lisp_Object: |
588 | 6385 0 to ignore keyboard input, or |
6386 1 to return when input is available, or | |
6387 -1 means caller will actually read the input, so don't throw to | |
6388 the quit handler. | |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6389 a cons cell, meaning wait until its car is non-nil |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6390 (and gobble terminal input into the buffer if any arrives), or |
588 | 6391 We know that read_kbd will never be a Lisp_Process, since |
6392 `subprocesses' isn't defined. | |
6393 | |
6394 do_display != 0 means redisplay should be done to show subprocess | |
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
6395 output that arrives. |
588 | 6396 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3510
diff
changeset
|
6397 Return true iff we received input from any process. */ |
588 | 6398 |
6399 int | |
6400 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |
650 | 6401 int time_limit, microsecs; |
6402 Lisp_Object read_kbd; | |
6403 int do_display; | |
588 | 6404 { |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6405 register int nfds; |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6406 EMACS_TIME end_time, timeout; |
14278
3562c5f43780
(wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
6407 SELECT_TYPE waitchannels; |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6408 int xerrno; |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6409 /* Either nil or a cons cell, the car of which is of interest and |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6410 may be changed outside of this routine. */ |
48168
8314ced58ef2
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
48097
diff
changeset
|
6411 Lisp_Object wait_for_cell; |
8314ced58ef2
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
48097
diff
changeset
|
6412 |
8314ced58ef2
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
48097
diff
changeset
|
6413 wait_for_cell = Qnil; |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6414 |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6415 /* If waiting for non-nil in a cell, record where. */ |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6416 if (CONSP (read_kbd)) |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6417 { |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6418 wait_for_cell = read_kbd; |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6419 XSETFASTINT (read_kbd, 0); |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6420 } |
588 | 6421 |
6422 /* What does time_limit really mean? */ | |
6423 if (time_limit || microsecs) | |
6424 { | |
6425 EMACS_GET_TIME (end_time); | |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6426 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs); |
588 | 6427 EMACS_ADD_TIME (end_time, end_time, timeout); |
6428 } | |
6429 | |
6430 /* Turn off periodic alarms (in case they are in use) | |
47431
8871e67384e4
(wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents:
47020
diff
changeset
|
6431 and then turn off any other atimers, |
588 | 6432 because the select emulator uses alarms. */ |
47431
8871e67384e4
(wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents:
47020
diff
changeset
|
6433 stop_polling (); |
27430
1aa71680fe50
(toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents:
27028
diff
changeset
|
6434 turn_on_atimers (0); |
588 | 6435 |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6436 while (1) |
588 | 6437 { |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6438 int timeout_reduced_for_timers = 0; |
588 | 6439 |
6440 /* If calling from keyboard input, do not quit | |
6441 since we want to return C-g as an input character. | |
6442 Otherwise, do pending quit if requested. */ | |
650 | 6443 if (XINT (read_kbd) >= 0) |
588 | 6444 QUIT; |
6445 | |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6446 /* Exit now if the cell we're waiting for became non-nil. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6447 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell))) |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6448 break; |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6449 |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6450 /* Compute time from now till when time limit is up */ |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6451 /* Exit if already run out */ |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6452 if (time_limit == -1) |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6453 { |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6454 /* -1 specified for timeout means |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6455 gobble output available now |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6456 but don't wait at all. */ |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6457 |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6458 EMACS_SET_SECS_USECS (timeout, 0, 0); |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6459 } |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6460 else if (time_limit || microsecs) |
588 | 6461 { |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6462 EMACS_GET_TIME (timeout); |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6463 EMACS_SUB_TIME (timeout, end_time, timeout); |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6464 if (EMACS_TIME_NEG_P (timeout)) |
588 | 6465 break; |
6466 } | |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6467 else |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6468 { |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6469 EMACS_SET_SECS_USECS (timeout, 100000, 0); |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6470 } |
588 | 6471 |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6472 /* If our caller will not immediately handle keyboard events, |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6473 run timer events directly. |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6474 (Callers that will immediately read keyboard events |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6475 call timer_delay on their own.) */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6476 if (NILP (wait_for_cell)) |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6477 { |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6478 EMACS_TIME timer_delay; |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6479 |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6480 do |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6481 { |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6482 int old_timers_run = timers_run; |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6483 timer_delay = timer_check (1); |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6484 if (timers_run != old_timers_run && do_display) |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6485 /* We must retry, since a timer may have requeued itself |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6486 and that could alter the time delay. */ |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
6487 redisplay_preserve_echo_area (14); |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6488 else |
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6489 break; |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6490 } |
34660
75866a7ebaec
(wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents:
34647
diff
changeset
|
6491 while (!detect_input_pending ()); |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6492 |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6493 /* If there is unread keyboard input, also return. */ |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6494 if (XINT (read_kbd) != 0 |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6495 && requeued_events_pending_p ()) |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6496 break; |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6497 |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6498 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1) |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6499 { |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6500 EMACS_TIME difference; |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6501 EMACS_SUB_TIME (difference, timer_delay, timeout); |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6502 if (EMACS_TIME_NEG_P (difference)) |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6503 { |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6504 timeout = timer_delay; |
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6505 timeout_reduced_for_timers = 1; |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6506 } |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6507 } |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6508 } |
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
6509 |
588 | 6510 /* Cause C-g and alarm signals to take immediate action, |
6511 and cause input available signals to zero out timeout. */ | |
650 | 6512 if (XINT (read_kbd) < 0) |
588 | 6513 set_waiting_for_input (&timeout); |
6514 | |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6515 /* Wait till there is something to do. */ |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6516 |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6517 if (! XINT (read_kbd) && NILP (wait_for_cell)) |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6518 FD_ZERO (&waitchannels); |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6519 else |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6520 FD_SET (0, &waitchannels); |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6521 |
765 | 6522 /* If a frame has been newly mapped and needs updating, |
588 | 6523 reprocess its display stuff. */ |
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
6524 if (frame_garbaged && do_display) |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6525 { |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6526 clear_waiting_for_input (); |
35336
002c02db42d3
Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents:
34660
diff
changeset
|
6527 redisplay_preserve_echo_area (15); |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6528 if (XINT (read_kbd) < 0) |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6529 set_waiting_for_input (&timeout); |
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6530 } |
588 | 6531 |
15025
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6532 if (XINT (read_kbd) && detect_input_pending ()) |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6533 { |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6534 nfds = 0; |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6535 FD_ZERO (&waitchannels); |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6536 } |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6537 else |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6538 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0, |
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
6539 &timeout); |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6540 |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6541 xerrno = errno; |
588 | 6542 |
6543 /* Make C-g and alarm signals set flags again */ | |
6544 clear_waiting_for_input (); | |
6545 | |
6546 /* If we woke up due to SIGWINCH, actually change size now. */ | |
25356
5db69f7aadca
Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents:
25262
diff
changeset
|
6547 do_pending_window_change (0); |
588 | 6548 |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6549 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6550 /* We waited the full specified time, so return now. */ |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6551 break; |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6552 |
588 | 6553 if (nfds == -1) |
6554 { | |
6555 /* If the system call was interrupted, then go around the | |
6556 loop again. */ | |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6557 if (xerrno == EINTR) |
14278
3562c5f43780
(wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
6558 FD_ZERO (&waitchannels); |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6559 else |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26019
diff
changeset
|
6560 error ("select error: %s", emacs_strerror (xerrno)); |
588 | 6561 } |
6562 #ifdef sun | |
6563 else if (nfds > 0 && (waitchannels & 1) && interrupt_input) | |
6564 /* System sometimes fails to deliver SIGIO. */ | |
6565 kill (getpid (), SIGIO); | |
6566 #endif | |
3915
55ed7a65746e
(wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
3826
diff
changeset
|
6567 #ifdef SIGIO |
650 | 6568 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1)) |
14736
b17ec81a6294
(wait_reading_process_input): Use getpid when generating SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
14671
diff
changeset
|
6569 kill (getpid (), SIGIO); |
3915
55ed7a65746e
(wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
3826
diff
changeset
|
6570 #endif |
588 | 6571 |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6572 /* Check for keyboard input */ |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6573 |
37413
49147b9fe206
(wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents:
37398
diff
changeset
|
6574 if ((XINT (read_kbd) != 0) |
49147b9fe206
(wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents:
37398
diff
changeset
|
6575 && detect_input_pending_run_timers (do_display)) |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6576 { |
37413
49147b9fe206
(wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents:
37398
diff
changeset
|
6577 swallow_events (do_display); |
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6578 if (detect_input_pending_run_timers (do_display)) |
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
6579 break; |
37413
49147b9fe206
(wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents:
37398
diff
changeset
|
6580 } |
49147b9fe206
(wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents:
37398
diff
changeset
|
6581 |
22535
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6582 /* If there is unread keyboard input, also return. */ |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6583 if (XINT (read_kbd) != 0 |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6584 && requeued_events_pending_p ()) |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6585 break; |
fd9324c5a498
(wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents:
22523
diff
changeset
|
6586 |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6587 /* If wait_for_cell. check for keyboard input |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6588 but don't run any timers. |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6589 ??? (It seems wrong to me to check for keyboard |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6590 input at all when wait_for_cell, but the code |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6591 has been this way since July 1994. |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6592 Try changing this after version 19.31.) */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6593 if (! NILP (wait_for_cell) |
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6594 && detect_input_pending ()) |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6595 { |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6596 swallow_events (do_display); |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6597 if (detect_input_pending ()) |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6598 break; |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6599 } |
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
6600 |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6601 /* Exit now if the cell we're waiting for became non-nil. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39964
diff
changeset
|
6602 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell))) |
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
6603 break; |
588 | 6604 } |
6605 | |
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
6606 start_polling (); |
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
6607 |
588 | 6608 return 0; |
6609 } | |
6610 | |
6611 | |
39964
4ca5cbe5610d
(process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents:
39812
diff
changeset
|
6612 /* Don't confuse make-docfile by having two doc strings for this function. |
4ca5cbe5610d
(process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents:
39812
diff
changeset
|
6613 make-docfile does not pay attention to #if, for good reason! */ |
588 | 6614 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6615 0) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6616 (name) |
588 | 6617 register Lisp_Object name; |
6618 { | |
6619 return Qnil; | |
6620 } | |
6621 | |
39964
4ca5cbe5610d
(process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents:
39812
diff
changeset
|
6622 /* Don't confuse make-docfile by having two doc strings for this function. |
4ca5cbe5610d
(process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents:
39812
diff
changeset
|
6623 make-docfile does not pay attention to #if, for good reason! */ |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6624 DEFUN ("process-inherit-coding-system-flag", |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6625 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6626 1, 1, 0, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6627 0) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6628 (process) |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6629 register Lisp_Object process; |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6630 { |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6631 /* Ignore the argument and return the value of |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6632 inherit-process-coding-system. */ |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6633 return inherit_process_coding_system ? Qt : Qnil; |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6634 } |
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6635 |
588 | 6636 /* Kill all processes associated with `buffer'. |
6637 If `buffer' is nil, kill all processes. | |
6638 Since we have no subprocesses, this does nothing. */ | |
6639 | |
21414
aac7354edaed
(kill_buffer_processes): Make consistent with
Karl Heuer <kwzh@gnu.org>
parents:
21281
diff
changeset
|
6640 void |
588 | 6641 kill_buffer_processes (buffer) |
6642 Lisp_Object buffer; | |
6643 { | |
6644 } | |
6645 | |
21978
ba8852d809f6
(init_process, syms_of_process): Make definition consistent with
Eli Zaretskii <eliz@gnu.org>
parents:
21950
diff
changeset
|
6646 void |
588 | 6647 init_process () |
6648 { | |
6649 } | |
6650 | |
21978
ba8852d809f6
(init_process, syms_of_process): Make definition consistent with
Eli Zaretskii <eliz@gnu.org>
parents:
21950
diff
changeset
|
6651 void |
588 | 6652 syms_of_process () |
6653 { | |
44067
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6654 QCtype = intern (":type"); |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6655 staticpro (&QCtype); |
e8a136850817
(QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents:
44041
diff
changeset
|
6656 |
588 | 6657 defsubr (&Sget_buffer_process); |
21656
bb39a5863a82
(Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents:
21530
diff
changeset
|
6658 defsubr (&Sprocess_inherit_coding_system_flag); |
588 | 6659 } |
6660 | |
6661 | |
6662 #endif /* not subprocesses */ |