1# subprocess - Subprocesses with accessible I/O streams 2# 3# For more information about this module, see PEP 324. 4# 5# This module should remain compatible with Python 2.2, see PEP 291. 6# 7# Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se> 8# 9# Licensed to PSF under a Contributor Agreement. 10# See http://www.python.org/2.4/license for licensing details. 11 12r"""subprocess - Subprocesses with accessible I/O streams 13 14This module allows you to spawn processes, connect to their 15input/output/error pipes, and obtain their return codes. This module 16intends to replace several other, older modules and functions, like: 17 18os.system 19os.spawn* 20os.popen* 21popen2.* 22commands.* 23 24Information about how the subprocess module can be used to replace these 25modules and functions can be found below. 26 27 28 29Using the subprocess module 30=========================== 31This module defines one class called Popen: 32 33class Popen(args, bufsize=0, executable=None, 34 stdin=None, stdout=None, stderr=None, 35 preexec_fn=None, close_fds=False, shell=False, 36 cwd=None, env=None, universal_newlines=False, 37 startupinfo=None, creationflags=0): 38 39 40Arguments are: 41 42args should be a string, or a sequence of program arguments. The 43program to execute is normally the first item in the args sequence or 44string, but can be explicitly set by using the executable argument. 45 46On UNIX, with shell=False (default): In this case, the Popen class 47uses os.execvp() to execute the child program. args should normally 48be a sequence. A string will be treated as a sequence with the string 49as the only item (the program to execute). 50 51On UNIX, with shell=True: If args is a string, it specifies the 52command string to execute through the shell. If args is a sequence, 53the first item specifies the command string, and any additional items 54will be treated as additional shell arguments. 55 56On Windows: the Popen class uses CreateProcess() to execute the child 57program, which operates on strings. If args is a sequence, it will be 58converted to a string using the list2cmdline method. Please note that 59not all MS Windows applications interpret the command line the same 60way: The list2cmdline is designed for applications using the same 61rules as the MS C runtime. 62 63bufsize, if given, has the same meaning as the corresponding argument 64to the built-in open() function: 0 means unbuffered, 1 means line 65buffered, any other positive value means use a buffer of 66(approximately) that size. A negative bufsize means to use the system 67default, which usually means fully buffered. The default value for 68bufsize is 0 (unbuffered). 69 70stdin, stdout and stderr specify the executed programs' standard 71input, standard output and standard error file handles, respectively. 72Valid values are PIPE, an existing file descriptor (a positive 73integer), an existing file object, and None. PIPE indicates that a 74new pipe to the child should be created. With None, no redirection 75will occur; the child's file handles will be inherited from the 76parent. Additionally, stderr can be STDOUT, which indicates that the 77stderr data from the applications should be captured into the same 78file handle as for stdout. 79 80If preexec_fn is set to a callable object, this object will be called 81in the child process just before the child is executed. 82 83If close_fds is true, all file descriptors except 0, 1 and 2 will be 84closed before the child process is executed. 85 86if shell is true, the specified command will be executed through the 87shell. 88 89If cwd is not None, the current directory will be changed to cwd 90before the child is executed. 91 92If env is not None, it defines the environment variables for the new 93process. 94 95If universal_newlines is true, the file objects stdout and stderr are 96opened as a text files, but lines may be terminated by any of '\n', 97the Unix end-of-line convention, '\r', the Macintosh convention or 98'\r\n', the Windows convention. All of these external representations 99are seen as '\n' by the Python program. Note: This feature is only 100available if Python is built with universal newline support (the 101default). Also, the newlines attribute of the file objects stdout, 102stdin and stderr are not updated by the communicate() method. 103 104The startupinfo and creationflags, if given, will be passed to the 105underlying CreateProcess() function. They can specify things such as 106appearance of the main window and priority for the new process. 107(Windows only) 108 109 110This module also defines two shortcut functions: 111 112call(*args, **kwargs): 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 120 121Exceptions 122---------- 123Exceptions raised in the child process, before the new program has 124started to execute, will be re-raised in the parent. Additionally, 125the exception object will have one extra attribute called 126'child_traceback', which is a string containing traceback information 127from the childs point of view. 128 129The most common exception raised is OSError. This occurs, for 130example, when trying to execute a non-existent file. Applications 131should prepare for OSErrors. 132 133A ValueError will be raised if Popen is called with invalid arguments. 134 135 136Security 137-------- 138Unlike some other popen functions, this implementation will never call 139/bin/sh implicitly. This means that all characters, including shell 140metacharacters, can safely be passed to child processes. 141 142 143Popen objects 144============= 145Instances of the Popen class have the following methods: 146 147poll() 148 Check if child process has terminated. Returns returncode 149 attribute. 150 151wait() 152 Wait for child process to terminate. Returns returncode attribute. 153 154communicate(input=None) 155 Interact with process: Send data to stdin. Read data from stdout 156 and stderr, until end-of-file is reached. Wait for process to 157 terminate. The optional stdin argument should be a string to be 158 sent to the child process, or None, if no data should be sent to 159 the child. 160 161 communicate() returns a tuple (stdout, stderr). 162 163 Note: The data read is buffered in memory, so do not use this 164 method if the data size is large or unlimited. 165 166The following attributes are also available: 167 168stdin 169 If the stdin argument is PIPE, this attribute is a file object 170 that provides input to the child process. Otherwise, it is None. 171 172stdout 173 If the stdout argument is PIPE, this attribute is a file object 174 that provides output from the child process. Otherwise, it is 175 None. 176 177stderr 178 If the stderr argument is PIPE, this attribute is file object that 179 provides error output from the child process. Otherwise, it is 180 None. 181 182pid 183 The process ID of the child process. 184 185returncode 186 The child return code. A None value indicates that the process 187 hasn't terminated yet. A negative value -N indicates that the 188 child was terminated by signal N (UNIX only). 189 190 191Replacing older functions with the subprocess module 192==================================================== 193In this section, "a ==> b" means that b can be used as a replacement 194for a. 195 196Note: All functions in this section fail (more or less) silently if 197the executed program cannot be found; this module raises an OSError 198exception. 199 200In the following examples, we assume that the subprocess module is 201imported with "from subprocess import *". 202 203 204Replacing /bin/sh shell backquote 205--------------------------------- 206output=`mycmd myarg` 207==> 208output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] 209 210 211Replacing shell pipe line 212------------------------- 213output=`dmesg | grep hda` 214==> 215p1 = Popen(["dmesg"], stdout=PIPE) 216p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) 217output = p2.communicate()[0] 218 219 220Replacing os.system() 221--------------------- 222sts = os.system("mycmd" + " myarg") 223==> 224p = Popen("mycmd" + " myarg", shell=True) 225sts = os.waitpid(p.pid, 0) 226 227Note: 228 229* Calling the program through the shell is usually not required. 230 231* It's easier to look at the returncode attribute than the 232 exitstatus. 233 234A more real-world example would look like this: 235 236try: 237 retcode = call("mycmd" + " myarg", shell=True) 238 if retcode < 0: 239 print >>sys.stderr, "Child was terminated by signal", -retcode 240 else: 241 print >>sys.stderr, "Child returned", retcode 242except OSError, e: 243 print >>sys.stderr, "Execution failed:", e 244 245 246Replacing os.spawn* 247------------------- 248P_NOWAIT example: 249 250pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 251==> 252pid = Popen(["/bin/mycmd", "myarg"]).pid 253 254 255P_WAIT example: 256 257retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") 258==> 259retcode = call(["/bin/mycmd", "myarg"]) 260 261 262Vector example: 263 264os.spawnvp(os.P_NOWAIT, path, args) 265==> 266Popen([path] + args[1:]) 267 268 269Environment example: 270 271os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) 272==> 273Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) 274 275 276Replacing os.popen* 277------------------- 278pipe = os.popen(cmd, mode='r', bufsize) 279==> 280pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout 281 282pipe = os.popen(cmd, mode='w', bufsize) 283==> 284pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin 285 286 287(child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) 288==> 289p = Popen(cmd, shell=True, bufsize=bufsize, 290 stdin=PIPE, stdout=PIPE, close_fds=True) 291(child_stdin, child_stdout) = (p.stdin, p.stdout) 292 293 294(child_stdin, 295 child_stdout, 296 child_stderr) = os.popen3(cmd, mode, bufsize) 297==> 298p = Popen(cmd, shell=True, bufsize=bufsize, 299 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) 300(child_stdin, 301 child_stdout, 302 child_stderr) = (p.stdin, p.stdout, p.stderr) 303 304 305(child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) 306==> 307p = Popen(cmd, shell=True, bufsize=bufsize, 308 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) 309(child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) 310 311 312Replacing popen2.* 313------------------ 314Note: If the cmd argument to popen2 functions is a string, the command 315is executed through /bin/sh. If it is a list, the command is directly 316executed. 317 318(child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) 319==> 320p = Popen(["somestring"], shell=True, bufsize=bufsize 321 stdin=PIPE, stdout=PIPE, close_fds=True) 322(child_stdout, child_stdin) = (p.stdout, p.stdin) 323 324 325(child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) 326==> 327p = Popen(["mycmd", "myarg"], bufsize=bufsize, 328 stdin=PIPE, stdout=PIPE, close_fds=True) 329(child_stdout, child_stdin) = (p.stdout, p.stdin) 330 331The popen2.Popen3 and popen3.Popen4 basically works as subprocess.Popen, 332except that: 333 334* subprocess.Popen raises an exception if the execution fails 335* the capturestderr argument is replaced with the stderr argument. 336* stdin=PIPE and stdout=PIPE must be specified. 337* popen2 closes all filedescriptors by default, but you have to specify 338 close_fds=True with subprocess.Popen. 339 340 341""" 342 343import sys 344mswindows = (sys.platform =="win32") 345 346import os 347import types 348import traceback 349 350if mswindows: 351import threading 352import msvcrt 353if0:# <-- change this to use pywin32 instead of the _subprocess driver 354import pywintypes 355from win32api import GetStdHandle, STD_INPUT_HANDLE, \ 356 STD_OUTPUT_HANDLE, STD_ERROR_HANDLE 357from win32api import GetCurrentProcess, DuplicateHandle, \ 358 GetModuleFileName, GetVersion 359from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE 360from win32pipe import CreatePipe 361from win32process import CreateProcess, STARTUPINFO, \ 362 GetExitCodeProcess, STARTF_USESTDHANDLES, \ 363 STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE 364from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0 365else: 366from _subprocess import* 367class STARTUPINFO: 368 dwFlags =0 369 hStdInput =None 370 hStdOutput =None 371 hStdError =None 372class pywintypes: 373 error =IOError 374else: 375import select 376import errno 377import fcntl 378import pickle 379 380__all__ = ["Popen","PIPE","STDOUT","call"] 381 382try: 383 MAXFD = os.sysconf("SC_OPEN_MAX") 384except: 385 MAXFD =256 386 387# True/False does not exist on 2.2.0 388try: 389False 390exceptNameError: 391False=0 392True=1 393 394_active = [] 395 396def_cleanup(): 397for inst in _active[:]: 398 inst.poll() 399 400PIPE = -1 401STDOUT = -2 402 403 404defcall(*args, **kwargs): 405"""Run command with arguments. Wait for command to complete, then 406 return the returncode attribute. 407 408 The arguments are the same as for the Popen constructor. Example: 409 410 retcode = call(["ls", "-l"]) 411 """ 412returnPopen(*args, **kwargs).wait() 413 414 415deflist2cmdline(seq): 416""" 417 Translate a sequence of arguments into a command line 418 string, using the same rules as the MS C runtime: 419 420 1) Arguments are delimited by white space, which is either a 421 space or a tab. 422 423 2) A string surrounded by double quotation marks is 424 interpreted as a single argument, regardless of white space 425 contained within. A quoted string can be embedded in an 426 argument. 427 428 3) A double quotation mark preceded by a backslash is 429 interpreted as a literal double quotation mark. 430 431 4) Backslashes are interpreted literally, unless they 432 immediately precede a double quotation mark. 433 434 5) If backslashes immediately precede a double quotation mark, 435 every pair of backslashes is interpreted as a literal 436 backslash. If the number of backslashes is odd, the last 437 backslash escapes the next double quotation mark as 438 described in rule 3. 439 """ 440 441# See 442# http://msdn.microsoft.com/library/en-us/vccelng/htm/progs_12.asp 443 result = [] 444 needquote =False 445for arg in seq: 446 bs_buf = [] 447 448# Add a space to separate this argument from the others 449if result: 450 result.append(' ') 451 452 needquote = (" "in arg)or("\t"in arg) 453if needquote: 454 result.append('"') 455 456for c in arg: 457if c =='\\': 458# Don't know if we need to double yet. 459 bs_buf.append(c) 460elif c =='"': 461# Double backspaces. 462 result.append('\\'*len(bs_buf)*2) 463 bs_buf = [] 464 result.append('\\"') 465else: 466# Normal char 467if bs_buf: 468 result.extend(bs_buf) 469 bs_buf = [] 470 result.append(c) 471 472# Add remaining backspaces, if any. 473if bs_buf: 474 result.extend(bs_buf) 475 476if needquote: 477 result.extend(bs_buf) 478 result.append('"') 479 480return''.join(result) 481 482 483classPopen(object): 484def__init__(self, args, bufsize=0, executable=None, 485 stdin=None, stdout=None, stderr=None, 486 preexec_fn=None, close_fds=False, shell=False, 487 cwd=None, env=None, universal_newlines=False, 488 startupinfo=None, creationflags=0): 489"""Create new Popen instance.""" 490_cleanup() 491 492if notisinstance(bufsize, (int,long)): 493raiseTypeError("bufsize must be an integer") 494 495if mswindows: 496if preexec_fn is not None: 497raiseValueError("preexec_fn is not supported on Windows " 498"platforms") 499if close_fds: 500raiseValueError("close_fds is not supported on Windows " 501"platforms") 502else: 503# POSIX 504if startupinfo is not None: 505raiseValueError("startupinfo is only supported on Windows " 506"platforms") 507if creationflags !=0: 508raiseValueError("creationflags is only supported on Windows " 509"platforms") 510 511 self.stdin =None 512 self.stdout =None 513 self.stderr =None 514 self.pid =None 515 self.returncode =None 516 self.universal_newlines = universal_newlines 517 518# Input and output objects. The general principle is like 519# this: 520# 521# Parent Child 522# ------ ----- 523# p2cwrite ---stdin---> p2cread 524# c2pread <--stdout--- c2pwrite 525# errread <--stderr--- errwrite 526# 527# On POSIX, the child objects are file descriptors. On 528# Windows, these are Windows file handles. The parent objects 529# are file descriptors on both platforms. The parent objects 530# are None when not using PIPEs. The child objects are None 531# when not redirecting. 532 533(p2cread, p2cwrite, 534 c2pread, c2pwrite, 535 errread, errwrite) = self._get_handles(stdin, stdout, stderr) 536 537 self._execute_child(args, executable, preexec_fn, close_fds, 538 cwd, env, universal_newlines, 539 startupinfo, creationflags, shell, 540 p2cread, p2cwrite, 541 c2pread, c2pwrite, 542 errread, errwrite) 543 544if p2cwrite: 545 self.stdin = os.fdopen(p2cwrite,'wb', bufsize) 546if c2pread: 547if universal_newlines: 548 self.stdout = os.fdopen(c2pread,'rU', bufsize) 549else: 550 self.stdout = os.fdopen(c2pread,'rb', bufsize) 551if errread: 552if universal_newlines: 553 self.stderr = os.fdopen(errread,'rU', bufsize) 554else: 555 self.stderr = os.fdopen(errread,'rb', bufsize) 556 557 _active.append(self) 558 559 560def_translate_newlines(self, data): 561 data = data.replace("\r\n","\n") 562 data = data.replace("\r","\n") 563return data 564 565 566if mswindows: 567# 568# Windows methods 569# 570def_get_handles(self, stdin, stdout, stderr): 571"""Construct and return tupel with IO objects: 572 p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite 573 """ 574if stdin ==None and stdout ==None and stderr ==None: 575return(None,None,None,None,None,None) 576 577 p2cread, p2cwrite =None,None 578 c2pread, c2pwrite =None,None 579 errread, errwrite =None,None 580 581if stdin ==None: 582 p2cread =GetStdHandle(STD_INPUT_HANDLE) 583elif stdin == PIPE: 584 p2cread, p2cwrite =CreatePipe(None,0) 585# Detach and turn into fd 586 p2cwrite = p2cwrite.Detach() 587 p2cwrite = msvcrt.open_osfhandle(p2cwrite,0) 588eliftype(stdin) == types.IntType: 589 p2cread = msvcrt.get_osfhandle(stdin) 590else: 591# Assuming file-like object 592 p2cread = msvcrt.get_osfhandle(stdin.fileno()) 593 p2cread = self._make_inheritable(p2cread) 594 595if stdout ==None: 596 c2pwrite =GetStdHandle(STD_OUTPUT_HANDLE) 597elif stdout == PIPE: 598 c2pread, c2pwrite =CreatePipe(None,0) 599# Detach and turn into fd 600 c2pread = c2pread.Detach() 601 c2pread = msvcrt.open_osfhandle(c2pread,0) 602eliftype(stdout) == types.IntType: 603 c2pwrite = msvcrt.get_osfhandle(stdout) 604else: 605# Assuming file-like object 606 c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) 607 c2pwrite = self._make_inheritable(c2pwrite) 608 609if stderr ==None: 610 errwrite =GetStdHandle(STD_ERROR_HANDLE) 611elif stderr == PIPE: 612 errread, errwrite =CreatePipe(None,0) 613# Detach and turn into fd 614 errread = errread.Detach() 615 errread = msvcrt.open_osfhandle(errread,0) 616elif stderr == STDOUT: 617 errwrite = c2pwrite 618eliftype(stderr) == types.IntType: 619 errwrite = msvcrt.get_osfhandle(stderr) 620else: 621# Assuming file-like object 622 errwrite = msvcrt.get_osfhandle(stderr.fileno()) 623 errwrite = self._make_inheritable(errwrite) 624 625return(p2cread, p2cwrite, 626 c2pread, c2pwrite, 627 errread, errwrite) 628 629 630def_make_inheritable(self, handle): 631"""Return a duplicate of handle, which is inheritable""" 632returnDuplicateHandle(GetCurrentProcess(), handle, 633GetCurrentProcess(),0,1, 634 DUPLICATE_SAME_ACCESS) 635 636 637def_find_w9xpopen(self): 638"""Find and return absolut path to w9xpopen.exe""" 639 w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)), 640"w9xpopen.exe") 641if not os.path.exists(w9xpopen): 642# Eeek - file-not-found - possibly an embedding 643# situation - see if we can locate it in sys.exec_prefix 644 w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix), 645"w9xpopen.exe") 646if not os.path.exists(w9xpopen): 647raiseRuntimeError("Cannot locate w9xpopen.exe, which is " 648"needed for Popen to work with your " 649"shell or platform.") 650return w9xpopen 651 652 653def_execute_child(self, args, executable, preexec_fn, close_fds, 654 cwd, env, universal_newlines, 655 startupinfo, creationflags, shell, 656 p2cread, p2cwrite, 657 c2pread, c2pwrite, 658 errread, errwrite): 659"""Execute program (MS Windows version)""" 660 661if notisinstance(args, types.StringTypes): 662 args =list2cmdline(args) 663 664# Process startup details 665 default_startupinfo =STARTUPINFO() 666if startupinfo ==None: 667 startupinfo = default_startupinfo 668if not None in(p2cread, c2pwrite, errwrite): 669 startupinfo.dwFlags |= STARTF_USESTDHANDLES 670 startupinfo.hStdInput = p2cread 671 startupinfo.hStdOutput = c2pwrite 672 startupinfo.hStdError = errwrite 673 674if shell: 675 default_startupinfo.dwFlags |= STARTF_USESHOWWINDOW 676 default_startupinfo.wShowWindow = SW_HIDE 677 comspec = os.environ.get("COMSPEC","cmd.exe") 678 args = comspec +" /c "+ args 679if(GetVersion() >=0x80000000L or 680 os.path.basename(comspec).lower() =="command.com"): 681# Win9x, or using command.com on NT. We need to 682# use the w9xpopen intermediate program. For more 683# information, see KB Q150956 684# (http://web.archive.org/web/20011105084002/http://support.microsoft.com/support/kb/articles/Q150/9/56.asp) 685 w9xpopen = self._find_w9xpopen() 686 args ='"%s"%s'% (w9xpopen, args) 687# Not passing CREATE_NEW_CONSOLE has been known to 688# cause random failures on win9x. Specifically a 689# dialog: "Your program accessed mem currently in 690# use at xxx" and a hopeful warning about the 691# stability of your system. Cost is Ctrl+C wont 692# kill children. 693 creationflags |= CREATE_NEW_CONSOLE 694 695# Start the process 696try: 697 hp, ht, pid, tid =CreateProcess(executable, args, 698# no special security 699None,None, 700# must inherit handles to pass std 701# handles 7021, 703 creationflags, 704 env, 705 cwd, 706 startupinfo) 707except pywintypes.error, e: 708# Translate pywintypes.error to WindowsError, which is 709# a subclass of OSError. FIXME: We should really 710# translate errno using _sys_errlist (or simliar), but 711# how can this be done from Python? 712raiseWindowsError(*e.args) 713 714# Retain the process handle, but close the thread handle 715 self._handle = hp 716 self.pid = pid 717 ht.Close() 718 719# Child is launched. Close the parent's copy of those pipe 720# handles that only the child should have open. You need 721# to make sure that no handles to the write end of the 722# output pipe are maintained in this process or else the 723# pipe will not close when the child process exits and the 724# ReadFile will hang. 725if p2cread !=None: 726 p2cread.Close() 727if c2pwrite !=None: 728 c2pwrite.Close() 729if errwrite !=None: 730 errwrite.Close() 731 732 733defpoll(self): 734"""Check if child process has terminated. Returns returncode 735 attribute.""" 736if self.returncode ==None: 737ifWaitForSingleObject(self._handle,0) == WAIT_OBJECT_0: 738 self.returncode =GetExitCodeProcess(self._handle) 739 _active.remove(self) 740return self.returncode 741 742 743defwait(self): 744"""Wait for child process to terminate. Returns returncode 745 attribute.""" 746if self.returncode ==None: 747 obj =WaitForSingleObject(self._handle, INFINITE) 748 self.returncode =GetExitCodeProcess(self._handle) 749 _active.remove(self) 750return self.returncode 751 752 753def_readerthread(self, fh,buffer): 754buffer.append(fh.read()) 755 756 757defcommunicate(self,input=None): 758"""Interact with process: Send data to stdin. Read data from 759 stdout and stderr, until end-of-file is reached. Wait for 760 process to terminate. The optional input argument should be a 761 string to be sent to the child process, or None, if no data 762 should be sent to the child. 763 764 communicate() returns a tuple (stdout, stderr).""" 765 stdout =None# Return 766 stderr =None# Return 767 768if self.stdout: 769 stdout = [] 770 stdout_thread = threading.Thread(target=self._readerthread, 771 args=(self.stdout, stdout)) 772 stdout_thread.setDaemon(True) 773 stdout_thread.start() 774if self.stderr: 775 stderr = [] 776 stderr_thread = threading.Thread(target=self._readerthread, 777 args=(self.stderr, stderr)) 778 stderr_thread.setDaemon(True) 779 stderr_thread.start() 780 781if self.stdin: 782ifinput!=None: 783 self.stdin.write(input) 784 self.stdin.close() 785 786if self.stdout: 787 stdout_thread.join() 788if self.stderr: 789 stderr_thread.join() 790 791# All data exchanged. Translate lists into strings. 792if stdout !=None: 793 stdout = stdout[0] 794if stderr !=None: 795 stderr = stderr[0] 796 797# Translate newlines, if requested. We cannot let the file 798# object do the translation: It is based on stdio, which is 799# impossible to combine with select (unless forcing no 800# buffering). 801if self.universal_newlines andhasattr(open,'newlines'): 802if stdout: 803 stdout = self._translate_newlines(stdout) 804if stderr: 805 stderr = self._translate_newlines(stderr) 806 807 self.wait() 808return(stdout, stderr) 809 810else: 811# 812# POSIX methods 813# 814def_get_handles(self, stdin, stdout, stderr): 815"""Construct and return tupel with IO objects: 816 p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite 817 """ 818 p2cread, p2cwrite =None,None 819 c2pread, c2pwrite =None,None 820 errread, errwrite =None,None 821 822if stdin ==None: 823pass 824elif stdin == PIPE: 825 p2cread, p2cwrite = os.pipe() 826eliftype(stdin) == types.IntType: 827 p2cread = stdin 828else: 829# Assuming file-like object 830 p2cread = stdin.fileno() 831 832if stdout ==None: 833pass 834elif stdout == PIPE: 835 c2pread, c2pwrite = os.pipe() 836eliftype(stdout) == types.IntType: 837 c2pwrite = stdout 838else: 839# Assuming file-like object 840 c2pwrite = stdout.fileno() 841 842if stderr ==None: 843pass 844elif stderr == PIPE: 845 errread, errwrite = os.pipe() 846elif stderr == STDOUT: 847 errwrite = c2pwrite 848eliftype(stderr) == types.IntType: 849 errwrite = stderr 850else: 851# Assuming file-like object 852 errwrite = stderr.fileno() 853 854return(p2cread, p2cwrite, 855 c2pread, c2pwrite, 856 errread, errwrite) 857 858 859def_set_cloexec_flag(self, fd): 860try: 861 cloexec_flag = fcntl.FD_CLOEXEC 862exceptAttributeError: 863 cloexec_flag =1 864 865 old = fcntl.fcntl(fd, fcntl.F_GETFD) 866 fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag) 867 868 869def_close_fds(self, but): 870for i inrange(3, MAXFD): 871if i == but: 872continue 873try: 874 os.close(i) 875except: 876pass 877 878 879def_execute_child(self, args, executable, preexec_fn, close_fds, 880 cwd, env, universal_newlines, 881 startupinfo, creationflags, shell, 882 p2cread, p2cwrite, 883 c2pread, c2pwrite, 884 errread, errwrite): 885"""Execute program (POSIX version)""" 886 887ifisinstance(args, types.StringTypes): 888 args = [args] 889 890if shell: 891 args = ["/bin/sh","-c"] + args 892 893if executable ==None: 894 executable = args[0] 895 896# For transferring possible exec failure from child to parent 897# The first char specifies the exception type: 0 means 898# OSError, 1 means some other error. 899 errpipe_read, errpipe_write = os.pipe() 900 self._set_cloexec_flag(errpipe_write) 901 902 self.pid = os.fork() 903if self.pid ==0: 904# Child 905try: 906# Close parent's pipe ends 907if p2cwrite: 908 os.close(p2cwrite) 909if c2pread: 910 os.close(c2pread) 911if errread: 912 os.close(errread) 913 os.close(errpipe_read) 914 915# Dup fds for child 916if p2cread: 917 os.dup2(p2cread,0) 918if c2pwrite: 919 os.dup2(c2pwrite,1) 920if errwrite: 921 os.dup2(errwrite,2) 922 923# Close pipe fds. Make sure we doesn't close the same 924# fd more than once. 925if p2cread: 926 os.close(p2cread) 927if c2pwrite and c2pwrite not in(p2cread,): 928 os.close(c2pwrite) 929if errwrite and errwrite not in(p2cread, c2pwrite): 930 os.close(errwrite) 931 932# Close all other fds, if asked for 933if close_fds: 934 self._close_fds(but=errpipe_write) 935 936if cwd !=None: 937 os.chdir(cwd) 938 939if preexec_fn: 940apply(preexec_fn) 941 942if env ==None: 943 os.execvp(executable, args) 944else: 945 os.execvpe(executable, args, env) 946 947except: 948 exc_type, exc_value, tb = sys.exc_info() 949# Save the traceback and attach it to the exception object 950 exc_lines = traceback.format_exception(exc_type, 951 exc_value, 952 tb) 953 exc_value.child_traceback =''.join(exc_lines) 954 os.write(errpipe_write, pickle.dumps(exc_value)) 955 956# This exitcode won't be reported to applications, so it 957# really doesn't matter what we return. 958 os._exit(255) 959 960# Parent 961 os.close(errpipe_write) 962if p2cread and p2cwrite: 963 os.close(p2cread) 964if c2pwrite and c2pread: 965 os.close(c2pwrite) 966if errwrite and errread: 967 os.close(errwrite) 968 969# Wait for exec to fail or succeed; possibly raising exception 970 data = os.read(errpipe_read,1048576)# Exceptions limited to 1 MB 971 os.close(errpipe_read) 972if data !="": 973 os.waitpid(self.pid,0) 974 child_exception = pickle.loads(data) 975raise child_exception 976 977 978def_handle_exitstatus(self, sts): 979if os.WIFSIGNALED(sts): 980 self.returncode = -os.WTERMSIG(sts) 981elif os.WIFEXITED(sts): 982 self.returncode = os.WEXITSTATUS(sts) 983else: 984# Should never happen 985raiseRuntimeError("Unknown child exit status!") 986 987 _active.remove(self) 988 989 990defpoll(self): 991"""Check if child process has terminated. Returns returncode 992 attribute.""" 993if self.returncode ==None: 994try: 995 pid, sts = os.waitpid(self.pid, os.WNOHANG) 996if pid == self.pid: 997 self._handle_exitstatus(sts) 998except os.error: 999pass1000return self.returncode100110021003defwait(self):1004"""Wait for child process to terminate. Returns returncode1005 attribute."""1006if self.returncode ==None:1007 pid, sts = os.waitpid(self.pid,0)1008 self._handle_exitstatus(sts)1009return self.returncode101010111012defcommunicate(self,input=None):1013"""Interact with process: Send data to stdin. Read data from1014 stdout and stderr, until end-of-file is reached. Wait for1015 process to terminate. The optional input argument should be a1016 string to be sent to the child process, or None, if no data1017 should be sent to the child.10181019 communicate() returns a tuple (stdout, stderr)."""1020 read_set = []1021 write_set = []1022 stdout =None# Return1023 stderr =None# Return10241025if self.stdin:1026# Flush stdio buffer. This might block, if the user has1027# been writing to .stdin in an uncontrolled fashion.1028 self.stdin.flush()1029ifinput:1030 write_set.append(self.stdin)1031else:1032 self.stdin.close()1033if self.stdout:1034 read_set.append(self.stdout)1035 stdout = []1036if self.stderr:1037 read_set.append(self.stderr)1038 stderr = []10391040while read_set or write_set:1041 rlist, wlist, xlist = select.select(read_set, write_set, [])10421043if self.stdin in wlist:1044# When select has indicated that the file is writable,1045# we can write up to PIPE_BUF bytes without risk1046# blocking. POSIX defines PIPE_BUF >= 5121047 bytes_written = os.write(self.stdin.fileno(),input[:512])1048input=input[bytes_written:]1049if notinput:1050 self.stdin.close()1051 write_set.remove(self.stdin)10521053if self.stdout in rlist:1054 data = os.read(self.stdout.fileno(),1024)1055if data =="":1056 self.stdout.close()1057 read_set.remove(self.stdout)1058 stdout.append(data)10591060if self.stderr in rlist:1061 data = os.read(self.stderr.fileno(),1024)1062if data =="":1063 self.stderr.close()1064 read_set.remove(self.stderr)1065 stderr.append(data)10661067# All data exchanged. Translate lists into strings.1068if stdout !=None:1069 stdout =''.join(stdout)1070if stderr !=None:1071 stderr =''.join(stderr)10721073# Translate newlines, if requested. We cannot let the file1074# object do the translation: It is based on stdio, which is1075# impossible to combine with select (unless forcing no1076# buffering).1077if self.universal_newlines andhasattr(open,'newlines'):1078if stdout:1079 stdout = self._translate_newlines(stdout)1080if stderr:1081 stderr = self._translate_newlines(stderr)10821083 self.wait()1084return(stdout, stderr)108510861087def_demo_posix():1088#1089# Example 1: Simple redirection: Get process list1090#1091 plist =Popen(["ps"], stdout=PIPE).communicate()[0]1092print"Process list:"1093print plist10941095#1096# Example 2: Change uid before executing child1097#1098if os.getuid() ==0:1099 p =Popen(["id"], preexec_fn=lambda: os.setuid(100))1100 p.wait()11011102#1103# Example 3: Connecting several subprocesses1104#1105print"Looking for 'hda'..."1106 p1 =Popen(["dmesg"], stdout=PIPE)1107 p2 =Popen(["grep","hda"], stdin=p1.stdout, stdout=PIPE)1108printrepr(p2.communicate()[0])11091110#1111# Example 4: Catch execution error1112#1113print1114print"Trying a weird file..."1115try:1116printPopen(["/this/path/does/not/exist"]).communicate()1117exceptOSError, e:1118if e.errno == errno.ENOENT:1119print"The file didn't exist. I thought so..."1120print"Child traceback:"1121print e.child_traceback1122else:1123print"Error", e.errno1124else:1125print>>sys.stderr,"Gosh. No error."112611271128def_demo_windows():1129#1130# Example 1: Connecting several subprocesses1131#1132print"Looking for 'PROMPT' in set output..."1133 p1 =Popen("set", stdout=PIPE, shell=True)1134 p2 =Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE)1135printrepr(p2.communicate()[0])11361137#1138# Example 2: Simple execution of program1139#1140print"Executing calc..."1141 p =Popen("calc")1142 p.wait()114311441145if __name__ =="__main__":1146if mswindows:1147_demo_windows()1148else:1149_demo_posix()