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