diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-11-01 12:43:08 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-11-29 18:12:33 -0800 |
commit | fcced46c9937c8971021dfe8a3349c0948a74e1b (patch) | |
tree | 1012c2d1c09e1617d77f142391a54d9f9694a98e /mesonbuild | |
parent | 3a168513bd4ff041143ee9b4ba84d97dbcd13169 (diff) | |
download | meson-fcced46c9937c8971021dfe8a3349c0948a74e1b.zip meson-fcced46c9937c8971021dfe8a3349c0948a74e1b.tar.gz meson-fcced46c9937c8971021dfe8a3349c0948a74e1b.tar.bz2 |
interpreter: use typed_kwargs for run_command
This also cleans up a couple of internal callers of the internal impl
version that don't set the `check` argument, and therefore trigger a
warning about not setting the check argument.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 31 | ||||
-rw-r--r-- | mesonbuild/interpreter/kwargs.py | 7 | ||||
-rw-r--r-- | mesonbuild/programs.py | 7 |
3 files changed, 26 insertions, 19 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index 53a9c01..2e52725 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -32,7 +32,7 @@ from ..interpreterbase import InterpreterException, InvalidArguments, InvalidCod from ..interpreterbase import Disabler, disablerIfNotFound from ..interpreterbase import FeatureNew, FeatureDeprecated, FeatureNewKwargs, FeatureDeprecatedKwargs from ..interpreterbase import ObjectHolder -from ..interpreterbase.baseobjects import TYPE_nkwargs, TYPE_nvar, TYPE_var, TYPE_kwargs +from ..interpreterbase.baseobjects import TYPE_nkwargs, TYPE_var, TYPE_kwargs from ..modules import ExtensionModule, ModuleObject, MutableModuleObject, NewExtensionModule, NotFoundExtensionModule from ..cmake import CMakeInterpreter from ..backend.backends import Backend, ExecutableSerialisation @@ -684,42 +684,41 @@ external dependencies (including libraries) must go to "dependencies".''') if not isinstance(actual, wanted): raise InvalidArguments('Incorrect argument type.') - @FeatureNewKwargs('run_command', '0.50.0', ['env']) - @FeatureNewKwargs('run_command', '0.47.0', ['check', 'capture']) - @permittedKwargs({'check', 'capture', 'env'}) # Executables aren't actually accepted, but we allow them here to allow for # better error messages when overridden @typed_pos_args( 'run_command', (build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str), varargs=(build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str)) + @typed_kwargs( + 'run_command', + KwargInfo('check', (bool, NoneType), since='0.47.0'), + KwargInfo('capture', bool, default=True, since='0.47.0'), + ENV_KW.evolve(since='0.50.0'), + ) def func_run_command(self, node: mparser.BaseNode, args: T.Tuple[T.Union[build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str], T.List[T.Union[build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str]]], - kwargs): + kwargs: 'kwargs.RunCommand') -> RunProcess: return self.run_command_impl(node, args, kwargs) def run_command_impl(self, node: mparser.BaseNode, args: T.Tuple[T.Union[build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str], T.List[T.Union[build.Executable, ExternalProgram, compilers.Compiler, mesonlib.File, str]]], - kwargs: TYPE_nkwargs, + kwargs: 'kwargs.RunCommand', in_builddir: bool = False) -> RunProcess: cmd, cargs = args - capture = kwargs.get('capture', True) + capture = kwargs['capture'] + env = kwargs['env'] srcdir = self.environment.get_source_dir() builddir = self.environment.get_build_dir() - check = kwargs.get('check') + check = kwargs['check'] if check is None: mlog.warning(implicit_check_false_warning, once=True) check = False - if not isinstance(check, bool): - raise InterpreterException('Check must be boolean.') - - env = self.unpack_env_kwarg(kwargs) - m = 'must be a string, or the output of find_program(), files() '\ 'or configure_file(), or a compiler object; not {!r}' expanded_args: T.List[str] = [] @@ -2245,9 +2244,9 @@ This will become a hard error in the future.''', location=node) _cmd = mesonlib.substitute_values(kwargs['command'], values) mlog.log('Configuring', mlog.bold(output), 'with command') cmd, *args = mesonlib.listify(_cmd) - res = self.run_command_impl(node, (cmd, args), {}, True) - if res.returncode != 0: - raise InterpreterException(f'Running configure command failed.\n{res.stdout}\n{res.stderr}') + res = self.run_command_impl(node, (cmd, args), + {'capture': True, 'check': True, 'env': build.EnvironmentVariables()}, + True) if 'capture' in kwargs and kwargs['capture']: dst_tmp = ofile_abs + '~' file_encoding = kwargs.setdefault('encoding', 'utf-8') diff --git a/mesonbuild/interpreter/kwargs.py b/mesonbuild/interpreter/kwargs.py index 4f8cf06..6056329 100644 --- a/mesonbuild/interpreter/kwargs.py +++ b/mesonbuild/interpreter/kwargs.py @@ -232,3 +232,10 @@ class FindProgram(ExtractRequired, ExtractSearchDirs): native: MachineChoice version: T.List[str] + + +class RunCommand(TypedDict): + + check: bool + capture: T.Optional[bool] + env: build.EnvironmentVariables diff --git a/mesonbuild/programs.py b/mesonbuild/programs.py index eefdc74..192c273 100644 --- a/mesonbuild/programs.py +++ b/mesonbuild/programs.py @@ -102,10 +102,11 @@ class ExternalProgram(mesonlib.HoldableObject): def get_version(self, interpreter: 'Interpreter') -> str: if not self.cached_version: + from . import build raw_cmd = self.get_command() + ['--version'] - res = interpreter.run_command_impl(interpreter.current_node, (self, ['--version']), {}, True) - if res.returncode != 0: - raise mesonlib.MesonException(f'Running {raw_cmd!r} failed') + res = interpreter.run_command_impl(interpreter.current_node, (self, ['--version']), + {'capture': True, 'check': True, 'env': build.EnvironmentVariables()}, + True) output = res.stdout.strip() if not output: output = res.stderr.strip() |