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 | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame^] | 139 | output = subprocess.check_output(["ls", "-l", "/dev/null"]) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 140 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 141 | Exceptions |
| 142 | ---------- |
| 143 | Exceptions raised in the child process, before the new program has |
| 144 | started to execute, will be re-raised in the parent. Additionally, |
| 145 | the exception object will have one extra attribute called |
| 146 | 'child_traceback', which is a string containing traceback information |
| 147 | from the childs point of view. |
| 148 | |
| 149 | The most common exception raised is OSError. This occurs, for |
| 150 | example, when trying to execute a non-existent file. Applications |
| 151 | should prepare for OSErrors. |
| 152 | |
| 153 | A ValueError will be raised if Popen is called with invalid arguments. |
| 154 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 155 | check_call() and check_output() will raise CalledProcessError, if the |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 156 | called process returns a non-zero return code. |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 157 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 158 | |
| 159 | Security |
| 160 | -------- |
| 161 | Unlike some other popen functions, this implementation will never call |
| 162 | /bin/sh implicitly. This means that all characters, including shell |
| 163 | metacharacters, can safely be passed to child processes. |
| 164 | |
| 165 | |
| 166 | Popen objects |
| 167 | ============= |
| 168 | Instances of the Popen class have the following methods: |
| 169 | |
| 170 | poll() |
| 171 | Check if child process has terminated. Returns returncode |
| 172 | attribute. |
| 173 | |
| 174 | wait() |
| 175 | Wait for child process to terminate. Returns returncode attribute. |
| 176 | |
| 177 | communicate(input=None) |
| 178 | Interact with process: Send data to stdin. Read data from stdout |
| 179 | and stderr, until end-of-file is reached. Wait for process to |
Neal Norwitz | a186ee2 | 2006-12-29 03:01:53 +0000 | [diff] [blame] | 180 | terminate. The optional input argument should be a string to be |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 181 | sent to the child process, or None, if no data should be sent to |
| 182 | the child. |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 183 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 184 | communicate() returns a tuple (stdout, stderr). |
| 185 | |
| 186 | Note: The data read is buffered in memory, so do not use this |
| 187 | method if the data size is large or unlimited. |
| 188 | |
| 189 | The following attributes are also available: |
| 190 | |
| 191 | stdin |
| 192 | If the stdin argument is PIPE, this attribute is a file object |
| 193 | that provides input to the child process. Otherwise, it is None. |
| 194 | |
| 195 | stdout |
| 196 | If the stdout argument is PIPE, this attribute is a file object |
| 197 | that provides output from the child process. Otherwise, it is |
| 198 | None. |
| 199 | |
| 200 | stderr |
| 201 | If the stderr argument is PIPE, this attribute is file object that |
| 202 | provides error output from the child process. Otherwise, it is |
| 203 | None. |
| 204 | |
| 205 | pid |
| 206 | The process ID of the child process. |
| 207 | |
| 208 | returncode |
| 209 | The child return code. A None value indicates that the process |
| 210 | hasn't terminated yet. A negative value -N indicates that the |
| 211 | child was terminated by signal N (UNIX only). |
| 212 | |
| 213 | |
| 214 | Replacing older functions with the subprocess module |
| 215 | ==================================================== |
| 216 | In this section, "a ==> b" means that b can be used as a replacement |
| 217 | for a. |
| 218 | |
| 219 | Note: All functions in this section fail (more or less) silently if |
| 220 | the executed program cannot be found; this module raises an OSError |
| 221 | exception. |
| 222 | |
| 223 | In the following examples, we assume that the subprocess module is |
| 224 | imported with "from subprocess import *". |
| 225 | |
| 226 | |
| 227 | Replacing /bin/sh shell backquote |
| 228 | --------------------------------- |
| 229 | output=`mycmd myarg` |
| 230 | ==> |
| 231 | output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] |
| 232 | |
| 233 | |
| 234 | Replacing shell pipe line |
| 235 | ------------------------- |
| 236 | output=`dmesg | grep hda` |
| 237 | ==> |
| 238 | p1 = Popen(["dmesg"], stdout=PIPE) |
Peter Astrand | 6fdf3cb | 2004-11-30 18:06:42 +0000 | [diff] [blame] | 239 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 240 | output = p2.communicate()[0] |
| 241 | |
| 242 | |
| 243 | Replacing os.system() |
| 244 | --------------------- |
| 245 | sts = os.system("mycmd" + " myarg") |
| 246 | ==> |
| 247 | p = Popen("mycmd" + " myarg", shell=True) |
Neal Norwitz | 8440483 | 2006-07-10 00:05:34 +0000 | [diff] [blame] | 248 | pid, sts = os.waitpid(p.pid, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 249 | |
| 250 | Note: |
| 251 | |
| 252 | * Calling the program through the shell is usually not required. |
| 253 | |
| 254 | * It's easier to look at the returncode attribute than the |
| 255 | exitstatus. |
| 256 | |
| 257 | A more real-world example would look like this: |
| 258 | |
| 259 | try: |
| 260 | retcode = call("mycmd" + " myarg", shell=True) |
| 261 | if retcode < 0: |
| 262 | print >>sys.stderr, "Child was terminated by signal", -retcode |
| 263 | else: |
| 264 | print >>sys.stderr, "Child returned", retcode |
| 265 | except OSError, e: |
| 266 | print >>sys.stderr, "Execution failed:", e |
| 267 | |
| 268 | |
| 269 | Replacing os.spawn* |
| 270 | ------------------- |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 271 | P_NOWAIT example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 272 | |
| 273 | pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") |
| 274 | ==> |
| 275 | pid = Popen(["/bin/mycmd", "myarg"]).pid |
| 276 | |
| 277 | |
| 278 | P_WAIT example: |
| 279 | |
| 280 | retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") |
| 281 | ==> |
| 282 | retcode = call(["/bin/mycmd", "myarg"]) |
| 283 | |
| 284 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 285 | Vector example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 286 | |
| 287 | os.spawnvp(os.P_NOWAIT, path, args) |
| 288 | ==> |
| 289 | Popen([path] + args[1:]) |
| 290 | |
| 291 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 292 | Environment example: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 293 | |
| 294 | os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) |
| 295 | ==> |
| 296 | Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) |
| 297 | |
| 298 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 299 | Replacing os.popen* |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 300 | ------------------- |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 301 | pipe = os.popen("cmd", mode='r', bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 302 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 303 | pipe = Popen("cmd", shell=True, bufsize=bufsize, stdout=PIPE).stdout |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 304 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 305 | pipe = os.popen("cmd", mode='w', bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 306 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 307 | pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 308 | |
| 309 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 310 | (child_stdin, child_stdout) = os.popen2("cmd", mode, bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 311 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 312 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 313 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 314 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
| 315 | |
| 316 | |
| 317 | (child_stdin, |
| 318 | child_stdout, |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 319 | child_stderr) = os.popen3("cmd", mode, bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 320 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 321 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 322 | stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) |
| 323 | (child_stdin, |
| 324 | child_stdout, |
| 325 | child_stderr) = (p.stdin, p.stdout, p.stderr) |
| 326 | |
| 327 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 328 | (child_stdin, child_stdout_and_stderr) = os.popen4("cmd", mode, |
| 329 | bufsize) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 330 | ==> |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 331 | p = Popen("cmd", shell=True, bufsize=bufsize, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 332 | stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) |
| 333 | (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) |
| 334 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 335 | On Unix, os.popen2, os.popen3 and os.popen4 also accept a sequence as |
| 336 | the command to execute, in which case arguments will be passed |
| 337 | directly to the program without shell intervention. This usage can be |
| 338 | replaced as follows: |
| 339 | |
| 340 | (child_stdin, child_stdout) = os.popen2(["/bin/ls", "-l"], mode, |
| 341 | bufsize) |
| 342 | ==> |
| 343 | p = Popen(["/bin/ls", "-l"], bufsize=bufsize, stdin=PIPE, stdout=PIPE) |
| 344 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
| 345 | |
| 346 | Return code handling translates as follows: |
| 347 | |
| 348 | pipe = os.popen("cmd", 'w') |
| 349 | ... |
| 350 | rc = pipe.close() |
| 351 | if rc != None and rc % 256: |
| 352 | print "There were some errors" |
| 353 | ==> |
| 354 | process = Popen("cmd", 'w', shell=True, stdin=PIPE) |
| 355 | ... |
| 356 | process.stdin.close() |
| 357 | if process.wait() != 0: |
| 358 | print "There were some errors" |
| 359 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 360 | |
| 361 | Replacing popen2.* |
| 362 | ------------------ |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 363 | (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) |
| 364 | ==> |
| 365 | p = Popen(["somestring"], shell=True, bufsize=bufsize |
| 366 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 367 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 368 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 369 | On Unix, popen2 also accepts a sequence as the command to execute, in |
| 370 | which case arguments will be passed directly to the program without |
| 371 | shell intervention. This usage can be replaced as follows: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 372 | |
Philip Jenvey | 8b90204 | 2009-09-29 19:10:15 +0000 | [diff] [blame] | 373 | (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, |
| 374 | mode) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 375 | ==> |
| 376 | p = Popen(["mycmd", "myarg"], bufsize=bufsize, |
| 377 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 378 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 379 | |
Neal Norwitz | aa87fb6 | 2007-05-11 06:23:01 +0000 | [diff] [blame] | 380 | The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 381 | except that: |
| 382 | |
| 383 | * subprocess.Popen raises an exception if the execution fails |
| 384 | * the capturestderr argument is replaced with the stderr argument. |
| 385 | * stdin=PIPE and stdout=PIPE must be specified. |
| 386 | * popen2 closes all filedescriptors by default, but you have to specify |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 387 | close_fds=True with subprocess.Popen. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 388 | """ |
| 389 | |
| 390 | import sys |
| 391 | mswindows = (sys.platform == "win32") |
| 392 | |
| 393 | import os |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 394 | import types |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 395 | import traceback |
Gregory P. Smith | 87d4979 | 2008-01-19 20:57:59 +0000 | [diff] [blame] | 396 | import gc |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 397 | import signal |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 398 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 399 | # Exception classes used by this module. |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 400 | class CalledProcessError(Exception): |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 401 | """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] | 402 | check_output() returns a non-zero exit status. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 403 | The exit status will be stored in the returncode attribute; |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 404 | check_output() will also store the output in the output attribute. |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 405 | """ |
| 406 | def __init__(self, returncode, cmd, output=None): |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 407 | self.returncode = returncode |
| 408 | self.cmd = cmd |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 409 | self.output = output |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 410 | def __str__(self): |
| 411 | 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] | 412 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 413 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 414 | if mswindows: |
| 415 | import threading |
| 416 | import msvcrt |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 417 | if 0: # <-- change this to use pywin32 instead of the _subprocess driver |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 418 | import pywintypes |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 419 | from win32api import GetStdHandle, STD_INPUT_HANDLE, \ |
| 420 | STD_OUTPUT_HANDLE, STD_ERROR_HANDLE |
| 421 | from win32api import GetCurrentProcess, DuplicateHandle, \ |
| 422 | GetModuleFileName, GetVersion |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 423 | from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 424 | from win32pipe import CreatePipe |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 425 | from win32process import CreateProcess, STARTUPINFO, \ |
| 426 | GetExitCodeProcess, STARTF_USESTDHANDLES, \ |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 427 | STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 428 | from win32process import TerminateProcess |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 429 | from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0 |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 430 | else: |
| 431 | from _subprocess import * |
| 432 | class STARTUPINFO: |
| 433 | dwFlags = 0 |
| 434 | hStdInput = None |
| 435 | hStdOutput = None |
| 436 | hStdError = None |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 437 | wShowWindow = 0 |
Fredrik Lundh | 3e73a01 | 2004-10-13 18:19:18 +0000 | [diff] [blame] | 438 | class pywintypes: |
| 439 | error = IOError |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 440 | else: |
| 441 | import select |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 442 | _has_poll = hasattr(select, 'poll') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 443 | import errno |
| 444 | import fcntl |
| 445 | import pickle |
| 446 | |
Amaury Forgeot d'Arc | ce32eb7 | 2009-07-09 22:37:22 +0000 | [diff] [blame] | 447 | # When select or poll has indicated that the file is writable, |
| 448 | # we can write up to _PIPE_BUF bytes without risk of blocking. |
| 449 | # POSIX defines PIPE_BUF as >= 512. |
| 450 | _PIPE_BUF = getattr(select, 'PIPE_BUF', 512) |
| 451 | |
| 452 | |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 453 | __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 454 | "check_output", "CalledProcessError"] |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 455 | |
| 456 | try: |
| 457 | MAXFD = os.sysconf("SC_OPEN_MAX") |
| 458 | except: |
| 459 | MAXFD = 256 |
| 460 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 461 | _active = [] |
| 462 | |
| 463 | def _cleanup(): |
| 464 | for inst in _active[:]: |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 465 | if inst._internal_poll(_deadstate=sys.maxint) >= 0: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 466 | try: |
| 467 | _active.remove(inst) |
| 468 | except ValueError: |
| 469 | # This can happen if two threads create a new Popen instance. |
| 470 | # It's harmless that it was already removed, so ignore. |
| 471 | pass |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 472 | |
| 473 | PIPE = -1 |
| 474 | STDOUT = -2 |
| 475 | |
| 476 | |
Peter Astrand | 5f5e141 | 2004-12-05 20:15:36 +0000 | [diff] [blame] | 477 | def call(*popenargs, **kwargs): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 478 | """Run command with arguments. Wait for command to complete, then |
| 479 | return the returncode attribute. |
| 480 | |
| 481 | The arguments are the same as for the Popen constructor. Example: |
| 482 | |
| 483 | retcode = call(["ls", "-l"]) |
| 484 | """ |
Peter Astrand | 5f5e141 | 2004-12-05 20:15:36 +0000 | [diff] [blame] | 485 | return Popen(*popenargs, **kwargs).wait() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 486 | |
| 487 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 488 | def check_call(*popenargs, **kwargs): |
| 489 | """Run command with arguments. Wait for command to complete. If |
| 490 | the exit code was zero then return, otherwise raise |
| 491 | CalledProcessError. The CalledProcessError object will have the |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 492 | return code in the returncode attribute. |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 493 | |
| 494 | The arguments are the same as for the Popen constructor. Example: |
| 495 | |
| 496 | check_call(["ls", "-l"]) |
| 497 | """ |
| 498 | retcode = call(*popenargs, **kwargs) |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 499 | if retcode: |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 500 | cmd = kwargs.get("args") |
| 501 | if cmd is None: |
| 502 | cmd = popenargs[0] |
Peter Astrand | 7d1d436 | 2006-07-14 14:04:45 +0000 | [diff] [blame] | 503 | raise CalledProcessError(retcode, cmd) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 504 | return 0 |
| 505 | |
| 506 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 507 | def check_output(*popenargs, **kwargs): |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame^] | 508 | 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] | 509 | |
| 510 | If the exit code was non-zero it raises a CalledProcessError. The |
| 511 | CalledProcessError object will have the return code in the returncode |
| 512 | attribute and output in the output attribute. |
| 513 | |
| 514 | The arguments are the same as for the Popen constructor. Example: |
| 515 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 516 | >>> check_output(["ls", "-l", "/dev/null"]) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 517 | 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' |
| 518 | |
| 519 | The stdout argument is not allowed as it is used internally. |
| 520 | To capture standard error in the result, use stderr=subprocess.STDOUT. |
| 521 | |
Gregory P. Smith | 2657680 | 2008-12-05 02:27:01 +0000 | [diff] [blame] | 522 | >>> check_output(["/bin/sh", "-c", |
Georg Brandl | 6ab5d08 | 2009-12-20 14:33:20 +0000 | [diff] [blame^] | 523 | ... "ls -l non_existent_file ; exit 0"], |
| 524 | ... stderr=subprocess.STDOUT) |
Mark Dickinson | 3e4caeb | 2009-02-21 20:27:01 +0000 | [diff] [blame] | 525 | 'ls: non_existent_file: No such file or directory\n' |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 526 | """ |
| 527 | if 'stdout' in kwargs: |
| 528 | raise ValueError('stdout argument not allowed, it will be overridden.') |
Amaury Forgeot d'Arc | 5fe420e | 2009-06-18 22:32:50 +0000 | [diff] [blame] | 529 | process = Popen(stdout=PIPE, *popenargs, **kwargs) |
Gregory P. Smith | 97f49f4 | 2008-12-04 20:21:09 +0000 | [diff] [blame] | 530 | output, unused_err = process.communicate() |
| 531 | retcode = process.poll() |
| 532 | if retcode: |
| 533 | cmd = kwargs.get("args") |
| 534 | if cmd is None: |
| 535 | cmd = popenargs[0] |
| 536 | raise CalledProcessError(retcode, cmd, output=output) |
| 537 | return output |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 538 | |
| 539 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 540 | def list2cmdline(seq): |
| 541 | """ |
| 542 | Translate a sequence of arguments into a command line |
| 543 | string, using the same rules as the MS C runtime: |
| 544 | |
| 545 | 1) Arguments are delimited by white space, which is either a |
| 546 | space or a tab. |
| 547 | |
| 548 | 2) A string surrounded by double quotation marks is |
| 549 | interpreted as a single argument, regardless of white space |
Gregory P. Smith | 70eb2f9 | 2008-01-19 22:49:37 +0000 | [diff] [blame] | 550 | or pipe characters contained within. A quoted string can be |
| 551 | embedded in an argument. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 552 | |
| 553 | 3) A double quotation mark preceded by a backslash is |
| 554 | interpreted as a literal double quotation mark. |
| 555 | |
| 556 | 4) Backslashes are interpreted literally, unless they |
| 557 | immediately precede a double quotation mark. |
| 558 | |
| 559 | 5) If backslashes immediately precede a double quotation mark, |
| 560 | every pair of backslashes is interpreted as a literal |
| 561 | backslash. If the number of backslashes is odd, the last |
| 562 | backslash escapes the next double quotation mark as |
| 563 | described in rule 3. |
| 564 | """ |
| 565 | |
| 566 | # See |
Eric Smith | d19915e | 2009-11-09 15:16:23 +0000 | [diff] [blame] | 567 | # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx |
| 568 | # or search http://msdn.microsoft.com for |
| 569 | # "Parsing C++ Command-Line Arguments" |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 570 | result = [] |
| 571 | needquote = False |
| 572 | for arg in seq: |
| 573 | bs_buf = [] |
| 574 | |
| 575 | # Add a space to separate this argument from the others |
| 576 | if result: |
| 577 | result.append(' ') |
| 578 | |
Gregory P. Smith | 70eb2f9 | 2008-01-19 22:49:37 +0000 | [diff] [blame] | 579 | 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] | 580 | if needquote: |
| 581 | result.append('"') |
| 582 | |
| 583 | for c in arg: |
| 584 | if c == '\\': |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 585 | # Don't know if we need to double yet. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 586 | bs_buf.append(c) |
| 587 | elif c == '"': |
Gregory P. Smith | e047e6d | 2008-01-19 20:49:02 +0000 | [diff] [blame] | 588 | # Double backslashes. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 589 | result.append('\\' * len(bs_buf)*2) |
| 590 | bs_buf = [] |
| 591 | result.append('\\"') |
| 592 | else: |
| 593 | # Normal char |
| 594 | if bs_buf: |
| 595 | result.extend(bs_buf) |
| 596 | bs_buf = [] |
| 597 | result.append(c) |
| 598 | |
Gregory P. Smith | e047e6d | 2008-01-19 20:49:02 +0000 | [diff] [blame] | 599 | # Add remaining backslashes, if any. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 600 | if bs_buf: |
| 601 | result.extend(bs_buf) |
| 602 | |
| 603 | if needquote: |
Peter Astrand | 7e78ade | 2005-03-03 21:10:23 +0000 | [diff] [blame] | 604 | result.extend(bs_buf) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 605 | result.append('"') |
| 606 | |
| 607 | return ''.join(result) |
| 608 | |
| 609 | |
| 610 | class Popen(object): |
| 611 | def __init__(self, args, bufsize=0, executable=None, |
| 612 | stdin=None, stdout=None, stderr=None, |
| 613 | preexec_fn=None, close_fds=False, shell=False, |
| 614 | cwd=None, env=None, universal_newlines=False, |
| 615 | startupinfo=None, creationflags=0): |
| 616 | """Create new Popen instance.""" |
| 617 | _cleanup() |
| 618 | |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 619 | self._child_created = False |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 620 | if not isinstance(bufsize, (int, long)): |
| 621 | raise TypeError("bufsize must be an integer") |
| 622 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 623 | if mswindows: |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 624 | if preexec_fn is not None: |
| 625 | raise ValueError("preexec_fn is not supported on Windows " |
| 626 | "platforms") |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 627 | if close_fds and (stdin is not None or stdout is not None or |
| 628 | stderr is not None): |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 629 | raise ValueError("close_fds is not supported on Windows " |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 630 | "platforms if you redirect stdin/stdout/stderr") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 631 | else: |
| 632 | # POSIX |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 633 | if startupinfo is not None: |
| 634 | raise ValueError("startupinfo is only supported on Windows " |
| 635 | "platforms") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 636 | if creationflags != 0: |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 637 | raise ValueError("creationflags is only supported on Windows " |
| 638 | "platforms") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 639 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 640 | self.stdin = None |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 641 | self.stdout = None |
| 642 | self.stderr = None |
| 643 | self.pid = None |
| 644 | self.returncode = None |
| 645 | self.universal_newlines = universal_newlines |
| 646 | |
| 647 | # Input and output objects. The general principle is like |
| 648 | # this: |
| 649 | # |
| 650 | # Parent Child |
| 651 | # ------ ----- |
| 652 | # p2cwrite ---stdin---> p2cread |
| 653 | # c2pread <--stdout--- c2pwrite |
| 654 | # errread <--stderr--- errwrite |
| 655 | # |
| 656 | # On POSIX, the child objects are file descriptors. On |
| 657 | # Windows, these are Windows file handles. The parent objects |
| 658 | # are file descriptors on both platforms. The parent objects |
| 659 | # are None when not using PIPEs. The child objects are None |
| 660 | # when not redirecting. |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 661 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 662 | (p2cread, p2cwrite, |
| 663 | c2pread, c2pwrite, |
| 664 | errread, errwrite) = self._get_handles(stdin, stdout, stderr) |
| 665 | |
| 666 | self._execute_child(args, executable, preexec_fn, close_fds, |
| 667 | cwd, env, universal_newlines, |
| 668 | startupinfo, creationflags, shell, |
| 669 | p2cread, p2cwrite, |
| 670 | c2pread, c2pwrite, |
| 671 | errread, errwrite) |
| 672 | |
Peter Astrand | 5f9c6ae | 2007-02-06 15:37:50 +0000 | [diff] [blame] | 673 | if mswindows: |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 674 | if p2cwrite is not None: |
| 675 | p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) |
| 676 | if c2pread is not None: |
| 677 | c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) |
| 678 | if errread is not None: |
| 679 | errread = msvcrt.open_osfhandle(errread.Detach(), 0) |
Peter Astrand | 5f9c6ae | 2007-02-06 15:37:50 +0000 | [diff] [blame] | 680 | |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 681 | if p2cwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 682 | self.stdin = os.fdopen(p2cwrite, 'wb', bufsize) |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 683 | if c2pread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 684 | if universal_newlines: |
| 685 | self.stdout = os.fdopen(c2pread, 'rU', bufsize) |
| 686 | else: |
| 687 | self.stdout = os.fdopen(c2pread, 'rb', bufsize) |
Peter Astrand | f540003 | 2007-02-02 19:06:36 +0000 | [diff] [blame] | 688 | if errread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 689 | if universal_newlines: |
| 690 | self.stderr = os.fdopen(errread, 'rU', bufsize) |
| 691 | else: |
| 692 | self.stderr = os.fdopen(errread, 'rb', bufsize) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 693 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 694 | |
| 695 | def _translate_newlines(self, data): |
| 696 | data = data.replace("\r\n", "\n") |
| 697 | data = data.replace("\r", "\n") |
| 698 | return data |
| 699 | |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 700 | |
Georg Brandl | 2452298 | 2007-04-21 20:35:38 +0000 | [diff] [blame] | 701 | def __del__(self, sys=sys): |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 702 | if not self._child_created: |
| 703 | # We didn't get to successfully create a child process. |
| 704 | return |
| 705 | # 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] | 706 | self._internal_poll(_deadstate=sys.maxint) |
Georg Brandl | 13cf38c | 2006-07-20 16:28:39 +0000 | [diff] [blame] | 707 | if self.returncode is None and _active is not None: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 708 | # Child is still running, keep us alive until we can wait on it. |
| 709 | _active.append(self) |
| 710 | |
| 711 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 712 | def communicate(self, input=None): |
| 713 | """Interact with process: Send data to stdin. Read data from |
| 714 | stdout and stderr, until end-of-file is reached. Wait for |
| 715 | process to terminate. The optional input argument should be a |
| 716 | string to be sent to the child process, or None, if no data |
| 717 | should be sent to the child. |
Tim Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 718 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 719 | communicate() returns a tuple (stdout, stderr).""" |
| 720 | |
| 721 | # Optimization: If we are only using one pipe, or no pipe at |
| 722 | # all, using select() or threads is unnecessary. |
| 723 | if [self.stdin, self.stdout, self.stderr].count(None) >= 2: |
Tim Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 724 | stdout = None |
| 725 | stderr = None |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 726 | if self.stdin: |
| 727 | if input: |
| 728 | self.stdin.write(input) |
| 729 | self.stdin.close() |
| 730 | elif self.stdout: |
| 731 | stdout = self.stdout.read() |
Gregory P. Smith | 4036fd4 | 2008-05-26 20:22:14 +0000 | [diff] [blame] | 732 | self.stdout.close() |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 733 | elif self.stderr: |
| 734 | stderr = self.stderr.read() |
Gregory P. Smith | 4036fd4 | 2008-05-26 20:22:14 +0000 | [diff] [blame] | 735 | self.stderr.close() |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 736 | self.wait() |
| 737 | return (stdout, stderr) |
Tim Peters | eba28be | 2005-03-28 01:08:02 +0000 | [diff] [blame] | 738 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 739 | return self._communicate(input) |
| 740 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 741 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 742 | def poll(self): |
| 743 | return self._internal_poll() |
| 744 | |
| 745 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 746 | if mswindows: |
| 747 | # |
| 748 | # Windows methods |
| 749 | # |
| 750 | def _get_handles(self, stdin, stdout, stderr): |
Amaury Forgeot d'Arc | 8318afa | 2009-07-10 16:47:42 +0000 | [diff] [blame] | 751 | """Construct and return tuple with IO objects: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 752 | p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite |
| 753 | """ |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 754 | if stdin is None and stdout is None and stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 755 | return (None, None, None, None, None, None) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 756 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 757 | p2cread, p2cwrite = None, None |
| 758 | c2pread, c2pwrite = None, None |
| 759 | errread, errwrite = None, None |
| 760 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 761 | if stdin is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 762 | p2cread = GetStdHandle(STD_INPUT_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 763 | if p2cread is None: |
| 764 | p2cread, _ = CreatePipe(None, 0) |
| 765 | elif stdin == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 766 | p2cread, p2cwrite = CreatePipe(None, 0) |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 767 | elif isinstance(stdin, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 768 | p2cread = msvcrt.get_osfhandle(stdin) |
| 769 | else: |
| 770 | # Assuming file-like object |
| 771 | p2cread = msvcrt.get_osfhandle(stdin.fileno()) |
| 772 | p2cread = self._make_inheritable(p2cread) |
| 773 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 774 | if stdout is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 775 | c2pwrite = GetStdHandle(STD_OUTPUT_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 776 | if c2pwrite is None: |
| 777 | _, c2pwrite = CreatePipe(None, 0) |
| 778 | elif stdout == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 779 | c2pread, c2pwrite = CreatePipe(None, 0) |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 780 | elif isinstance(stdout, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 781 | c2pwrite = msvcrt.get_osfhandle(stdout) |
| 782 | else: |
| 783 | # Assuming file-like object |
| 784 | c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) |
| 785 | c2pwrite = self._make_inheritable(c2pwrite) |
| 786 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 787 | if stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 788 | errwrite = GetStdHandle(STD_ERROR_HANDLE) |
Hirokazu Yamamoto | eacbbdf | 2009-03-03 22:18:14 +0000 | [diff] [blame] | 789 | if errwrite is None: |
| 790 | _, errwrite = CreatePipe(None, 0) |
| 791 | elif stderr == PIPE: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 792 | errread, errwrite = CreatePipe(None, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 793 | elif stderr == STDOUT: |
| 794 | errwrite = c2pwrite |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 795 | elif isinstance(stderr, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 796 | errwrite = msvcrt.get_osfhandle(stderr) |
| 797 | else: |
| 798 | # Assuming file-like object |
| 799 | errwrite = msvcrt.get_osfhandle(stderr.fileno()) |
| 800 | errwrite = self._make_inheritable(errwrite) |
| 801 | |
| 802 | return (p2cread, p2cwrite, |
| 803 | c2pread, c2pwrite, |
| 804 | errread, errwrite) |
| 805 | |
| 806 | |
| 807 | def _make_inheritable(self, handle): |
| 808 | """Return a duplicate of handle, which is inheritable""" |
| 809 | return DuplicateHandle(GetCurrentProcess(), handle, |
| 810 | GetCurrentProcess(), 0, 1, |
| 811 | DUPLICATE_SAME_ACCESS) |
| 812 | |
| 813 | |
| 814 | def _find_w9xpopen(self): |
| 815 | """Find and return absolut path to w9xpopen.exe""" |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 816 | w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)), |
| 817 | "w9xpopen.exe") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 818 | if not os.path.exists(w9xpopen): |
| 819 | # Eeek - file-not-found - possibly an embedding |
| 820 | # situation - see if we can locate it in sys.exec_prefix |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 821 | w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix), |
| 822 | "w9xpopen.exe") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 823 | if not os.path.exists(w9xpopen): |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 824 | raise RuntimeError("Cannot locate w9xpopen.exe, which is " |
| 825 | "needed for Popen to work with your " |
| 826 | "shell or platform.") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 827 | return w9xpopen |
| 828 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 829 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 830 | def _execute_child(self, args, executable, preexec_fn, close_fds, |
| 831 | cwd, env, universal_newlines, |
| 832 | startupinfo, creationflags, shell, |
| 833 | p2cread, p2cwrite, |
| 834 | c2pread, c2pwrite, |
| 835 | errread, errwrite): |
| 836 | """Execute program (MS Windows version)""" |
| 837 | |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 838 | if not isinstance(args, types.StringTypes): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 839 | args = list2cmdline(args) |
| 840 | |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 841 | # Process startup details |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 842 | if startupinfo is None: |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 843 | startupinfo = STARTUPINFO() |
| 844 | if None not in (p2cread, c2pwrite, errwrite): |
Peter Astrand | c1d6536 | 2004-11-07 14:30:34 +0000 | [diff] [blame] | 845 | startupinfo.dwFlags |= STARTF_USESTDHANDLES |
| 846 | startupinfo.hStdInput = p2cread |
| 847 | startupinfo.hStdOutput = c2pwrite |
| 848 | startupinfo.hStdError = errwrite |
| 849 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 850 | if shell: |
Georg Brandl | ad62489 | 2006-06-04 22:15:37 +0000 | [diff] [blame] | 851 | startupinfo.dwFlags |= STARTF_USESHOWWINDOW |
| 852 | startupinfo.wShowWindow = SW_HIDE |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 853 | comspec = os.environ.get("COMSPEC", "cmd.exe") |
| 854 | args = comspec + " /c " + args |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 855 | if (GetVersion() >= 0x80000000L or |
| 856 | os.path.basename(comspec).lower() == "command.com"): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 857 | # Win9x, or using command.com on NT. We need to |
| 858 | # use the w9xpopen intermediate program. For more |
| 859 | # information, see KB Q150956 |
| 860 | # (http://web.archive.org/web/20011105084002/http://support.microsoft.com/support/kb/articles/Q150/9/56.asp) |
| 861 | w9xpopen = self._find_w9xpopen() |
| 862 | args = '"%s" %s' % (w9xpopen, args) |
| 863 | # Not passing CREATE_NEW_CONSOLE has been known to |
| 864 | # cause random failures on win9x. Specifically a |
| 865 | # dialog: "Your program accessed mem currently in |
| 866 | # use at xxx" and a hopeful warning about the |
| 867 | # stability of your system. Cost is Ctrl+C wont |
| 868 | # kill children. |
| 869 | creationflags |= CREATE_NEW_CONSOLE |
| 870 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 871 | # Start the process |
| 872 | try: |
| 873 | hp, ht, pid, tid = CreateProcess(executable, args, |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 874 | # no special security |
| 875 | None, None, |
Peter Astrand | 81a191b | 2007-05-26 22:18:20 +0000 | [diff] [blame] | 876 | int(not close_fds), |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 877 | creationflags, |
| 878 | env, |
| 879 | cwd, |
| 880 | startupinfo) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 881 | except pywintypes.error, e: |
| 882 | # Translate pywintypes.error to WindowsError, which is |
| 883 | # a subclass of OSError. FIXME: We should really |
| 884 | # translate errno using _sys_errlist (or simliar), but |
| 885 | # how can this be done from Python? |
| 886 | raise WindowsError(*e.args) |
| 887 | |
| 888 | # Retain the process handle, but close the thread handle |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 889 | self._child_created = True |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 890 | self._handle = hp |
| 891 | self.pid = pid |
| 892 | ht.Close() |
| 893 | |
Andrew M. Kuchling | 51ee66e | 2004-10-12 16:38:42 +0000 | [diff] [blame] | 894 | # Child is launched. Close the parent's copy of those pipe |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 895 | # handles that only the child should have open. You need |
| 896 | # to make sure that no handles to the write end of the |
| 897 | # output pipe are maintained in this process or else the |
| 898 | # pipe will not close when the child process exits and the |
| 899 | # ReadFile will hang. |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 900 | if p2cread is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 901 | p2cread.Close() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 902 | if c2pwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 903 | c2pwrite.Close() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 904 | if errwrite is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 905 | errwrite.Close() |
| 906 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 907 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 908 | def _internal_poll(self, _deadstate=None): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 909 | """Check if child process has terminated. Returns returncode |
| 910 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 911 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 912 | if WaitForSingleObject(self._handle, 0) == WAIT_OBJECT_0: |
| 913 | self.returncode = GetExitCodeProcess(self._handle) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 914 | return self.returncode |
| 915 | |
| 916 | |
| 917 | def wait(self): |
| 918 | """Wait for child process to terminate. Returns returncode |
| 919 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 920 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 921 | obj = WaitForSingleObject(self._handle, INFINITE) |
| 922 | self.returncode = GetExitCodeProcess(self._handle) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 923 | return self.returncode |
| 924 | |
| 925 | |
| 926 | def _readerthread(self, fh, buffer): |
| 927 | buffer.append(fh.read()) |
| 928 | |
| 929 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 930 | def _communicate(self, input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 931 | stdout = None # Return |
| 932 | stderr = None # Return |
| 933 | |
| 934 | if self.stdout: |
| 935 | stdout = [] |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 936 | stdout_thread = threading.Thread(target=self._readerthread, |
| 937 | args=(self.stdout, stdout)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 938 | stdout_thread.setDaemon(True) |
| 939 | stdout_thread.start() |
| 940 | if self.stderr: |
| 941 | stderr = [] |
Tim Peters | e8374a5 | 2004-10-13 03:15:00 +0000 | [diff] [blame] | 942 | stderr_thread = threading.Thread(target=self._readerthread, |
| 943 | args=(self.stderr, stderr)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 944 | stderr_thread.setDaemon(True) |
| 945 | stderr_thread.start() |
| 946 | |
| 947 | if self.stdin: |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 948 | if input is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 949 | self.stdin.write(input) |
| 950 | self.stdin.close() |
| 951 | |
| 952 | if self.stdout: |
| 953 | stdout_thread.join() |
| 954 | if self.stderr: |
| 955 | stderr_thread.join() |
| 956 | |
| 957 | # All data exchanged. Translate lists into strings. |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 958 | if stdout is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 959 | stdout = stdout[0] |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 960 | if stderr is not None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 961 | stderr = stderr[0] |
| 962 | |
| 963 | # Translate newlines, if requested. We cannot let the file |
| 964 | # object do the translation: It is based on stdio, which is |
| 965 | # impossible to combine with select (unless forcing no |
| 966 | # buffering). |
Neal Norwitz | a6d01ce | 2006-05-02 06:23:22 +0000 | [diff] [blame] | 967 | if self.universal_newlines and hasattr(file, 'newlines'): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 968 | if stdout: |
| 969 | stdout = self._translate_newlines(stdout) |
| 970 | if stderr: |
| 971 | stderr = self._translate_newlines(stderr) |
| 972 | |
| 973 | self.wait() |
| 974 | return (stdout, stderr) |
| 975 | |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 976 | def send_signal(self, sig): |
| 977 | """Send a signal to the process |
| 978 | """ |
| 979 | if sig == signal.SIGTERM: |
| 980 | self.terminate() |
| 981 | else: |
| 982 | raise ValueError("Only SIGTERM is supported on Windows") |
| 983 | |
| 984 | def terminate(self): |
| 985 | """Terminates the process |
| 986 | """ |
| 987 | TerminateProcess(self._handle, 1) |
| 988 | |
| 989 | kill = terminate |
| 990 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 991 | else: |
| 992 | # |
| 993 | # POSIX methods |
| 994 | # |
| 995 | def _get_handles(self, stdin, stdout, stderr): |
Amaury Forgeot d'Arc | 8318afa | 2009-07-10 16:47:42 +0000 | [diff] [blame] | 996 | """Construct and return tuple with IO objects: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 997 | p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite |
| 998 | """ |
| 999 | p2cread, p2cwrite = None, None |
| 1000 | c2pread, c2pwrite = None, None |
| 1001 | errread, errwrite = None, None |
| 1002 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1003 | if stdin is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1004 | pass |
| 1005 | elif stdin == PIPE: |
| 1006 | p2cread, p2cwrite = os.pipe() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1007 | elif isinstance(stdin, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1008 | p2cread = stdin |
| 1009 | else: |
| 1010 | # Assuming file-like object |
| 1011 | p2cread = stdin.fileno() |
| 1012 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1013 | if stdout is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1014 | pass |
| 1015 | elif stdout == PIPE: |
| 1016 | c2pread, c2pwrite = os.pipe() |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1017 | elif isinstance(stdout, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1018 | c2pwrite = stdout |
| 1019 | else: |
| 1020 | # Assuming file-like object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1021 | c2pwrite = stdout.fileno() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1022 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1023 | if stderr is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1024 | pass |
| 1025 | elif stderr == PIPE: |
| 1026 | errread, errwrite = os.pipe() |
| 1027 | elif stderr == STDOUT: |
| 1028 | errwrite = c2pwrite |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1029 | elif isinstance(stderr, int): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1030 | errwrite = stderr |
| 1031 | else: |
| 1032 | # Assuming file-like object |
| 1033 | errwrite = stderr.fileno() |
| 1034 | |
| 1035 | return (p2cread, p2cwrite, |
| 1036 | c2pread, c2pwrite, |
| 1037 | errread, errwrite) |
| 1038 | |
| 1039 | |
| 1040 | def _set_cloexec_flag(self, fd): |
| 1041 | try: |
| 1042 | cloexec_flag = fcntl.FD_CLOEXEC |
| 1043 | except AttributeError: |
| 1044 | cloexec_flag = 1 |
| 1045 | |
| 1046 | old = fcntl.fcntl(fd, fcntl.F_GETFD) |
| 1047 | fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag) |
| 1048 | |
| 1049 | |
| 1050 | def _close_fds(self, but): |
Amaury Forgeot d'Arc | 5fe420e | 2009-06-18 22:32:50 +0000 | [diff] [blame] | 1051 | if hasattr(os, 'closerange'): |
| 1052 | os.closerange(3, but) |
| 1053 | os.closerange(but + 1, MAXFD) |
| 1054 | else: |
| 1055 | for i in xrange(3, MAXFD): |
| 1056 | if i == but: |
| 1057 | continue |
| 1058 | try: |
| 1059 | os.close(i) |
| 1060 | except: |
| 1061 | pass |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1062 | |
| 1063 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1064 | def _execute_child(self, args, executable, preexec_fn, close_fds, |
| 1065 | cwd, env, universal_newlines, |
| 1066 | startupinfo, creationflags, shell, |
| 1067 | p2cread, p2cwrite, |
| 1068 | c2pread, c2pwrite, |
| 1069 | errread, errwrite): |
| 1070 | """Execute program (POSIX version)""" |
| 1071 | |
Peter Astrand | c26516b | 2005-02-21 08:13:02 +0000 | [diff] [blame] | 1072 | if isinstance(args, types.StringTypes): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1073 | args = [args] |
Georg Brandl | 6c0e1e8 | 2006-10-29 09:05:04 +0000 | [diff] [blame] | 1074 | else: |
| 1075 | args = list(args) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1076 | |
| 1077 | if shell: |
| 1078 | args = ["/bin/sh", "-c"] + args |
| 1079 | |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1080 | if executable is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1081 | executable = args[0] |
| 1082 | |
| 1083 | # For transferring possible exec failure from child to parent |
| 1084 | # The first char specifies the exception type: 0 means |
| 1085 | # OSError, 1 means some other error. |
| 1086 | errpipe_read, errpipe_write = os.pipe() |
Gregory P. Smith | 87d4979 | 2008-01-19 20:57:59 +0000 | [diff] [blame] | 1087 | try: |
Gregory P. Smith | 92ffc63 | 2008-01-19 22:23:56 +0000 | [diff] [blame] | 1088 | try: |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1089 | self._set_cloexec_flag(errpipe_write) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1090 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1091 | gc_was_enabled = gc.isenabled() |
| 1092 | # Disable gc to avoid bug where gc -> file_dealloc -> |
| 1093 | # write to stderr -> hang. http://bugs.python.org/issue1336 |
| 1094 | gc.disable() |
| 1095 | try: |
| 1096 | self.pid = os.fork() |
Georg Brandl | 3e8b869 | 2009-07-16 21:47:51 +0000 | [diff] [blame] | 1097 | except: |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1098 | if gc_was_enabled: |
| 1099 | gc.enable() |
Georg Brandl | 3e8b869 | 2009-07-16 21:47:51 +0000 | [diff] [blame] | 1100 | raise |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1101 | self._child_created = True |
| 1102 | if self.pid == 0: |
| 1103 | # Child |
| 1104 | try: |
| 1105 | # Close parent's pipe ends |
| 1106 | if p2cwrite is not None: |
| 1107 | os.close(p2cwrite) |
| 1108 | if c2pread is not None: |
| 1109 | os.close(c2pread) |
| 1110 | if errread is not None: |
| 1111 | os.close(errread) |
| 1112 | os.close(errpipe_read) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1113 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1114 | # Dup fds for child |
| 1115 | if p2cread is not None: |
| 1116 | os.dup2(p2cread, 0) |
| 1117 | if c2pwrite is not None: |
| 1118 | os.dup2(c2pwrite, 1) |
| 1119 | if errwrite is not None: |
| 1120 | os.dup2(errwrite, 2) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1121 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1122 | # Close pipe fds. Make sure we don't close the same |
| 1123 | # fd more than once, or standard fds. |
| 1124 | if p2cread is not None and p2cread not in (0,): |
| 1125 | os.close(p2cread) |
| 1126 | if c2pwrite is not None and c2pwrite not in (p2cread, 1): |
| 1127 | os.close(c2pwrite) |
| 1128 | if errwrite is not None and errwrite not in (p2cread, c2pwrite, 2): |
| 1129 | os.close(errwrite) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1130 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1131 | # Close all other fds, if asked for |
| 1132 | if close_fds: |
| 1133 | self._close_fds(but=errpipe_write) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1134 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1135 | if cwd is not None: |
| 1136 | os.chdir(cwd) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1137 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1138 | if preexec_fn: |
| 1139 | preexec_fn() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1140 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1141 | if env is None: |
| 1142 | os.execvp(executable, args) |
| 1143 | else: |
| 1144 | os.execvpe(executable, args, env) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1145 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1146 | except: |
| 1147 | exc_type, exc_value, tb = sys.exc_info() |
| 1148 | # Save the traceback and attach it to the exception object |
| 1149 | exc_lines = traceback.format_exception(exc_type, |
| 1150 | exc_value, |
| 1151 | tb) |
| 1152 | exc_value.child_traceback = ''.join(exc_lines) |
| 1153 | os.write(errpipe_write, pickle.dumps(exc_value)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1154 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1155 | # This exitcode won't be reported to applications, so it |
| 1156 | # really doesn't matter what we return. |
| 1157 | os._exit(255) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1158 | |
Facundo Batista | 8c826b7 | 2009-06-19 18:02:28 +0000 | [diff] [blame] | 1159 | # Parent |
| 1160 | if gc_was_enabled: |
| 1161 | gc.enable() |
| 1162 | finally: |
| 1163 | # be sure the FD is closed no matter what |
| 1164 | os.close(errpipe_write) |
| 1165 | |
| 1166 | if p2cread is not None and p2cwrite is not None: |
| 1167 | os.close(p2cread) |
| 1168 | if c2pwrite is not None and c2pread is not None: |
| 1169 | os.close(c2pwrite) |
| 1170 | if errwrite is not None and errread is not None: |
| 1171 | os.close(errwrite) |
| 1172 | |
| 1173 | # Wait for exec to fail or succeed; possibly raising exception |
| 1174 | data = os.read(errpipe_read, 1048576) # Exception limited to 1M |
| 1175 | finally: |
| 1176 | # be sure the FD is closed no matter what |
| 1177 | os.close(errpipe_read) |
| 1178 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1179 | if data != "": |
Peter Astrand | f791d7a | 2005-01-01 09:38:57 +0000 | [diff] [blame] | 1180 | os.waitpid(self.pid, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1181 | child_exception = pickle.loads(data) |
Georg Brandl | f3715d2 | 2009-02-14 17:01:36 +0000 | [diff] [blame] | 1182 | for fd in (p2cwrite, c2pread, errread): |
| 1183 | if fd is not None: |
| 1184 | os.close(fd) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1185 | raise child_exception |
| 1186 | |
| 1187 | |
| 1188 | def _handle_exitstatus(self, sts): |
| 1189 | if os.WIFSIGNALED(sts): |
| 1190 | self.returncode = -os.WTERMSIG(sts) |
| 1191 | elif os.WIFEXITED(sts): |
| 1192 | self.returncode = os.WEXITSTATUS(sts) |
| 1193 | else: |
| 1194 | # Should never happen |
| 1195 | raise RuntimeError("Unknown child exit status!") |
| 1196 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1197 | |
Gregory P. Smith | a36f8fe | 2008-08-04 00:13:29 +0000 | [diff] [blame] | 1198 | def _internal_poll(self, _deadstate=None): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1199 | """Check if child process has terminated. Returns returncode |
| 1200 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1201 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1202 | try: |
| 1203 | pid, sts = os.waitpid(self.pid, os.WNOHANG) |
| 1204 | if pid == self.pid: |
| 1205 | self._handle_exitstatus(sts) |
| 1206 | except os.error: |
Martin v. Löwis | 17de8ff | 2006-04-10 15:55:37 +0000 | [diff] [blame] | 1207 | if _deadstate is not None: |
| 1208 | self.returncode = _deadstate |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1209 | return self.returncode |
| 1210 | |
| 1211 | |
| 1212 | def wait(self): |
| 1213 | """Wait for child process to terminate. Returns returncode |
| 1214 | attribute.""" |
Peter Astrand | d38ddf4 | 2005-02-10 08:32:50 +0000 | [diff] [blame] | 1215 | if self.returncode is None: |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1216 | pid, sts = os.waitpid(self.pid, 0) |
| 1217 | self._handle_exitstatus(sts) |
| 1218 | return self.returncode |
| 1219 | |
| 1220 | |
Peter Astrand | 23109f0 | 2005-03-03 20:28:59 +0000 | [diff] [blame] | 1221 | def _communicate(self, input): |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1222 | if self.stdin: |
| 1223 | # Flush stdio buffer. This might block, if the user has |
| 1224 | # been writing to .stdin in an uncontrolled fashion. |
| 1225 | self.stdin.flush() |
| 1226 | if not input: |
| 1227 | self.stdin.close() |
| 1228 | |
| 1229 | if _has_poll: |
| 1230 | stdout, stderr = self._communicate_with_poll(input) |
| 1231 | else: |
| 1232 | stdout, stderr = self._communicate_with_select(input) |
| 1233 | |
| 1234 | # All data exchanged. Translate lists into strings. |
| 1235 | if stdout is not None: |
| 1236 | stdout = ''.join(stdout) |
| 1237 | if stderr is not None: |
| 1238 | stderr = ''.join(stderr) |
| 1239 | |
| 1240 | # Translate newlines, if requested. We cannot let the file |
| 1241 | # object do the translation: It is based on stdio, which is |
| 1242 | # impossible to combine with select (unless forcing no |
| 1243 | # buffering). |
| 1244 | if self.universal_newlines and hasattr(file, 'newlines'): |
| 1245 | if stdout: |
| 1246 | stdout = self._translate_newlines(stdout) |
| 1247 | if stderr: |
| 1248 | stderr = self._translate_newlines(stderr) |
| 1249 | |
| 1250 | self.wait() |
| 1251 | return (stdout, stderr) |
| 1252 | |
| 1253 | |
| 1254 | def _communicate_with_poll(self, input): |
| 1255 | stdout = None # Return |
| 1256 | stderr = None # Return |
| 1257 | fd2file = {} |
| 1258 | fd2output = {} |
| 1259 | |
| 1260 | poller = select.poll() |
| 1261 | def register_and_append(file_obj, eventmask): |
| 1262 | poller.register(file_obj.fileno(), eventmask) |
| 1263 | fd2file[file_obj.fileno()] = file_obj |
| 1264 | |
| 1265 | def close_unregister_and_remove(fd): |
| 1266 | poller.unregister(fd) |
| 1267 | fd2file[fd].close() |
| 1268 | fd2file.pop(fd) |
| 1269 | |
| 1270 | if self.stdin and input: |
| 1271 | register_and_append(self.stdin, select.POLLOUT) |
| 1272 | |
| 1273 | select_POLLIN_POLLPRI = select.POLLIN | select.POLLPRI |
| 1274 | if self.stdout: |
| 1275 | register_and_append(self.stdout, select_POLLIN_POLLPRI) |
| 1276 | fd2output[self.stdout.fileno()] = stdout = [] |
| 1277 | if self.stderr: |
| 1278 | register_and_append(self.stderr, select_POLLIN_POLLPRI) |
| 1279 | fd2output[self.stderr.fileno()] = stderr = [] |
| 1280 | |
| 1281 | input_offset = 0 |
| 1282 | while fd2file: |
| 1283 | try: |
| 1284 | ready = poller.poll() |
| 1285 | except select.error, e: |
| 1286 | if e.args[0] == errno.EINTR: |
| 1287 | continue |
| 1288 | raise |
| 1289 | |
| 1290 | for fd, mode in ready: |
| 1291 | if mode & select.POLLOUT: |
| 1292 | chunk = input[input_offset : input_offset + _PIPE_BUF] |
| 1293 | input_offset += os.write(fd, chunk) |
| 1294 | if input_offset >= len(input): |
| 1295 | close_unregister_and_remove(fd) |
| 1296 | elif mode & select_POLLIN_POLLPRI: |
| 1297 | data = os.read(fd, 4096) |
| 1298 | if not data: |
| 1299 | close_unregister_and_remove(fd) |
| 1300 | fd2output[fd].append(data) |
| 1301 | else: |
| 1302 | # Ignore hang up or errors. |
| 1303 | close_unregister_and_remove(fd) |
| 1304 | |
| 1305 | return (stdout, stderr) |
| 1306 | |
| 1307 | |
| 1308 | def _communicate_with_select(self, input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1309 | read_set = [] |
| 1310 | write_set = [] |
| 1311 | stdout = None # Return |
| 1312 | stderr = None # Return |
| 1313 | |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1314 | if self.stdin and input: |
| 1315 | write_set.append(self.stdin) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1316 | if self.stdout: |
| 1317 | read_set.append(self.stdout) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1318 | stdout = [] |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1319 | if self.stderr: |
| 1320 | read_set.append(self.stderr) |
| 1321 | stderr = [] |
| 1322 | |
Peter Astrand | 1812f8c | 2007-01-07 14:34:16 +0000 | [diff] [blame] | 1323 | input_offset = 0 |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1324 | while read_set or write_set: |
Gregory P. Smith | f414064 | 2008-07-06 07:16:40 +0000 | [diff] [blame] | 1325 | try: |
| 1326 | rlist, wlist, xlist = select.select(read_set, write_set, []) |
| 1327 | except select.error, e: |
| 1328 | if e.args[0] == errno.EINTR: |
| 1329 | continue |
| 1330 | raise |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1331 | |
| 1332 | if self.stdin in wlist: |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1333 | chunk = input[input_offset : input_offset + _PIPE_BUF] |
Brett Cannon | 03446c4 | 2008-08-08 04:19:32 +0000 | [diff] [blame] | 1334 | bytes_written = os.write(self.stdin.fileno(), chunk) |
Tim Peters | f733abb | 2007-01-30 03:03:46 +0000 | [diff] [blame] | 1335 | input_offset += bytes_written |
Peter Astrand | 1812f8c | 2007-01-07 14:34:16 +0000 | [diff] [blame] | 1336 | if input_offset >= len(input): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1337 | self.stdin.close() |
| 1338 | write_set.remove(self.stdin) |
| 1339 | |
| 1340 | if self.stdout in rlist: |
| 1341 | data = os.read(self.stdout.fileno(), 1024) |
| 1342 | if data == "": |
| 1343 | self.stdout.close() |
| 1344 | read_set.remove(self.stdout) |
| 1345 | stdout.append(data) |
| 1346 | |
| 1347 | if self.stderr in rlist: |
| 1348 | data = os.read(self.stderr.fileno(), 1024) |
| 1349 | if data == "": |
| 1350 | self.stderr.close() |
| 1351 | read_set.remove(self.stderr) |
| 1352 | stderr.append(data) |
| 1353 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1354 | return (stdout, stderr) |
| 1355 | |
Gregory P. Smith | dd7ca24 | 2009-07-04 01:49:29 +0000 | [diff] [blame] | 1356 | |
Christian Heimes | e74c8f2 | 2008-04-19 02:23:57 +0000 | [diff] [blame] | 1357 | def send_signal(self, sig): |
| 1358 | """Send a signal to the process |
| 1359 | """ |
| 1360 | os.kill(self.pid, sig) |
| 1361 | |
| 1362 | def terminate(self): |
| 1363 | """Terminate the process with SIGTERM |
| 1364 | """ |
| 1365 | self.send_signal(signal.SIGTERM) |
| 1366 | |
| 1367 | def kill(self): |
| 1368 | """Kill the process with SIGKILL |
| 1369 | """ |
| 1370 | self.send_signal(signal.SIGKILL) |
| 1371 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1372 | |
| 1373 | def _demo_posix(): |
| 1374 | # |
| 1375 | # Example 1: Simple redirection: Get process list |
| 1376 | # |
| 1377 | plist = Popen(["ps"], stdout=PIPE).communicate()[0] |
| 1378 | print "Process list:" |
| 1379 | print plist |
| 1380 | |
| 1381 | # |
| 1382 | # Example 2: Change uid before executing child |
| 1383 | # |
| 1384 | if os.getuid() == 0: |
| 1385 | p = Popen(["id"], preexec_fn=lambda: os.setuid(100)) |
| 1386 | p.wait() |
| 1387 | |
| 1388 | # |
| 1389 | # Example 3: Connecting several subprocesses |
| 1390 | # |
| 1391 | print "Looking for 'hda'..." |
| 1392 | p1 = Popen(["dmesg"], stdout=PIPE) |
| 1393 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
| 1394 | print repr(p2.communicate()[0]) |
| 1395 | |
| 1396 | # |
| 1397 | # Example 4: Catch execution error |
| 1398 | # |
| 1399 | print |
| 1400 | print "Trying a weird file..." |
| 1401 | try: |
| 1402 | print Popen(["/this/path/does/not/exist"]).communicate() |
| 1403 | except OSError, e: |
| 1404 | if e.errno == errno.ENOENT: |
| 1405 | print "The file didn't exist. I thought so..." |
| 1406 | print "Child traceback:" |
| 1407 | print e.child_traceback |
| 1408 | else: |
| 1409 | print "Error", e.errno |
| 1410 | else: |
| 1411 | print >>sys.stderr, "Gosh. No error." |
| 1412 | |
| 1413 | |
| 1414 | def _demo_windows(): |
| 1415 | # |
| 1416 | # Example 1: Connecting several subprocesses |
| 1417 | # |
| 1418 | print "Looking for 'PROMPT' in set output..." |
| 1419 | p1 = Popen("set", stdout=PIPE, shell=True) |
| 1420 | p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE) |
| 1421 | print repr(p2.communicate()[0]) |
| 1422 | |
| 1423 | # |
| 1424 | # Example 2: Simple execution of program |
| 1425 | # |
| 1426 | print "Executing calc..." |
| 1427 | p = Popen("calc") |
| 1428 | p.wait() |
| 1429 | |
| 1430 | |
| 1431 | if __name__ == "__main__": |
| 1432 | if mswindows: |
| 1433 | _demo_windows() |
| 1434 | else: |
| 1435 | _demo_posix() |