blob: fb8c2ba72fe81608418448f145a366011abc4442 [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
Yury Selivanov2a8911c2015-08-04 15:56:33 -04005from . import compat
Victor Stinner47cd10d2015-01-30 00:05:19 +01006from . import futures
Guido van Rossum0016e1d2013-10-30 14:56:49 -07007from . import protocols
Guido van Rossum0016e1d2013-10-30 14:56:49 -07008from . import transports
Victor Stinnerf951d282014-06-29 00:46:45 +02009from .coroutines import coroutine
Victor Stinneracdb7822014-07-14 18:33:40 +020010from .log import logger
Guido van Rossum0016e1d2013-10-30 14:56:49 -070011
12
Guido van Rossum0016e1d2013-10-30 14:56:49 -070013class BaseSubprocessTransport(transports.SubprocessTransport):
14
15 def __init__(self, loop, protocol, args, shell,
16 stdin, stdout, stderr, bufsize,
Victor Stinner47cd10d2015-01-30 00:05:19 +010017 waiter=None, extra=None, **kwargs):
Guido van Rossum0016e1d2013-10-30 14:56:49 -070018 super().__init__(extra)
Victor Stinner978a9af2015-01-29 17:50:58 +010019 self._closed = False
Guido van Rossum0016e1d2013-10-30 14:56:49 -070020 self._protocol = protocol
21 self._loop = loop
Victor Stinner47cd10d2015-01-30 00:05:19 +010022 self._proc = None
Victor Stinneracdb7822014-07-14 18:33:40 +020023 self._pid = None
Victor Stinner47cd10d2015-01-30 00:05:19 +010024 self._returncode = None
25 self._exit_waiters = []
26 self._pending_calls = collections.deque()
Guido van Rossum0016e1d2013-10-30 14:56:49 -070027 self._pipes = {}
Victor Stinner47cd10d2015-01-30 00:05:19 +010028 self._finished = False
29
Guido van Rossum0016e1d2013-10-30 14:56:49 -070030 if stdin == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010031 self._pipes[0] = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -070032 if stdout == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010033 self._pipes[1] = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -070034 if stderr == subprocess.PIPE:
Victor Stinner915bcb02014-02-01 22:49:59 +010035 self._pipes[2] = None
Victor Stinner47cd10d2015-01-30 00:05:19 +010036
37 # Create the child process: set the _proc attribute
Victor Stinner6fb1e742015-07-31 17:49:43 +020038 try:
39 self._start(args=args, shell=shell, stdin=stdin, stdout=stdout,
40 stderr=stderr, bufsize=bufsize, **kwargs)
41 except:
42 self.close()
43 raise
44
Victor Stinneracdb7822014-07-14 18:33:40 +020045 self._pid = self._proc.pid
Guido van Rossum0016e1d2013-10-30 14:56:49 -070046 self._extra['subprocess'] = self._proc
Victor Stinner47cd10d2015-01-30 00:05:19 +010047
Victor Stinneracdb7822014-07-14 18:33:40 +020048 if self._loop.get_debug():
49 if isinstance(args, (bytes, str)):
50 program = args
51 else:
52 program = args[0]
53 logger.debug('process %r created: pid %s',
54 program, self._pid)
55
Victor Stinner47cd10d2015-01-30 00:05:19 +010056 self._loop.create_task(self._connect_pipes(waiter))
57
Victor Stinneracdb7822014-07-14 18:33:40 +020058 def __repr__(self):
Victor Stinner978a9af2015-01-29 17:50:58 +010059 info = [self.__class__.__name__]
60 if self._closed:
61 info.append('closed')
Victor Stinner7a82afe2015-03-10 16:32:29 +010062 if self._pid is not None:
63 info.append('pid=%s' % self._pid)
Victor Stinneracdb7822014-07-14 18:33:40 +020064 if self._returncode is not None:
65 info.append('returncode=%s' % self._returncode)
Victor Stinner7a82afe2015-03-10 16:32:29 +010066 elif self._pid is not None:
Victor Stinner4e82fb92015-02-17 22:50:33 +010067 info.append('running')
Victor Stinner7a82afe2015-03-10 16:32:29 +010068 else:
69 info.append('not started')
Victor Stinneracdb7822014-07-14 18:33:40 +020070
71 stdin = self._pipes.get(0)
72 if stdin is not None:
73 info.append('stdin=%s' % stdin.pipe)
74
75 stdout = self._pipes.get(1)
76 stderr = self._pipes.get(2)
77 if stdout is not None and stderr is stdout:
78 info.append('stdout=stderr=%s' % stdout.pipe)
79 else:
80 if stdout is not None:
81 info.append('stdout=%s' % stdout.pipe)
82 if stderr is not None:
83 info.append('stderr=%s' % stderr.pipe)
84
85 return '<%s>' % ' '.join(info)
Guido van Rossum0016e1d2013-10-30 14:56:49 -070086
87 def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):
88 raise NotImplementedError
89
Yury Selivanov5bb1afb2015-11-16 12:43:21 -050090 def is_closing(self):
91 return self._closed
92
Guido van Rossum0016e1d2013-10-30 14:56:49 -070093 def close(self):
Victor Stinnerf2e43cb2015-01-30 01:20:44 +010094 if self._closed:
95 return
Victor Stinner978a9af2015-01-29 17:50:58 +010096 self._closed = True
Victor Stinner47cd10d2015-01-30 00:05:19 +010097
Guido van Rossum0016e1d2013-10-30 14:56:49 -070098 for proto in self._pipes.values():
Victor Stinner29ad0112015-01-15 00:04:21 +010099 if proto is None:
100 continue
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700101 proto.pipe.close()
Victor Stinner47cd10d2015-01-30 00:05:19 +0100102
Victor Stinner8e368122015-02-10 14:49:32 +0100103 if (self._proc is not None
104 # the child process finished?
105 and self._returncode is None
106 # the child process finished but the transport was not notified yet?
107 and self._proc.poll() is None
108 ):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100109 if self._loop.get_debug():
110 logger.warning('Close running child process: kill %r', self)
111
112 try:
113 self._proc.kill()
114 except ProcessLookupError:
115 pass
116
Victor Stinnerf2e43cb2015-01-30 01:20:44 +0100117 # Don't clear the _proc reference yet: _post_init() may still run
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700118
Victor Stinner978a9af2015-01-29 17:50:58 +0100119 # On Python 3.3 and older, objects with a destructor part of a reference
120 # cycle are never destroyed. It's not more the case on Python 3.4 thanks
121 # to the PEP 442.
Yury Selivanov2a8911c2015-08-04 15:56:33 -0400122 if compat.PY34:
Victor Stinner978a9af2015-01-29 17:50:58 +0100123 def __del__(self):
124 if not self._closed:
Victor Stinnere19558a2016-03-23 00:28:08 +0100125 warnings.warn("unclosed transport %r" % self, ResourceWarning,
126 source=self)
Victor Stinner978a9af2015-01-29 17:50:58 +0100127 self.close()
128
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)