blob: bf8ea6c8c3c51f4df733640abb3959751c2abee0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00002# Copyright (c) 2011 The Chromium OS Authors.
3#
Simon Glass0d24de92012-01-14 15:12:45 +00004
5import os
Simon Glassbf776672020-04-17 18:09:04 -06006
7from patman import cros_subprocess
Simon Glass0d24de92012-01-14 15:12:45 +00008
9"""Shell command ease-ups for Python."""
10
Simon Glassa10fd932012-12-15 10:42:04 +000011class CommandResult:
12 """A class which captures the result of executing a command.
13
14 Members:
15 stdout: stdout obtained from command, as a string
16 stderr: stderr obtained from command, as a string
17 return_code: Return code from command
18 exception: Exception received, or None if all ok
19 """
20 def __init__(self):
21 self.stdout = None
22 self.stderr = None
Simon Glass82012dd2014-09-05 19:00:12 -060023 self.combined = None
Simon Glassa10fd932012-12-15 10:42:04 +000024 self.return_code = None
25 self.exception = None
26
Simon Glass82012dd2014-09-05 19:00:12 -060027 def __init__(self, stdout='', stderr='', combined='', return_code=0,
28 exception=None):
29 self.stdout = stdout
30 self.stderr = stderr
31 self.combined = combined
32 self.return_code = return_code
33 self.exception = exception
34
Simon Glass3b3e3c02019-10-31 07:42:50 -060035 def ToOutput(self, binary):
36 if not binary:
Simon Glassddd65b02020-06-07 06:45:46 -060037 self.stdout = self.stdout.decode('utf-8')
38 self.stderr = self.stderr.decode('utf-8')
39 self.combined = self.combined.decode('utf-8')
Simon Glass3b3e3c02019-10-31 07:42:50 -060040 return self
41
Simon Glass82012dd2014-09-05 19:00:12 -060042
43# This permits interception of RunPipe for test purposes. If it is set to
44# a function, then that function is called with the pipe list being
45# executed. Otherwise, it is assumed to be a CommandResult object, and is
46# returned as the result for every RunPipe() call.
47# When this value is None, commands are executed as normal.
48test_result = None
Simon Glassa10fd932012-12-15 10:42:04 +000049
50def RunPipe(pipe_list, infile=None, outfile=None,
51 capture=False, capture_stderr=False, oneline=False,
Simon Glass3b3e3c02019-10-31 07:42:50 -060052 raise_on_error=True, cwd=None, binary=False, **kwargs):
Simon Glass0d24de92012-01-14 15:12:45 +000053 """
54 Perform a command pipeline, with optional input/output filenames.
55
Simon Glassa10fd932012-12-15 10:42:04 +000056 Args:
57 pipe_list: List of command lines to execute. Each command line is
58 piped into the next, and is itself a list of strings. For
59 example [ ['ls', '.git'] ['wc'] ] will pipe the output of
60 'ls .git' into 'wc'.
61 infile: File to provide stdin to the pipeline
62 outfile: File to store stdout
63 capture: True to capture output
64 capture_stderr: True to capture stderr
65 oneline: True to strip newline chars from output
66 kwargs: Additional keyword arguments to cros_subprocess.Popen()
67 Returns:
68 CommandResult object
Simon Glass0d24de92012-01-14 15:12:45 +000069 """
Simon Glass82012dd2014-09-05 19:00:12 -060070 if test_result:
71 if hasattr(test_result, '__call__'):
Simon Glass2b19321e2018-07-17 13:25:42 -060072 result = test_result(pipe_list=pipe_list)
73 if result:
74 return result
75 else:
76 return test_result
77 # No result: fall through to normal processing
Simon Glass3b3e3c02019-10-31 07:42:50 -060078 result = CommandResult(b'', b'', b'')
Simon Glass0d24de92012-01-14 15:12:45 +000079 last_pipe = None
Simon Glassa10fd932012-12-15 10:42:04 +000080 pipeline = list(pipe_list)
Simon Glassdc191502012-12-15 10:42:05 +000081 user_pipestr = '|'.join([' '.join(pipe) for pipe in pipe_list])
Simon Glassddaf5c82014-09-05 19:00:09 -060082 kwargs['stdout'] = None
83 kwargs['stderr'] = None
Simon Glass0d24de92012-01-14 15:12:45 +000084 while pipeline:
85 cmd = pipeline.pop(0)
Simon Glass0d24de92012-01-14 15:12:45 +000086 if last_pipe is not None:
87 kwargs['stdin'] = last_pipe.stdout
88 elif infile:
89 kwargs['stdin'] = open(infile, 'rb')
90 if pipeline or capture:
Simon Glassa10fd932012-12-15 10:42:04 +000091 kwargs['stdout'] = cros_subprocess.PIPE
Simon Glass0d24de92012-01-14 15:12:45 +000092 elif outfile:
93 kwargs['stdout'] = open(outfile, 'wb')
Simon Glassa10fd932012-12-15 10:42:04 +000094 if capture_stderr:
95 kwargs['stderr'] = cros_subprocess.PIPE
Simon Glass0d24de92012-01-14 15:12:45 +000096
Simon Glassa10fd932012-12-15 10:42:04 +000097 try:
98 last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs)
Paul Burtonac3fde92016-09-27 16:03:51 +010099 except Exception as err:
Simon Glassa10fd932012-12-15 10:42:04 +0000100 result.exception = err
Simon Glassdc191502012-12-15 10:42:05 +0000101 if raise_on_error:
102 raise Exception("Error running '%s': %s" % (user_pipestr, str))
103 result.return_code = 255
Simon Glass3b3e3c02019-10-31 07:42:50 -0600104 return result.ToOutput(binary)
Simon Glass0d24de92012-01-14 15:12:45 +0000105
106 if capture:
Simon Glassa10fd932012-12-15 10:42:04 +0000107 result.stdout, result.stderr, result.combined = (
108 last_pipe.CommunicateFilter(None))
109 if result.stdout and oneline:
Simon Glass3b3e3c02019-10-31 07:42:50 -0600110 result.output = result.stdout.rstrip(b'\r\n')
Simon Glassa10fd932012-12-15 10:42:04 +0000111 result.return_code = last_pipe.wait()
Simon Glass0d24de92012-01-14 15:12:45 +0000112 else:
Simon Glassa10fd932012-12-15 10:42:04 +0000113 result.return_code = os.waitpid(last_pipe.pid, 0)[1]
Simon Glassdc191502012-12-15 10:42:05 +0000114 if raise_on_error and result.return_code:
115 raise Exception("Error running '%s'" % user_pipestr)
Simon Glass3b3e3c02019-10-31 07:42:50 -0600116 return result.ToOutput(binary)
Simon Glass0d24de92012-01-14 15:12:45 +0000117
Simon Glass785f1542016-07-25 18:59:00 -0600118def Output(*cmd, **kwargs):
Simon Glass512f4552019-07-08 13:18:23 -0600119 kwargs['raise_on_error'] = kwargs.get('raise_on_error', True)
120 return RunPipe([cmd], capture=True, **kwargs).stdout
Simon Glass0d24de92012-01-14 15:12:45 +0000121
Simon Glassa10fd932012-12-15 10:42:04 +0000122def OutputOneLine(*cmd, **kwargs):
Simon Glass3b3e3c02019-10-31 07:42:50 -0600123 """Run a command and output it as a single-line string
124
125 The command us expected to produce a single line of output
126
127 Returns:
128 String containing output of command
129 """
Simon Glassdc191502012-12-15 10:42:05 +0000130 raise_on_error = kwargs.pop('raise_on_error', True)
Simon Glass3b3e3c02019-10-31 07:42:50 -0600131 result = RunPipe([cmd], capture=True, oneline=True,
132 raise_on_error=raise_on_error, **kwargs).stdout.strip()
133 return result
Simon Glass0d24de92012-01-14 15:12:45 +0000134
135def Run(*cmd, **kwargs):
Simon Glassa10fd932012-12-15 10:42:04 +0000136 return RunPipe([cmd], **kwargs).stdout
Simon Glass0d24de92012-01-14 15:12:45 +0000137
138def RunList(cmd):
Simon Glassa10fd932012-12-15 10:42:04 +0000139 return RunPipe([cmd], capture=True).stdout
140
141def StopAll():
142 cros_subprocess.stay_alive = False