blob: e4c843d54bacbaa67392e6c0dd64b8f3ee3a708b [file] [log] [blame]
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001# subprocess - Subprocesses with accessible I/O streams
2#
Tim Peterse718f612004-10-12 21:51:32 +00003# For more information about this module, see PEP 324.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00004#
Peter Astrandc26516b2005-02-21 08:13:02 +00005# This module should remain compatible with Python 2.2, see PEP 291.
6#
Peter Astrand3a708df2005-09-23 17:37:29 +00007# Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00008#
Peter Astrand69bf13f2005-02-14 08:56:32 +00009# Licensed to PSF under a Contributor Agreement.
Peter Astrand3a708df2005-09-23 17:37:29 +000010# See http://www.python.org/2.4/license for licensing details.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000011
Raymond Hettinger837dd932004-10-17 16:36:53 +000012r"""subprocess - Subprocesses with accessible I/O streams
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000013
Fredrik Lundh15aaacc2004-10-17 14:47:05 +000014This module allows you to spawn processes, connect to their
15input/output/error pipes, and obtain their return codes. This module
16intends to replace several other, older modules and functions, like:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000017
18os.system
19os.spawn*
20os.popen*
21popen2.*
22commands.*
23
24Information about how the subprocess module can be used to replace these
25modules and functions can be found below.
26
27
28
29Using the subprocess module
30===========================
31This module defines one class called Popen:
32
33class Popen(args, bufsize=0, executable=None,
34 stdin=None, stdout=None, stderr=None,
35 preexec_fn=None, close_fds=False, shell=False,
36 cwd=None, env=None, universal_newlines=False,
37 startupinfo=None, creationflags=0):
38
39
40Arguments are:
41
42args should be a string, or a sequence of program arguments. The
43program to execute is normally the first item in the args sequence or
44string, but can be explicitly set by using the executable argument.
45
46On UNIX, with shell=False (default): In this case, the Popen class
47uses os.execvp() to execute the child program. args should normally
48be a sequence. A string will be treated as a sequence with the string
49as the only item (the program to execute).
50
51On UNIX, with shell=True: If args is a string, it specifies the
52command string to execute through the shell. If args is a sequence,
53the first item specifies the command string, and any additional items
54will be treated as additional shell arguments.
55
56On Windows: the Popen class uses CreateProcess() to execute the child
57program, which operates on strings. If args is a sequence, it will be
58converted to a string using the list2cmdline method. Please note that
59not all MS Windows applications interpret the command line the same
60way: The list2cmdline is designed for applications using the same
61rules as the MS C runtime.
62
63bufsize, if given, has the same meaning as the corresponding argument
64to the built-in open() function: 0 means unbuffered, 1 means line
65buffered, any other positive value means use a buffer of
66(approximately) that size. A negative bufsize means to use the system
67default, which usually means fully buffered. The default value for
68bufsize is 0 (unbuffered).
69
70stdin, stdout and stderr specify the executed programs' standard
71input, standard output and standard error file handles, respectively.
72Valid values are PIPE, an existing file descriptor (a positive
73integer), an existing file object, and None. PIPE indicates that a
74new pipe to the child should be created. With None, no redirection
75will occur; the child's file handles will be inherited from the
76parent. Additionally, stderr can be STDOUT, which indicates that the
77stderr data from the applications should be captured into the same
78file handle as for stdout.
79
80If preexec_fn is set to a callable object, this object will be called
81in the child process just before the child is executed.
82
83If close_fds is true, all file descriptors except 0, 1 and 2 will be
84closed before the child process is executed.
85
86if shell is true, the specified command will be executed through the
87shell.
88
89If cwd is not None, the current directory will be changed to cwd
90before the child is executed.
91
92If env is not None, it defines the environment variables for the new
93process.
94
95If universal_newlines is true, the file objects stdout and stderr are
96opened as a text files, but lines may be terminated by any of '\n',
97the Unix end-of-line convention, '\r', the Macintosh convention or
98'\r\n', the Windows convention. All of these external representations
99are seen as '\n' by the Python program. Note: This feature is only
100available if Python is built with universal newline support (the
101default). Also, the newlines attribute of the file objects stdout,
102stdin and stderr are not updated by the communicate() method.
103
104The startupinfo and creationflags, if given, will be passed to the
105underlying CreateProcess() function. They can specify things such as
106appearance of the main window and priority for the new process.
107(Windows only)
108
109
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000110This module also defines some shortcut functions:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000111
Peter Astrand5f5e1412004-12-05 20:15:36 +0000112call(*popenargs, **kwargs):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000113 Run command with arguments. Wait for command to complete, then
114 return the returncode attribute.
115
116 The arguments are the same as for the Popen constructor. Example:
117
118 retcode = call(["ls", "-l"])
119
Peter Astrand454f7672005-01-01 09:36:35 +0000120check_call(*popenargs, **kwargs):
121 Run command with arguments. Wait for command to complete. If the
122 exit code was zero then return, otherwise raise
123 CalledProcessError. The CalledProcessError object will have the
Peter Astrand7d1d4362006-07-14 14:04:45 +0000124 return code in the returncode attribute.
Peter Astrand454f7672005-01-01 09:36:35 +0000125
126 The arguments are the same as for the Popen constructor. Example:
127
128 check_call(["ls", "-l"])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000129
Gregory P. Smith26576802008-12-05 02:27:01 +0000130check_output(*popenargs, **kwargs):
Georg Brandl6ab5d082009-12-20 14:33:20 +0000131 Run command with arguments and return its output as a byte string.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000132
Georg Brandl6ab5d082009-12-20 14:33:20 +0000133 If the exit code was non-zero it raises a CalledProcessError. The
134 CalledProcessError object will have the return code in the returncode
135 attribute and output in the output attribute.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000136
Georg Brandl6ab5d082009-12-20 14:33:20 +0000137 The arguments are the same as for the Popen constructor. Example:
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000138
Georg Brandl02e7dfd2009-12-28 08:09:32 +0000139 output = check_output(["ls", "-l", "/dev/null"])
140
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000141
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000142Exceptions
143----------
144Exceptions raised in the child process, before the new program has
145started to execute, will be re-raised in the parent. Additionally,
146the exception object will have one extra attribute called
147'child_traceback', which is a string containing traceback information
148from the childs point of view.
149
150The most common exception raised is OSError. This occurs, for
151example, when trying to execute a non-existent file. Applications
152should prepare for OSErrors.
153
154A ValueError will be raised if Popen is called with invalid arguments.
155
Gregory P. Smith26576802008-12-05 02:27:01 +0000156check_call() and check_output() will raise CalledProcessError, if the
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000157called process returns a non-zero return code.
Peter Astrand454f7672005-01-01 09:36:35 +0000158
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000159
160Security
161--------
162Unlike some other popen functions, this implementation will never call
163/bin/sh implicitly. This means that all characters, including shell
164metacharacters, can safely be passed to child processes.
165
166
167Popen objects
168=============
169Instances of the Popen class have the following methods:
170
171poll()
172 Check if child process has terminated. Returns returncode
173 attribute.
174
175wait()
176 Wait for child process to terminate. Returns returncode attribute.
177
178communicate(input=None)
179 Interact with process: Send data to stdin. Read data from stdout
180 and stderr, until end-of-file is reached. Wait for process to
Neal Norwitza186ee22006-12-29 03:01:53 +0000181 terminate. The optional input argument should be a string to be
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000182 sent to the child process, or None, if no data should be sent to
183 the child.
Tim Peterse718f612004-10-12 21:51:32 +0000184
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000185 communicate() returns a tuple (stdout, stderr).
186
187 Note: The data read is buffered in memory, so do not use this
188 method if the data size is large or unlimited.
189
190The following attributes are also available:
191
192stdin
193 If the stdin argument is PIPE, this attribute is a file object
194 that provides input to the child process. Otherwise, it is None.
195
196stdout
197 If the stdout argument is PIPE, this attribute is a file object
198 that provides output from the child process. Otherwise, it is
199 None.
200
201stderr
202 If the stderr argument is PIPE, this attribute is file object that
203 provides error output from the child process. Otherwise, it is
204 None.
205
206pid
207 The process ID of the child process.
208
209returncode
210 The child return code. A None value indicates that the process
211 hasn't terminated yet. A negative value -N indicates that the
212 child was terminated by signal N (UNIX only).
213
214
215Replacing older functions with the subprocess module
216====================================================
217In this section, "a ==> b" means that b can be used as a replacement
218for a.
219
220Note: All functions in this section fail (more or less) silently if
221the executed program cannot be found; this module raises an OSError
222exception.
223
224In the following examples, we assume that the subprocess module is
225imported with "from subprocess import *".
226
227
228Replacing /bin/sh shell backquote
229---------------------------------
230output=`mycmd myarg`
231==>
232output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
233
234
235Replacing shell pipe line
236-------------------------
237output=`dmesg | grep hda`
238==>
239p1 = Popen(["dmesg"], stdout=PIPE)
Peter Astrand6fdf3cb2004-11-30 18:06:42 +0000240p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000241output = p2.communicate()[0]
242
243
244Replacing os.system()
245---------------------
246sts = os.system("mycmd" + " myarg")
247==>
248p = Popen("mycmd" + " myarg", shell=True)
Neal Norwitz84404832006-07-10 00:05:34 +0000249pid, sts = os.waitpid(p.pid, 0)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000250
251Note:
252
253* Calling the program through the shell is usually not required.
254
255* It's easier to look at the returncode attribute than the
256 exitstatus.
257
258A more real-world example would look like this:
259
260try:
261 retcode = call("mycmd" + " myarg", shell=True)
262 if retcode < 0:
263 print >>sys.stderr, "Child was terminated by signal", -retcode
264 else:
265 print >>sys.stderr, "Child returned", retcode
266except OSError, e:
267 print >>sys.stderr, "Execution failed:", e
268
269
270Replacing os.spawn*
271-------------------
Tim Peterse718f612004-10-12 21:51:32 +0000272P_NOWAIT example:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000273
274pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
275==>
276pid = Popen(["/bin/mycmd", "myarg"]).pid
277
278
279P_WAIT example:
280
281retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
282==>
283retcode = call(["/bin/mycmd", "myarg"])
284
285
Tim Peterse718f612004-10-12 21:51:32 +0000286Vector example:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000287
288os.spawnvp(os.P_NOWAIT, path, args)
289==>
290Popen([path] + args[1:])
291
292
Tim Peterse718f612004-10-12 21:51:32 +0000293Environment example:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000294
295os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
296==>
297Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
298
299
Tim Peterse718f612004-10-12 21:51:32 +0000300Replacing os.popen*
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000301-------------------
Philip Jenvey8b902042009-09-29 19:10:15 +0000302pipe = os.popen("cmd", mode='r', bufsize)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000303==>
Philip Jenvey8b902042009-09-29 19:10:15 +0000304pipe = Popen("cmd", shell=True, bufsize=bufsize, stdout=PIPE).stdout
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000305
Philip Jenvey8b902042009-09-29 19:10:15 +0000306pipe = os.popen("cmd", mode='w', bufsize)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000307==>
Philip Jenvey8b902042009-09-29 19:10:15 +0000308pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000309
310
Philip Jenvey8b902042009-09-29 19:10:15 +0000311(child_stdin, child_stdout) = os.popen2("cmd", mode, bufsize)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000312==>
Philip Jenvey8b902042009-09-29 19:10:15 +0000313p = Popen("cmd", shell=True, bufsize=bufsize,
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000314 stdin=PIPE, stdout=PIPE, close_fds=True)
315(child_stdin, child_stdout) = (p.stdin, p.stdout)
316
317
318(child_stdin,
319 child_stdout,
Philip Jenvey8b902042009-09-29 19:10:15 +0000320 child_stderr) = os.popen3("cmd", mode, bufsize)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000321==>
Philip Jenvey8b902042009-09-29 19:10:15 +0000322p = Popen("cmd", shell=True, bufsize=bufsize,
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000323 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
324(child_stdin,
325 child_stdout,
326 child_stderr) = (p.stdin, p.stdout, p.stderr)
327
328
Philip Jenvey8b902042009-09-29 19:10:15 +0000329(child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode,
330 bufsize)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000331==>
Philip Jenvey8b902042009-09-29 19:10:15 +0000332p = Popen("cmd", shell=True, bufsize=bufsize,
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000333 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
334(child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
335
Philip Jenvey8b902042009-09-29 19:10:15 +0000336On Unix, os.popen2, os.popen3 and os.popen4 also accept a sequence as
337the command to execute, in which case arguments will be passed
338directly to the program without shell intervention. This usage can be
339replaced as follows:
340
341(child_stdin, child_stdout) = os.popen2(["/bin/ls", "-l"], mode,
342 bufsize)
343==>
344p = Popen(["/bin/ls", "-l"], bufsize=bufsize, stdin=PIPE, stdout=PIPE)
345(child_stdin, child_stdout) = (p.stdin, p.stdout)
346
347Return code handling translates as follows:
348
349pipe = os.popen("cmd", 'w')
350...
351rc = pipe.close()
Florent Xiclunacf741ce2010-03-08 10:58:12 +0000352if rc is not None and rc % 256:
Philip Jenvey8b902042009-09-29 19:10:15 +0000353 print "There were some errors"
354==>
355process = Popen("cmd", 'w', shell=True, stdin=PIPE)
356...
357process.stdin.close()
358if process.wait() != 0:
359 print "There were some errors"
360
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000361
362Replacing popen2.*
363------------------
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000364(child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
365==>
366p = Popen(["somestring"], shell=True, bufsize=bufsize
367 stdin=PIPE, stdout=PIPE, close_fds=True)
368(child_stdout, child_stdin) = (p.stdout, p.stdin)
369
Philip Jenvey8b902042009-09-29 19:10:15 +0000370On Unix, popen2 also accepts a sequence as the command to execute, in
371which case arguments will be passed directly to the program without
372shell intervention. This usage can be replaced as follows:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000373
Philip Jenvey8b902042009-09-29 19:10:15 +0000374(child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize,
375 mode)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000376==>
377p = Popen(["mycmd", "myarg"], bufsize=bufsize,
378 stdin=PIPE, stdout=PIPE, close_fds=True)
379(child_stdout, child_stdin) = (p.stdout, p.stdin)
380
Neal Norwitzaa87fb62007-05-11 06:23:01 +0000381The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen,
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000382except that:
383
384* subprocess.Popen raises an exception if the execution fails
385* the capturestderr argument is replaced with the stderr argument.
386* stdin=PIPE and stdout=PIPE must be specified.
387* popen2 closes all filedescriptors by default, but you have to specify
Tim Peterse718f612004-10-12 21:51:32 +0000388 close_fds=True with subprocess.Popen.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000389"""
390
391import sys
392mswindows = (sys.platform == "win32")
393
394import os
Peter Astrandc26516b2005-02-21 08:13:02 +0000395import types
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000396import traceback
Gregory P. Smith87d49792008-01-19 20:57:59 +0000397import gc
Christian Heimese74c8f22008-04-19 02:23:57 +0000398import signal
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000399
Peter Astrand454f7672005-01-01 09:36:35 +0000400# Exception classes used by this module.
Peter Astrand7d1d4362006-07-14 14:04:45 +0000401class CalledProcessError(Exception):
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000402 """This exception is raised when a process run by check_call() or
Gregory P. Smith26576802008-12-05 02:27:01 +0000403 check_output() returns a non-zero exit status.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000404 The exit status will be stored in the returncode attribute;
Gregory P. Smith26576802008-12-05 02:27:01 +0000405 check_output() will also store the output in the output attribute.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000406 """
407 def __init__(self, returncode, cmd, output=None):
Peter Astrand7d1d4362006-07-14 14:04:45 +0000408 self.returncode = returncode
409 self.cmd = cmd
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000410 self.output = output
Peter Astrand7d1d4362006-07-14 14:04:45 +0000411 def __str__(self):
412 return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
Tim Peters73a9ead2006-07-18 21:55:15 +0000413
Peter Astrand454f7672005-01-01 09:36:35 +0000414
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000415if mswindows:
416 import threading
417 import msvcrt
Fredrik Lundh3e73a012004-10-13 18:19:18 +0000418 if 0: # <-- change this to use pywin32 instead of the _subprocess driver
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000419 import pywintypes
Tim Peterse8374a52004-10-13 03:15:00 +0000420 from win32api import GetStdHandle, STD_INPUT_HANDLE, \
421 STD_OUTPUT_HANDLE, STD_ERROR_HANDLE
422 from win32api import GetCurrentProcess, DuplicateHandle, \
423 GetModuleFileName, GetVersion
Peter Astrandc1d65362004-11-07 14:30:34 +0000424 from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000425 from win32pipe import CreatePipe
Tim Peterse8374a52004-10-13 03:15:00 +0000426 from win32process import CreateProcess, STARTUPINFO, \
427 GetExitCodeProcess, STARTF_USESTDHANDLES, \
Peter Astrandc1d65362004-11-07 14:30:34 +0000428 STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE
Christian Heimese74c8f22008-04-19 02:23:57 +0000429 from win32process import TerminateProcess
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000430 from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0
Fredrik Lundh3e73a012004-10-13 18:19:18 +0000431 else:
432 from _subprocess import *
433 class STARTUPINFO:
434 dwFlags = 0
435 hStdInput = None
436 hStdOutput = None
437 hStdError = None
Georg Brandlad624892006-06-04 22:15:37 +0000438 wShowWindow = 0
Fredrik Lundh3e73a012004-10-13 18:19:18 +0000439 class pywintypes:
440 error = IOError
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000441else:
442 import select
Gregory P. Smithdd7ca242009-07-04 01:49:29 +0000443 _has_poll = hasattr(select, 'poll')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000444 import errno
445 import fcntl
446 import pickle
447
Amaury Forgeot d'Arcce32eb72009-07-09 22:37:22 +0000448 # When select or poll has indicated that the file is writable,
449 # we can write up to _PIPE_BUF bytes without risk of blocking.
450 # POSIX defines PIPE_BUF as >= 512.
451 _PIPE_BUF = getattr(select, 'PIPE_BUF', 512)
452
453
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000454__all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call",
Gregory P. Smith26576802008-12-05 02:27:01 +0000455 "check_output", "CalledProcessError"]
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000456
457try:
458 MAXFD = os.sysconf("SC_OPEN_MAX")
459except:
460 MAXFD = 256
461
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000462_active = []
463
464def _cleanup():
465 for inst in _active[:]:
Georg Brandl02e7dfd2009-12-28 08:09:32 +0000466 res = inst._internal_poll(_deadstate=sys.maxint)
467 if res is not None and res >= 0:
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000468 try:
469 _active.remove(inst)
470 except ValueError:
471 # This can happen if two threads create a new Popen instance.
472 # It's harmless that it was already removed, so ignore.
473 pass
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000474
475PIPE = -1
476STDOUT = -2
477
478
Gregory P. Smithcce211f2010-03-01 00:05:08 +0000479def _eintr_retry_call(func, *args):
480 while True:
481 try:
482 return func(*args)
483 except OSError, e:
484 if e.errno == errno.EINTR:
485 continue
486 raise
487
488
Peter Astrand5f5e1412004-12-05 20:15:36 +0000489def call(*popenargs, **kwargs):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000490 """Run command with arguments. Wait for command to complete, then
491 return the returncode attribute.
492
493 The arguments are the same as for the Popen constructor. Example:
494
495 retcode = call(["ls", "-l"])
496 """
Peter Astrand5f5e1412004-12-05 20:15:36 +0000497 return Popen(*popenargs, **kwargs).wait()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000498
499
Peter Astrand454f7672005-01-01 09:36:35 +0000500def check_call(*popenargs, **kwargs):
501 """Run command with arguments. Wait for command to complete. If
502 the exit code was zero then return, otherwise raise
503 CalledProcessError. The CalledProcessError object will have the
Peter Astrand7d1d4362006-07-14 14:04:45 +0000504 return code in the returncode attribute.
Peter Astrand454f7672005-01-01 09:36:35 +0000505
506 The arguments are the same as for the Popen constructor. Example:
507
508 check_call(["ls", "-l"])
509 """
510 retcode = call(*popenargs, **kwargs)
Peter Astrand454f7672005-01-01 09:36:35 +0000511 if retcode:
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000512 cmd = kwargs.get("args")
513 if cmd is None:
514 cmd = popenargs[0]
Peter Astrand7d1d4362006-07-14 14:04:45 +0000515 raise CalledProcessError(retcode, cmd)
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000516 return 0
517
518
Gregory P. Smith26576802008-12-05 02:27:01 +0000519def check_output(*popenargs, **kwargs):
Georg Brandl6ab5d082009-12-20 14:33:20 +0000520 r"""Run command with arguments and return its output as a byte string.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000521
522 If the exit code was non-zero it raises a CalledProcessError. The
523 CalledProcessError object will have the return code in the returncode
524 attribute and output in the output attribute.
525
526 The arguments are the same as for the Popen constructor. Example:
527
Gregory P. Smith26576802008-12-05 02:27:01 +0000528 >>> check_output(["ls", "-l", "/dev/null"])
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000529 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
530
531 The stdout argument is not allowed as it is used internally.
Georg Brandl02e7dfd2009-12-28 08:09:32 +0000532 To capture standard error in the result, use stderr=STDOUT.
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000533
Gregory P. Smith26576802008-12-05 02:27:01 +0000534 >>> check_output(["/bin/sh", "-c",
Georg Brandl6ab5d082009-12-20 14:33:20 +0000535 ... "ls -l non_existent_file ; exit 0"],
Georg Brandl02e7dfd2009-12-28 08:09:32 +0000536 ... stderr=STDOUT)
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000537 'ls: non_existent_file: No such file or directory\n'
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000538 """
539 if 'stdout' in kwargs:
540 raise ValueError('stdout argument not allowed, it will be overridden.')
Amaury Forgeot d'Arc5fe420e2009-06-18 22:32:50 +0000541 process = Popen(stdout=PIPE, *popenargs, **kwargs)
Gregory P. Smith97f49f42008-12-04 20:21:09 +0000542 output, unused_err = process.communicate()
543 retcode = process.poll()
544 if retcode:
545 cmd = kwargs.get("args")
546 if cmd is None:
547 cmd = popenargs[0]
548 raise CalledProcessError(retcode, cmd, output=output)
549 return output
Peter Astrand454f7672005-01-01 09:36:35 +0000550
551
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000552def list2cmdline(seq):
553 """
554 Translate a sequence of arguments into a command line
555 string, using the same rules as the MS C runtime:
556
557 1) Arguments are delimited by white space, which is either a
558 space or a tab.
559
560 2) A string surrounded by double quotation marks is
561 interpreted as a single argument, regardless of white space
Gregory P. Smith70eb2f92008-01-19 22:49:37 +0000562 or pipe characters contained within. A quoted string can be
563 embedded in an argument.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000564
565 3) A double quotation mark preceded by a backslash is
566 interpreted as a literal double quotation mark.
567
568 4) Backslashes are interpreted literally, unless they
569 immediately precede a double quotation mark.
570
571 5) If backslashes immediately precede a double quotation mark,
572 every pair of backslashes is interpreted as a literal
573 backslash. If the number of backslashes is odd, the last
574 backslash escapes the next double quotation mark as
575 described in rule 3.
576 """
577
578 # See
Eric Smithd19915e2009-11-09 15:16:23 +0000579 # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx
580 # or search http://msdn.microsoft.com for
581 # "Parsing C++ Command-Line Arguments"
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000582 result = []
583 needquote = False
584 for arg in seq:
585 bs_buf = []
586
587 # Add a space to separate this argument from the others
588 if result:
589 result.append(' ')
590
Gregory P. Smith70eb2f92008-01-19 22:49:37 +0000591 needquote = (" " in arg) or ("\t" in arg) or ("|" in arg) or not arg
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000592 if needquote:
593 result.append('"')
594
595 for c in arg:
596 if c == '\\':
Tim Peterse718f612004-10-12 21:51:32 +0000597 # Don't know if we need to double yet.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000598 bs_buf.append(c)
599 elif c == '"':
Gregory P. Smithe047e6d2008-01-19 20:49:02 +0000600 # Double backslashes.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000601 result.append('\\' * len(bs_buf)*2)
602 bs_buf = []
603 result.append('\\"')
604 else:
605 # Normal char
606 if bs_buf:
607 result.extend(bs_buf)
608 bs_buf = []
609 result.append(c)
610
Gregory P. Smithe047e6d2008-01-19 20:49:02 +0000611 # Add remaining backslashes, if any.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000612 if bs_buf:
613 result.extend(bs_buf)
614
615 if needquote:
Peter Astrand7e78ade2005-03-03 21:10:23 +0000616 result.extend(bs_buf)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000617 result.append('"')
618
619 return ''.join(result)
620
621
622class Popen(object):
623 def __init__(self, args, bufsize=0, executable=None,
624 stdin=None, stdout=None, stderr=None,
625 preexec_fn=None, close_fds=False, shell=False,
626 cwd=None, env=None, universal_newlines=False,
627 startupinfo=None, creationflags=0):
628 """Create new Popen instance."""
629 _cleanup()
630
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000631 self._child_created = False
Peter Astrand738131d2004-11-30 21:04:45 +0000632 if not isinstance(bufsize, (int, long)):
633 raise TypeError("bufsize must be an integer")
634
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000635 if mswindows:
Tim Peterse8374a52004-10-13 03:15:00 +0000636 if preexec_fn is not None:
637 raise ValueError("preexec_fn is not supported on Windows "
638 "platforms")
Peter Astrand81a191b2007-05-26 22:18:20 +0000639 if close_fds and (stdin is not None or stdout is not None or
640 stderr is not None):
Tim Peterse8374a52004-10-13 03:15:00 +0000641 raise ValueError("close_fds is not supported on Windows "
Peter Astrand81a191b2007-05-26 22:18:20 +0000642 "platforms if you redirect stdin/stdout/stderr")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000643 else:
644 # POSIX
Tim Peterse8374a52004-10-13 03:15:00 +0000645 if startupinfo is not None:
646 raise ValueError("startupinfo is only supported on Windows "
647 "platforms")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000648 if creationflags != 0:
Tim Peterse8374a52004-10-13 03:15:00 +0000649 raise ValueError("creationflags is only supported on Windows "
650 "platforms")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000651
Tim Peterse718f612004-10-12 21:51:32 +0000652 self.stdin = None
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000653 self.stdout = None
654 self.stderr = None
655 self.pid = None
656 self.returncode = None
657 self.universal_newlines = universal_newlines
658
659 # Input and output objects. The general principle is like
660 # this:
661 #
662 # Parent Child
663 # ------ -----
664 # p2cwrite ---stdin---> p2cread
665 # c2pread <--stdout--- c2pwrite
666 # errread <--stderr--- errwrite
667 #
668 # On POSIX, the child objects are file descriptors. On
669 # Windows, these are Windows file handles. The parent objects
670 # are file descriptors on both platforms. The parent objects
671 # are None when not using PIPEs. The child objects are None
672 # when not redirecting.
Tim Peterse718f612004-10-12 21:51:32 +0000673
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000674 (p2cread, p2cwrite,
675 c2pread, c2pwrite,
676 errread, errwrite) = self._get_handles(stdin, stdout, stderr)
677
678 self._execute_child(args, executable, preexec_fn, close_fds,
679 cwd, env, universal_newlines,
680 startupinfo, creationflags, shell,
681 p2cread, p2cwrite,
682 c2pread, c2pwrite,
683 errread, errwrite)
684
Peter Astrand5f9c6ae2007-02-06 15:37:50 +0000685 if mswindows:
Hirokazu Yamamotoeacbbdf2009-03-03 22:18:14 +0000686 if p2cwrite is not None:
687 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)
688 if c2pread is not None:
689 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0)
690 if errread is not None:
691 errread = msvcrt.open_osfhandle(errread.Detach(), 0)
Peter Astrand5f9c6ae2007-02-06 15:37:50 +0000692
Peter Astrandf5400032007-02-02 19:06:36 +0000693 if p2cwrite is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000694 self.stdin = os.fdopen(p2cwrite, 'wb', bufsize)
Peter Astrandf5400032007-02-02 19:06:36 +0000695 if c2pread is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000696 if universal_newlines:
697 self.stdout = os.fdopen(c2pread, 'rU', bufsize)
698 else:
699 self.stdout = os.fdopen(c2pread, 'rb', bufsize)
Peter Astrandf5400032007-02-02 19:06:36 +0000700 if errread is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000701 if universal_newlines:
702 self.stderr = os.fdopen(errread, 'rU', bufsize)
703 else:
704 self.stderr = os.fdopen(errread, 'rb', bufsize)
Tim Peterse718f612004-10-12 21:51:32 +0000705
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000706
707 def _translate_newlines(self, data):
708 data = data.replace("\r\n", "\n")
709 data = data.replace("\r", "\n")
710 return data
711
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000712
Georg Brandl24522982007-04-21 20:35:38 +0000713 def __del__(self, sys=sys):
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000714 if not self._child_created:
715 # We didn't get to successfully create a child process.
716 return
717 # In case the child hasn't been waited on, check if it's done.
Gregory P. Smitha36f8fe2008-08-04 00:13:29 +0000718 self._internal_poll(_deadstate=sys.maxint)
Georg Brandl13cf38c2006-07-20 16:28:39 +0000719 if self.returncode is None and _active is not None:
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000720 # Child is still running, keep us alive until we can wait on it.
721 _active.append(self)
722
723
Peter Astrand23109f02005-03-03 20:28:59 +0000724 def communicate(self, input=None):
725 """Interact with process: Send data to stdin. Read data from
726 stdout and stderr, until end-of-file is reached. Wait for
727 process to terminate. The optional input argument should be a
728 string to be sent to the child process, or None, if no data
729 should be sent to the child.
Tim Peterseba28be2005-03-28 01:08:02 +0000730
Peter Astrand23109f02005-03-03 20:28:59 +0000731 communicate() returns a tuple (stdout, stderr)."""
732
733 # Optimization: If we are only using one pipe, or no pipe at
734 # all, using select() or threads is unnecessary.
735 if [self.stdin, self.stdout, self.stderr].count(None) >= 2:
Tim Peterseba28be2005-03-28 01:08:02 +0000736 stdout = None
737 stderr = None
Peter Astrand23109f02005-03-03 20:28:59 +0000738 if self.stdin:
739 if input:
740 self.stdin.write(input)
741 self.stdin.close()
742 elif self.stdout:
743 stdout = self.stdout.read()
Gregory P. Smith4036fd42008-05-26 20:22:14 +0000744 self.stdout.close()
Peter Astrand23109f02005-03-03 20:28:59 +0000745 elif self.stderr:
746 stderr = self.stderr.read()
Gregory P. Smith4036fd42008-05-26 20:22:14 +0000747 self.stderr.close()
Peter Astrand23109f02005-03-03 20:28:59 +0000748 self.wait()
749 return (stdout, stderr)
Tim Peterseba28be2005-03-28 01:08:02 +0000750
Peter Astrand23109f02005-03-03 20:28:59 +0000751 return self._communicate(input)
752
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000753
Gregory P. Smitha36f8fe2008-08-04 00:13:29 +0000754 def poll(self):
755 return self._internal_poll()
756
757
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000758 if mswindows:
759 #
760 # Windows methods
761 #
762 def _get_handles(self, stdin, stdout, stderr):
Amaury Forgeot d'Arc8318afa2009-07-10 16:47:42 +0000763 """Construct and return tuple with IO objects:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000764 p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
765 """
Peter Astrandd38ddf42005-02-10 08:32:50 +0000766 if stdin is None and stdout is None and stderr is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000767 return (None, None, None, None, None, None)
Tim Peterse718f612004-10-12 21:51:32 +0000768
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000769 p2cread, p2cwrite = None, None
770 c2pread, c2pwrite = None, None
771 errread, errwrite = None, None
772
Peter Astrandd38ddf42005-02-10 08:32:50 +0000773 if stdin is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000774 p2cread = GetStdHandle(STD_INPUT_HANDLE)
Hirokazu Yamamotoeacbbdf2009-03-03 22:18:14 +0000775 if p2cread is None:
776 p2cread, _ = CreatePipe(None, 0)
777 elif stdin == PIPE:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000778 p2cread, p2cwrite = CreatePipe(None, 0)
Peter Astrandd38ddf42005-02-10 08:32:50 +0000779 elif isinstance(stdin, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000780 p2cread = msvcrt.get_osfhandle(stdin)
781 else:
782 # Assuming file-like object
783 p2cread = msvcrt.get_osfhandle(stdin.fileno())
784 p2cread = self._make_inheritable(p2cread)
785
Peter Astrandd38ddf42005-02-10 08:32:50 +0000786 if stdout is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000787 c2pwrite = GetStdHandle(STD_OUTPUT_HANDLE)
Hirokazu Yamamotoeacbbdf2009-03-03 22:18:14 +0000788 if c2pwrite is None:
789 _, c2pwrite = CreatePipe(None, 0)
790 elif stdout == PIPE:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000791 c2pread, c2pwrite = CreatePipe(None, 0)
Peter Astrandd38ddf42005-02-10 08:32:50 +0000792 elif isinstance(stdout, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000793 c2pwrite = msvcrt.get_osfhandle(stdout)
794 else:
795 # Assuming file-like object
796 c2pwrite = msvcrt.get_osfhandle(stdout.fileno())
797 c2pwrite = self._make_inheritable(c2pwrite)
798
Peter Astrandd38ddf42005-02-10 08:32:50 +0000799 if stderr is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000800 errwrite = GetStdHandle(STD_ERROR_HANDLE)
Hirokazu Yamamotoeacbbdf2009-03-03 22:18:14 +0000801 if errwrite is None:
802 _, errwrite = CreatePipe(None, 0)
803 elif stderr == PIPE:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000804 errread, errwrite = CreatePipe(None, 0)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000805 elif stderr == STDOUT:
806 errwrite = c2pwrite
Peter Astrandd38ddf42005-02-10 08:32:50 +0000807 elif isinstance(stderr, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000808 errwrite = msvcrt.get_osfhandle(stderr)
809 else:
810 # Assuming file-like object
811 errwrite = msvcrt.get_osfhandle(stderr.fileno())
812 errwrite = self._make_inheritable(errwrite)
813
814 return (p2cread, p2cwrite,
815 c2pread, c2pwrite,
816 errread, errwrite)
817
818
819 def _make_inheritable(self, handle):
820 """Return a duplicate of handle, which is inheritable"""
821 return DuplicateHandle(GetCurrentProcess(), handle,
822 GetCurrentProcess(), 0, 1,
823 DUPLICATE_SAME_ACCESS)
824
825
826 def _find_w9xpopen(self):
827 """Find and return absolut path to w9xpopen.exe"""
Tim Peterse8374a52004-10-13 03:15:00 +0000828 w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)),
829 "w9xpopen.exe")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000830 if not os.path.exists(w9xpopen):
831 # Eeek - file-not-found - possibly an embedding
832 # situation - see if we can locate it in sys.exec_prefix
Tim Peterse8374a52004-10-13 03:15:00 +0000833 w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix),
834 "w9xpopen.exe")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000835 if not os.path.exists(w9xpopen):
Tim Peterse8374a52004-10-13 03:15:00 +0000836 raise RuntimeError("Cannot locate w9xpopen.exe, which is "
837 "needed for Popen to work with your "
838 "shell or platform.")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000839 return w9xpopen
840
Tim Peterse718f612004-10-12 21:51:32 +0000841
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000842 def _execute_child(self, args, executable, preexec_fn, close_fds,
843 cwd, env, universal_newlines,
844 startupinfo, creationflags, shell,
845 p2cread, p2cwrite,
846 c2pread, c2pwrite,
847 errread, errwrite):
848 """Execute program (MS Windows version)"""
849
Peter Astrandc26516b2005-02-21 08:13:02 +0000850 if not isinstance(args, types.StringTypes):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000851 args = list2cmdline(args)
852
Peter Astrandc1d65362004-11-07 14:30:34 +0000853 # Process startup details
Peter Astrandd38ddf42005-02-10 08:32:50 +0000854 if startupinfo is None:
Georg Brandlad624892006-06-04 22:15:37 +0000855 startupinfo = STARTUPINFO()
856 if None not in (p2cread, c2pwrite, errwrite):
Peter Astrandc1d65362004-11-07 14:30:34 +0000857 startupinfo.dwFlags |= STARTF_USESTDHANDLES
858 startupinfo.hStdInput = p2cread
859 startupinfo.hStdOutput = c2pwrite
860 startupinfo.hStdError = errwrite
861
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000862 if shell:
Georg Brandlad624892006-06-04 22:15:37 +0000863 startupinfo.dwFlags |= STARTF_USESHOWWINDOW
864 startupinfo.wShowWindow = SW_HIDE
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000865 comspec = os.environ.get("COMSPEC", "cmd.exe")
866 args = comspec + " /c " + args
Tim Peterse8374a52004-10-13 03:15:00 +0000867 if (GetVersion() >= 0x80000000L or
868 os.path.basename(comspec).lower() == "command.com"):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000869 # Win9x, or using command.com on NT. We need to
870 # use the w9xpopen intermediate program. For more
871 # information, see KB Q150956
872 # (http://web.archive.org/web/20011105084002/http://support.microsoft.com/support/kb/articles/Q150/9/56.asp)
873 w9xpopen = self._find_w9xpopen()
874 args = '"%s" %s' % (w9xpopen, args)
875 # Not passing CREATE_NEW_CONSOLE has been known to
876 # cause random failures on win9x. Specifically a
877 # dialog: "Your program accessed mem currently in
878 # use at xxx" and a hopeful warning about the
879 # stability of your system. Cost is Ctrl+C wont
880 # kill children.
881 creationflags |= CREATE_NEW_CONSOLE
882
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000883 # Start the process
884 try:
885 hp, ht, pid, tid = CreateProcess(executable, args,
Tim Peterse8374a52004-10-13 03:15:00 +0000886 # no special security
887 None, None,
Peter Astrand81a191b2007-05-26 22:18:20 +0000888 int(not close_fds),
Tim Peterse8374a52004-10-13 03:15:00 +0000889 creationflags,
890 env,
891 cwd,
892 startupinfo)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000893 except pywintypes.error, e:
894 # Translate pywintypes.error to WindowsError, which is
895 # a subclass of OSError. FIXME: We should really
896 # translate errno using _sys_errlist (or simliar), but
897 # how can this be done from Python?
898 raise WindowsError(*e.args)
899
900 # Retain the process handle, but close the thread handle
Martin v. Löwis17de8ff2006-04-10 15:55:37 +0000901 self._child_created = True
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000902 self._handle = hp
903 self.pid = pid
904 ht.Close()
905
Andrew M. Kuchling51ee66e2004-10-12 16:38:42 +0000906 # Child is launched. Close the parent's copy of those pipe
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000907 # handles that only the child should have open. You need
908 # to make sure that no handles to the write end of the
909 # output pipe are maintained in this process or else the
910 # pipe will not close when the child process exits and the
911 # ReadFile will hang.
Peter Astrandd38ddf42005-02-10 08:32:50 +0000912 if p2cread is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000913 p2cread.Close()
Peter Astrandd38ddf42005-02-10 08:32:50 +0000914 if c2pwrite is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000915 c2pwrite.Close()
Peter Astrandd38ddf42005-02-10 08:32:50 +0000916 if errwrite is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000917 errwrite.Close()
918
Tim Peterse718f612004-10-12 21:51:32 +0000919
Gregory P. Smitha36f8fe2008-08-04 00:13:29 +0000920 def _internal_poll(self, _deadstate=None):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000921 """Check if child process has terminated. Returns returncode
922 attribute."""
Peter Astrandd38ddf42005-02-10 08:32:50 +0000923 if self.returncode is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000924 if WaitForSingleObject(self._handle, 0) == WAIT_OBJECT_0:
925 self.returncode = GetExitCodeProcess(self._handle)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000926 return self.returncode
927
928
929 def wait(self):
930 """Wait for child process to terminate. Returns returncode
931 attribute."""
Peter Astrandd38ddf42005-02-10 08:32:50 +0000932 if self.returncode is None:
Georg Brandl84fedf72010-02-06 22:59:15 +0000933 WaitForSingleObject(self._handle, INFINITE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000934 self.returncode = GetExitCodeProcess(self._handle)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000935 return self.returncode
936
937
938 def _readerthread(self, fh, buffer):
939 buffer.append(fh.read())
940
941
Peter Astrand23109f02005-03-03 20:28:59 +0000942 def _communicate(self, input):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000943 stdout = None # Return
944 stderr = None # Return
945
946 if self.stdout:
947 stdout = []
Tim Peterse8374a52004-10-13 03:15:00 +0000948 stdout_thread = threading.Thread(target=self._readerthread,
949 args=(self.stdout, stdout))
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000950 stdout_thread.setDaemon(True)
951 stdout_thread.start()
952 if self.stderr:
953 stderr = []
Tim Peterse8374a52004-10-13 03:15:00 +0000954 stderr_thread = threading.Thread(target=self._readerthread,
955 args=(self.stderr, stderr))
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000956 stderr_thread.setDaemon(True)
957 stderr_thread.start()
958
959 if self.stdin:
Peter Astrandd38ddf42005-02-10 08:32:50 +0000960 if input is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000961 self.stdin.write(input)
962 self.stdin.close()
963
964 if self.stdout:
965 stdout_thread.join()
966 if self.stderr:
967 stderr_thread.join()
968
969 # All data exchanged. Translate lists into strings.
Peter Astrandd38ddf42005-02-10 08:32:50 +0000970 if stdout is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000971 stdout = stdout[0]
Peter Astrandd38ddf42005-02-10 08:32:50 +0000972 if stderr is not None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000973 stderr = stderr[0]
974
975 # Translate newlines, if requested. We cannot let the file
976 # object do the translation: It is based on stdio, which is
977 # impossible to combine with select (unless forcing no
978 # buffering).
Neal Norwitza6d01ce2006-05-02 06:23:22 +0000979 if self.universal_newlines and hasattr(file, 'newlines'):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000980 if stdout:
981 stdout = self._translate_newlines(stdout)
982 if stderr:
983 stderr = self._translate_newlines(stderr)
984
985 self.wait()
986 return (stdout, stderr)
987
Christian Heimese74c8f22008-04-19 02:23:57 +0000988 def send_signal(self, sig):
989 """Send a signal to the process
990 """
991 if sig == signal.SIGTERM:
992 self.terminate()
Brian Curtine5aa8862010-04-02 23:26:06 +0000993 elif sig == signal.CTRL_C_EVENT:
994 os.kill(self.pid, signal.CTRL_C_EVENT)
995 elif sig == signal.CTRL_BREAK_EVENT:
996 os.kill(self.pid, signal.CTRL_BREAK_EVENT)
Christian Heimese74c8f22008-04-19 02:23:57 +0000997 else:
998 raise ValueError("Only SIGTERM is supported on Windows")
999
1000 def terminate(self):
1001 """Terminates the process
1002 """
1003 TerminateProcess(self._handle, 1)
1004
1005 kill = terminate
1006
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001007 else:
1008 #
1009 # POSIX methods
1010 #
1011 def _get_handles(self, stdin, stdout, stderr):
Amaury Forgeot d'Arc8318afa2009-07-10 16:47:42 +00001012 """Construct and return tuple with IO objects:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001013 p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
1014 """
1015 p2cread, p2cwrite = None, None
1016 c2pread, c2pwrite = None, None
1017 errread, errwrite = None, None
1018
Peter Astrandd38ddf42005-02-10 08:32:50 +00001019 if stdin is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001020 pass
1021 elif stdin == PIPE:
1022 p2cread, p2cwrite = os.pipe()
Peter Astrandd38ddf42005-02-10 08:32:50 +00001023 elif isinstance(stdin, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001024 p2cread = stdin
1025 else:
1026 # Assuming file-like object
1027 p2cread = stdin.fileno()
1028
Peter Astrandd38ddf42005-02-10 08:32:50 +00001029 if stdout is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001030 pass
1031 elif stdout == PIPE:
1032 c2pread, c2pwrite = os.pipe()
Peter Astrandd38ddf42005-02-10 08:32:50 +00001033 elif isinstance(stdout, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001034 c2pwrite = stdout
1035 else:
1036 # Assuming file-like object
Tim Peterse718f612004-10-12 21:51:32 +00001037 c2pwrite = stdout.fileno()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001038
Peter Astrandd38ddf42005-02-10 08:32:50 +00001039 if stderr is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001040 pass
1041 elif stderr == PIPE:
1042 errread, errwrite = os.pipe()
1043 elif stderr == STDOUT:
1044 errwrite = c2pwrite
Peter Astrandd38ddf42005-02-10 08:32:50 +00001045 elif isinstance(stderr, int):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001046 errwrite = stderr
1047 else:
1048 # Assuming file-like object
1049 errwrite = stderr.fileno()
1050
1051 return (p2cread, p2cwrite,
1052 c2pread, c2pwrite,
1053 errread, errwrite)
1054
1055
1056 def _set_cloexec_flag(self, fd):
1057 try:
1058 cloexec_flag = fcntl.FD_CLOEXEC
1059 except AttributeError:
1060 cloexec_flag = 1
1061
1062 old = fcntl.fcntl(fd, fcntl.F_GETFD)
1063 fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag)
1064
1065
1066 def _close_fds(self, but):
Amaury Forgeot d'Arc5fe420e2009-06-18 22:32:50 +00001067 if hasattr(os, 'closerange'):
1068 os.closerange(3, but)
1069 os.closerange(but + 1, MAXFD)
1070 else:
1071 for i in xrange(3, MAXFD):
1072 if i == but:
1073 continue
1074 try:
1075 os.close(i)
1076 except:
1077 pass
Tim Peterse718f612004-10-12 21:51:32 +00001078
1079
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001080 def _execute_child(self, args, executable, preexec_fn, close_fds,
1081 cwd, env, universal_newlines,
1082 startupinfo, creationflags, shell,
1083 p2cread, p2cwrite,
1084 c2pread, c2pwrite,
1085 errread, errwrite):
1086 """Execute program (POSIX version)"""
1087
Peter Astrandc26516b2005-02-21 08:13:02 +00001088 if isinstance(args, types.StringTypes):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001089 args = [args]
Georg Brandl6c0e1e82006-10-29 09:05:04 +00001090 else:
1091 args = list(args)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001092
1093 if shell:
1094 args = ["/bin/sh", "-c"] + args
1095
Peter Astrandd38ddf42005-02-10 08:32:50 +00001096 if executable is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001097 executable = args[0]
1098
1099 # For transferring possible exec failure from child to parent
1100 # The first char specifies the exception type: 0 means
1101 # OSError, 1 means some other error.
1102 errpipe_read, errpipe_write = os.pipe()
Gregory P. Smith87d49792008-01-19 20:57:59 +00001103 try:
Gregory P. Smith92ffc632008-01-19 22:23:56 +00001104 try:
Facundo Batista8c826b72009-06-19 18:02:28 +00001105 self._set_cloexec_flag(errpipe_write)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001106
Facundo Batista8c826b72009-06-19 18:02:28 +00001107 gc_was_enabled = gc.isenabled()
1108 # Disable gc to avoid bug where gc -> file_dealloc ->
1109 # write to stderr -> hang. http://bugs.python.org/issue1336
1110 gc.disable()
1111 try:
1112 self.pid = os.fork()
Georg Brandl3e8b8692009-07-16 21:47:51 +00001113 except:
Facundo Batista8c826b72009-06-19 18:02:28 +00001114 if gc_was_enabled:
1115 gc.enable()
Georg Brandl3e8b8692009-07-16 21:47:51 +00001116 raise
Facundo Batista8c826b72009-06-19 18:02:28 +00001117 self._child_created = True
1118 if self.pid == 0:
1119 # Child
1120 try:
1121 # Close parent's pipe ends
1122 if p2cwrite is not None:
1123 os.close(p2cwrite)
1124 if c2pread is not None:
1125 os.close(c2pread)
1126 if errread is not None:
1127 os.close(errread)
1128 os.close(errpipe_read)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001129
Facundo Batista8c826b72009-06-19 18:02:28 +00001130 # Dup fds for child
1131 if p2cread is not None:
1132 os.dup2(p2cread, 0)
1133 if c2pwrite is not None:
1134 os.dup2(c2pwrite, 1)
1135 if errwrite is not None:
1136 os.dup2(errwrite, 2)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001137
Facundo Batista8c826b72009-06-19 18:02:28 +00001138 # Close pipe fds. Make sure we don't close the same
1139 # fd more than once, or standard fds.
1140 if p2cread is not None and p2cread not in (0,):
1141 os.close(p2cread)
1142 if c2pwrite is not None and c2pwrite not in (p2cread, 1):
1143 os.close(c2pwrite)
1144 if errwrite is not None and errwrite not in (p2cread, c2pwrite, 2):
1145 os.close(errwrite)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001146
Facundo Batista8c826b72009-06-19 18:02:28 +00001147 # Close all other fds, if asked for
1148 if close_fds:
1149 self._close_fds(but=errpipe_write)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001150
Facundo Batista8c826b72009-06-19 18:02:28 +00001151 if cwd is not None:
1152 os.chdir(cwd)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001153
Facundo Batista8c826b72009-06-19 18:02:28 +00001154 if preexec_fn:
1155 preexec_fn()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001156
Facundo Batista8c826b72009-06-19 18:02:28 +00001157 if env is None:
1158 os.execvp(executable, args)
1159 else:
1160 os.execvpe(executable, args, env)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001161
Facundo Batista8c826b72009-06-19 18:02:28 +00001162 except:
1163 exc_type, exc_value, tb = sys.exc_info()
1164 # Save the traceback and attach it to the exception object
1165 exc_lines = traceback.format_exception(exc_type,
1166 exc_value,
1167 tb)
1168 exc_value.child_traceback = ''.join(exc_lines)
1169 os.write(errpipe_write, pickle.dumps(exc_value))
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001170
Facundo Batista8c826b72009-06-19 18:02:28 +00001171 # This exitcode won't be reported to applications, so it
1172 # really doesn't matter what we return.
1173 os._exit(255)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001174
Facundo Batista8c826b72009-06-19 18:02:28 +00001175 # Parent
1176 if gc_was_enabled:
1177 gc.enable()
1178 finally:
1179 # be sure the FD is closed no matter what
1180 os.close(errpipe_write)
1181
1182 if p2cread is not None and p2cwrite is not None:
1183 os.close(p2cread)
1184 if c2pwrite is not None and c2pread is not None:
1185 os.close(c2pwrite)
1186 if errwrite is not None and errread is not None:
1187 os.close(errwrite)
1188
1189 # Wait for exec to fail or succeed; possibly raising exception
Gregory P. Smithcce211f2010-03-01 00:05:08 +00001190 # Exception limited to 1M
1191 data = _eintr_retry_call(os.read, errpipe_read, 1048576)
Facundo Batista8c826b72009-06-19 18:02:28 +00001192 finally:
1193 # be sure the FD is closed no matter what
1194 os.close(errpipe_read)
1195
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001196 if data != "":
Gregory P. Smithcce211f2010-03-01 00:05:08 +00001197 _eintr_retry_call(os.waitpid, self.pid, 0)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001198 child_exception = pickle.loads(data)
Georg Brandlf3715d22009-02-14 17:01:36 +00001199 for fd in (p2cwrite, c2pread, errread):
1200 if fd is not None:
1201 os.close(fd)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001202 raise child_exception
1203
1204
1205 def _handle_exitstatus(self, sts):
1206 if os.WIFSIGNALED(sts):
1207 self.returncode = -os.WTERMSIG(sts)
1208 elif os.WIFEXITED(sts):
1209 self.returncode = os.WEXITSTATUS(sts)
1210 else:
1211 # Should never happen
1212 raise RuntimeError("Unknown child exit status!")
1213
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001214
Gregory P. Smitha36f8fe2008-08-04 00:13:29 +00001215 def _internal_poll(self, _deadstate=None):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001216 """Check if child process has terminated. Returns returncode
1217 attribute."""
Peter Astrandd38ddf42005-02-10 08:32:50 +00001218 if self.returncode is None:
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001219 try:
1220 pid, sts = os.waitpid(self.pid, os.WNOHANG)
1221 if pid == self.pid:
1222 self._handle_exitstatus(sts)
1223 except os.error:
Martin v. Löwis17de8ff2006-04-10 15:55:37 +00001224 if _deadstate is not None:
1225 self.returncode = _deadstate
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001226 return self.returncode
1227
1228
1229 def wait(self):
1230 """Wait for child process to terminate. Returns returncode
1231 attribute."""
Peter Astrandd38ddf42005-02-10 08:32:50 +00001232 if self.returncode is None:
Gregory P. Smithcce211f2010-03-01 00:05:08 +00001233 pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001234 self._handle_exitstatus(sts)
1235 return self.returncode
1236
1237
Peter Astrand23109f02005-03-03 20:28:59 +00001238 def _communicate(self, input):
Gregory P. Smithdd7ca242009-07-04 01:49:29 +00001239 if self.stdin:
1240 # Flush stdio buffer. This might block, if the user has
1241 # been writing to .stdin in an uncontrolled fashion.
1242 self.stdin.flush()
1243 if not input:
1244 self.stdin.close()
1245
1246 if _has_poll:
1247 stdout, stderr = self._communicate_with_poll(input)
1248 else:
1249 stdout, stderr = self._communicate_with_select(input)
1250
1251 # All data exchanged. Translate lists into strings.
1252 if stdout is not None:
1253 stdout = ''.join(stdout)
1254 if stderr is not None:
1255 stderr = ''.join(stderr)
1256
1257 # Translate newlines, if requested. We cannot let the file
1258 # object do the translation: It is based on stdio, which is
1259 # impossible to combine with select (unless forcing no
1260 # buffering).
1261 if self.universal_newlines and hasattr(file, 'newlines'):
1262 if stdout:
1263 stdout = self._translate_newlines(stdout)
1264 if stderr:
1265 stderr = self._translate_newlines(stderr)
1266
1267 self.wait()
1268 return (stdout, stderr)
1269
1270
1271 def _communicate_with_poll(self, input):
1272 stdout = None # Return
1273 stderr = None # Return
1274 fd2file = {}
1275 fd2output = {}
1276
1277 poller = select.poll()
1278 def register_and_append(file_obj, eventmask):
1279 poller.register(file_obj.fileno(), eventmask)
1280 fd2file[file_obj.fileno()] = file_obj
1281
1282 def close_unregister_and_remove(fd):
1283 poller.unregister(fd)
1284 fd2file[fd].close()
1285 fd2file.pop(fd)
1286
1287 if self.stdin and input:
1288 register_and_append(self.stdin, select.POLLOUT)
1289
1290 select_POLLIN_POLLPRI = select.POLLIN | select.POLLPRI
1291 if self.stdout:
1292 register_and_append(self.stdout, select_POLLIN_POLLPRI)
1293 fd2output[self.stdout.fileno()] = stdout = []
1294 if self.stderr:
1295 register_and_append(self.stderr, select_POLLIN_POLLPRI)
1296 fd2output[self.stderr.fileno()] = stderr = []
1297
1298 input_offset = 0
1299 while fd2file:
1300 try:
1301 ready = poller.poll()
1302 except select.error, e:
1303 if e.args[0] == errno.EINTR:
1304 continue
1305 raise
1306
1307 for fd, mode in ready:
1308 if mode & select.POLLOUT:
1309 chunk = input[input_offset : input_offset + _PIPE_BUF]
1310 input_offset += os.write(fd, chunk)
1311 if input_offset >= len(input):
1312 close_unregister_and_remove(fd)
1313 elif mode & select_POLLIN_POLLPRI:
1314 data = os.read(fd, 4096)
1315 if not data:
1316 close_unregister_and_remove(fd)
1317 fd2output[fd].append(data)
1318 else:
1319 # Ignore hang up or errors.
1320 close_unregister_and_remove(fd)
1321
1322 return (stdout, stderr)
1323
1324
1325 def _communicate_with_select(self, input):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001326 read_set = []
1327 write_set = []
1328 stdout = None # Return
1329 stderr = None # Return
1330
Gregory P. Smithdd7ca242009-07-04 01:49:29 +00001331 if self.stdin and input:
1332 write_set.append(self.stdin)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001333 if self.stdout:
1334 read_set.append(self.stdout)
Tim Peterse718f612004-10-12 21:51:32 +00001335 stdout = []
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001336 if self.stderr:
1337 read_set.append(self.stderr)
1338 stderr = []
1339
Peter Astrand1812f8c2007-01-07 14:34:16 +00001340 input_offset = 0
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001341 while read_set or write_set:
Gregory P. Smithf4140642008-07-06 07:16:40 +00001342 try:
1343 rlist, wlist, xlist = select.select(read_set, write_set, [])
1344 except select.error, e:
1345 if e.args[0] == errno.EINTR:
1346 continue
1347 raise
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001348
1349 if self.stdin in wlist:
Gregory P. Smithdd7ca242009-07-04 01:49:29 +00001350 chunk = input[input_offset : input_offset + _PIPE_BUF]
Brett Cannon03446c42008-08-08 04:19:32 +00001351 bytes_written = os.write(self.stdin.fileno(), chunk)
Tim Petersf733abb2007-01-30 03:03:46 +00001352 input_offset += bytes_written
Peter Astrand1812f8c2007-01-07 14:34:16 +00001353 if input_offset >= len(input):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001354 self.stdin.close()
1355 write_set.remove(self.stdin)
1356
1357 if self.stdout in rlist:
1358 data = os.read(self.stdout.fileno(), 1024)
1359 if data == "":
1360 self.stdout.close()
1361 read_set.remove(self.stdout)
1362 stdout.append(data)
1363
1364 if self.stderr in rlist:
1365 data = os.read(self.stderr.fileno(), 1024)
1366 if data == "":
1367 self.stderr.close()
1368 read_set.remove(self.stderr)
1369 stderr.append(data)
1370
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001371 return (stdout, stderr)
1372
Gregory P. Smithdd7ca242009-07-04 01:49:29 +00001373
Christian Heimese74c8f22008-04-19 02:23:57 +00001374 def send_signal(self, sig):
1375 """Send a signal to the process
1376 """
1377 os.kill(self.pid, sig)
1378
1379 def terminate(self):
1380 """Terminate the process with SIGTERM
1381 """
1382 self.send_signal(signal.SIGTERM)
1383
1384 def kill(self):
1385 """Kill the process with SIGKILL
1386 """
1387 self.send_signal(signal.SIGKILL)
1388
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001389
1390def _demo_posix():
1391 #
1392 # Example 1: Simple redirection: Get process list
1393 #
1394 plist = Popen(["ps"], stdout=PIPE).communicate()[0]
1395 print "Process list:"
1396 print plist
1397
1398 #
1399 # Example 2: Change uid before executing child
1400 #
1401 if os.getuid() == 0:
1402 p = Popen(["id"], preexec_fn=lambda: os.setuid(100))
1403 p.wait()
1404
1405 #
1406 # Example 3: Connecting several subprocesses
1407 #
1408 print "Looking for 'hda'..."
1409 p1 = Popen(["dmesg"], stdout=PIPE)
1410 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
1411 print repr(p2.communicate()[0])
1412
1413 #
1414 # Example 4: Catch execution error
1415 #
1416 print
1417 print "Trying a weird file..."
1418 try:
1419 print Popen(["/this/path/does/not/exist"]).communicate()
1420 except OSError, e:
1421 if e.errno == errno.ENOENT:
1422 print "The file didn't exist. I thought so..."
1423 print "Child traceback:"
1424 print e.child_traceback
1425 else:
1426 print "Error", e.errno
1427 else:
1428 print >>sys.stderr, "Gosh. No error."
1429
1430
1431def _demo_windows():
1432 #
1433 # Example 1: Connecting several subprocesses
1434 #
1435 print "Looking for 'PROMPT' in set output..."
1436 p1 = Popen("set", stdout=PIPE, shell=True)
1437 p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE)
1438 print repr(p2.communicate()[0])
1439
1440 #
1441 # Example 2: Simple execution of program
1442 #
1443 print "Executing calc..."
1444 p = Popen("calc")
1445 p.wait()
1446
1447
1448if __name__ == "__main__":
1449 if mswindows:
1450 _demo_windows()
1451 else:
1452 _demo_posix()