2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-01-14 15:12:45 +00:00
|
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
2020-04-18 00:09:04 +00:00
|
|
|
|
|
|
|
from patman import cros_subprocess
|
|
|
|
from patman import tools
|
2012-01-14 15:12:45 +00:00
|
|
|
|
|
|
|
"""Shell command ease-ups for Python."""
|
|
|
|
|
2012-12-15 10:42:04 +00:00
|
|
|
class CommandResult:
|
|
|
|
"""A class which captures the result of executing a command.
|
|
|
|
|
|
|
|
Members:
|
|
|
|
stdout: stdout obtained from command, as a string
|
|
|
|
stderr: stderr obtained from command, as a string
|
|
|
|
return_code: Return code from command
|
|
|
|
exception: Exception received, or None if all ok
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
self.stdout = None
|
|
|
|
self.stderr = None
|
2014-09-06 01:00:12 +00:00
|
|
|
self.combined = None
|
2012-12-15 10:42:04 +00:00
|
|
|
self.return_code = None
|
|
|
|
self.exception = None
|
|
|
|
|
2014-09-06 01:00:12 +00:00
|
|
|
def __init__(self, stdout='', stderr='', combined='', return_code=0,
|
|
|
|
exception=None):
|
|
|
|
self.stdout = stdout
|
|
|
|
self.stderr = stderr
|
|
|
|
self.combined = combined
|
|
|
|
self.return_code = return_code
|
|
|
|
self.exception = exception
|
|
|
|
|
2019-10-31 13:42:50 +00:00
|
|
|
def ToOutput(self, binary):
|
|
|
|
if not binary:
|
|
|
|
self.stdout = tools.ToString(self.stdout)
|
|
|
|
self.stderr = tools.ToString(self.stderr)
|
|
|
|
self.combined = tools.ToString(self.combined)
|
|
|
|
return self
|
|
|
|
|
2014-09-06 01:00:12 +00:00
|
|
|
|
|
|
|
# This permits interception of RunPipe for test purposes. If it is set to
|
|
|
|
# a function, then that function is called with the pipe list being
|
|
|
|
# executed. Otherwise, it is assumed to be a CommandResult object, and is
|
|
|
|
# returned as the result for every RunPipe() call.
|
|
|
|
# When this value is None, commands are executed as normal.
|
|
|
|
test_result = None
|
2012-12-15 10:42:04 +00:00
|
|
|
|
|
|
|
def RunPipe(pipe_list, infile=None, outfile=None,
|
|
|
|
capture=False, capture_stderr=False, oneline=False,
|
2019-10-31 13:42:50 +00:00
|
|
|
raise_on_error=True, cwd=None, binary=False, **kwargs):
|
2012-01-14 15:12:45 +00:00
|
|
|
"""
|
|
|
|
Perform a command pipeline, with optional input/output filenames.
|
|
|
|
|
2012-12-15 10:42:04 +00:00
|
|
|
Args:
|
|
|
|
pipe_list: List of command lines to execute. Each command line is
|
|
|
|
piped into the next, and is itself a list of strings. For
|
|
|
|
example [ ['ls', '.git'] ['wc'] ] will pipe the output of
|
|
|
|
'ls .git' into 'wc'.
|
|
|
|
infile: File to provide stdin to the pipeline
|
|
|
|
outfile: File to store stdout
|
|
|
|
capture: True to capture output
|
|
|
|
capture_stderr: True to capture stderr
|
|
|
|
oneline: True to strip newline chars from output
|
|
|
|
kwargs: Additional keyword arguments to cros_subprocess.Popen()
|
|
|
|
Returns:
|
|
|
|
CommandResult object
|
2012-01-14 15:12:45 +00:00
|
|
|
"""
|
2014-09-06 01:00:12 +00:00
|
|
|
if test_result:
|
|
|
|
if hasattr(test_result, '__call__'):
|
2018-07-17 19:25:42 +00:00
|
|
|
result = test_result(pipe_list=pipe_list)
|
|
|
|
if result:
|
|
|
|
return result
|
|
|
|
else:
|
|
|
|
return test_result
|
|
|
|
# No result: fall through to normal processing
|
2019-10-31 13:42:50 +00:00
|
|
|
result = CommandResult(b'', b'', b'')
|
2012-01-14 15:12:45 +00:00
|
|
|
last_pipe = None
|
2012-12-15 10:42:04 +00:00
|
|
|
pipeline = list(pipe_list)
|
2012-12-15 10:42:05 +00:00
|
|
|
user_pipestr = '|'.join([' '.join(pipe) for pipe in pipe_list])
|
2014-09-06 01:00:09 +00:00
|
|
|
kwargs['stdout'] = None
|
|
|
|
kwargs['stderr'] = None
|
2012-01-14 15:12:45 +00:00
|
|
|
while pipeline:
|
|
|
|
cmd = pipeline.pop(0)
|
|
|
|
if last_pipe is not None:
|
|
|
|
kwargs['stdin'] = last_pipe.stdout
|
|
|
|
elif infile:
|
|
|
|
kwargs['stdin'] = open(infile, 'rb')
|
|
|
|
if pipeline or capture:
|
2012-12-15 10:42:04 +00:00
|
|
|
kwargs['stdout'] = cros_subprocess.PIPE
|
2012-01-14 15:12:45 +00:00
|
|
|
elif outfile:
|
|
|
|
kwargs['stdout'] = open(outfile, 'wb')
|
2012-12-15 10:42:04 +00:00
|
|
|
if capture_stderr:
|
|
|
|
kwargs['stderr'] = cros_subprocess.PIPE
|
2012-01-14 15:12:45 +00:00
|
|
|
|
2012-12-15 10:42:04 +00:00
|
|
|
try:
|
|
|
|
last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs)
|
2016-09-27 15:03:51 +00:00
|
|
|
except Exception as err:
|
2012-12-15 10:42:04 +00:00
|
|
|
result.exception = err
|
2012-12-15 10:42:05 +00:00
|
|
|
if raise_on_error:
|
|
|
|
raise Exception("Error running '%s': %s" % (user_pipestr, str))
|
|
|
|
result.return_code = 255
|
2019-10-31 13:42:50 +00:00
|
|
|
return result.ToOutput(binary)
|
2012-01-14 15:12:45 +00:00
|
|
|
|
|
|
|
if capture:
|
2012-12-15 10:42:04 +00:00
|
|
|
result.stdout, result.stderr, result.combined = (
|
|
|
|
last_pipe.CommunicateFilter(None))
|
|
|
|
if result.stdout and oneline:
|
2019-10-31 13:42:50 +00:00
|
|
|
result.output = result.stdout.rstrip(b'\r\n')
|
2012-12-15 10:42:04 +00:00
|
|
|
result.return_code = last_pipe.wait()
|
2012-01-14 15:12:45 +00:00
|
|
|
else:
|
2012-12-15 10:42:04 +00:00
|
|
|
result.return_code = os.waitpid(last_pipe.pid, 0)[1]
|
2012-12-15 10:42:05 +00:00
|
|
|
if raise_on_error and result.return_code:
|
|
|
|
raise Exception("Error running '%s'" % user_pipestr)
|
2019-10-31 13:42:50 +00:00
|
|
|
return result.ToOutput(binary)
|
2012-01-14 15:12:45 +00:00
|
|
|
|
2016-07-26 00:59:00 +00:00
|
|
|
def Output(*cmd, **kwargs):
|
2019-07-08 19:18:23 +00:00
|
|
|
kwargs['raise_on_error'] = kwargs.get('raise_on_error', True)
|
|
|
|
return RunPipe([cmd], capture=True, **kwargs).stdout
|
2012-01-14 15:12:45 +00:00
|
|
|
|
2012-12-15 10:42:04 +00:00
|
|
|
def OutputOneLine(*cmd, **kwargs):
|
2019-10-31 13:42:50 +00:00
|
|
|
"""Run a command and output it as a single-line string
|
|
|
|
|
|
|
|
The command us expected to produce a single line of output
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
String containing output of command
|
|
|
|
"""
|
2012-12-15 10:42:05 +00:00
|
|
|
raise_on_error = kwargs.pop('raise_on_error', True)
|
2019-10-31 13:42:50 +00:00
|
|
|
result = RunPipe([cmd], capture=True, oneline=True,
|
|
|
|
raise_on_error=raise_on_error, **kwargs).stdout.strip()
|
|
|
|
return result
|
2012-01-14 15:12:45 +00:00
|
|
|
|
|
|
|
def Run(*cmd, **kwargs):
|
2012-12-15 10:42:04 +00:00
|
|
|
return RunPipe([cmd], **kwargs).stdout
|
2012-01-14 15:12:45 +00:00
|
|
|
|
|
|
|
def RunList(cmd):
|
2012-12-15 10:42:04 +00:00
|
|
|
return RunPipe([cmd], capture=True).stdout
|
|
|
|
|
|
|
|
def StopAll():
|
|
|
|
cros_subprocess.stay_alive = False
|