blob: 63ada3804ec09c6ec9ce716eec328061efccbc32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
"""execute.py -- Run executable programs.
lvc.execute wraps the standard subprocess module in for LVC.
"""
import os
import subprocess
import sys
CalledProcessError = subprocess.CalledProcessError
def default_popen_args():
retval = {
'stdin': open(os.devnull, 'rb'),
'stdout': subprocess.PIPE,
'stderr': subprocess.STDOUT,
}
if sys.platform == 'win32':
retval['startupinfo'] = subprocess.STARTUPINFO()
retval['startupinfo'].dwFlags |= subprocess.STARTF_USESHOWWINDOW
return retval
class Popen(subprocess.Popen):
"""subprocess.Popen subclass that adds LVC default behavior.
By default we:
- Use a /dev/null equivilent for stdin
- Use a pipe for stdout
- Redirect stderr to stdout
- use STARTF_USESHOWWINDOW to not open a console window on win32
These are just defaults though, they can be overriden by passing different
values to the constructor
"""
def __init__(self, commandline, **kwargs):
final_args = default_popen_args()
final_args.update(kwargs)
subprocess.Popen.__init__(self, commandline, **final_args)
def check_output(commandline, **kwargs):
"""MVC version of subprocess.check_output.
This performs the same default behavior as the Popen class.
"""
final_args = default_popen_args()
# check_output doesn't use stdout
del final_args['stdout']
final_args.update(kwargs)
return subprocess.check_output(commandline, **final_args)
|