blob: cac8d962c0bf94a6312c047a2e81af17c7d75f05 [file] [log] [blame]
Guido van Rossum0016e1d2013-10-30 14:56:49 -07001import collections
2import subprocess
Victor Stinner978a9af2015-01-29 17:50:58 +01003import warnings
Guido van Rossum0016e1d2013-10-30 14:56:49 -07004
5from . import protocols
Guido van Rossum0016e1d2013-10-30 14:56:49 -07006from . import transports
Victor Stinnerf951d282014-06-29 00:46:45 +02007from .coroutines import coroutine
Victor Stinneracdb7822014-07-14 18:33:40 +02008from .log import logger
Guido van Rossum0016e1d2013-10-30 14:56:49 -07009
10
Guido van Rossum0016e1d2013-10-30 14:56:49 -070011class BaseSubprocessTransport(transports.SubprocessTransport):
12
13 def __init__(self, loop, protocol, args, shell,
14 stdin, stdout, stderr, bufsize,
Victor Stinner47cd10d2015-01-30 00:05:19 +010015 waiter=None, extra=None, **kwargs):
Guido van Rossum0016e1d2013-10-30 14:56:49 -070016 super().__init__(extra)
Victor Stinner978a9af2015-01-29 17:50:58 +010017 self._closed = False
Guido van Rossum0016e1d2013-10-30 14:56:49 -070018 self._protocol = protocol
19 self._loop = loop
Victor Stinner47cd10d2015-01-30 00:05:19 +010020 self._proc = None
Victor Stinneracdb7822014-07-14 18:33:40 +020021 self._pid = None
Victor Stinner47cd10d2015-01-30 00:05:19 +010022 self._returncode = None
23 self._exit_waiters = []
24 self._pending_calls = collections.deque()
Guido van Rossum0016e1d2013-10-30 14:56:49 -070025 self._pipes = {}
Victor Stinner47cd10d2015-01-30 00:05:19 +010026 self._finished = False
27
Guido van Rossum0016e1d2013-10-30 14:56:49 -070028 if stdin == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010029 self._pipes[0] = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -070030 if stdout == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010031 self._pipes[1] = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -070032 if stderr == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010033 self._pipes[2] = None
Victor Stinner47cd10d2015-01-30 00:05:19 +010034
35 # Create the child process: set the _proc attribute
Victor Stinner6fb1e742015-07-31 17:49:43 +020036 try:
37 self._start(args=args, shell=shell, stdin=stdin, stdout=stdout,
38 stderr=stderr, bufsize=bufsize, **kwargs)
39 except:
40 self.close()
41 raise
42
Victor Stinneracdb7822014-07-14 18:33:40 +020043 self._pid = self._proc.pid
Guido van Rossum0016e1d2013-10-30 14:56:49 -070044 self._extra['subprocess'] = self._proc
Victor Stinner47cd10d2015-01-30 00:05:19 +010045
Victor Stinneracdb7822014-07-14 18:33:40 +020046 if self._loop.get_debug():
47 if isinstance(args, (bytes, str)):
48 program = args
49 else:
50 program = args[0]
51 logger.debug('process %r created: pid %s',
52 program, self._pid)
53
Victor Stinner47cd10d2015-01-30 00:05:19 +010054 self._loop.create_task(self._connect_pipes(waiter))
55
Victor Stinneracdb7822014-07-14 18:33:40 +020056 def __repr__(self):
Victor Stinner978a9af2015-01-29 17:50:58 +010057 info = [self.__class__.__name__]
58 if self._closed:
59 info.append('closed')
Victor Stinner7a82afe2015-03-10 16:32:29 +010060 if self._pid is not None:
61 info.append('pid=%s' % self._pid)
Victor Stinneracdb7822014-07-14 18:33:40 +020062 if self._returncode is not None:
63 info.append('returncode=%s' % self._returncode)
Victor Stinner7a82afe2015-03-10 16:32:29 +010064 elif self._pid is not None:
Victor Stinner4e82fb92015-02-17 22:50:33 +010065 info.append('running')
Victor Stinner7a82afe2015-03-10 16:32:29 +010066 else:
67 info.append('not started')
Victor Stinneracdb7822014-07-14 18:33:40 +020068
69 stdin = self._pipes.get(0)
70 if stdin is not None:
71 info.append('stdin=%s' % stdin.pipe)
72
73 stdout = self._pipes.get(1)
74 stderr = self._pipes.get(2)
75 if stdout is not None and stderr is stdout:
76 info.append('stdout=stderr=%s' % stdout.pipe)
77 else:
78 if stdout is not None:
79 info.append('stdout=%s' % stdout.pipe)
80 if stderr is not None:
81 info.append('stderr=%s' % stderr.pipe)
82
83 return '<%s>' % ' '.join(info)
Guido van Rossum0016e1d2013-10-30 14:56:49 -070084
85 def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):
86 raise NotImplementedError
87
Yury Selivanova05a6ef2016-09-11 21:11:02 -040088 def set_protocol(self, protocol):
89 self._protocol = protocol
90
91 def get_protocol(self):
92 return self._protocol
93
Yury Selivanov5bb1afb2015-11-16 12:43:21 -050094 def is_closing(self):
95 return self._closed
96
Guido van Rossum0016e1d2013-10-30 14:56:49 -070097 def close(self):
Victor Stinnerf2e43cb2015-01-30 01:20:44 +010098 if self._closed:
99 return
Victor Stinner978a9af2015-01-29 17:50:58 +0100100 self._closed = True
Victor Stinner47cd10d2015-01-30 00:05:19 +0100101
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700102 for proto in self._pipes.values():
Victor Stinner29ad0112015-01-15 00:04:21 +0100103 if proto is None:
104 continue
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700105 proto.pipe.close()
Victor Stinner47cd10d2015-01-30 00:05:19 +0100106
Victor Stinner8e368122015-02-10 14:49:32 +0100107 if (self._proc is not None
108 # the child process finished?
109 and self._returncode is None
110 # the child process finished but the transport was not notified yet?
111 and self._proc.poll() is None
112 ):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100113 if self._loop.get_debug():
114 logger.warning('Close running child process: kill %r', self)
115
116 try:
117 self._proc.kill()
118 except ProcessLookupError:
119 pass
120
Victor Stinnerf2e43cb2015-01-30 01:20:44 +0100121 # Don't clear the _proc reference yet: _post_init() may still run
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700122
INADA Naoki3e2ad8e2017-04-25 10:57:18 +0900123 def __del__(self):
124 if not self._closed:
125 warnings.warn("unclosed transport %r" % self, ResourceWarning,
126 source=self)
127 self.close()
Victor Stinner978a9af2015-01-29 17:50:58 +0100128
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700129 def get_pid(self):
Victor Stinneracdb7822014-07-14 18:33:40 +0200130 return self._pid
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700131
132 def get_returncode(self):
133 return self._returncode
134
135 def get_pipe_transport(self, fd):
136 if fd in self._pipes:
137 return self._pipes[fd].pipe
138 else:
139 return None
140
Victor Stinner47cd10d2015-01-30 00:05:19 +0100141 def _check_proc(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100142 if self._proc is None:
143 raise ProcessLookupError()
144
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700145 def send_signal(self, signal):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100146 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700147 self._proc.send_signal(signal)
148
149 def terminate(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100150 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700151 self._proc.terminate()
152
153 def kill(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100154 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700155 self._proc.kill()
156
Victor Stinnerf951d282014-06-29 00:46:45 +0200157 @coroutine
Victor Stinner47cd10d2015-01-30 00:05:19 +0100158 def _connect_pipes(self, waiter):
Victor Stinnerf651a602015-01-14 02:10:33 +0100159 try:
160 proc = self._proc
161 loop = self._loop
Victor Stinner47cd10d2015-01-30 00:05:19 +0100162
Victor Stinnerf651a602015-01-14 02:10:33 +0100163 if proc.stdin is not None:
164 _, pipe = yield from loop.connect_write_pipe(
165 lambda: WriteSubprocessPipeProto(self, 0),
166 proc.stdin)
167 self._pipes[0] = pipe
Victor Stinner47cd10d2015-01-30 00:05:19 +0100168
Victor Stinnerf651a602015-01-14 02:10:33 +0100169 if proc.stdout is not None:
170 _, pipe = yield from loop.connect_read_pipe(
171 lambda: ReadSubprocessPipeProto(self, 1),
172 proc.stdout)
173 self._pipes[1] = pipe
Victor Stinner47cd10d2015-01-30 00:05:19 +0100174
Victor Stinnerf651a602015-01-14 02:10:33 +0100175 if proc.stderr is not None:
176 _, pipe = yield from loop.connect_read_pipe(
177 lambda: ReadSubprocessPipeProto(self, 2),
178 proc.stderr)
179 self._pipes[2] = pipe
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800180
Victor Stinnerf651a602015-01-14 02:10:33 +0100181 assert self._pending_calls is not None
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800182
Victor Stinner47cd10d2015-01-30 00:05:19 +0100183 loop.call_soon(self._protocol.connection_made, self)
Victor Stinnerf651a602015-01-14 02:10:33 +0100184 for callback, data in self._pending_calls:
Victor Stinner47cd10d2015-01-30 00:05:19 +0100185 loop.call_soon(callback, *data)
Victor Stinnerf651a602015-01-14 02:10:33 +0100186 self._pending_calls = None
Victor Stinner47cd10d2015-01-30 00:05:19 +0100187 except Exception as exc:
188 if waiter is not None and not waiter.cancelled():
189 waiter.set_exception(exc)
190 else:
191 if waiter is not None and not waiter.cancelled():
192 waiter.set_result(None)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700193
194 def _call(self, cb, *data):
195 if self._pending_calls is not None:
196 self._pending_calls.append((cb, data))
197 else:
198 self._loop.call_soon(cb, *data)
199
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700200 def _pipe_connection_lost(self, fd, exc):
201 self._call(self._protocol.pipe_connection_lost, fd, exc)
202 self._try_finish()
203
204 def _pipe_data_received(self, fd, data):
205 self._call(self._protocol.pipe_data_received, fd, data)
206
207 def _process_exited(self, returncode):
208 assert returncode is not None, returncode
209 assert self._returncode is None, self._returncode
Victor Stinneracdb7822014-07-14 18:33:40 +0200210 if self._loop.get_debug():
211 logger.info('%r exited with return code %r',
212 self, returncode)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700213 self._returncode = returncode
Victor Stinnerb0d43ce2016-05-20 13:05:48 +0200214 if self._proc.returncode is None:
215 # asyncio uses a child watcher: copy the status into the Popen
216 # object. On Python 3.6, it is required to avoid a ResourceWarning.
217 self._proc.returncode = returncode
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700218 self._call(self._protocol.process_exited)
219 self._try_finish()
220
Victor Stinner47cd10d2015-01-30 00:05:19 +0100221 # wake up futures waiting for wait()
222 for waiter in self._exit_waiters:
223 if not waiter.cancelled():
224 waiter.set_result(returncode)
225 self._exit_waiters = None
226
Victor Stinnerd6dc7bd2015-03-18 11:37:42 +0100227 @coroutine
Victor Stinner1241ecc2015-01-30 00:16:14 +0100228 def _wait(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100229 """Wait until the process exit and return the process return code.
230
231 This method is a coroutine."""
232 if self._returncode is not None:
233 return self._returncode
234
Yury Selivanov7661db62016-05-16 15:38:39 -0400235 waiter = self._loop.create_future()
Victor Stinner47cd10d2015-01-30 00:05:19 +0100236 self._exit_waiters.append(waiter)
237 return (yield from waiter)
238
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700239 def _try_finish(self):
240 assert not self._finished
241 if self._returncode is None:
242 return
243 if all(p is not None and p.disconnected
244 for p in self._pipes.values()):
245 self._finished = True
Victor Stinner1b9763d2014-12-18 23:47:27 +0100246 self._call(self._call_connection_lost, None)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700247
248 def _call_connection_lost(self, exc):
249 try:
250 self._protocol.connection_lost(exc)
251 finally:
Victor Stinner47cd10d2015-01-30 00:05:19 +0100252 self._loop = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700253 self._proc = None
254 self._protocol = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700255
256
257class WriteSubprocessPipeProto(protocols.BaseProtocol):
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700258
259 def __init__(self, proc, fd):
260 self.proc = proc
261 self.fd = fd
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800262 self.pipe = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700263 self.disconnected = False
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700264
265 def connection_made(self, transport):
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700266 self.pipe = transport
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700267
Victor Stinneracdb7822014-07-14 18:33:40 +0200268 def __repr__(self):
269 return ('<%s fd=%s pipe=%r>'
270 % (self.__class__.__name__, self.fd, self.pipe))
271
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700272 def connection_lost(self, exc):
273 self.disconnected = True
274 self.proc._pipe_connection_lost(self.fd, exc)
Victor Stinner587feb12015-01-09 21:34:27 +0100275 self.proc = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700276
Guido van Rossum1e9a4462014-01-29 14:28:15 -0800277 def pause_writing(self):
278 self.proc._protocol.pause_writing()
279
280 def resume_writing(self):
281 self.proc._protocol.resume_writing()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700282
283
284class ReadSubprocessPipeProto(WriteSubprocessPipeProto,
285 protocols.Protocol):
286
287 def data_received(self, data):
288 self.proc._pipe_data_received(self.fd, data)