Notes when using subprocess

Source: Internet
Author: User

A recent requirement is to convert a coff file to a burned binary file. There is a good tool, but the command line does not provide parameter input, instead, user input is obtained through interaction, which makes it impossible to automate this step using batch processing. I thought maybe I could use the python popen for processing. If the test fails, it will be blocked. After carefully reading the document and Google, we found that the original popen class only needs to be executed to EOF to return, which is different from the Telnet module mode. After subprocess of python2.5 is used, it is found that the process stops directly without waiting for input. All input to the process is junk data. Then we found that there was a new subprocess module in Google Code, which solved the blocking problem. However, after direct replacement, we found that it still did not work and reported an invisible error. There is no way to get the source code of the Conversion Tool. I added the support for argv to solve the problem. As there is an article on the Internet that thoroughly parses subprocess, it will not be translated. The essence is that popen must be executed until the hatching program ends, either in a complex select mode. Therefore, popen is not suitable for those requiring intermediate manual interaction. Pexpect may be an optional solution, or a new subprocess that supports non-blocking operations can also be used.

 

Sometimes, it's really hard to understand what happens inside a function or even a whole module of Python's standard library. for example, the subprocess module contains a very tricky popepclass. I tried to use the module to communicate with a MATLAB subprocess shell (e.g. send MATLAB commands to subprocess and read the output ). unfortunately I failed and was just able to pass a MATLAB script via command-line arguments. yet, I learned much about popen. communicate () method and I 'd like to share this knowledge with you.

 

Before we begin...
I love Python and try using the latest versions when possible. But this article is about the subprocess module in Python 2.6. Is there a good reason for that? For starters, you can find this comment in Python 3.1's subprocess module:

# XXX Rewrite these to use non-blocking I/O on the# file objects; they are no longer using C stdio!

Then, there is a pending asynchronous I/O for subprocess. popen pep-3145. Last, but not least,

Temporary moratorium (suspension) of all changes to the Python language syntax, semantics, and built-ins for a period of at least two years from the release of Python 3.1

Was proposed and accepted in pep 3003. Yet,

... As the standard library is not directly tied to the language definition it is not covered by this moratorium.

A simple experiment

import subprocessproc = subprocess.Popen(['ls', '-l'],                        cwd = '/',                        stdout = subprocess.PIPE)out, err = proc.communicate()print(out)

This one is really easy: The LS command with-l switch is executed, the root is set as a current working directory and a pipe is created to get the data written by ls to stdout.

Why use communicate? Why not write the data directly to popen. stdin and read from popen. stdout?

The official documentation says:

Use communicate () rather than popen. stdin. write, popen. stdout. read or popen. stderr. read to avoid deadlocks due to any of the other OS pipe buffers filling up and blocking the child process.

Let's try communicate () with a long-term shell process:

import subprocessproc = subprocess.Popen('bash',                        cwd = '/',                        stdin = subprocess.PIPE,                        stdout = subprocess.PIPE,                        stderr = subprocess.PIPE)out, err = proc.communicate('ls')print(out)out, err = proc.communicate('ls -l')

With successful first communicate () call, you'll receive valueerror: I/O operation on closed filetrying communicate the second time.

Wocould you like to know, why an error is raised? It's time to dive inside the code.

Inside popen. Communicate ()
You can find the original and complete code of subprocess module in e.g./usr/lib/python2.6/subprocess. py.

Watch the comments!

def communicate(self, input=None):   """Interact with process: Send data to stdin.  Read data from   stdout and stderr, until end-of-file is reached.  Wait for   process to terminate.  The optional input argument should be a   string to be sent to the child process, or None, if no data   should be sent to the child.   communicate() returns a tuple (stdout, stderr)."""   # Optimization: If we are only using one pipe, or no pipe at   # all, using select() or threads is unnecessary.   if [self.stdin, self.stdout, self.stderr].count(None) >= 2:      stdout = None      stderr = None      if self.stdin:         if input:             self.stdin.write(input)         self.stdin.close()      elif self.stdout:         # This happens in the experiment we ran above         stdout = self.stdout.read()         # Note, stdout is closed!          self.stdout.close()                elif self.stderr:         stderr = self.stderr.read()         self.stderr.close()      # Waiting until process terminates!       self.wait()                           return (stdout, stderr)   # The most interesting case, two or more pipes opened   # Remember, self is an instance of subprocess.Popen class   return self._communicate(input) 

