blob: 08080bd70124928fda4e13562d4f7c5bec61d9d8 [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:
125 warnings.warn("unclosed transport %r" % self, ResourceWarning)
126 self.close()
127
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700128 def get_pid(self):
Victor Stinneracdb7822014-07-14 18:33:40 +0200129 return self._pid
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700130
131 def get_returncode(self):
132 return self._returncode
133
134 def get_pipe_transport(self, fd):
135 if fd in self._pipes:
136 return self._pipes[fd].pipe
137 else:
138 return None
139
Victor Stinner47cd10d2015-01-30 00:05:19 +0100140 def _check_proc(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100141 if self._proc is None:
142 raise ProcessLookupError()
143
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700144 def send_signal(self, signal):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100145 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700146 self._proc.send_signal(signal)
147
148 def terminate(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100149 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700150 self._proc.terminate()
151
152 def kill(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100153 self._check_proc()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700154 self._proc.kill()
155
Victor Stinnerf951d282014-06-29 00:46:45 +0200156 @coroutine
Victor Stinner47cd10d2015-01-30 00:05:19 +0100157 def _connect_pipes(self, waiter):
Victor Stinnerf651a602015-01-14 02:10:33 +0100158 try:
159 proc = self._proc
160 loop = self._loop
Victor Stinner47cd10d2015-01-30 00:05:19 +0100161
Victor Stinnerf651a602015-01-14 02:10:33 +0100162 if proc.stdin is not None:
163 _, pipe = yield from loop.connect_write_pipe(
164 lambda: WriteSubprocessPipeProto(self, 0),
165 proc.stdin)
166 self._pipes[0] = pipe
Victor Stinner47cd10d2015-01-30 00:05:19 +0100167
Victor Stinnerf651a602015-01-14 02:10:33 +0100168 if proc.stdout is not None:
169 _, pipe = yield from loop.connect_read_pipe(
170 lambda: ReadSubprocessPipeProto(self, 1),
171 proc.stdout)
172 self._pipes[1] = pipe
Victor Stinner47cd10d2015-01-30 00:05:19 +0100173
Victor Stinnerf651a602015-01-14 02:10:33 +0100174 if proc.stderr is not None:
175 _, pipe = yield from loop.connect_read_pipe(
176 lambda: ReadSubprocessPipeProto(self, 2),
177 proc.stderr)
178 self._pipes[2] = pipe
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800179
Victor Stinnerf651a602015-01-14 02:10:33 +0100180 assert self._pending_calls is not None
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800181
Victor Stinner47cd10d2015-01-30 00:05:19 +0100182 loop.call_soon(self._protocol.connection_made, self)
Victor Stinnerf651a602015-01-14 02:10:33 +0100183 for callback, data in self._pending_calls:
Victor Stinner47cd10d2015-01-30 00:05:19 +0100184 loop.call_soon(callback, *data)
Victor Stinnerf651a602015-01-14 02:10:33 +0100185 self._pending_calls = None
Victor Stinner47cd10d2015-01-30 00:05:19 +0100186 except Exception as exc:
187 if waiter is not None and not waiter.cancelled():
188 waiter.set_exception(exc)
189 else:
190 if waiter is not None and not waiter.cancelled():
191 waiter.set_result(None)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700192
193 def _call(self, cb, *data):
194 if self._pending_calls is not None:
195 self._pending_calls.append((cb, data))
196 else:
197 self._loop.call_soon(cb, *data)
198
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700199 def _pipe_connection_lost(self, fd, exc):
200 self._call(self._protocol.pipe_connection_lost, fd, exc)
201 self._try_finish()
202
203 def _pipe_data_received(self, fd, data):
204 self._call(self._protocol.pipe_data_received, fd, data)
205
206 def _process_exited(self, returncode):
207 assert returncode is not None, returncode
208 assert self._returncode is None, self._returncode
Victor Stinneracdb7822014-07-14 18:33:40 +0200209 if self._loop.get_debug():
210 logger.info('%r exited with return code %r',
211 self, returncode)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700212 self._returncode = returncode
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700213 self._call(self._protocol.process_exited)
214 self._try_finish()
215
Victor Stinner47cd10d2015-01-30 00:05:19 +0100216 # wake up futures waiting for wait()
217 for waiter in self._exit_waiters:
218 if not waiter.cancelled():
219 waiter.set_result(returncode)
220 self._exit_waiters = None
221
Victor Stinnerd6dc7bd2015-03-18 11:37:42 +0100222 @coroutine
Victor Stinner1241ecc2015-01-30 00:16:14 +0100223 def _wait(self):
Victor Stinner47cd10d2015-01-30 00:05:19 +0100224 """Wait until the process exit and return the process return code.
225
226 This method is a coroutine."""
227 if self._returncode is not None:
228 return self._returncode
229
Yury Selivanov7661db62016-05-16 15:38:39 -0400230 waiter = self._loop.create_future()
Victor Stinner47cd10d2015-01-30 00:05:19 +0100231 self._exit_waiters.append(waiter)
232 return (yield from waiter)
233
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700234 def _try_finish(self):
235 assert not self._finished
236 if self._returncode is None:
237 return
238 if all(p is not None and p.disconnected
239 for p in self._pipes.values()):
240 self._finished = True
Victor Stinner1b9763d2014-12-18 23:47:27 +0100241 self._call(self._call_connection_lost, None)
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700242
243 def _call_connection_lost(self, exc):
244 try:
245 self._protocol.connection_lost(exc)
246 finally:
Victor Stinner47cd10d2015-01-30 00:05:19 +0100247 self._loop = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700248 self._proc = None
249 self._protocol = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700250
251
252class WriteSubprocessPipeProto(protocols.BaseProtocol):
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700253
254 def __init__(self, proc, fd):
255 self.proc = proc
256 self.fd = fd
Victor Stinneraaabc4f2014-01-29 14:22:56 -0800257 self.pipe = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700258 self.disconnected = False
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700259
260 def connection_made(self, transport):
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700261 self.pipe = transport
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700262
Victor Stinneracdb7822014-07-14 18:33:40 +0200263 def __repr__(self):
264 return ('<%s fd=%s pipe=%r>'
265 % (self.__class__.__name__, self.fd, self.pipe))
266
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700267 def connection_lost(self, exc):
268 self.disconnected = True
269 self.proc._pipe_connection_lost(self.fd, exc)
Victor Stinner587feb12015-01-09 21:34:27 +0100270 self.proc = None
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700271
Guido van Rossum1e9a4462014-01-29 14:28:15 -0800272 def pause_writing(self):
273 self.proc._protocol.pause_writing()
274
275 def resume_writing(self):
276 self.proc._protocol.resume_writing()
Guido van Rossum0016e1d2013-10-30 14:56:49 -0700277
278
279class ReadSubprocessPipeProto(WriteSubprocessPipeProto,
280 protocols.Protocol):
281
282 def data_received(self, data):
283 self.proc._pipe_data_received(self.fd, data)