2004-01-02 15:53:01 -05:00
|
|
|
PEP: 324
|
2004-10-08 09:03:22 -04:00
|
|
|
Title: subprocess - New process module
|
2004-01-02 15:53:01 -05:00
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
|
|
|
Author: Peter Astrand <astrand@lysator.liu.se>
|
2005-01-29 13:24:59 -05:00
|
|
|
Status: Final
|
2006-02-09 03:26:44 -05:00
|
|
|
Type: Standards Track
|
2017-08-28 18:28:48 -04:00
|
|
|
Content-Type: text/x-rst
|
2007-06-19 00:20:07 -04:00
|
|
|
Created: 19-Nov-2003
|
2004-01-02 15:53:01 -05:00
|
|
|
Python-Version: 2.4
|
2007-06-19 00:20:07 -04:00
|
|
|
Post-History:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
2017-08-28 18:28:48 -04:00
|
|
|
========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
This PEP describes a new module for starting and communicating
|
|
|
|
with processes.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
Motivation
|
2017-08-28 18:28:48 -04:00
|
|
|
==========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Starting new processes is a common task in any programming
|
|
|
|
language, and very common in a high-level language like Python.
|
|
|
|
Good support for this task is needed, because:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Inappropriate functions for starting processes could mean a
|
|
|
|
security risk: If the program is started through the shell, and
|
|
|
|
the arguments contain shell meta characters, the result can be
|
|
|
|
disastrous. [1]_
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- It makes Python an even better replacement language for
|
|
|
|
over-complicated shell scripts.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Currently, Python has a large number of different functions for
|
|
|
|
process creation. This makes it hard for developers to choose.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The subprocess module provides the following enhancements over
|
|
|
|
previous functions:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- One "unified" module provides all functionality from previous
|
|
|
|
functions.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Cross-process exceptions: Exceptions happening in the child
|
|
|
|
before the new process has started to execute are re-raised in
|
|
|
|
the parent. This means that it's easy to handle ``exec()``
|
|
|
|
failures, for example. With popen2, for example, it's
|
|
|
|
impossible to detect if the execution failed.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- A hook for executing custom code between fork and exec. This
|
|
|
|
can be used for, for example, changing uid.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- No implicit call of /bin/sh. This means that there is no need
|
|
|
|
for escaping dangerous shell meta characters.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- All combinations of file descriptor redirection is possible.
|
|
|
|
For example, the "python-dialog" [2]_ needs to spawn a process
|
|
|
|
and redirect stderr, but not stdout. This is not possible with
|
|
|
|
current functions, without using temporary files.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- With the subprocess module, it's possible to control if all open
|
|
|
|
file descriptors should be closed before the new program is
|
|
|
|
executed.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Support for connecting several subprocesses (shell "pipe").
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Universal newline support.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- A ``communicate()`` method, which makes it easy to send stdin data
|
|
|
|
and read stdout and stderr data, without risking deadlocks.
|
|
|
|
Most people are aware of the flow control issues involved with
|
|
|
|
child process communication, but not all have the patience or
|
|
|
|
skills to write a fully correct and deadlock-free select loop.
|
|
|
|
This means that many Python applications contain race
|
|
|
|
conditions. A ``communicate()`` method in the standard library
|
|
|
|
solves this problem.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
2017-08-28 18:28:48 -04:00
|
|
|
=========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The following points summarizes the design:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- subprocess was based on popen2, which is tried-and-tested.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- The factory functions in popen2 have been removed, because I
|
|
|
|
consider the class constructor equally easy to work with.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- popen2 contains several factory functions and classes for
|
|
|
|
different combinations of redirection. subprocess, however,
|
|
|
|
contains one single class. Since the subprocess module supports
|
|
|
|
12 different combinations of redirection, providing a class or
|
|
|
|
function for each of them would be cumbersome and not very
|
|
|
|
intuitive. Even with popen2, this is a readability problem.
|
|
|
|
For example, many people cannot tell the difference between
|
|
|
|
popen2.popen2 and popen2.popen4 without using the documentation.
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- One small utility function is provided: ``subprocess.call()``. It
|
|
|
|
aims to be an enhancement over ``os.system()``, while still very
|
|
|
|
easy to use:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- It does not use the Standard C function system(), which has
|
|
|
|
limitations.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- It does not call the shell implicitly.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- No need for quoting; using an argument list.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- The return value is easier to work with.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The ``call()`` utility function accepts an 'args' argument, just
|
|
|
|
like the ``Popen`` class constructor. It waits for the command to
|
|
|
|
complete, then returns the ``returncode`` attribute. The
|
|
|
|
implementation is very simple::
|
2004-08-03 09:13:43 -04:00
|
|
|
|
|
|
|
def call(*args, **kwargs):
|
|
|
|
return Popen(*args, **kwargs).wait()
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The motivation behind the ``call()`` function is simple: Starting a
|
|
|
|
process and wait for it to finish is a common task.
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
While ``Popen`` supports a wide range of options, many users have
|
|
|
|
simple needs. Many people are using ``os.system()`` today, mainly
|
|
|
|
because it provides a simple interface. Consider this example::
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
os.system("stty sane -F " + device)
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
With ``subprocess.call()``, this would look like::
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
subprocess.call(["stty", "sane", "-F", device])
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
or, if executing through the shell::
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
subprocess.call("stty sane -F " + device, shell=True)
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- The "preexec" functionality makes it possible to run arbitrary
|
|
|
|
code between fork and exec. One might ask why there are special
|
|
|
|
arguments for setting the environment and current directory, but
|
|
|
|
not for, for example, setting the uid. The answer is:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Changing environment and working directory is considered
|
|
|
|
fairly common.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- Old functions like ``spawn()`` has support for an
|
|
|
|
"env"-argument.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- env and cwd are considered quite cross-platform: They make
|
|
|
|
sense even on Windows.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- On POSIX platforms, no extension module is required: the module
|
|
|
|
uses ``os.fork()``, ``os.execvp()`` etc.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- On Windows platforms, the module requires either Mark Hammond's
|
|
|
|
Windows extensions [5]_, or a small extension module called
|
|
|
|
_subprocess.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
Specification
|
2017-08-28 18:28:48 -04:00
|
|
|
=============
|
|
|
|
|
|
|
|
This module defines one class called Popen::
|
|
|
|
|
|
|
|
class Popen(args, bufsize=0, executable=None,
|
|
|
|
stdin=None, stdout=None, stderr=None,
|
|
|
|
preexec_fn=None, close_fds=False, shell=False,
|
|
|
|
cwd=None, env=None, universal_newlines=False,
|
|
|
|
startupinfo=None, creationflags=0):
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Arguments are:
|
|
|
|
|
|
|
|
- ``args`` should be a string, or a sequence of program arguments.
|
|
|
|
The program to execute is normally the first item in the args
|
|
|
|
sequence or string, but can be explicitly set by using the
|
|
|
|
executable argument.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
On UNIX, with ``shell=False`` (default): In this case, the ``Popen``
|
|
|
|
class uses ``os.execvp()`` to execute the child program. ``args``
|
|
|
|
should normally be a sequence. A string will be treated as a
|
|
|
|
sequence with the string as the only item (the program to
|
|
|
|
execute).
|
2017-03-24 17:11:33 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
On UNIX, with ``shell=True``: If ``args`` is a string, it specifies the
|
|
|
|
command string to execute through the shell. If ``args`` is a
|
|
|
|
sequence, the first item specifies the command string, and any
|
|
|
|
additional items will be treated as additional shell arguments.
|
2017-03-24 17:11:33 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
On Windows: the ``Popen`` class uses ``CreateProcess()`` to execute the
|
|
|
|
child program, which operates on strings. If ``args`` is a
|
|
|
|
sequence, it will be converted to a string using the
|
|
|
|
``list2cmdline`` method. Please note that not all MS Windows
|
|
|
|
applications interpret the command line the same way: The
|
|
|
|
``list2cmdline`` is designed for applications using the same rules
|
|
|
|
as the MS C runtime.
|
2017-03-24 17:11:33 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- ``bufsize``, if given, has the same meaning as the corresponding
|
|
|
|
argument to the built-in ``open()`` function: 0 means unbuffered, 1
|
|
|
|
means line buffered, any other positive value means use a buffer
|
|
|
|
of (approximately) that size. A negative ``bufsize`` means to use
|
|
|
|
the system default, which usually means fully buffered. The
|
|
|
|
default value for ``bufsize`` is 0 (unbuffered).
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- ``stdin``, ``stdout`` and ``stderr`` specify the executed programs' standard
|
|
|
|
input, standard output and standard error file handles,
|
|
|
|
respectively. Valid values are ``PIPE``, an existing file
|
|
|
|
descriptor (a positive integer), an existing file object, and
|
|
|
|
``None``. ``PIPE`` indicates that a new pipe to the child should be
|
|
|
|
created. With ``None``, no redirection will occur; the child's file
|
|
|
|
handles will be inherited from the parent. Additionally, ``stderr``
|
|
|
|
can be STDOUT, which indicates that the stderr data from the
|
|
|
|
applications should be captured into the same file handle as for
|
|
|
|
stdout.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``preexec_fn`` is set to a callable object, this object will be
|
|
|
|
called in the child process just before the child is executed.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``close_fds`` is true, all file descriptors except 0, 1 and 2
|
|
|
|
will be closed before the child process is executed.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``shell`` is true, the specified command will be executed through
|
|
|
|
the shell.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``cwd`` is not ``None``, the current directory will be changed to cwd
|
|
|
|
before the child is executed.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``env`` is not ``None``, it defines the environment variables for the
|
|
|
|
new process.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- If ``universal_newlines`` is true, the file objects stdout and
|
|
|
|
stderr are opened as a text file, but lines may be terminated
|
|
|
|
by any of ``\n``, the Unix end-of-line convention, ``\r``, the
|
|
|
|
Macintosh convention or ``\r\n``, the Windows convention. All of
|
|
|
|
these external representations are seen as ``\n`` by the Python
|
|
|
|
program. Note: This feature is only available if Python is
|
|
|
|
built with universal newline support (the default). Also, the
|
|
|
|
newlines attribute of the file objects stdout, stdin and stderr
|
|
|
|
are not updated by the ``communicate()`` method.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- The ``startupinfo`` and ``creationflags``, if given, will be passed to
|
|
|
|
the underlying ``CreateProcess()`` function. They can specify
|
|
|
|
things such as appearance of the main window and priority for
|
|
|
|
the new process. (Windows only)
|
2004-08-03 09:13:43 -04:00
|
|
|
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
This module also defines two shortcut functions:
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
- ``call(*args, **kwargs)``:
|
|
|
|
Run command with arguments. Wait for command to complete,
|
|
|
|
then return the ``returncode`` attribute.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The arguments are the same as for the Popen constructor.
|
|
|
|
Example::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
retcode = call(["ls", "-l"])
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Exceptions
|
|
|
|
----------
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Exceptions raised in the child process, before the new program has
|
|
|
|
started to execute, will be re-raised in the parent.
|
|
|
|
Additionally, the exception object will have one extra attribute
|
|
|
|
called 'child_traceback', which is a string containing traceback
|
|
|
|
information from the child's point of view.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The most common exception raised is ``OSError``. This occurs, for
|
|
|
|
example, when trying to execute a non-existent file. Applications
|
|
|
|
should prepare for ``OSErrors``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
A ``ValueError`` will be raised if Popen is called with invalid
|
|
|
|
arguments.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Security
|
|
|
|
--------
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Unlike some other popen functions, this implementation will never
|
|
|
|
call /bin/sh implicitly. This means that all characters,
|
|
|
|
including shell meta-characters, can safely be passed to child
|
|
|
|
processes.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Popen objects
|
|
|
|
-------------
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Instances of the Popen class have the following methods:
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``poll()``
|
|
|
|
Check if child process has terminated. Returns ``returncode``
|
|
|
|
attribute.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``wait()``
|
|
|
|
Wait for child process to terminate. Returns ``returncode``
|
|
|
|
attribute.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``communicate(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 stdin argument should be a
|
|
|
|
string to be sent to the child process, or ``None``, if no data
|
|
|
|
should be sent to the child.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``communicate()`` returns a tuple ``(stdout, stderr)``.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Note: The data read is buffered in memory, so do not use this
|
|
|
|
method if the data size is large or unlimited.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The following attributes are also available:
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``stdin``
|
|
|
|
If the ``stdin`` argument is ``PIPE``, this attribute is a file object
|
|
|
|
that provides input to the child process. Otherwise, it is
|
|
|
|
``None``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``stdout``
|
|
|
|
If the ``stdout`` argument is ``PIPE``, this attribute is a file
|
|
|
|
object that provides output from the child process.
|
|
|
|
Otherwise, it is ``None``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``stderr``
|
|
|
|
If the ``stderr`` argument is ``PIPE``, this attribute is file object
|
|
|
|
that provides error output from the child process. Otherwise,
|
|
|
|
it is ``None``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``pid``
|
|
|
|
The process ID of the child process.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
``returncode``
|
|
|
|
The child return code. A ``None`` value indicates that the
|
|
|
|
process hasn't terminated yet. A negative value -N indicates
|
|
|
|
that the child was terminated by signal N (UNIX only).
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
Replacing older functions with the subprocess module
|
2017-08-28 18:28:48 -04:00
|
|
|
====================================================
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
In this section, "a ==> b" means that b can be used as a
|
|
|
|
replacement for a.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Note: All functions in this section fail (more or less) silently
|
|
|
|
if the executed program cannot be found; this module raises an
|
|
|
|
OSError exception.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
In the following examples, we assume that the subprocess module is
|
|
|
|
imported with ``from subprocess import *``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing /bin/sh shell backquote
|
|
|
|
---------------------------------
|
|
|
|
::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
output=`mycmd myarg`
|
|
|
|
==>
|
|
|
|
output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing shell pipe line
|
|
|
|
-------------------------
|
|
|
|
::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
output=`dmesg | grep hda`
|
|
|
|
==>
|
|
|
|
p1 = Popen(["dmesg"], stdout=PIPE)
|
2004-11-27 02:44:10 -05:00
|
|
|
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
|
2004-10-08 09:03:22 -04:00
|
|
|
output = p2.communicate()[0]
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing ``os.system()``
|
|
|
|
-------------------------
|
|
|
|
::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
sts = os.system("mycmd" + " myarg")
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
p = Popen("mycmd" + " myarg", shell=True)
|
2004-10-08 09:03:22 -04:00
|
|
|
sts = os.waitpid(p.pid, 0)
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Note:
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* Calling the program through the shell is usually not required.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* It's easier to look at the returncode attribute than the
|
|
|
|
exit status.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
A more real-world example would look like this::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
try:
|
2004-10-12 11:43:24 -04:00
|
|
|
retcode = call("mycmd" + " myarg", shell=True)
|
2004-10-08 09:03:22 -04:00
|
|
|
if retcode < 0:
|
|
|
|
print >>sys.stderr, "Child was terminated by signal", -retcode
|
|
|
|
else:
|
|
|
|
print >>sys.stderr, "Child returned", retcode
|
|
|
|
except OSError, e:
|
|
|
|
print >>sys.stderr, "Execution failed:", e
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing ``os.spawn*``
|
|
|
|
-----------------------
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
P_NOWAIT example::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
|
|
|
|
==>
|
|
|
|
pid = Popen(["/bin/mycmd", "myarg"]).pid
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
P_WAIT example::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
retcode = call(["/bin/mycmd", "myarg"])
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Vector example::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
os.spawnvp(os.P_NOWAIT, path, args)
|
|
|
|
==>
|
|
|
|
Popen([path] + args[1:])
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Environment example::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
|
|
|
|
==>
|
|
|
|
Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing ``os.popen*``
|
|
|
|
-----------------------
|
|
|
|
::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
pipe = os.popen(cmd, mode='r', bufsize)
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
pipe = os.popen(cmd, mode='w', bufsize)
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
(child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
p = Popen(cmd, shell=True, bufsize=bufsize,
|
2004-10-08 09:03:22 -04:00
|
|
|
stdin=PIPE, stdout=PIPE, close_fds=True)
|
|
|
|
(child_stdin, child_stdout) = (p.stdin, p.stdout)
|
|
|
|
|
|
|
|
|
|
|
|
(child_stdin,
|
|
|
|
child_stdout,
|
|
|
|
child_stderr) = os.popen3(cmd, mode, bufsize)
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
p = Popen(cmd, shell=True, bufsize=bufsize,
|
2004-10-08 09:03:22 -04:00
|
|
|
stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
|
|
|
|
(child_stdin,
|
|
|
|
child_stdout,
|
|
|
|
child_stderr) = (p.stdin, p.stdout, p.stderr)
|
|
|
|
|
|
|
|
|
|
|
|
(child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
|
|
|
|
==>
|
2004-10-12 11:43:24 -04:00
|
|
|
p = Popen(cmd, shell=True, bufsize=bufsize,
|
2004-10-08 09:03:22 -04:00
|
|
|
stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
|
|
|
|
(child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
|
|
|
|
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Replacing ``popen2.*``
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Note: If the cmd argument to ``popen2`` functions is a string, the
|
|
|
|
command is executed through /bin/sh. If it is a list, the command
|
|
|
|
is directly executed.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
::
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
(child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
|
|
|
|
==>
|
|
|
|
p = Popen(["somestring"], shell=True, bufsize=bufsize
|
|
|
|
stdin=PIPE, stdout=PIPE, close_fds=True)
|
|
|
|
(child_stdout, child_stdin) = (p.stdout, p.stdin)
|
|
|
|
|
|
|
|
|
|
|
|
(child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
|
|
|
|
==>
|
|
|
|
p = Popen(["mycmd", "myarg"], bufsize=bufsize,
|
|
|
|
stdin=PIPE, stdout=PIPE, close_fds=True)
|
|
|
|
(child_stdout, child_stdin) = (p.stdout, p.stdin)
|
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The ``popen2.Popen3`` and ``popen3.Popen4`` basically works as
|
|
|
|
``subprocess.Popen``, except that:
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* ``subprocess.Popen`` raises an exception if the execution fails
|
|
|
|
* the ``capturestderr`` argument is replaced with the stderr argument.
|
|
|
|
* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
|
|
|
|
* ``popen2`` closes all file descriptors by default, but you have to
|
|
|
|
specify ``close_fds=True`` with ``subprocess.Popen``.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
2004-01-02 15:53:01 -05:00
|
|
|
Open Issues
|
2017-08-28 18:28:48 -04:00
|
|
|
===========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Some features have been requested but is not yet implemented.
|
|
|
|
This includes:
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* Support for managing a whole flock of subprocesses
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* Support for managing "daemon" processes
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* Built-in method for killing subprocesses
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
While these are useful features, it's expected that these can be
|
|
|
|
added later without problems.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
* expect-like functionality, including pty support.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
pty support is highly platform-dependent, which is a
|
|
|
|
problem. Also, there are already other modules that provide this
|
|
|
|
kind of functionality [6]_.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
Backwards Compatibility
|
2017-08-28 18:28:48 -04:00
|
|
|
=======================
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
Since this is a new module, no major backward compatible issues
|
|
|
|
are expected. The module name "subprocess" might collide with
|
|
|
|
other, previous modules [3]_ with the same name, but the name
|
|
|
|
"subprocess" seems to be the best suggested name so far. The
|
|
|
|
first name of this module was "popen5", but this name was
|
|
|
|
considered too unintuitive. For a while, the module was called
|
|
|
|
"process", but this name is already used by Trent Mick's
|
|
|
|
module [4]_.
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
The functions and modules that this new module is trying to
|
|
|
|
replace (``os.system``, ``os.spawn*``, ``os.popen*``, ``popen2.*``,
|
|
|
|
``commands.*``) are expected to be available in future Python versions
|
|
|
|
for a long time, to preserve backwards compatibility.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
Reference Implementation
|
2017-08-28 18:28:48 -04:00
|
|
|
========================
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
A reference implementation is available from
|
|
|
|
http://www.lysator.liu.se/~astrand/popen5/.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
References
|
2017-08-28 18:28:48 -04:00
|
|
|
==========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [1] Secure Programming for Linux and Unix HOWTO, section 8.3.
|
|
|
|
http://www.dwheeler.com/secure-programs/
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [2] Python Dialog
|
|
|
|
http://pythondialog.sourceforge.net/
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [3] http://www.iol.ie/~padraiga/libs/subProcess.py
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [4] http://starship.python.net/crew/tmick/
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [5] http://starship.python.net/crew/mhammond/win32/
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
.. [6] http://www.lysator.liu.se/~ceder/pcl-expect/
|
2004-10-08 09:03:22 -04:00
|
|
|
|
2004-01-02 15:53:01 -05:00
|
|
|
|
|
|
|
Copyright
|
2017-08-28 18:28:48 -04:00
|
|
|
=========
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
This document has been placed in the public domain.
|
2004-01-02 15:53:01 -05:00
|
|
|
|
2017-08-28 18:28:48 -04:00
|
|
|
..
|
|
|
|
Local Variables:
|
|
|
|
mode: indented-text
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
sentence-end-double-space: t
|
|
|
|
fill-column: 70
|
|
|
|
End:
|