u_boot_pylib: Fix pylint warnings in command

This file has a lot of warnings. Before adding any more features, fix
those which are straightforward to resolve.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2025-02-03 09:26:44 -07:00 committed by Tom Rini
parent 54ead4be04
commit f8456c91aa

View file

@ -1,8 +1,11 @@
# SPDX-License-Identifier: GPL-2.0+ # SPDX-License-Identifier: GPL-2.0+
# Copyright (c) 2011 The Chromium OS Authors. """
# Shell command ease-ups for Python
import os Copyright (c) 2011 The Chromium OS Authors.
"""
import subprocess
from u_boot_pylib import cros_subprocess from u_boot_pylib import cros_subprocess
@ -26,16 +29,16 @@ class CommandExc(Exception):
self.result = result self.result = result
"""Shell command ease-ups for Python."""
class CommandResult: class CommandResult:
"""A class which captures the result of executing a command. """A class which captures the result of executing a command.
Members: Members:
stdout: stdout obtained from command, as a string stdout (bytes): stdout obtained from command, as a string
stderr: stderr obtained from command, as a string stderr (bytes): stderr obtained from command, as a string
return_code: Return code from command combined (bytes): stdout and stderr interleaved
exception: Exception received, or None if all ok return_code (int): Return code from command
exception (Exception): Exception received, or None if all ok
output (str or None): Returns output as a single line if requested
""" """
def __init__(self, stdout='', stderr='', combined='', return_code=0, def __init__(self, stdout='', stderr='', combined='', return_code=0,
exception=None): exception=None):
@ -44,34 +47,46 @@ class CommandResult:
self.combined = combined self.combined = combined
self.return_code = return_code self.return_code = return_code
self.exception = exception self.exception = exception
self.output = None
def to_output(self, binary): def to_output(self, binary):
"""Converts binary output to its final form
Args:
binary (bool): True to report binary output, False to use strings
Returns:
self
"""
if not binary: if not binary:
self.stdout = self.stdout.decode('utf-8') self.stdout = self.stdout.decode('utf-8')
self.stderr = self.stderr.decode('utf-8') self.stderr = self.stderr.decode('utf-8')
self.combined = self.combined.decode('utf-8') self.combined = self.combined.decode('utf-8')
return self return self
def run_pipe(pipe_list, infile=None, outfile=None,
capture=False, capture_stderr=False, oneline=False, def run_pipe(pipe_list, infile=None, outfile=None, capture=False,
raise_on_error=True, cwd=None, binary=False, capture_stderr=False, oneline=False, raise_on_error=True, cwd=None,
output_func=None, **kwargs): binary=False, output_func=None, **kwargs):
""" """
Perform a command pipeline, with optional input/output filenames. Perform a command pipeline, with optional input/output filenames.
Args: Args:
pipe_list: List of command lines to execute. Each command line is pipe_list (list of list): List of command lines to execute. Each command
piped into the next, and is itself a list of strings. For line is piped into the next, and is itself a list of strings. For
example [ ['ls', '.git'] ['wc'] ] will pipe the output of example [ ['ls', '.git'] ['wc'] ] will pipe the output of
'ls .git' into 'wc'. 'ls .git' into 'wc'.
infile: File to provide stdin to the pipeline infile (str): File to provide stdin to the pipeline
outfile: File to store stdout outfile (str): File to store stdout
capture: True to capture output capture (bool): True to capture output
capture_stderr: True to capture stderr capture_stderr (bool): True to capture stderr
oneline: True to strip newline chars from output oneline (bool): True to strip newline chars from output
output_func: Output function to call with each output fragment raise_on_error (bool): True to raise on an error, False to return it in
(if it returns True the function terminates) the CommandResult
kwargs: Additional keyword arguments to cros_subprocess.Popen() cwd (str or None): Directory to run the command in
binary (bool): True to report binary output, False to use strings
output_func (function): Output function to call with each output
fragment (if it returns True the function terminates)
**kwargs: Additional keyword arguments to cros_subprocess.Popen()
Returns: Returns:
CommandResult object CommandResult object
Raises: Raises:
@ -89,7 +104,7 @@ def run_pipe(pipe_list, infile=None, outfile=None,
result = CommandResult(b'', b'', b'') result = CommandResult(b'', b'', b'')
last_pipe = None last_pipe = None
pipeline = list(pipe_list) pipeline = list(pipe_list)
user_pipestr = '|'.join([' '.join(pipe) for pipe in pipe_list]) user_pipestr = '|'.join([' '.join(pipe) for pipe in pipe_list])
kwargs['stdout'] = None kwargs['stdout'] = None
kwargs['stderr'] = None kwargs['stderr'] = None
while pipeline: while pipeline:
@ -125,28 +140,66 @@ def run_pipe(pipe_list, infile=None, outfile=None,
raise CommandExc(f"Error running '{user_pipestr}'", result) raise CommandExc(f"Error running '{user_pipestr}'", result)
return result.to_output(binary) return result.to_output(binary)
def output(*cmd, **kwargs): def output(*cmd, **kwargs):
"""Run a command and return its output
Args:
*cmd (list of str): Command to run
**kwargs (dict of args): Extra arguments to pass in
Returns:
str: command output
"""
kwargs['raise_on_error'] = kwargs.get('raise_on_error', True) kwargs['raise_on_error'] = kwargs.get('raise_on_error', True)
return run_pipe([cmd], capture=True, **kwargs).stdout return run_pipe([cmd], capture=True, **kwargs).stdout
def output_one_line(*cmd, **kwargs): def output_one_line(*cmd, **kwargs):
"""Run a command and output it as a single-line string """Run a command and output it as a single-line string
The command us expected to produce a single line of output The command is expected to produce a single line of output
Args:
*cmd (list of str): Command to run
**kwargs (dict of args): Extra arguments to pass in
Returns: Returns:
String containing output of command str: output of command with all newlines removed
""" """
raise_on_error = kwargs.pop('raise_on_error', True) raise_on_error = kwargs.pop('raise_on_error', True)
result = run_pipe([cmd], capture=True, oneline=True, result = run_pipe([cmd], capture=True, oneline=True,
raise_on_error=raise_on_error, **kwargs).stdout.strip() raise_on_error=raise_on_error, **kwargs).stdout.strip()
return result return result
def run(*cmd, **kwargs): def run(*cmd, **kwargs):
"""Run a command
Note that you must add 'capture' to kwargs to obtain non-empty output
Args:
*cmd (list of str): Command to run
**kwargs (dict of args): Extra arguments to pass in
Returns:
str: output of command
"""
return run_pipe([cmd], **kwargs).stdout return run_pipe([cmd], **kwargs).stdout
def run_list(cmd): def run_list(cmd):
"""Run a command and return its output
Args:
cmd (list of str): Command to run
Returns:
str: output of command
"""
return run_pipe([cmd], capture=True).stdout return run_pipe([cmd], capture=True).stdout
def stop_all(): def stop_all():
"""Stop all subprocesses initiated with cros_subprocess"""
cros_subprocess.stay_alive = False cros_subprocess.stay_alive = False