| from __future__ import annotations |
|
|
|
|
| __lazy_modules__ = ['subprocess'] |
|
|
| import contextvars |
| import logging |
| import subprocess |
| import typing |
|
|
|
|
| TYPE_CHECKING = False |
|
|
| if TYPE_CHECKING: |
| from collections.abc import Mapping, Sequence |
|
|
| from ._types import StrPath |
|
|
|
|
| class Logger(typing.Protocol): |
| def __call__(self, message: str, *, kind: tuple[str, ...] | None = None) -> None: ... |
|
|
|
|
| _package_name = __spec__.parent |
| _default_logger = logging.getLogger(_package_name) |
|
|
|
|
| def _log_default(message: str, *, kind: tuple[str, ...] | None = None) -> None: |
| |
| _default_logger.log(logging.INFO, message, stacklevel=2) |
|
|
|
|
| LOGGER = contextvars.ContextVar('LOGGER', default=_log_default) |
| VERBOSITY = contextvars.ContextVar('VERBOSITY', default=0) |
|
|
|
|
| def log_subprocess_error(error: subprocess.CalledProcessError) -> None: |
| log = LOGGER.get() |
|
|
| log(subprocess.list2cmdline(error.cmd), kind=('subprocess', 'cmd')) |
|
|
| for stream_name in ('stdout', 'stderr'): |
| stream = getattr(error, stream_name) |
| if stream: |
| log(stream.decode() if isinstance(stream, bytes) else stream, kind=('subprocess', stream_name)) |
|
|
|
|
| def run_subprocess(cmd: Sequence[StrPath], cwd: str | None = None, env: Mapping[str, str] | None = None) -> None: |
| verbosity = VERBOSITY.get() |
|
|
| if verbosity > 0: |
| import concurrent.futures |
|
|
| log = LOGGER.get() |
|
|
| with ( |
| concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor, |
| subprocess.Popen( |
| cmd, cwd=cwd, encoding='utf-8', env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT |
| ) as process, |
| ): |
| log(subprocess.list2cmdline(cmd), kind=('subprocess', 'cmd')) |
|
|
| @executor.submit |
| def log_stream() -> None: |
| assert process.stdout |
| for line in process.stdout: |
| log(line, kind=('subprocess', 'stdout')) |
|
|
| concurrent.futures.wait([log_stream]) |
|
|
| code = process.wait() |
| if code: |
| raise subprocess.CalledProcessError(code, process.args) |
|
|
| else: |
| try: |
| subprocess.run(cmd, capture_output=True, check=True, cwd=cwd, env=env) |
| except subprocess.CalledProcessError as error: |
| log_subprocess_error(error) |
| raise |
|
|
|
|
| if TYPE_CHECKING: |
| log: Logger |
| verbosity: bool |
|
|
| else: |
|
|
| def __getattr__(name: str) -> object: |
| if name == 'log': |
| return LOGGER.get() |
| if name == 'verbosity': |
| return VERBOSITY.get() |
| raise AttributeError(name) |
|
|
|
|
| __all__ = [ |
| 'LOGGER', |
| 'VERBOSITY', |
| 'log', |
| 'log_subprocess_error', |
| 'run_subprocess', |
| 'verbosity', |
| ] |
|
|