1# SPDX-License-Identifier: GPL-2.0+
2# Copyright (c) 2011 The Chromium OS Authors.
3#
4
5import os
6
7from patman import cros_subprocess
8
9"""Shell command ease-ups for Python."""
10
11class 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
23        self.combined = None
24        self.return_code = None
25        self.exception = None
26
27    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
35    def ToOutput(self, binary):
36        if not binary:
37            self.stdout = self.stdout.decode('utf-8')
38            self.stderr = self.stderr.decode('utf-8')
39            self.combined = self.combined.decode('utf-8')
40        return self
41
42
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
49
50def RunPipe(pipe_list, infile=None, outfile=None,
51            capture=False, capture_stderr=False, oneline=False,
52            raise_on_error=True, cwd=None, binary=False, **kwargs):
53    """
54    Perform a command pipeline, with optional input/output filenames.
55
56    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
69    """
70    if test_result:
71        if hasattr(test_result, '__call__'):
72            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
78    result = CommandResult(b'', b'', b'')
79    last_pipe = None
80    pipeline = list(pipe_list)
81    user_pipestr =  '|'.join([' '.join(pipe) for pipe in pipe_list])
82    kwargs['stdout'] = None
83    kwargs['stderr'] = None
84    while pipeline:
85        cmd = pipeline.pop(0)
86        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:
91            kwargs['stdout'] = cros_subprocess.PIPE
92        elif outfile:
93            kwargs['stdout'] = open(outfile, 'wb')
94        if capture_stderr:
95            kwargs['stderr'] = cros_subprocess.PIPE
96
97        try:
98            last_pipe = cros_subprocess.Popen(cmd, cwd=cwd, **kwargs)
99        except Exception as err:
100            result.exception = err
101            if raise_on_error:
102                raise Exception("Error running '%s': %s" % (user_pipestr, str))
103            result.return_code = 255
104            return result.ToOutput(binary)
105
106    if capture:
107        result.stdout, result.stderr, result.combined = (
108                last_pipe.CommunicateFilter(None))
109        if result.stdout and oneline:
110            result.output = result.stdout.rstrip(b'\r\n')
111        result.return_code = last_pipe.wait()
112    else:
113        result.return_code = os.waitpid(last_pipe.pid, 0)[1]
114    if raise_on_error and result.return_code:
115        raise Exception("Error running '%s'" % user_pipestr)
116    return result.ToOutput(binary)
117
118def Output(*cmd, **kwargs):
119    kwargs['raise_on_error'] = kwargs.get('raise_on_error', True)
120    return RunPipe([cmd], capture=True, **kwargs).stdout
121
122def OutputOneLine(*cmd, **kwargs):
123    """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    """
130    raise_on_error = kwargs.pop('raise_on_error', True)
131    result = RunPipe([cmd], capture=True, oneline=True,
132                     raise_on_error=raise_on_error, **kwargs).stdout.strip()
133    return result
134
135def Run(*cmd, **kwargs):
136    return RunPipe([cmd], **kwargs).stdout
137
138def RunList(cmd):
139    return RunPipe([cmd], capture=True).stdout
140
141def StopAll():
142    cros_subprocess.stay_alive = False
143