Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
750e0bc4
Commit
750e0bc4
authored
Oct 22, 2016
by
Jason Madden
Committed by
GitHub
Oct 22, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #883 from gevent/subprocess_run2
Implement subprocess.run()
parents
143b2d5f
f1399ac5
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
295 additions
and
38 deletions
+295
-38
changelog.rst
changelog.rst
+11
-0
src/gevent/subprocess.py
src/gevent/subprocess.py
+180
-34
src/gevent/timeout.py
src/gevent/timeout.py
+2
-2
src/greentest/test__greenlet.py
src/greentest/test__greenlet.py
+2
-2
src/greentest/test__subprocess.py
src/greentest/test__subprocess.py
+100
-0
No files found.
changelog.rst
View file @
750e0bc4
...
...
@@ -161,6 +161,17 @@ Other Changes
considered deprecated after it is constructed.
- The :func:`gevent.os.waitpid` function is cooperative in more
circumstances. Reported in :issue:`878` by Heungsub Lee.
- The :mod:`gevent.subprocess` module now provides the
:func:`gevent.subprocess.run` function in a cooperative way even
when the system is not monkey patched, on all supported versions of
Python. (It was added officially in Python 3.5.)
- Popen objects can be used as context managers even on Python 2.
- Popen objects save their *args* attribute even on Python 2.
- :exc:`gevent.subprocess.TimeoutExpired` is defined even on Python 2,
where it is a subclass of the :exc:`gevent.timeout.Timeout`
exception; all instances where a ``Timeout`` exception would
previously be thrown under Python 2 will now throw a
``TimeoutExpired`` exception.
1.1.2 (Jul 21, 2016)
====================
...
...
src/gevent/subprocess.py
View file @
750e0bc4
...
...
@@ -105,6 +105,10 @@ __extra__ = [
'CreateProcess'
,
'INFINITE'
,
'TerminateProcess'
,
# These were added for 3.5, but we make them available everywhere.
'run'
,
'CompletedProcess'
,
]
if
sys
.
version_info
[:
2
]
>=
(
3
,
3
):
...
...
@@ -115,12 +119,16 @@ if sys.version_info[:2] >= (3, 3):
'SubprocessError'
,
'TimeoutExpired'
,
]
else
:
__extra__
.
append
(
"TimeoutExpired"
)
if
sys
.
version_info
[:
2
]
>=
(
3
,
5
):
__imports__
+=
[
'run'
,
# in 3.5, `run` is implemented in terms of `with Popen`
'CompletedProcess'
,
]
__extra__
.
remove
(
'run'
)
__extra__
.
remove
(
'CompletedProcess'
)
__implements__
.
append
(
'run'
)
__implements__
.
append
(
'CompletedProcess'
)
# Removed in Python 3.5; this is the exact code that was removed:
# https://hg.python.org/cpython/rev/f98b0a5e5ef5
__extra__
.
remove
(
'MAXFD'
)
...
...
@@ -162,6 +170,10 @@ for name in list(__extra__):
del
_attr_resolution_order
__all__
=
__implements__
+
__imports__
# Some other things we want to document
for
_x
in
(
'run'
,
'CompletedProcess'
,
'TimeoutExpired'
):
if
_x
not
in
__all__
:
__all__
.
append
(
_x
)
mswindows
=
sys
.
platform
==
'win32'
...
...
@@ -340,6 +352,39 @@ else:
_PLATFORM_DEFAULT_CLOSE_FDS
=
object
()
if
'TimeoutExpired'
not
in
globals
():
# Python 2
# Make TimeoutExpired inherit from _Timeout so it can be caught
# the way we used to throw things (except Timeout), but make sure it doesn't
# init a timer. Note that we can't have a fake 'SubprocessError' that inherits
# from exception, because we need TimeoutExpired to just be a BaseException for
# bwc.
from
gevent.timeout
import
Timeout
as
_Timeout
class
TimeoutExpired
(
_Timeout
):
"""
This exception is raised when the timeout expires while waiting for
a child process in `communicate`.
Under Python 2, this is a gevent extension with the same name as the
Python 3 class for source-code forward compatibility. However, it extends
:class:`gevent.timeout.Timeout` for backwards compatibility (because
we used to just raise a plain ``Timeout``); note that ``Timeout`` is a
``BaseException``, *not* an ``Exception``.
.. versionadded:: 1.2a1
"""
def
__init__
(
self
,
cmd
,
timeout
,
output
=
None
):
_Timeout
.
__init__
(
self
,
timeout
,
_use_timer
=
False
)
self
.
cmd
=
cmd
self
.
timeout
=
timeout
self
.
output
=
output
def
__str__
(
self
):
return
(
"Command '%s' timed out after %s seconds"
%
(
self
.
cmd
,
self
.
timeout
))
class
Popen
(
object
):
"""
...
...
@@ -350,6 +395,14 @@ class Popen(object):
.. seealso:: :class:`subprocess.Popen`
This class should have the same interface as the standard library class.
.. versionchanged:: 1.2a1
Instances can now be used as context managers under Python 2.7. Previously
this was restricted to Python 3.
.. versionchanged:: 1.2a1
Instances now save the ``args`` attribute under Python 2.7. Previously this was
restricted to Python 3.
"""
def
__init__
(
self
,
args
,
bufsize
=
None
,
executable
=
None
,
...
...
@@ -429,8 +482,7 @@ class Popen(object):
assert
threadpool
is
None
self
.
_loop
=
hub
.
loop
if
PY3
:
self
.
args
=
args
self
.
args
=
args
# Previously this was Py3 only.
self
.
stdin
=
None
self
.
stdout
=
None
self
.
stderr
=
None
...
...
@@ -648,15 +700,11 @@ class Popen(object):
# Python 3 would have already raised, but Python 2 would not
# so we need to do that manually
if
result
is
None
:
from
gevent.timeout
import
Timeout
raise
Timeout
(
timeout
)
raise
TimeoutExpired
(
self
.
args
,
timeout
)
done
=
joinall
(
greenlets
,
timeout
=
timeout
)
if
timeout
is
not
None
and
len
(
done
)
!=
len
(
greenlets
):
if
PY3
:
raise
TimeoutExpired
(
self
.
args
,
timeout
)
from
gevent.timeout
import
Timeout
raise
Timeout
(
timeout
)
if
self
.
stdout
:
try
:
...
...
@@ -682,7 +730,6 @@ class Popen(object):
"""Check if child process has terminated. Set and return :attr:`returncode` attribute."""
return
self
.
_internal_poll
()
if
PY3
:
def
__enter__
(
self
):
return
self
...
...
@@ -1301,14 +1348,16 @@ class Popen(object):
return
self
.
returncode
def
wait
(
self
,
timeout
=
None
):
"""Wait for child process to terminate. Returns :attr:`returncode`
"""
Wait for child process to terminate. Returns :attr:`returncode`
attribute.
:keyword timeout: The floating point number of seconds to wait.
Under Python 2, this is a gevent extension, and we simply return if it
expires. Under Python 3,
if this time elapses without finishing the process, :exc:`TimeoutExpired`
is raised."""
:keyword timeout: The floating point number of seconds to
wait. Under Python 2, this is a gevent extension, and
we simply return if it expires. Under Python 3, if
this time elapses without finishing the process,
:exc:`TimeoutExpired` is raised.
"""
result
=
self
.
result
.
wait
(
timeout
=
timeout
)
if
PY3
and
timeout
is
not
None
and
not
self
.
result
.
ready
():
raise
TimeoutExpired
(
self
.
args
,
timeout
)
...
...
@@ -1347,3 +1396,100 @@ def write_and_close(fobj, data):
fobj
.
close
()
except
EnvironmentError
:
pass
def
_with_stdout_stderr
(
exc
,
stderr
):
# Prior to Python 3.5, most exceptions didn't have stdout
# and stderr attributes and can't take the stderr attribute in their
# constructor
exc
.
stdout
=
exc
.
output
exc
.
stderr
=
stderr
return
exc
class
CompletedProcess
(
object
):
"""
A process that has finished running.
This is returned by run().
Attributes:
- args: The list or str args passed to run().
- returncode: The exit code of the process, negative for signals.
- stdout: The standard output (None if not captured).
- stderr: The standard error (None if not captured).
"""
def
__init__
(
self
,
args
,
returncode
,
stdout
=
None
,
stderr
=
None
):
self
.
args
=
args
self
.
returncode
=
returncode
self
.
stdout
=
stdout
self
.
stderr
=
stderr
def
__repr__
(
self
):
args
=
[
'args={!r}'
.
format
(
self
.
args
),
'returncode={!r}'
.
format
(
self
.
returncode
)]
if
self
.
stdout
is
not
None
:
args
.
append
(
'stdout={!r}'
.
format
(
self
.
stdout
))
if
self
.
stderr
is
not
None
:
args
.
append
(
'stderr={!r}'
.
format
(
self
.
stderr
))
return
"{}({})"
.
format
(
type
(
self
).
__name__
,
', '
.
join
(
args
))
def
check_returncode
(
self
):
"""Raise CalledProcessError if the exit code is non-zero."""
if
self
.
returncode
:
raise
_with_stdout_stderr
(
CalledProcessError
(
self
.
returncode
,
self
.
args
,
self
.
stdout
),
self
.
stderr
)
def
run
(
*
popenargs
,
**
kwargs
):
"""
`subprocess.run(args, *, stdin=None, input=None, stdout=None, stderr=None, shell=False, timeout=None, check=False)`
Run command with arguments and return a CompletedProcess instance.
The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.
If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.
There is an optional argument "input", allowing you to
pass a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.
The other arguments are the same as for the Popen constructor.
If universal_newlines=True is passed, the "input" argument must be a
string and stdout/stderr in the returned object will be strings rather than
bytes.
.. versionadded:: 1.2a1
This function first appeared in Python 3.5. It is available on all Python
versions gevent supports.
"""
input
=
kwargs
.
pop
(
'input'
,
None
)
timeout
=
kwargs
.
pop
(
'timeout'
,
None
)
check
=
kwargs
.
pop
(
'check'
,
False
)
if
input
is
not
None
:
if
'stdin'
in
kwargs
:
raise
ValueError
(
'stdin and input arguments may not both be used.'
)
kwargs
[
'stdin'
]
=
PIPE
with
Popen
(
*
popenargs
,
**
kwargs
)
as
process
:
try
:
stdout
,
stderr
=
process
.
communicate
(
input
,
timeout
=
timeout
)
except
TimeoutExpired
:
process
.
kill
()
stdout
,
stderr
=
process
.
communicate
()
raise
_with_stdout_stderr
(
TimeoutExpired
(
process
.
args
,
timeout
,
output
=
stdout
),
stderr
)
except
:
process
.
kill
()
process
.
wait
()
raise
retcode
=
process
.
poll
()
if
check
and
retcode
:
raise
_with_stdout_stderr
(
CalledProcessError
(
retcode
,
process
.
args
,
stdout
),
stderr
)
return
CompletedProcess
(
process
.
args
,
retcode
,
stdout
,
stderr
)
src/gevent/timeout.py
View file @
750e0bc4
...
...
@@ -124,11 +124,11 @@ class Timeout(BaseException):
Add warning about negative *seconds* values.
"""
def
__init__
(
self
,
seconds
=
None
,
exception
=
None
,
ref
=
True
,
priority
=-
1
):
def
__init__
(
self
,
seconds
=
None
,
exception
=
None
,
ref
=
True
,
priority
=-
1
,
_use_timer
=
True
):
BaseException
.
__init__
(
self
)
self
.
seconds
=
seconds
self
.
exception
=
exception
if
seconds
is
None
:
if
seconds
is
None
or
not
_use_timer
:
# Avoid going through the timer codepath if no timeout is
# desired; this avoids some CFFI interactions on PyPy that can lead to a
# RuntimeError if this implementation is used during an `import` statement. See
...
...
src/greentest/test__greenlet.py
View file @
750e0bc4
...
...
@@ -506,7 +506,7 @@ class TestBasic(greentest.TestCase):
return
return_value
g
=
gevent
.
Greenlet
(
func
,
0.01
,
return_value
=
5
)
g
.
rawlink
(
link_test
.
append
)
# use rawlink to avoid timing issues on Appveyor (not always successful)
g
.
rawlink
(
link_test
.
append
)
# use rawlink to avoid timing issues on Appveyor
/Travis
(not always successful)
assert
not
g
,
bool
(
g
)
assert
not
g
.
dead
assert
not
g
.
started
...
...
@@ -542,7 +542,7 @@ class TestBasic(greentest.TestCase):
assert
g
.
successful
()
assert
g
.
value
==
5
assert
g
.
exception
is
None
# not changed
assert
link_test
==
[
g
]
or
greentest
.
RUNNING_ON_
APPVEYOR
,
link_test
# changed
assert
link_test
==
[
g
]
or
greentest
.
RUNNING_ON_
CI
,
link_test
# changed
def
test_error_exit
(
self
):
link_test
=
[]
...
...
src/greentest/test__subprocess.py
View file @
750e0bc4
...
...
@@ -6,6 +6,7 @@ import gevent
from
gevent
import
subprocess
import
time
import
gc
import
tempfile
PYPY
=
hasattr
(
sys
,
'pypy_version_info'
)
...
...
@@ -229,5 +230,104 @@ class Test(greentest.TestCase):
test_subprocess_in_native_thread
.
ignore_leakcheck
=
True
class
RunFuncTestCase
(
greentest
.
TestCase
):
# Based on code from python 3.6
__timeout__
=
6
def
run_python
(
self
,
code
,
**
kwargs
):
"""Run Python code in a subprocess using subprocess.run"""
argv
=
[
sys
.
executable
,
"-c"
,
code
]
return
subprocess
.
run
(
argv
,
**
kwargs
)
def
test_returncode
(
self
):
# call() function with sequence argument
cp
=
self
.
run_python
(
"import sys; sys.exit(47)"
)
self
.
assertEqual
(
cp
.
returncode
,
47
)
with
self
.
assertRaises
(
subprocess
.
CalledProcessError
):
cp
.
check_returncode
()
def
test_check
(
self
):
with
self
.
assertRaises
(
subprocess
.
CalledProcessError
)
as
c
:
self
.
run_python
(
"import sys; sys.exit(47)"
,
check
=
True
)
self
.
assertEqual
(
c
.
exception
.
returncode
,
47
)
def
test_check_zero
(
self
):
# check_returncode shouldn't raise when returncode is zero
cp
=
self
.
run_python
(
"import sys; sys.exit(0)"
,
check
=
True
)
self
.
assertEqual
(
cp
.
returncode
,
0
)
def
test_timeout
(
self
):
# run() function with timeout argument; we want to test that the child
# process gets killed when the timeout expires. If the child isn't
# killed, this call will deadlock since subprocess.run waits for the
# child.
with
self
.
assertRaises
(
subprocess
.
TimeoutExpired
):
self
.
run_python
(
"while True: pass"
,
timeout
=
0.0001
)
def
test_capture_stdout
(
self
):
# capture stdout with zero return code
cp
=
self
.
run_python
(
"print('BDFL')"
,
stdout
=
subprocess
.
PIPE
)
self
.
assertIn
(
b'BDFL'
,
cp
.
stdout
)
def
test_capture_stderr
(
self
):
cp
=
self
.
run_python
(
"import sys; sys.stderr.write('BDFL')"
,
stderr
=
subprocess
.
PIPE
)
self
.
assertIn
(
b'BDFL'
,
cp
.
stderr
)
def
test_check_output_stdin_arg
(
self
):
# run() can be called with stdin set to a file
with
tempfile
.
TemporaryFile
()
as
tf
:
tf
.
write
(
b'pear'
)
tf
.
seek
(
0
)
cp
=
self
.
run_python
(
"import sys; sys.stdout.write(sys.stdin.read().upper())"
,
stdin
=
tf
,
stdout
=
subprocess
.
PIPE
)
self
.
assertIn
(
b'PEAR'
,
cp
.
stdout
)
def
test_check_output_input_arg
(
self
):
# check_output() can be called with input set to a string
cp
=
self
.
run_python
(
"import sys; sys.stdout.write(sys.stdin.read().upper())"
,
input
=
b'pear'
,
stdout
=
subprocess
.
PIPE
)
self
.
assertIn
(
b'PEAR'
,
cp
.
stdout
)
def
test_check_output_stdin_with_input_arg
(
self
):
# run() refuses to accept 'stdin' with 'input'
with
tempfile
.
TemporaryFile
()
as
tf
:
tf
.
write
(
b'pear'
)
tf
.
seek
(
0
)
with
self
.
assertRaises
(
ValueError
,
msg
=
"Expected ValueError when stdin and input args supplied."
)
as
c
:
self
.
run_python
(
"print('will not be run')"
,
stdin
=
tf
,
input
=
b'hare'
)
self
.
assertIn
(
'stdin'
,
c
.
exception
.
args
[
0
])
self
.
assertIn
(
'input'
,
c
.
exception
.
args
[
0
])
def
test_check_output_timeout
(
self
):
with
self
.
assertRaises
(
subprocess
.
TimeoutExpired
)
as
c
:
self
.
run_python
(
(
"import sys, time
\
n
"
"sys.stdout.write('BDFL')
\
n
"
"sys.stdout.flush()
\
n
"
"time.sleep(3600)"
),
# Some heavily loaded buildbots (sparc Debian 3.x) require
# this much time to start and print.
timeout
=
3
,
stdout
=
subprocess
.
PIPE
)
self
.
assertEqual
(
c
.
exception
.
output
,
b'BDFL'
)
# output is aliased to stdout
self
.
assertEqual
(
c
.
exception
.
stdout
,
b'BDFL'
)
def
test_run_kwargs
(
self
):
newenv
=
os
.
environ
.
copy
()
newenv
[
"FRUIT"
]
=
"banana"
cp
=
self
.
run_python
((
'import sys, os;'
'sys.exit(33 if os.getenv("FRUIT")=="banana" else 31)'
),
env
=
newenv
)
self
.
assertEqual
(
cp
.
returncode
,
33
)
if
__name__
==
'__main__'
:
greentest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment