Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 2 | # Copyright (c) 2011 The Chromium OS Authors. |
| 3 | # |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 4 | |
| 5 | import os |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 6 | |
| 7 | from patman import cros_subprocess |
| 8 | from patman import tools |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 9 | |
| 10 | """Shell command ease-ups for Python.""" |
| 11 | |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 12 | class CommandResult: |
| 13 | """A class which captures the result of executing a command. |
| 14 | |
| 15 | Members: |
| 16 | stdout: stdout obtained from command, as a string |
| 17 | stderr: stderr obtained from command, as a string |
| 18 | return_code: Return code from command |
| 19 | exception: Exception received, or None if all ok |
| 20 | """ |
| 21 | def __init__(self): |
| 22 | self.stdout = None |
| 23 | self.stderr = None |
Simon Glass | de38497 | 2014-09-05 19:00:12 -0600 | [diff] [blame] | 24 | self.combined = None |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 25 | self.return_code = None |
| 26 | self.exception = None |
| 27 | |
Simon Glass | de38497 | 2014-09-05 19:00:12 -0600 | [diff] [blame] | 28 | def __init__(self, stdout='', stderr='', combined='', return_code=0, |
| 29 | exception=None): |
| 30 | self.stdout = stdout |
| 31 | self.stderr = stderr |
| 32 | self.combined = combined |
| 33 | self.return_code = return_code |
| 34 | self.exception = exception |
| 35 | |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 36 | def ToOutput(self, binary): |
| 37 | if not binary: |
| 38 | self.stdout = tools.ToString(self.stdout) |
| 39 | self.stderr = tools.ToString(self.stderr) |
| 40 | self.combined = tools.ToString(self.combined) |
| 41 | return self |
| 42 | |
Simon Glass | de38497 | 2014-09-05 19:00:12 -0600 | [diff] [blame] | 43 | |
| 44 | # This permits interception of RunPipe for test purposes. If it is set to |
| 45 | # a function, then that function is called with the pipe list being |
| 46 | # executed. Otherwise, it is assumed to be a CommandResult object, and is |
| 47 | # returned as the result for every RunPipe() call. |
| 48 | # When this value is None, commands are executed as normal. |
| 49 | test_result = None |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 50 | |
| 51 | def RunPipe(pipe_list, infile=None, outfile=None, |
| 52 | capture=False, capture_stderr=False, oneline=False, |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 53 | raise_on_error=True, cwd=None, binary=False, **kwargs): |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 54 | """ |
| 55 | Perform a command pipeline, with optional input/output filenames. |
| 56 | |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 57 | Args: |
| 58 | pipe_list: List of command lines to execute. Each command line is |
| 59 | piped into the next, and is itself a list of strings. For |
| 60 | example [ ['ls', '.git'] ['wc'] ] will pipe the output of |
| 61 | 'ls .git' into 'wc'. |
| 62 | infile: File to provide stdin to the pipeline |
| 63 | outfile: File to store stdout |
| 64 | capture: True to capture output |
| 65 | capture_stderr: True to capture stderr |
| 66 | oneline: True to strip newline chars from output |
| 67 | kwargs: Additional keyword arguments to cros_subprocess.Popen() |
| 68 | Returns: |
| 69 | CommandResult object |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 70 | """ |
Simon Glass | de38497 | 2014-09-05 19:00:12 -0600 | [diff] [blame] | 71 | if test_result: |
| 72 | if hasattr(test_result, '__call__'): |
Simon Glass | 6a8480b | 2018-07-17 13:25:42 -0600 | [diff] [blame] | 73 | result = test_result(pipe_list=pipe_list) |
| 74 | if result: |
| 75 | return result |
| 76 | else: |
| 77 | return test_result |
| 78 | # No result: fall through to normal processing |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 79 | result = CommandResult(b'', b'', b'') |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 80 | last_pipe = None |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 81 | pipeline = list(pipe_list) |
Simon Glass | 519fad2 | 2012-12-15 10:42:05 +0000 | [diff] [blame] | 82 | user_pipestr = '|'.join([' '.join(pipe) for pipe in pipe_list]) |
Simon Glass | f1bf686 | 2014-09-05 19:00:09 -0600 | [diff] [blame] | 83 | kwargs['stdout'] = None |
| 84 | kwargs['stderr'] = None |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 85 | while pipeline: |
| 86 | cmd = pipeline.pop(0) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 87 | if last_pipe is not None: |
| 88 | kwargs['stdin'] = last_pipe.stdout |
| 89 | elif infile: |
| 90 | kwargs['stdin'] = open(infile, 'rb') |
| 91 | if pipeline or capture: |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 92 | kwargs['stdout'] = cros_subprocess.PIPE |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 93 | elif outfile: |
| 94 | kwargs['stdout'] = open(outfile, 'wb') |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 95 | if capture_stderr: |
| 96 | kwargs['stderr'] = cros_subprocess.PIPE |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 97 | |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 98 | try: |
| 99 | last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs) |
Paul Burton | f14a131 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 100 | except Exception as err: |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 101 | result.exception = err |
Simon Glass | 519fad2 | 2012-12-15 10:42:05 +0000 | [diff] [blame] | 102 | if raise_on_error: |
| 103 | raise Exception("Error running '%s': %s" % (user_pipestr, str)) |
| 104 | result.return_code = 255 |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 105 | return result.ToOutput(binary) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 106 | |
| 107 | if capture: |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 108 | result.stdout, result.stderr, result.combined = ( |
| 109 | last_pipe.CommunicateFilter(None)) |
| 110 | if result.stdout and oneline: |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 111 | result.output = result.stdout.rstrip(b'\r\n') |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 112 | result.return_code = last_pipe.wait() |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 113 | else: |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 114 | result.return_code = os.waitpid(last_pipe.pid, 0)[1] |
Simon Glass | 519fad2 | 2012-12-15 10:42:05 +0000 | [diff] [blame] | 115 | if raise_on_error and result.return_code: |
| 116 | raise Exception("Error running '%s'" % user_pipestr) |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 117 | return result.ToOutput(binary) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 118 | |
Simon Glass | c55e056 | 2016-07-25 18:59:00 -0600 | [diff] [blame] | 119 | def Output(*cmd, **kwargs): |
Simon Glass | 097483d | 2019-07-08 13:18:23 -0600 | [diff] [blame] | 120 | kwargs['raise_on_error'] = kwargs.get('raise_on_error', True) |
| 121 | return RunPipe([cmd], capture=True, **kwargs).stdout |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 122 | |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 123 | def OutputOneLine(*cmd, **kwargs): |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 124 | """Run a command and output it as a single-line string |
| 125 | |
| 126 | The command us expected to produce a single line of output |
| 127 | |
| 128 | Returns: |
| 129 | String containing output of command |
| 130 | """ |
Simon Glass | 519fad2 | 2012-12-15 10:42:05 +0000 | [diff] [blame] | 131 | raise_on_error = kwargs.pop('raise_on_error', True) |
Simon Glass | cc311ac | 2019-10-31 07:42:50 -0600 | [diff] [blame] | 132 | result = RunPipe([cmd], capture=True, oneline=True, |
| 133 | raise_on_error=raise_on_error, **kwargs).stdout.strip() |
| 134 | return result |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 135 | |
| 136 | def Run(*cmd, **kwargs): |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 137 | return RunPipe([cmd], **kwargs).stdout |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 138 | |
| 139 | def RunList(cmd): |
Simon Glass | 34e5943 | 2012-12-15 10:42:04 +0000 | [diff] [blame] | 140 | return RunPipe([cmd], capture=True).stdout |
| 141 | |
| 142 | def StopAll(): |
| 143 | cros_subprocess.stay_alive = False |