forked from ansible-community/antsibull-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add subprocess_util module to replace sh
This adds code to run subprocesses asynchronously and integrates with the logger. stdout and stderr are logged in real time and always captured. We return a CompletedProcess object like regular subprocess does. Relates: ansible-community#34
- Loading branch information
Showing
1 changed file
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# Copyright (C) 2023 Maxwell G <maxwell@gtmx.me> | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or | ||
# https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
""" | ||
Utilities for dealing with subprocesses | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
import asyncio | ||
import subprocess | ||
from collections.abc import Callable, Sequence | ||
from typing import TYPE_CHECKING, cast | ||
|
||
from antsibull_core.logging import log | ||
|
||
if TYPE_CHECKING: | ||
from _typeshed import StrOrBytesPath | ||
from twiggy.logger import Logger # type: ignore[import] | ||
|
||
mlog = log.fields(mod=__name__) | ||
|
||
|
||
async def _stream_log( | ||
name: str, callback: Callable | None, stream: asyncio.StreamReader | ||
) -> str: | ||
line = await stream.readline() | ||
lines = [] | ||
while True: | ||
if not line: | ||
break | ||
text = line.decode('utf-8') | ||
if callback: | ||
callback(f'{name}: {text.strip()}') | ||
lines.append(text) | ||
line = await stream.readline() | ||
return ''.join(lines) | ||
|
||
|
||
async def async_log_run( | ||
args: Sequence[StrOrBytesPath], | ||
logger: Logger | None = None, | ||
check: bool = True, | ||
stdout_loglevel: str | None = None, | ||
stderr_loglevel: str | None = 'debug', | ||
**kwargs, | ||
) -> subprocess.CompletedProcess: | ||
""" | ||
Asynchronously run a command in a subprocess and log it using the twiggy | ||
logger. | ||
The command's stdout and stderr are always captured. | ||
For some usecases, you may still need to call | ||
asyncio.create_subprocess_exec() directly to have more control. | ||
:param args: Command to run | ||
:param logger: Where to log command. | ||
:param check: Whether to raise a `subprocess.CalledProcessError` when the | ||
command returns a non-zero exit code | ||
:param stdout_loglevel: Which level to use to log stdout. `None` disables logging. | ||
:param stderr_loglevel: Which level to use to log stderr. `None` disables logging. | ||
""" | ||
logger = logger or mlog | ||
stdout_logfunc: Callable | None = None | ||
if stdout_loglevel: | ||
stdout_logfunc = getattr(logger, stdout_loglevel) | ||
stderr_logfunc: Callable | None = None | ||
if stderr_loglevel: | ||
stderr_logfunc = getattr(logger, stderr_loglevel) | ||
|
||
logger.debug(f'Running subprocess: {args!r}') | ||
kwargs['stdout'] = asyncio.subprocess.PIPE | ||
kwargs['stderr'] = asyncio.subprocess.PIPE | ||
proc = await asyncio.create_subprocess_exec(*args, **kwargs) | ||
stdout, stderr = await asyncio.gather( | ||
# proc.stdout and proc.stderr won't be None with PIPE | ||
asyncio.create_task( | ||
_stream_log( | ||
'stdout', stdout_logfunc, cast(asyncio.StreamReader, proc.stdout) | ||
) | ||
), | ||
asyncio.create_task( | ||
_stream_log( | ||
'stderr', stderr_logfunc, cast(asyncio.StreamReader, proc.stderr) | ||
) | ||
), | ||
) | ||
returncode = await proc.wait() | ||
|
||
completed = subprocess.CompletedProcess( | ||
args=args, returncode=returncode, stdout=stdout, stderr=stderr | ||
) | ||
if check: | ||
completed.check_returncode() | ||
return completed | ||
|
||
|
||
def log_run( | ||
args: Sequence[StrOrBytesPath], | ||
logger: Logger | None = None, | ||
check: bool = True, | ||
stdout_loglevel: str | None = None, | ||
stderr_loglevel: str | None = 'debug', | ||
**kwargs, | ||
) -> subprocess.CompletedProcess: | ||
""" | ||
Synchronous wrapper for the async_log_run function. | ||
This function runs a command in a subprocess and captures and logs its | ||
output. | ||
""" | ||
return asyncio.run( | ||
async_log_run(args, logger, check, stdout_loglevel, stderr_loglevel, **kwargs) | ||
) |