Python was made to be cross-platform. On the other hand python is generally used on POSIX-compatible operating systems.
Let's skip the if mswindows: part and get to the POSIX Methods block.

def _communicate(self, input):   # there is a historical reason calling this variables "sets"   # see select.select() (below)   read_set = []   write_set = []    # returned variables   stdout = None   stderr = None    # the tricky part starts right here   if self.stdin:       # Flush stdio buffer.  This might block (!), if the user has       # been writing to .stdin in an uncontrolled fashion.       self.stdin.flush()              # Data to be sent to the process through the pipe       if input:                    write_set.append(self.stdin)       else:          self.stdin.close()   if self.stdout:      read_set.append(self.stdout)      stdout = []   if self.stderr:      read_set.append(self.stderr)      stderr = []   input_offset = 0   # ... 

This part was not hard at all.
It'll be a little bit harder in the next block: please read the Select. Select () [1] documentation if you're not familiar with select () System Call.

#...   # while read_set contains self.stdout    # or write_set contains self.stdin   while read_set or write_set:      try:         # man select          # .. select() allows a program to monitor multiple file descriptors,          # waiting until one or more of the file descriptors become "ready"          # for some class of I/O operation (e.g., input possible).           # A file descriptor is  considered ready if it is possible to perform          # the corresponding I/O operation (e.g., read) without blocking         rlist, wlist, xlist = select.select(read_set, write_set, [])      except select.error, e:         # EINTR means "This call did not succeed because it was interrupted.          # However, if you try again, it will probably work."         # In other words, EINTR is not a fatal error, it just means          # you should retry whatever you were attempting.         if e.args[0] == errno.EINTR:             continue         raise      if self.stdin in wlist:         # When select has indicated that the file is writable,         # we can write up to PIPE_BUF bytes without risk         # blocking.  POSIX defines PIPE_BUF >= 512         chunk = input[input_offset : input_offset + 512]         bytes_written = os.write(self.stdin.fileno(), chunk)         input_offset += bytes_written         if input_offset >= len(input):                        # stdin is closed! It's not possible communicate(input) any more.            self.stdin.close()                        write_set.remove(self.stdin) # write_set is empty now      if self.stdout in rlist:         data = os.read(self.stdout.fileno(), 1024)         if data == "":            self.stdout.close()            read_set.remove(self.stdout)         stdout.append(data)      if self.stderr in rlist:         data = os.read(self.stderr.fileno(), 1024)         if data == "":            self.stderr.close()            read_set.remove(self.stderr)         stderr.append(data)      #...

Note, that OS. write () and OS. read () functions are used. this functions are intended for low-level I/O. if the end of the file referred to by file descriptor (e.g. self. stdout. fileno () has been reached, an empty string is returned (the if data = "": checks ).

 #...   # The while read_set or write_set: loop ends here   # All data exchanged.  Translate lists into strings.   if stdout is not None:      stdout = ''.join(stdout) # (stdout) is a list   if stderr is not None:       stderr = ''.join(stderr)    # Translate newlines, if requested.  We cannot let the file   # object do the translation: It is based on stdio, which is   # impossible to combine with select (unless forcing no   # buffering).   if self.universal_newlines and hasattr(file, 'newlines'):      if stdout:         stdout = self._translate_newlines(stdout)      if stderr:         stderr = self._translate_newlines(stderr)   self.wait() # wait until process terminates   return (stdout, stderr)

If python was built with the -- with-universal-newlines option to configure (the default) the file. newlines read-only attribute exists, and for files opened in universal newline read mode it keeps track of the types of newlines encountered while reading the file. the_translate_newlines () method just replaces the windows-style (/R/N) and Mac-style (/R) newlines with/n.

The last pieces of the puzzle:

def wait(self):   """Wait for child process to terminate.  Returns returncode   attribute."""   if self.returncode is None:      # Try calling a function os.waitpid(self.pid, 0)      # Ignore Interrupted System Call (errno.EINTR) errors        pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)      self._handle_exitstatus(sts)   return self.returncode
 

On UNIX the OS. waitpid () function call means: Wait for completion of a child process given by process id pid, and return a tuple containing its process ID and exit status indication. the semantics of the call are affected by the value of the integer options, which shoshould be 0 for normal operation.

Self. _ handle_exitstatus sets self. returncode Based on exit status STS

Well, that's it. I hope you 've got the answers to "How popen. Communicate () works? "Question.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.