chiark / gitweb /
Make a common superclass for all StGit exceptions
[stgit] / stgit / run.py
CommitLineData
f0de3f92
KH
1# -*- coding: utf-8 -*-
2
3__copyright__ = """
4Copyright (C) 2007, Karl Hasselström <kha@treskal.com>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License version 2 as
8published by the Free Software Foundation.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program; if not, write to the Free Software
17Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18"""
19
9371394e 20import datetime, os, subprocess
7748ec70 21
87c93eab
KH
22from stgit.exception import *
23from stgit.out import *
7748ec70 24
87c93eab 25class RunException(StgException):
f0de3f92
KH
26 """Thrown when something bad happened when we tried to run the
27 subprocess."""
28 pass
29
7748ec70
KH
30_all_log_modes = ['debug', 'profile']
31_log_mode = os.environ.get('STGIT_SUBPROCESS_LOG', '')
32if _log_mode and not _log_mode in _all_log_modes:
33 out.warn(('Unknown log mode "%s" specified in $STGIT_SUBPROCESS_LOG.'
34 % _log_mode),
35 'Valid values are: %s' % ', '.join(_all_log_modes))
36
f0de3f92
KH
37class Run:
38 exc = RunException
39 def __init__(self, *cmd):
40 self.__cmd = list(cmd)
06104c20
KH
41 for c in cmd:
42 if type(c) != str:
43 raise Exception, 'Bad command: %r' % cmd
f0de3f92
KH
44 self.__good_retvals = [0]
45 self.__env = None
46 self.__indata = None
5dfab174 47 self.__discard_stderr = False
9371394e 48 def __log_start(self):
7748ec70 49 if _log_mode == 'debug':
9371394e 50 out.start('Running subprocess %s' % self.__cmd)
7748ec70 51 elif _log_mode == 'profile':
9371394e 52 out.start('Running subprocess %s' % self.__cmd[0])
7748ec70
KH
53 self.__starttime = datetime.datetime.now()
54 def __log_end(self, retcode):
55 if _log_mode == 'debug':
56 out.done('return code: %d' % retcode)
57 elif _log_mode == 'profile':
58 duration = datetime.datetime.now() - self.__starttime
59 out.done('%1.3f s' % (duration.microseconds/1e6 + duration.seconds))
9371394e 60 def __check_exitcode(self):
f5a9f89f 61 if self.exitcode not in self.__good_retvals:
9371394e
KH
62 raise self.exc('%s failed with code %d'
63 % (self.__cmd[0], self.exitcode))
64 def __run_io(self):
65 """Run with captured IO."""
66 self.__log_start()
67 try:
68 p = subprocess.Popen(self.__cmd, env = self.__env,
69 stdin = subprocess.PIPE,
5dfab174
KH
70 stdout = subprocess.PIPE,
71 stderr = subprocess.PIPE)
9371394e
KH
72 outdata, errdata = p.communicate(self.__indata)
73 self.exitcode = p.returncode
74 except OSError, e:
75 raise self.exc('%s failed: %s' % (self.__cmd[0], e))
5dfab174
KH
76 if errdata and not self.__discard_stderr:
77 out.err_raw(errdata)
9371394e
KH
78 self.__log_end(self.exitcode)
79 self.__check_exitcode()
f0de3f92 80 return outdata
9371394e
KH
81 def __run_noio(self):
82 """Run without captured IO."""
f0de3f92 83 assert self.__indata == None
9371394e
KH
84 self.__log_start()
85 try:
86 p = subprocess.Popen(self.__cmd, env = self.__env)
87 self.exitcode = p.wait()
88 except OSError, e:
89 raise self.exc('%s failed: %s' % (self.__cmd[0], e))
7748ec70 90 self.__log_end(self.exitcode)
9371394e 91 self.__check_exitcode()
f0de3f92
KH
92 def returns(self, retvals):
93 self.__good_retvals = retvals
94 return self
5dfab174
KH
95 def discard_stderr(self, discard = True):
96 self.__discard_stderr = discard
97 return self
f0de3f92 98 def env(self, env):
9371394e
KH
99 self.__env = dict(os.environ)
100 self.__env.update(env)
f0de3f92
KH
101 return self
102 def raw_input(self, indata):
103 self.__indata = indata
104 return self
105 def input_lines(self, lines):
106 self.__indata = ''.join(['%s\n' % line for line in lines])
107 return self
108 def no_output(self):
9371394e 109 outdata = self.__run_io()
f0de3f92
KH
110 if outdata:
111 raise self.exc, '%s produced output' % self.__cmd[0]
112 def discard_output(self):
9371394e 113 self.__run_io()
f0de3f92 114 def raw_output(self):
9371394e 115 return self.__run_io()
f0de3f92 116 def output_lines(self):
9371394e 117 outdata = self.__run_io()
f0de3f92
KH
118 if outdata.endswith('\n'):
119 outdata = outdata[:-1]
120 if outdata:
121 return outdata.split('\n')
122 else:
123 return []
124 def output_one_line(self):
125 outlines = self.output_lines()
126 if len(outlines) == 1:
127 return outlines[0]
128 else:
129 raise self.exc('%s produced %d lines, expected 1'
130 % (self.__cmd[0], len(outlines)))
131 def run(self):
132 """Just run, with no IO redirection."""
9371394e 133 self.__run_noio()
f0de3f92
KH
134 def xargs(self, xargs):
135 """Just run, with no IO redirection. The extra arguments are
136 appended to the command line a few at a time; the command is
137 run as many times as needed to consume them all."""
138 step = 100
9371394e 139 basecmd = self.__cmd
f0de3f92 140 for i in xrange(0, len(xargs), step):
9371394e
KH
141 self.__cmd = basecmd + xargs[i:i+step]
142 self.__run_noio()
143 self.__cmd = basecmd