-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcommon.py
91 lines (70 loc) · 2.5 KB
/
common.py
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#=========================================================================
# common
#=========================================================================
import os
import string
import subprocess
import sys
#-------------------------------------------------------------------------
# String interpolation
#-------------------------------------------------------------------------
def S( s ):
frame = sys._getframe(1)
template = string.Template(s)
return template.substitute(**frame.f_locals)
#-------------------------------------------------------------------------
# Assemble path
#-------------------------------------------------------------------------
def P( *args ):
return os.path.join( *args )
#-------------------------------------------------------------------------
# Run command with string interpolation
#-------------------------------------------------------------------------
def run( cmd ):
frame = sys._getframe(1)
template = string.Template(cmd)
cmd_ = template.substitute(**frame.f_locals)
vprint( " - run:", cmd_ )
try:
result = subprocess.check_output( cmd_, shell=True ).strip()
except subprocess.CalledProcessError as e:
print "\n ERROR: running the following command\n {} \n".format( ' '.join(e.cmd) )
print e.output
exit(1)
print result
return result
#-------------------------------------------------------------------------
# Quiet run
#-------------------------------------------------------------------------
def runq( cmd ):
frame = sys._getframe(1)
template = string.Template(cmd)
cmd_ = template.substitute(**frame.f_locals)
vprint( " - run:", cmd_ )
try:
result = subprocess.check_output( cmd_, shell=True ).strip()
except subprocess.CalledProcessError as e:
print "\n ERROR: running command \n"
print e.cmd
print e.output
exit(1)
return result
#-------------------------------------------------------------------------
# Run and return exit status
#-------------------------------------------------------------------------
def run_test( cmd ):
frame = sys._getframe(1)
template = string.Template(cmd)
cmd_ = template.substitute(**frame.f_locals)
vprint( " - run test:", cmd_ )
return subprocess.call( cmd_, shell=True )
#-------------------------------------------------------------------------
# Verbose print
#-------------------------------------------------------------------------
verbose = False
def vprint( msg, value=None ):
if verbose:
if value != None:
print msg, value
else:
print msg