chiark / gitweb /
77f2e6595c1639c5d2cbdabf62c46a44008a6f04
[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.exception import *
23 from stgit.out import *
24
25 class RunException(StgException):
26     """Thrown when something bad happened when we tried to run the
27     subprocess."""
28     pass
29
30 _all_log_modes = ['debug', 'profile']
31 _log_mode = os.environ.get('STGIT_SUBPROCESS_LOG', '')
32 if _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
37 class Run:
38     exc = RunException
39     def __init__(self, *cmd):
40         self.__cmd = list(cmd)
41         for c in cmd:
42             if type(c) != str:
43                 raise Exception, 'Bad command: %r' % (cmd,)
44         self.__good_retvals = [0]
45         self.__env = self.__cwd = None
46         self.__indata = None
47         self.__discard_stderr = False
48     def __log_start(self):
49         if _log_mode == 'debug':
50             out.start('Running subprocess %s' % self.__cmd)
51         elif _log_mode == 'profile':
52             out.start('Running subprocess %s' % self.__cmd[0])
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))
60     def __check_exitcode(self):
61         if self.__good_retvals == None:
62             return
63         if self.exitcode not in self.__good_retvals:
64             raise self.exc('%s failed with code %d'
65                            % (self.__cmd[0], self.exitcode))
66     def __run_io(self):
67         """Run with captured IO."""
68         self.__log_start()
69         try:
70             p = subprocess.Popen(self.__cmd, env = self.__env, cwd = self.__cwd,
71                                  stdin = subprocess.PIPE,
72                                  stdout = subprocess.PIPE,
73                                  stderr = subprocess.PIPE)
74             outdata, errdata = p.communicate(self.__indata)
75             self.exitcode = p.returncode
76         except OSError, e:
77             raise self.exc('%s failed: %s' % (self.__cmd[0], e))
78         if errdata and not self.__discard_stderr:
79             out.err_raw(errdata)
80         self.__log_end(self.exitcode)
81         self.__check_exitcode()
82         return outdata
83     def __run_noio(self):
84         """Run without captured IO."""
85         assert self.__indata == None
86         self.__log_start()
87         try:
88             p = subprocess.Popen(self.__cmd, env = self.__env, cwd = self.__cwd)
89             self.exitcode = p.wait()
90         except OSError, e:
91             raise self.exc('%s failed: %s' % (self.__cmd[0], e))
92         self.__log_end(self.exitcode)
93         self.__check_exitcode()
94     def returns(self, retvals):
95         self.__good_retvals = retvals
96         return self
97     def discard_exitcode(self):
98         self.__good_retvals = None
99         return self
100     def discard_stderr(self, discard = True):
101         self.__discard_stderr = discard
102         return self
103     def env(self, env):
104         self.__env = dict(os.environ)
105         self.__env.update(env)
106         return self
107     def cwd(self, cwd):
108         self.__cwd = cwd
109         return self
110     def raw_input(self, indata):
111         self.__indata = indata
112         return self
113     def input_lines(self, lines):
114         self.__indata = ''.join(['%s\n' % line for line in lines])
115         return self
116     def input_nulterm(self, lines):
117         self.__indata = ''.join('%s\0' % line for line in lines)
118         return self
119     def no_output(self):
120         outdata = self.__run_io()
121         if outdata:
122             raise self.exc, '%s produced output' % self.__cmd[0]
123     def discard_output(self):
124         self.__run_io()
125     def raw_output(self):
126         return self.__run_io()
127     def output_lines(self):
128         outdata = self.__run_io()
129         if outdata.endswith('\n'):
130             outdata = outdata[:-1]
131         if outdata:
132             return outdata.split('\n')
133         else:
134             return []
135     def output_one_line(self):
136         outlines = self.output_lines()
137         if len(outlines) == 1:
138             return outlines[0]
139         else:
140             raise self.exc('%s produced %d lines, expected 1'
141                            % (self.__cmd[0], len(outlines)))
142     def run(self):
143         """Just run, with no IO redirection."""
144         self.__run_noio()
145     def xargs(self, xargs):
146         """Just run, with no IO redirection. The extra arguments are
147         appended to the command line a few at a time; the command is
148         run as many times as needed to consume them all."""
149         step = 100
150         basecmd = self.__cmd
151         for i in xrange(0, len(xargs), step):
152             self.__cmd = basecmd + xargs[i:i+step]
153             self.__run_noio()
154         self.__cmd = basecmd