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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#!/usr/bin/env python
#
# XXX Python script template
#
# XXX Describe what the script does here.
#
import getopt
import os
import sys
class Usage(Exception):
def __init__(self, msg):
self.msg = msg
class CommandRunner:
"""
Representation of a command to be executed.
"""
def __init__(self, dictionary={}):
self.subst_dictionary(dictionary)
def subst_dictionary(self, dictionary):
self._subst_dictionary = dictionary
def subst(self, string, dictionary=None):
"""
Substitutes (via the format operator) the values in the specified
dictionary into the specified command.
The command can be an (action, string) tuple. In all cases, we
perform substitution on strings and don't worry if something isn't
a string. (It's probably a Python function to be executed.)
"""
if dictionary is None:
dictionary = self._subst_dictionary
if dictionary:
try:
string = string % dictionary
except TypeError:
pass
return string
def do_display(self, string):
if type(string) == type(()):
func = string[0]
args = string[1:]
s = '%s(%s)' % (func.__name__, ', '.join(map(repr, args)))
else:
s = self.subst(string)
if not s.endswith('\n'):
s += '\n'
sys.stdout.write(s)
sys.stdout.flush()
def do_not_display(self, string):
pass
def do_execute(self, command):
if type(command) == type(()):
func = command[0]
args = command[1:]
return func(*args)
else:
return os.system(self.subst(command))
def do_not_execute(self, command):
pass
display = do_display
execute = do_execute
def run(self, command, display=None):
"""
Runs this command, displaying it first.
The actual display() and execute() methods we call may be
overridden if we're printing but not executing, or vice versa.
"""
if display is None:
display = command
self.display(display)
return self.execute(command)
def main(argv=None):
if argv is None:
argv = sys.argv
short_options = 'hnq'
long_options = ['help', 'no-exec', 'quiet']
helpstr = """\
Usage: script-template.py [-hnq]
-h, --help Print this help and exit
-n, --no-exec No execute, just print the command line
-q, --quiet Quiet, don't print the command line
"""
try:
try:
opts, args = getopt.getopt(argv[1:], short_options, long_options)
except getopt.error, msg:
raise Usage(msg)
for o, a in opts:
if o in ('-h', '--help'):
print helpstr
sys.exit(0)
elif o in ('-n', '--no-exec'):
Command.execute = Command.do_not_execute
elif o in ('-q', '--quiet'):
Command.display = Command.do_not_display
except Usage, err:
sys.stderr.write(err.msg)
sys.stderr.write('use -h to get help')
return 2
commands = [
]
for command in [ Command(c) for c in commands ]:
status = command.run(command)
if status:
sys.exit(status)
if __name__ == "__main__":
sys.exit(main())
|