Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1 | # subprocess - Subprocesses with accessible I/O streams |
| 2 | # |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 3 | # For more information about this module, see PEP 324. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 4 | # |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 5 | # This module should remain compatible with Python 2.2, see PEP 291. |
| 6 | # |
Peter Astrand | 3a708df | 2005-09-23 17:37:29 +0000 | [diff] [blame] | 7 | # Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se> |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 8 | # |
Peter Astrand | 69bf13f | 2005-02-14 08:56:32 +0000 | [diff] [blame] | 9 | # Licensed to PSF under a Contributor Agreement. |
Peter Astrand | 3a708df | 2005-09-23 17:37:29 +0000 | [diff] [blame] | 10 | # See http://www.python.org/2.4/license for licensing details. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 11 | |
Raymond Hettinger | 837dd93 | 2004-10-17 16:36:53 +0000 | [diff] [blame] | 12 | r"""subprocess - Subprocesses with accessible I/O streams |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 13 | |
Fredrik Lundh | 15aaacc | 2004-10-17 14:47:05 +0000 | [diff] [blame] | 14 | This module allows you to spawn processes, connect to their |
| 15 | input/output/error pipes, and obtain their return codes. This module |
| 16 | intends to replace several other, older modules and functions, like: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 17 | |
| 18 | os.system |
| 19 | os.spawn* |
| 20 | os.popen* |
| 21 | popen2.* |
| 22 | commands.* |
| 23 | |
| 24 | Information about how the subprocess module can be used to replace these |
| 25 | modules and functions can be found below. |
| 26 | |
| 27 | |
| 28 | |
| 29 | Using the subprocess module |
| 30 | =========================== |
| 31 | This module defines one class called Popen: |
| 32 | |
| 33 | class 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 | |
| 40 | Arguments are: |
| 41 | |
| 42 | args should be a string, or a sequence of program arguments. The |
| 43 | program to execute is normally the first item in the args sequence or |
| 44 | string, but can be explicitly set by using the executable argument. |
| 45 | |
| 46 | On UNIX, with shell=False (default): In this case, the Popen class |
| 47 | uses os.execvp() to execute the child program. args should normally |
| 48 | be a sequence. A string will be treated as a sequence with the string |
| 49 | as the only item (the program to execute). |
| 50 | |
| 51 | On UNIX, with shell=True: If args is a string, it specifies the |
| 52 | command string to execute through the shell. If args is a sequence, |
| 53 | the first item specifies the command string, and any additional items |
| 54 | will be treated as additional shell arguments. |
| 55 | |
| 56 | On Windows: the Popen class uses CreateProcess() to execute the child |
| 57 | program, which operates on strings. If args is a sequence, it will be |
| 58 | converted to a string using the list2cmdline method. Please note that |
| 59 | not all MS Windows applications interpret the command line the same |
| 60 | way: The list2cmdline is designed for applications using the same |
| 61 | rules as the MS C runtime. |
| 62 | |
| 63 | bufsize, if given, has the same meaning as the corresponding argument |
| 64 | to the built-in open() function: 0 means unbuffered, 1 means line |
| 65 | buffered, any other positive value means use a buffer of |
| 66 | (approximately) that size. A negative bufsize means to use the system |
| 67 | default, which usually means fully buffered. The default value for |
| 68 | bufsize is 0 (unbuffered). |
| 69 | |
| 70 | stdin, stdout and stderr specify the executed programs' standard |
| 71 | input, standard output and standard error file handles, respectively. |
| 72 | Valid values are PIPE, an existing file descriptor (a positive |
| 73 | integer), an existing file object, and None. PIPE indicates that a |
| 74 | new pipe to the child should be created. With None, no redirection |
| 75 | will occur; the child's file handles will be inherited from the |
| 76 | parent. Additionally, stderr can be STDOUT, which indicates that the |
| 77 | stderr data from the applications should be captured into the same |
| 78 | file handle as for stdout. |
| 79 | |
| 80 | If preexec_fn is set to a callable object, this object will be called |
| 81 | in the child process just before the child is executed. |
| 82 | |
| 83 | If close_fds is true, all file descriptors except 0, 1 and 2 will be |
| 84 | closed before the child process is executed. |
| 85 | |
| 86 | if shell is true, the specified command will be executed through the |
| 87 | shell. |
| 88 | |
| 89 | If cwd is not None, the current directory will be changed to cwd |
| 90 | before the child is executed. |
| 91 | |
| 92 | If env is not None, it defines the environment variables for the new |
| 93 | process. |
| 94 | |
| 95 | If universal_newlines is true, the file objects stdout and stderr are |
| 96 | opened as a text files, but lines may be terminated by any of '\n', |
| 97 | the Unix end-of-line convention, '\r', the Macintosh convention or |
| 98 | '\r\n', the Windows convention. All of these external representations |
| 99 | are seen as '\n' by the Python program. Note: This feature is only |
| 100 | available if Python is built with universal newline support (the |
| 101 | default). Also, the newlines attribute of the file objects stdout, |
| 102 | stdin and stderr are not updated by the communicate() method. |
| 103 | |
| 104 | The startupinfo and creationflags, if given, will be passed to the |
| 105 | underlying CreateProcess() function. They can specify things such as |
| 106 | appearance of the main window and priority for the new process. |
| 107 | (Windows only) |
| 108 | |
| 109 | |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 110 | This module also defines some shortcut functions: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 111 | |
Peter Astrand | 5f5e141 | 2004-12-05 20:15:36 +0000 | [diff] [blame] | 112 | call(*popenargs, **kwargs): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 113 | 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 Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 120 | check_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 Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 124 | return code in the returncode attribute. |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 125 | |
| 126 | The arguments are the same as for the Popen constructor. Example: |
| 127 | |
| 128 | check_call(["ls", "-l"]) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 129 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 130 | check_output(*popenargs, **kwargs): |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame] | 131 | Run command with arguments and return its output as a byte string. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 132 | |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame] | 133 | 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. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 136 | |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame] | 137 | The arguments are the same as for the Popen constructor. Example: |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 138 | |
Georg Brandl | 02e7dfd | 2009-12-28 08:09:32 +0000 | [diff] [blame] | 139 | output = check_output(["ls", "-l", "/dev/null"]) |
| 140 | |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 141 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 142 | Exceptions |
| 143 | ---------- |
| 144 | Exceptions raised in the child process, before the new program has |
| 145 | started to execute, will be re-raised in the parent. Additionally, |
| 146 | the exception object will have one extra attribute called |
| 147 | 'child_traceback', which is a string containing traceback information |
| 148 | from the childs point of view. |
| 149 | |
| 150 | The most common exception raised is OSError. This occurs, for |
| 151 | example, when trying to execute a non-existent file. Applications |
| 152 | should prepare for OSErrors. |
| 153 | |
| 154 | A ValueError will be raised if Popen is called with invalid arguments. |
| 155 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 156 | check_call() and check_output() will raise CalledProcessError, if the |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 157 | called process returns a non-zero return code. |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 158 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 159 | |
| 160 | Security |
| 161 | -------- |
| 162 | Unlike some other popen functions, this implementation will never call |
| 163 | /bin/sh implicitly. This means that all characters, including shell |
| 164 | metacharacters, can safely be passed to child processes. |
| 165 | |
| 166 | |
| 167 | Popen objects |
| 168 | ============= |
| 169 | Instances of the Popen class have the following methods: |
| 170 | |
| 171 | poll() |
| 172 | Check if child process has terminated. Returns returncode |
| 173 | attribute. |
| 174 | |
| 175 | wait() |
| 176 | Wait for child process to terminate. Returns returncode attribute. |
| 177 | |
| 178 | communicate(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 Norwitz | a186ee2 | 2006-12-29 03:01:53 +0000 | [diff] [blame] | 181 | terminate. The optional input argument should be a string to be |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 182 | sent to the child process, or None, if no data should be sent to |
| 183 | the child. |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 184 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 185 | 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 | |
| 190 | The following attributes are also available: |
| 191 | |
| 192 | stdin |
| 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 | |
| 196 | stdout |
| 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 | |
| 201 | stderr |
| 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 | |
| 206 | pid |
| 207 | The process ID of the child process. |
| 208 | |
| 209 | returncode |
| 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 | |
| 215 | Replacing older functions with the subprocess module |
| 216 | ==================================================== |
| 217 | In this section, "a ==> b" means that b can be used as a replacement |
| 218 | for a. |
| 219 | |
| 220 | Note: All functions in this section fail (more or less) silently if |
| 221 | the executed program cannot be found; this module raises an OSError |
| 222 | exception. |
| 223 | |
| 224 | In the following examples, we assume that the subprocess module is |
| 225 | imported with "from subprocess import *". |
| 226 | |
| 227 | |
| 228 | Replacing /bin/sh shell backquote |
| 229 | --------------------------------- |
| 230 | output=`mycmd myarg` |
| 231 | ==> |
| 232 | output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] |
| 233 | |
| 234 | |
| 235 | Replacing shell pipe line |
| 236 | ------------------------- |
| 237 | output=`dmesg | grep hda` |
| 238 | ==> |
| 239 | p1 = Popen(["dmesg"], stdout=PIPE) |
Peter Astrand | 6fdf3cb | 2004-11-30 18:06:42 +0000 | [diff] [blame] | 240 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 241 | output = p2.communicate()[0] |
| 242 | |
| 243 | |
| 244 | Replacing os.system() |
| 245 | --------------------- |
| 246 | sts = os.system("mycmd" + " myarg") |
| 247 | ==> |
| 248 | p = Popen("mycmd" + " myarg", shell=True) |
Neal Norwitz | 8440483 | 2006-07-10 00:05:34 +0000 | [diff] [blame] | 249 | pid, sts = os.waitpid(p.pid, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 250 | |
| 251 | Note: |
| 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 | |
| 258 | A more real-world example would look like this: |
| 259 | |
| 260 | try: |
| 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 |
| 266 | except OSError, e: |
| 267 | print >>sys.stderr, "Execution failed:", e |
| 268 | |
| 269 | |
| 270 | Replacing os.spawn* |
| 271 | ------------------- |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 272 | P_NOWAIT example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 273 | |
| 274 | pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") |
| 275 | ==> |
| 276 | pid = Popen(["/bin/mycmd", "myarg"]).pid |
| 277 | |
| 278 | |
| 279 | P_WAIT example: |
| 280 | |
| 281 | retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") |
| 282 | ==> |
| 283 | retcode = call(["/bin/mycmd", "myarg"]) |
| 284 | |
| 285 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 286 | Vector example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 287 | |
| 288 | os.spawnvp(os.P_NOWAIT, path, args) |
| 289 | ==> |
| 290 | Popen([path] + args[1:]) |
| 291 | |
| 292 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 293 | Environment example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 294 | |
| 295 | os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) |
| 296 | ==> |
| 297 | Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) |
| 298 | |
| 299 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 300 | Replacing os.popen* |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 301 | ------------------- |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 302 | pipe = os.popen("cmd", mode='r', bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 303 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 304 | pipe = Popen("cmd", shell=True, bufsize=bufsize, stdout=PIPE).stdout |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 305 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 306 | pipe = os.popen("cmd", mode='w', bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 307 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 308 | pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 309 | |
| 310 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 311 | (child_stdin, child_stdout) = os.popen2("cmd", mode, bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 312 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 313 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 314 | 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 Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 320 | child_stderr) = os.popen3("cmd", mode, bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 321 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 322 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 323 | 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 Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 329 | (child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode, |
| 330 | bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 331 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 332 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 333 | stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) |
| 334 | (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) |
| 335 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 336 | On Unix, os.popen2, os.popen3 and os.popen4 also accept a sequence as |
| 337 | the command to execute, in which case arguments will be passed |
| 338 | directly to the program without shell intervention. This usage can be |
| 339 | replaced as follows: |
| 340 | |
| 341 | (child_stdin, child_stdout) = os.popen2(["/bin/ls", "-l"], mode, |
| 342 | bufsize) |
| 343 | ==> |
| 344 | p = Popen(["/bin/ls", "-l"], bufsize=bufsize, stdin=PIPE, stdout=PIPE) |
| 345 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
| 346 | |
| 347 | Return code handling translates as follows: |
| 348 | |
| 349 | pipe = os.popen("cmd", 'w') |
| 350 | ... |
| 351 | rc = pipe.close() |
Florent Xicluna | cf741ce | 2010-03-08 10:58:12 +0000 | [diff] [blame^] | 352 | if rc is not None and rc % 256: |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 353 | print "There were some errors" |
| 354 | ==> |
| 355 | process = Popen("cmd", 'w', shell=True, stdin=PIPE) |
| 356 | ... |
| 357 | process.stdin.close() |
| 358 | if process.wait() != 0: |
| 359 | print "There were some errors" |
| 360 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 361 | |
| 362 | Replacing popen2.* |
| 363 | ------------------ |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 364 | (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) |
| 365 | ==> |
| 366 | p = 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 Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 370 | On Unix, popen2 also accepts a sequence as the command to execute, in |
| 371 | which case arguments will be passed directly to the program without |
| 372 | shell intervention. This usage can be replaced as follows: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 373 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 374 | (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, |
| 375 | mode) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 376 | ==> |
| 377 | p = Popen(["mycmd", "myarg"], bufsize=bufsize, |
| 378 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 379 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 380 | |
Neal Norwitz | aa87fb6 | 2007-05-11 06:23:01 +0000 | [diff] [blame] | 381 | The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 382 | except 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 Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 388 | close_fds=True with subprocess.Popen. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 389 | """ |
| 390 | |
| 391 | import sys |
| 392 | mswindows = (sys.platform == "win32") |
| 393 | |
| 394 | import os |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 395 | import types |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 396 | import traceback |
Gregory P. Smith | 87d4979 | 2008-01-19 20:57:59 +0000 | [diff] [blame] | 397 | import gc |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 398 | import signal |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 399 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 400 | # Exception classes used by this module. |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 401 | class CalledProcessError(Exception): |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 402 | """This exception is raised when a process run by check_call() or |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 403 | check_output() returns a non-zero exit status. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 404 | The exit status will be stored in the returncode attribute; |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 405 | check_output() will also store the output in the output attribute. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 406 | """ |
| 407 | def __init__(self, returncode, cmd, output=None): |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 408 | self.returncode = returncode |
| 409 | self.cmd = cmd |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 410 | self.output = output |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 411 | def __str__(self): |
| 412 | return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode) |
Tim Peters | 73a9ead | 2006-07-18 21:55:15 +0000 | [diff] [blame] | 413 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 414 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 415 | if mswindows: |
| 416 | import threading |
| 417 | import msvcrt |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 418 | if 0: # <-- change this to use pywin32 instead of the _subprocess driver |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 419 | import pywintypes |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 420 | from win32api import GetStdHandle, STD_INPUT_HANDLE, \ |
| 421 | STD_OUTPUT_HANDLE, STD_ERROR_HANDLE |
| 422 | from win32api import GetCurrentProcess, DuplicateHandle, \ |
| 423 | GetModuleFileName, GetVersion |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 424 | from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 425 | from win32pipe import CreatePipe |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 426 | from win32process import CreateProcess, STARTUPINFO, \ |
| 427 | GetExitCodeProcess, STARTF_USESTDHANDLES, \ |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 428 | STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 429 | from win32process import TerminateProcess |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 430 | from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0 |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 431 | else: |
| 432 | from _subprocess import * |
| 433 | class STARTUPINFO: |
| 434 | dwFlags = 0 |
| 435 | hStdInput = None |
| 436 | hStdOutput = None |
| 437 | hStdError = None |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 438 | wShowWindow = 0 |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 439 | class pywintypes: |
| 440 | error = IOError |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 441 | else: |
| 442 | import select |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 443 | _has_poll = hasattr(select, 'poll') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 444 | import errno |
| 445 | import fcntl |
| 446 | import pickle |
| 447 | |
Amaury Forgeot d'Arc | ce32eb7 | 2009-07-09 22:37:22 +0000 | [diff] [blame] | 448 | # 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. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 454 | __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 455 | "check_output", "CalledProcessError"] |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 456 | |
| 457 | try: |
| 458 | MAXFD = os.sysconf("SC_OPEN_MAX") |
| 459 | except: |
| 460 | MAXFD = 256 |
| 461 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 462 | _active = [] |
| 463 | |
| 464 | def _cleanup(): |
| 465 | for inst in _active[:]: |
Georg Brandl | 02e7dfd | 2009-12-28 08:09:32 +0000 | [diff] [blame] | 466 | res = inst._internal_poll(_deadstate=sys.maxint) |
| 467 | if res is not None and res >= 0: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 468 | 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 Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 474 | |
| 475 | PIPE = -1 |
| 476 | STDOUT = -2 |
| 477 | |
| 478 | |
Gregory P. Smith | cce211f | 2010-03-01 00:05:08 +0000 | [diff] [blame] | 479 | def _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 Astrand | 5f5e141 | 2004-12-05 20:15:36 +0000 | [diff] [blame] | 489 | def call(*popenargs, **kwargs): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 490 | """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 Astrand | 5f5e141 | 2004-12-05 20:15:36 +0000 | [diff] [blame] | 497 | return Popen(*popenargs, **kwargs).wait() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 498 | |
| 499 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 500 | def 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 Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 504 | return code in the returncode attribute. |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 505 | |
| 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 Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 511 | if retcode: |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 512 | cmd = kwargs.get("args") |
| 513 | if cmd is None: |
| 514 | cmd = popenargs[0] |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 515 | raise CalledProcessError(retcode, cmd) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 516 | return 0 |
| 517 | |
| 518 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 519 | def check_output(*popenargs, **kwargs): |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame] | 520 | r"""Run command with arguments and return its output as a byte string. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 521 | |
| 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. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 528 | >>> check_output(["ls", "-l", "/dev/null"]) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 529 | '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 Brandl | 02e7dfd | 2009-12-28 08:09:32 +0000 | [diff] [blame] | 532 | To capture standard error in the result, use stderr=STDOUT. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 533 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 534 | >>> check_output(["/bin/sh", "-c", |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame] | 535 | ... "ls -l non_existent_file ; exit 0"], |
Georg Brandl | 02e7dfd | 2009-12-28 08:09:32 +0000 | [diff] [blame] | 536 | ... stderr=STDOUT) |
Mark Dickinson | 3e4caeb | 2009-02-21 20:27:01 +0000 | [diff] [blame] | 537 | 'ls: non_existent_file: No such file or directory\n' |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 538 | """ |
| 539 | if 'stdout' in kwargs: |
| 540 | raise ValueError('stdout argument not allowed, it will be overridden.') |
Amaury Forgeot d'Arc | 5fe420e | 2009-06-18 22:32:50 +0000 | [diff] [blame] | 541 | process = Popen(stdout=PIPE, *popenargs, **kwargs) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 542 | 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 Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 550 | |
| 551 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 552 | def 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. Smith | 70eb2f9 | 2008-01-19 22:49:37 +0000 | [diff] [blame] | 562 | or pipe characters contained within. A quoted string can be |
| 563 | embedded in an argument. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 564 | |
| 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 Smith | d19915e | 2009-11-09 15:16:23 +0000 | [diff] [blame] | 579 | # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx |
| 580 | # or search http://msdn.microsoft.com for |
| 581 | # "Parsing C++ Command-Line Arguments" |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 582 | 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. Smith | 70eb2f9 | 2008-01-19 22:49:37 +0000 | [diff] [blame] | 591 | needquote = (" " in arg) or ("\t" in arg) or ("|" in arg) or not arg |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 592 | if needquote: |
| 593 | result.append('"') |
| 594 | |
| 595 | for c in arg: |
| 596 | if c == '\\': |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 597 | # Don't know if we need to double yet. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 598 | bs_buf.append(c) |
| 599 | elif c == '"': |
Gregory P. Smith | e047e6d | 2008-01-19 20:49:02 +0000 | [diff] [blame] | 600 | # Double backslashes. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 601 | 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. Smith | e047e6d | 2008-01-19 20:49:02 +0000 | [diff] [blame] | 611 | # Add remaining backslashes, if any. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 612 | if bs_buf: |
| 613 | result.extend(bs_buf) |
| 614 | |
| 615 | if needquote: |
Peter Astrand | 7e78ade | 2005-03-03 21:10:23 +0000 | [diff] [blame] | 616 | result.extend(bs_buf) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 617 | result.append('"') |
| 618 | |
| 619 | return ''.join(result) |
| 620 | |
| 621 | |
| 622 | class 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öwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 631 | self._child_created = False |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 632 | if not isinstance(bufsize, (int, long)): |
| 633 | raise TypeError("bufsize must be an integer") |
| 634 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 635 | if mswindows: |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 636 | if preexec_fn is not None: |
| 637 | raise ValueError("preexec_fn is not supported on Windows " |
| 638 | "platforms") |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 639 | if close_fds and (stdin is not None or stdout is not None or |
| 640 | stderr is not None): |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 641 | raise ValueError("close_fds is not supported on Windows " |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 642 | "platforms if you redirect stdin/stdout/stderr") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 643 | else: |
| 644 | # POSIX |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 645 | if startupinfo is not None: |
| 646 | raise ValueError("startupinfo is only supported on Windows " |
| 647 | "platforms") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 648 | if creationflags != 0: |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 649 | raise ValueError("creationflags is only supported on Windows " |
| 650 | "platforms") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 651 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 652 | self.stdin = None |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 653 | 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 Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 673 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 674 | (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 Astrand | 5f9c6ae | 2007-02-06 15:37:50 +0000 | [diff] [blame] | 685 | if mswindows: |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 686 | 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 Astrand | 5f9c6ae | 2007-02-06 15:37:50 +0000 | [diff] [blame] | 692 | |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 693 | if p2cwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 694 | self.stdin = os.fdopen(p2cwrite, 'wb', bufsize) |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 695 | if c2pread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 696 | if universal_newlines: |
| 697 | self.stdout = os.fdopen(c2pread, 'rU', bufsize) |
| 698 | else: |
| 699 | self.stdout = os.fdopen(c2pread, 'rb', bufsize) |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 700 | if errread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 701 | if universal_newlines: |
| 702 | self.stderr = os.fdopen(errread, 'rU', bufsize) |
| 703 | else: |
| 704 | self.stderr = os.fdopen(errread, 'rb', bufsize) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 705 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 706 | |
| 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öwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 712 | |
Georg Brandl | 2452298 | 2007-04-21 20:35:38 +0000 | [diff] [blame] | 713 | def __del__(self, sys=sys): |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 714 | 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. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 718 | self._internal_poll(_deadstate=sys.maxint) |
Georg Brandl | 13cf38c | 2006-07-20 16:28:39 +0000 | [diff] [blame] | 719 | if self.returncode is None and _active is not None: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 720 | # Child is still running, keep us alive until we can wait on it. |
| 721 | _active.append(self) |
| 722 | |
| 723 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 724 | 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 Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 730 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 731 | 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 Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 736 | stdout = None |
| 737 | stderr = None |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 738 | 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. Smith | 4036fd4 | 2008-05-26 20:22:14 +0000 | [diff] [blame] | 744 | self.stdout.close() |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 745 | elif self.stderr: |
| 746 | stderr = self.stderr.read() |
Gregory P. Smith | 4036fd4 | 2008-05-26 20:22:14 +0000 | [diff] [blame] | 747 | self.stderr.close() |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 748 | self.wait() |
| 749 | return (stdout, stderr) |
Tim Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 750 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 751 | return self._communicate(input) |
| 752 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 753 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 754 | def poll(self): |
| 755 | return self._internal_poll() |
| 756 | |
| 757 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 758 | if mswindows: |
| 759 | # |
| 760 | # Windows methods |
| 761 | # |
| 762 | def _get_handles(self, stdin, stdout, stderr): |
Amaury Forgeot d'Arc | 8318afa | 2009-07-10 16:47:42 +0000 | [diff] [blame] | 763 | """Construct and return tuple with IO objects: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 764 | p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite |
| 765 | """ |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 766 | if stdin is None and stdout is None and stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 767 | return (None, None, None, None, None, None) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 768 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 769 | p2cread, p2cwrite = None, None |
| 770 | c2pread, c2pwrite = None, None |
| 771 | errread, errwrite = None, None |
| 772 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 773 | if stdin is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 774 | p2cread = GetStdHandle(STD_INPUT_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 775 | if p2cread is None: |
| 776 | p2cread, _ = CreatePipe(None, 0) |
| 777 | elif stdin == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 778 | p2cread, p2cwrite = CreatePipe(None, 0) |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 779 | elif isinstance(stdin, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 780 | 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 Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 786 | if stdout is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 787 | c2pwrite = GetStdHandle(STD_OUTPUT_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 788 | if c2pwrite is None: |
| 789 | _, c2pwrite = CreatePipe(None, 0) |
| 790 | elif stdout == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 791 | c2pread, c2pwrite = CreatePipe(None, 0) |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 792 | elif isinstance(stdout, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 793 | 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 Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 799 | if stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 800 | errwrite = GetStdHandle(STD_ERROR_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 801 | if errwrite is None: |
| 802 | _, errwrite = CreatePipe(None, 0) |
| 803 | elif stderr == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 804 | errread, errwrite = CreatePipe(None, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 805 | elif stderr == STDOUT: |
| 806 | errwrite = c2pwrite |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 807 | elif isinstance(stderr, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 808 | 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 Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 828 | w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)), |
| 829 | "w9xpopen.exe") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 830 | 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 Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 833 | w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix), |
| 834 | "w9xpopen.exe") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 835 | if not os.path.exists(w9xpopen): |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 836 | raise RuntimeError("Cannot locate w9xpopen.exe, which is " |
| 837 | "needed for Popen to work with your " |
| 838 | "shell or platform.") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 839 | return w9xpopen |
| 840 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 841 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 842 | 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 Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 850 | if not isinstance(args, types.StringTypes): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 851 | args = list2cmdline(args) |
| 852 | |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 853 | # Process startup details |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 854 | if startupinfo is None: |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 855 | startupinfo = STARTUPINFO() |
| 856 | if None not in (p2cread, c2pwrite, errwrite): |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 857 | startupinfo.dwFlags |= STARTF_USESTDHANDLES |
| 858 | startupinfo.hStdInput = p2cread |
| 859 | startupinfo.hStdOutput = c2pwrite |
| 860 | startupinfo.hStdError = errwrite |
| 861 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 862 | if shell: |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 863 | startupinfo.dwFlags |= STARTF_USESHOWWINDOW |
| 864 | startupinfo.wShowWindow = SW_HIDE |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 865 | comspec = os.environ.get("COMSPEC", "cmd.exe") |
| 866 | args = comspec + " /c " + args |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 867 | if (GetVersion() >= 0x80000000L or |
| 868 | os.path.basename(comspec).lower() == "command.com"): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 869 | # 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 Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 883 | # Start the process |
| 884 | try: |
| 885 | hp, ht, pid, tid = CreateProcess(executable, args, |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 886 | # no special security |
| 887 | None, None, |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 888 | int(not close_fds), |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 889 | creationflags, |
| 890 | env, |
| 891 | cwd, |
| 892 | startupinfo) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 893 | 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öwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 901 | self._child_created = True |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 902 | self._handle = hp |
| 903 | self.pid = pid |
| 904 | ht.Close() |
| 905 | |
Andrew M. Kuchling | 51ee66e | 2004-10-12 16:38:42 +0000 | [diff] [blame] | 906 | # Child is launched. Close the parent's copy of those pipe |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 907 | # 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 Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 912 | if p2cread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 913 | p2cread.Close() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 914 | if c2pwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 915 | c2pwrite.Close() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 916 | if errwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 917 | errwrite.Close() |
| 918 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 919 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 920 | def _internal_poll(self, _deadstate=None): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 921 | """Check if child process has terminated. Returns returncode |
| 922 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 923 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 924 | if WaitForSingleObject(self._handle, 0) == WAIT_OBJECT_0: |
| 925 | self.returncode = GetExitCodeProcess(self._handle) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 926 | return self.returncode |
| 927 | |
| 928 | |
| 929 | def wait(self): |
| 930 | """Wait for child process to terminate. Returns returncode |
| 931 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 932 | if self.returncode is None: |
Georg Brandl | 84fedf7 | 2010-02-06 22:59:15 +0000 | [diff] [blame] | 933 | WaitForSingleObject(self._handle, INFINITE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 934 | self.returncode = GetExitCodeProcess(self._handle) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 935 | return self.returncode |
| 936 | |
| 937 | |
| 938 | def _readerthread(self, fh, buffer): |
| 939 | buffer.append(fh.read()) |
| 940 | |
| 941 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 942 | def _communicate(self, input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 943 | stdout = None # Return |
| 944 | stderr = None # Return |
| 945 | |
| 946 | if self.stdout: |
| 947 | stdout = [] |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 948 | stdout_thread = threading.Thread(target=self._readerthread, |
| 949 | args=(self.stdout, stdout)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 950 | stdout_thread.setDaemon(True) |
| 951 | stdout_thread.start() |
| 952 | if self.stderr: |
| 953 | stderr = [] |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 954 | stderr_thread = threading.Thread(target=self._readerthread, |
| 955 | args=(self.stderr, stderr)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 956 | stderr_thread.setDaemon(True) |
| 957 | stderr_thread.start() |
| 958 | |
| 959 | if self.stdin: |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 960 | if input is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 961 | 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 Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 970 | if stdout is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 971 | stdout = stdout[0] |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 972 | if stderr is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 973 | 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 Norwitz | a6d01ce | 2006-05-02 06:23:22 +0000 | [diff] [blame] | 979 | if self.universal_newlines and hasattr(file, 'newlines'): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 980 | 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 Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 988 | def send_signal(self, sig): |
| 989 | """Send a signal to the process |
| 990 | """ |
| 991 | if sig == signal.SIGTERM: |
| 992 | self.terminate() |
| 993 | else: |
| 994 | raise ValueError("Only SIGTERM is supported on Windows") |
| 995 | |
| 996 | def terminate(self): |
| 997 | """Terminates the process |
| 998 | """ |
| 999 | TerminateProcess(self._handle, 1) |
| 1000 | |
| 1001 | kill = terminate |
| 1002 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1003 | else: |
| 1004 | # |
| 1005 | # POSIX methods |
| 1006 | # |
| 1007 | def _get_handles(self, stdin, stdout, stderr): |
Amaury Forgeot d'Arc | 8318afa | 2009-07-10 16:47:42 +0000 | [diff] [blame] | 1008 | """Construct and return tuple with IO objects: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1009 | p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite |
| 1010 | """ |
| 1011 | p2cread, p2cwrite = None, None |
| 1012 | c2pread, c2pwrite = None, None |
| 1013 | errread, errwrite = None, None |
| 1014 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1015 | if stdin is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1016 | pass |
| 1017 | elif stdin == PIPE: |
| 1018 | p2cread, p2cwrite = os.pipe() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1019 | elif isinstance(stdin, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1020 | p2cread = stdin |
| 1021 | else: |
| 1022 | # Assuming file-like object |
| 1023 | p2cread = stdin.fileno() |
| 1024 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1025 | if stdout is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1026 | pass |
| 1027 | elif stdout == PIPE: |
| 1028 | c2pread, c2pwrite = os.pipe() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1029 | elif isinstance(stdout, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1030 | c2pwrite = stdout |
| 1031 | else: |
| 1032 | # Assuming file-like object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1033 | c2pwrite = stdout.fileno() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1034 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1035 | if stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1036 | pass |
| 1037 | elif stderr == PIPE: |
| 1038 | errread, errwrite = os.pipe() |
| 1039 | elif stderr == STDOUT: |
| 1040 | errwrite = c2pwrite |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1041 | elif isinstance(stderr, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1042 | errwrite = stderr |
| 1043 | else: |
| 1044 | # Assuming file-like object |
| 1045 | errwrite = stderr.fileno() |
| 1046 | |
| 1047 | return (p2cread, p2cwrite, |
| 1048 | c2pread, c2pwrite, |
| 1049 | errread, errwrite) |
| 1050 | |
| 1051 | |
| 1052 | def _set_cloexec_flag(self, fd): |
| 1053 | try: |
| 1054 | cloexec_flag = fcntl.FD_CLOEXEC |
| 1055 | except AttributeError: |
| 1056 | cloexec_flag = 1 |
| 1057 | |
| 1058 | old = fcntl.fcntl(fd, fcntl.F_GETFD) |
| 1059 | fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag) |
| 1060 | |
| 1061 | |
| 1062 | def _close_fds(self, but): |
Amaury Forgeot d'Arc | 5fe420e | 2009-06-18 22:32:50 +0000 | [diff] [blame] | 1063 | if hasattr(os, 'closerange'): |
| 1064 | os.closerange(3, but) |
| 1065 | os.closerange(but + 1, MAXFD) |
| 1066 | else: |
| 1067 | for i in xrange(3, MAXFD): |
| 1068 | if i == but: |
| 1069 | continue |
| 1070 | try: |
| 1071 | os.close(i) |
| 1072 | except: |
| 1073 | pass |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1074 | |
| 1075 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1076 | def _execute_child(self, args, executable, preexec_fn, close_fds, |
| 1077 | cwd, env, universal_newlines, |
| 1078 | startupinfo, creationflags, shell, |
| 1079 | p2cread, p2cwrite, |
| 1080 | c2pread, c2pwrite, |
| 1081 | errread, errwrite): |
| 1082 | """Execute program (POSIX version)""" |
| 1083 | |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 1084 | if isinstance(args, types.StringTypes): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1085 | args = [args] |
Georg Brandl | 6c0e1e8 | 2006-10-29 09:05:04 +0000 | [diff] [blame] | 1086 | else: |
| 1087 | args = list(args) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1088 | |
| 1089 | if shell: |
| 1090 | args = ["/bin/sh", "-c"] + args |
| 1091 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1092 | if executable is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1093 | executable = args[0] |
| 1094 | |
| 1095 | # For transferring possible exec failure from child to parent |
| 1096 | # The first char specifies the exception type: 0 means |
| 1097 | # OSError, 1 means some other error. |
| 1098 | errpipe_read, errpipe_write = os.pipe() |
Gregory P. Smith | 87d4979 | 2008-01-19 20:57:59 +0000 | [diff] [blame] | 1099 | try: |
Gregory P. Smith | 92ffc63 | 2008-01-19 22:23:56 +0000 | [diff] [blame] | 1100 | try: |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1101 | self._set_cloexec_flag(errpipe_write) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1102 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1103 | gc_was_enabled = gc.isenabled() |
| 1104 | # Disable gc to avoid bug where gc -> file_dealloc -> |
| 1105 | # write to stderr -> hang. http://bugs.python.org/issue1336 |
| 1106 | gc.disable() |
| 1107 | try: |
| 1108 | self.pid = os.fork() |
Georg Brandl | 3e8b869 | 2009-07-16 21:47:51 +0000 | [diff] [blame] | 1109 | except: |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1110 | if gc_was_enabled: |
| 1111 | gc.enable() |
Georg Brandl | 3e8b869 | 2009-07-16 21:47:51 +0000 | [diff] [blame] | 1112 | raise |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1113 | self._child_created = True |
| 1114 | if self.pid == 0: |
| 1115 | # Child |
| 1116 | try: |
| 1117 | # Close parent's pipe ends |
| 1118 | if p2cwrite is not None: |
| 1119 | os.close(p2cwrite) |
| 1120 | if c2pread is not None: |
| 1121 | os.close(c2pread) |
| 1122 | if errread is not None: |
| 1123 | os.close(errread) |
| 1124 | os.close(errpipe_read) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1125 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1126 | # Dup fds for child |
| 1127 | if p2cread is not None: |
| 1128 | os.dup2(p2cread, 0) |
| 1129 | if c2pwrite is not None: |
| 1130 | os.dup2(c2pwrite, 1) |
| 1131 | if errwrite is not None: |
| 1132 | os.dup2(errwrite, 2) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1133 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1134 | # Close pipe fds. Make sure we don't close the same |
| 1135 | # fd more than once, or standard fds. |
| 1136 | if p2cread is not None and p2cread not in (0,): |
| 1137 | os.close(p2cread) |
| 1138 | if c2pwrite is not None and c2pwrite not in (p2cread, 1): |
| 1139 | os.close(c2pwrite) |
| 1140 | if errwrite is not None and errwrite not in (p2cread, c2pwrite, 2): |
| 1141 | os.close(errwrite) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1142 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1143 | # Close all other fds, if asked for |
| 1144 | if close_fds: |
| 1145 | self._close_fds(but=errpipe_write) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1146 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1147 | if cwd is not None: |
| 1148 | os.chdir(cwd) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1149 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1150 | if preexec_fn: |
| 1151 | preexec_fn() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1152 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1153 | if env is None: |
| 1154 | os.execvp(executable, args) |
| 1155 | else: |
| 1156 | os.execvpe(executable, args, env) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1157 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1158 | except: |
| 1159 | exc_type, exc_value, tb = sys.exc_info() |
| 1160 | # Save the traceback and attach it to the exception object |
| 1161 | exc_lines = traceback.format_exception(exc_type, |
| 1162 | exc_value, |
| 1163 | tb) |
| 1164 | exc_value.child_traceback = ''.join(exc_lines) |
| 1165 | os.write(errpipe_write, pickle.dumps(exc_value)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1166 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1167 | # This exitcode won't be reported to applications, so it |
| 1168 | # really doesn't matter what we return. |
| 1169 | os._exit(255) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1170 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1171 | # Parent |
| 1172 | if gc_was_enabled: |
| 1173 | gc.enable() |
| 1174 | finally: |
| 1175 | # be sure the FD is closed no matter what |
| 1176 | os.close(errpipe_write) |
| 1177 | |
| 1178 | if p2cread is not None and p2cwrite is not None: |
| 1179 | os.close(p2cread) |
| 1180 | if c2pwrite is not None and c2pread is not None: |
| 1181 | os.close(c2pwrite) |
| 1182 | if errwrite is not None and errread is not None: |
| 1183 | os.close(errwrite) |
| 1184 | |
| 1185 | # Wait for exec to fail or succeed; possibly raising exception |
Gregory P. Smith | cce211f | 2010-03-01 00:05:08 +0000 | [diff] [blame] | 1186 | # Exception limited to 1M |
| 1187 | data = _eintr_retry_call(os.read, errpipe_read, 1048576) |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1188 | finally: |
| 1189 | # be sure the FD is closed no matter what |
| 1190 | os.close(errpipe_read) |
| 1191 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1192 | if data != "": |
Gregory P. Smith | cce211f | 2010-03-01 00:05:08 +0000 | [diff] [blame] | 1193 | _eintr_retry_call(os.waitpid, self.pid, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1194 | child_exception = pickle.loads(data) |
Georg Brandl | f3715d2 | 2009-02-14 17:01:36 +0000 | [diff] [blame] | 1195 | for fd in (p2cwrite, c2pread, errread): |
| 1196 | if fd is not None: |
| 1197 | os.close(fd) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1198 | raise child_exception |
| 1199 | |
| 1200 | |
| 1201 | def _handle_exitstatus(self, sts): |
| 1202 | if os.WIFSIGNALED(sts): |
| 1203 | self.returncode = -os.WTERMSIG(sts) |
| 1204 | elif os.WIFEXITED(sts): |
| 1205 | self.returncode = os.WEXITSTATUS(sts) |
| 1206 | else: |
| 1207 | # Should never happen |
| 1208 | raise RuntimeError("Unknown child exit status!") |
| 1209 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1210 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 1211 | def _internal_poll(self, _deadstate=None): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1212 | """Check if child process has terminated. Returns returncode |
| 1213 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1214 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1215 | try: |
| 1216 | pid, sts = os.waitpid(self.pid, os.WNOHANG) |
| 1217 | if pid == self.pid: |
| 1218 | self._handle_exitstatus(sts) |
| 1219 | except os.error: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 1220 | if _deadstate is not None: |
| 1221 | self.returncode = _deadstate |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1222 | return self.returncode |
| 1223 | |
| 1224 | |
| 1225 | def wait(self): |
| 1226 | """Wait for child process to terminate. Returns returncode |
| 1227 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1228 | if self.returncode is None: |
Gregory P. Smith | cce211f | 2010-03-01 00:05:08 +0000 | [diff] [blame] | 1229 | pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1230 | self._handle_exitstatus(sts) |
| 1231 | return self.returncode |
| 1232 | |
| 1233 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 1234 | def _communicate(self, input): |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1235 | if self.stdin: |
| 1236 | # Flush stdio buffer. This might block, if the user has |
| 1237 | # been writing to .stdin in an uncontrolled fashion. |
| 1238 | self.stdin.flush() |
| 1239 | if not input: |
| 1240 | self.stdin.close() |
| 1241 | |
| 1242 | if _has_poll: |
| 1243 | stdout, stderr = self._communicate_with_poll(input) |
| 1244 | else: |
| 1245 | stdout, stderr = self._communicate_with_select(input) |
| 1246 | |
| 1247 | # All data exchanged. Translate lists into strings. |
| 1248 | if stdout is not None: |
| 1249 | stdout = ''.join(stdout) |
| 1250 | if stderr is not None: |
| 1251 | stderr = ''.join(stderr) |
| 1252 | |
| 1253 | # Translate newlines, if requested. We cannot let the file |
| 1254 | # object do the translation: It is based on stdio, which is |
| 1255 | # impossible to combine with select (unless forcing no |
| 1256 | # buffering). |
| 1257 | if self.universal_newlines and hasattr(file, 'newlines'): |
| 1258 | if stdout: |
| 1259 | stdout = self._translate_newlines(stdout) |
| 1260 | if stderr: |
| 1261 | stderr = self._translate_newlines(stderr) |
| 1262 | |
| 1263 | self.wait() |
| 1264 | return (stdout, stderr) |
| 1265 | |
| 1266 | |
| 1267 | def _communicate_with_poll(self, input): |
| 1268 | stdout = None # Return |
| 1269 | stderr = None # Return |
| 1270 | fd2file = {} |
| 1271 | fd2output = {} |
| 1272 | |
| 1273 | poller = select.poll() |
| 1274 | def register_and_append(file_obj, eventmask): |
| 1275 | poller.register(file_obj.fileno(), eventmask) |
| 1276 | fd2file[file_obj.fileno()] = file_obj |
| 1277 | |
| 1278 | def close_unregister_and_remove(fd): |
| 1279 | poller.unregister(fd) |
| 1280 | fd2file[fd].close() |
| 1281 | fd2file.pop(fd) |
| 1282 | |
| 1283 | if self.stdin and input: |
| 1284 | register_and_append(self.stdin, select.POLLOUT) |
| 1285 | |
| 1286 | select_POLLIN_POLLPRI = select.POLLIN | select.POLLPRI |
| 1287 | if self.stdout: |
| 1288 | register_and_append(self.stdout, select_POLLIN_POLLPRI) |
| 1289 | fd2output[self.stdout.fileno()] = stdout = [] |
| 1290 | if self.stderr: |
| 1291 | register_and_append(self.stderr, select_POLLIN_POLLPRI) |
| 1292 | fd2output[self.stderr.fileno()] = stderr = [] |
| 1293 | |
| 1294 | input_offset = 0 |
| 1295 | while fd2file: |
| 1296 | try: |
| 1297 | ready = poller.poll() |
| 1298 | except select.error, e: |
| 1299 | if e.args[0] == errno.EINTR: |
| 1300 | continue |
| 1301 | raise |
| 1302 | |
| 1303 | for fd, mode in ready: |
| 1304 | if mode & select.POLLOUT: |
| 1305 | chunk = input[input_offset : input_offset + _PIPE_BUF] |
| 1306 | input_offset += os.write(fd, chunk) |
| 1307 | if input_offset >= len(input): |
| 1308 | close_unregister_and_remove(fd) |
| 1309 | elif mode & select_POLLIN_POLLPRI: |
| 1310 | data = os.read(fd, 4096) |
| 1311 | if not data: |
| 1312 | close_unregister_and_remove(fd) |
| 1313 | fd2output[fd].append(data) |
| 1314 | else: |
| 1315 | # Ignore hang up or errors. |
| 1316 | close_unregister_and_remove(fd) |
| 1317 | |
| 1318 | return (stdout, stderr) |
| 1319 | |
| 1320 | |
| 1321 | def _communicate_with_select(self, input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1322 | read_set = [] |
| 1323 | write_set = [] |
| 1324 | stdout = None # Return |
| 1325 | stderr = None # Return |
| 1326 | |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1327 | if self.stdin and input: |
| 1328 | write_set.append(self.stdin) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1329 | if self.stdout: |
| 1330 | read_set.append(self.stdout) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1331 | stdout = [] |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1332 | if self.stderr: |
| 1333 | read_set.append(self.stderr) |
| 1334 | stderr = [] |
| 1335 | |
Peter Astrand | 1812f8c | 2007-01-07 14:34:16 +0000 | [diff] [blame] | 1336 | input_offset = 0 |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1337 | while read_set or write_set: |
Gregory P. Smith | f414064 | 2008-07-06 07:16:40 +0000 | [diff] [blame] | 1338 | try: |
| 1339 | rlist, wlist, xlist = select.select(read_set, write_set, []) |
| 1340 | except select.error, e: |
| 1341 | if e.args[0] == errno.EINTR: |
| 1342 | continue |
| 1343 | raise |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1344 | |
| 1345 | if self.stdin in wlist: |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1346 | chunk = input[input_offset : input_offset + _PIPE_BUF] |
Brett Cannon | 03446c4 | 2008-08-08 04:19:32 +0000 | [diff] [blame] | 1347 | bytes_written = os.write(self.stdin.fileno(), chunk) |
Tim Peters | f733abb | 2007-01-30 03:03:46 +0000 | [diff] [blame] | 1348 | input_offset += bytes_written |
Peter Astrand | 1812f8c | 2007-01-07 14:34:16 +0000 | [diff] [blame] | 1349 | if input_offset >= len(input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1350 | self.stdin.close() |
| 1351 | write_set.remove(self.stdin) |
| 1352 | |
| 1353 | if self.stdout in rlist: |
| 1354 | data = os.read(self.stdout.fileno(), 1024) |
| 1355 | if data == "": |
| 1356 | self.stdout.close() |
| 1357 | read_set.remove(self.stdout) |
| 1358 | stdout.append(data) |
| 1359 | |
| 1360 | if self.stderr in rlist: |
| 1361 | data = os.read(self.stderr.fileno(), 1024) |
| 1362 | if data == "": |
| 1363 | self.stderr.close() |
| 1364 | read_set.remove(self.stderr) |
| 1365 | stderr.append(data) |
| 1366 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1367 | return (stdout, stderr) |
| 1368 | |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1369 | |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 1370 | def send_signal(self, sig): |
| 1371 | """Send a signal to the process |
| 1372 | """ |
| 1373 | os.kill(self.pid, sig) |
| 1374 | |
| 1375 | def terminate(self): |
| 1376 | """Terminate the process with SIGTERM |
| 1377 | """ |
| 1378 | self.send_signal(signal.SIGTERM) |
| 1379 | |
| 1380 | def kill(self): |
| 1381 | """Kill the process with SIGKILL |
| 1382 | """ |
| 1383 | self.send_signal(signal.SIGKILL) |
| 1384 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1385 | |
| 1386 | def _demo_posix(): |
| 1387 | # |
| 1388 | # Example 1: Simple redirection: Get process list |
| 1389 | # |
| 1390 | plist = Popen(["ps"], stdout=PIPE).communicate()[0] |
| 1391 | print "Process list:" |
| 1392 | print plist |
| 1393 | |
| 1394 | # |
| 1395 | # Example 2: Change uid before executing child |
| 1396 | # |
| 1397 | if os.getuid() == 0: |
| 1398 | p = Popen(["id"], preexec_fn=lambda: os.setuid(100)) |
| 1399 | p.wait() |
| 1400 | |
| 1401 | # |
| 1402 | # Example 3: Connecting several subprocesses |
| 1403 | # |
| 1404 | print "Looking for 'hda'..." |
| 1405 | p1 = Popen(["dmesg"], stdout=PIPE) |
| 1406 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
| 1407 | print repr(p2.communicate()[0]) |
| 1408 | |
| 1409 | # |
| 1410 | # Example 4: Catch execution error |
| 1411 | # |
| 1412 | print |
| 1413 | print "Trying a weird file..." |
| 1414 | try: |
| 1415 | print Popen(["/this/path/does/not/exist"]).communicate() |
| 1416 | except OSError, e: |
| 1417 | if e.errno == errno.ENOENT: |
| 1418 | print "The file didn't exist. I thought so..." |
| 1419 | print "Child traceback:" |
| 1420 | print e.child_traceback |
| 1421 | else: |
| 1422 | print "Error", e.errno |
| 1423 | else: |
| 1424 | print >>sys.stderr, "Gosh. No error." |
| 1425 | |
| 1426 | |
| 1427 | def _demo_windows(): |
| 1428 | # |
| 1429 | # Example 1: Connecting several subprocesses |
| 1430 | # |
| 1431 | print "Looking for 'PROMPT' in set output..." |
| 1432 | p1 = Popen("set", stdout=PIPE, shell=True) |
| 1433 | p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE) |
| 1434 | print repr(p2.communicate()[0]) |
| 1435 | |
| 1436 | # |
| 1437 | # Example 2: Simple execution of program |
| 1438 | # |
| 1439 | print "Executing calc..." |
| 1440 | p = Popen("calc") |
| 1441 | p.wait() |
| 1442 | |
| 1443 | |
| 1444 | if __name__ == "__main__": |
| 1445 | if mswindows: |
| 1446 | _demo_windows() |
| 1447 | else: |
| 1448 | _demo_posix() |