File size: 13,428 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Conda command line interface parsers."""
from __future__ import annotations
import argparse
import os
import sys
from argparse import (
SUPPRESS,
RawDescriptionHelpFormatter,
)
from argparse import ArgumentParser as ArgumentParserBase
from importlib import import_module
from logging import getLogger
from subprocess import Popen
from .. import __version__
from ..auxlib.ish import dals
from ..base.context import context, sys_rc_path, user_rc_path
from ..common.compat import isiterable, on_win
from ..common.constants import NULL
from ..deprecations import deprecated
from .actions import ExtendConstAction, NullCountAction # noqa: F401
from .find_commands import find_commands, find_executable
from .helpers import ( # noqa: F401
add_output_and_prompt_options,
add_parser_channels,
add_parser_create_install_update,
add_parser_default_packages,
add_parser_help,
add_parser_json,
add_parser_known,
add_parser_networking,
add_parser_package_install_options,
add_parser_platform,
add_parser_prefix,
add_parser_prefix_to_group,
add_parser_prune,
add_parser_pscheck,
add_parser_show_channel_urls,
add_parser_solver,
add_parser_solver_mode,
add_parser_update_modifiers,
add_parser_verbose,
)
from .main_clean import configure_parser as configure_parser_clean
from .main_commands import configure_parser as configure_parser_commands
from .main_compare import configure_parser as configure_parser_compare
from .main_config import configure_parser as configure_parser_config
from .main_create import configure_parser as configure_parser_create
from .main_env import configure_parser as configure_parser_env
from .main_export import configure_parser as configure_parser_export
from .main_info import configure_parser as configure_parser_info
from .main_init import configure_parser as configure_parser_init
from .main_install import configure_parser as configure_parser_install
from .main_list import configure_parser as configure_parser_list
from .main_mock_activate import configure_parser as configure_parser_activate
from .main_mock_deactivate import configure_parser as configure_parser_deactivate
from .main_notices import configure_parser as configure_parser_notices
from .main_package import configure_parser as configure_parser_package
from .main_remove import configure_parser as configure_parser_remove
from .main_rename import configure_parser as configure_parser_rename
from .main_run import configure_parser as configure_parser_run
from .main_search import configure_parser as configure_parser_search
from .main_update import configure_parser as configure_parser_update
log = getLogger(__name__)
escaped_user_rc_path = user_rc_path.replace("%", "%%")
escaped_sys_rc_path = sys_rc_path.replace("%", "%%")
BUILTIN_COMMANDS = {
"activate", # Mock entry for shell command
"clean",
"commands",
"compare",
"config",
"create",
"deactivate", # Mock entry for shell command
"env",
"export",
"info",
"init",
"install",
"list",
"notices",
"package",
"remove",
"rename",
"run",
"search",
"uninstall", # remove alias
"update",
"upgrade", # update alias
}
"""List of built-in commands; these cannot be overridden by plugin subcommands."""
def generate_pre_parser(**kwargs) -> ArgumentParser:
pre_parser = ArgumentParser(
description="conda is a tool for managing and deploying applications,"
" environments and packages.",
**kwargs,
)
add_parser_verbose(pre_parser)
pre_parser.add_argument(
"--json",
action="store_true",
default=NULL,
help=SUPPRESS,
)
pre_parser.add_argument(
"--no-plugins",
action="store_true",
default=NULL,
help="Disable all plugins that are not built into conda.",
)
return pre_parser
def generate_parser(**kwargs) -> ArgumentParser:
parser = generate_pre_parser(**kwargs)
parser.add_argument(
"-V",
"--version",
action="version",
version=f"conda {__version__}",
help="Show the conda version number and exit.",
)
sub_parsers = parser.add_subparsers(
metavar="COMMAND",
title="commands",
description="The following built-in and plugins subcommands are available.",
dest="cmd",
action=_GreedySubParsersAction,
required=True,
)
configure_parser_activate(sub_parsers)
configure_parser_clean(sub_parsers)
configure_parser_commands(sub_parsers)
configure_parser_compare(sub_parsers)
configure_parser_config(sub_parsers)
configure_parser_create(sub_parsers)
configure_parser_deactivate(sub_parsers)
configure_parser_env(sub_parsers)
configure_parser_export(sub_parsers)
configure_parser_info(sub_parsers)
configure_parser_init(sub_parsers)
configure_parser_install(sub_parsers)
configure_parser_list(sub_parsers)
configure_parser_notices(sub_parsers)
configure_parser_package(sub_parsers)
configure_parser_plugins(sub_parsers)
configure_parser_remove(sub_parsers, aliases=["uninstall"])
configure_parser_rename(sub_parsers)
configure_parser_run(sub_parsers)
configure_parser_search(sub_parsers)
configure_parser_update(sub_parsers, aliases=["upgrade"])
return parser
def do_call(args: argparse.Namespace, parser: ArgumentParser):
"""
Serves as the primary entry point for commands referred to in this file and for
all registered plugin subcommands.
"""
# let's see if during the parsing phase it was discovered that the
# called command was in fact a plugin subcommand
if plugin_subcommand := getattr(args, "_plugin_subcommand", None):
# pass on the rest of the plugin specific args or fall back to
# the whole discovered arguments
context.plugin_manager.invoke_pre_commands(plugin_subcommand.name)
result = plugin_subcommand.action(getattr(args, "_args", args))
context.plugin_manager.invoke_post_commands(plugin_subcommand.name)
elif name := getattr(args, "_executable", None):
# run the subcommand from executables; legacy path
deprecated.topic(
"23.3",
"26.3",
topic="Loading conda subcommands via executables",
addendum="Use the plugin system instead.",
)
executable = find_executable(f"conda-{name}")
if not executable:
from ..exceptions import CommandNotFoundError
raise CommandNotFoundError(name)
return _exec([executable, *args._args], os.environ)
else:
# let's call the subcommand the old-fashioned way via the assigned func..
module_name, func_name = args.func.rsplit(".", 1)
# func_name should always be 'execute'
module = import_module(module_name)
command = module_name.split(".")[-1].replace("main_", "")
context.plugin_manager.invoke_pre_commands(command)
result = getattr(module, func_name)(args, parser)
context.plugin_manager.invoke_post_commands(command)
return result
def find_builtin_commands(parser):
# ArgumentParser doesn't have an API for getting back what subparsers
# exist, so we need to use internal properties to do so.
return tuple(parser._subparsers._group_actions[0].choices.keys())
class ArgumentParser(ArgumentParserBase):
def __init__(self, *args, add_help=True, **kwargs):
kwargs.setdefault("formatter_class", RawDescriptionHelpFormatter)
super().__init__(*args, add_help=False, **kwargs)
if add_help:
add_parser_help(self)
def _check_value(self, action, value):
# For our greedy subparsers, sort the choices by their repr for stable output
if isinstance(action, _GreedySubParsersAction) and isinstance(
action.choices, dict
):
action.choices = dict(sorted(action.choices.items()))
# extend to properly handle when we accept multiple choices and the default is a list
if action.choices is not None and isiterable(value):
for element in value:
super()._check_value(action, element)
else:
super()._check_value(action, value)
def parse_args(self, *args, override_args=None, **kwargs):
parsed_args = super().parse_args(*args, **kwargs)
for name, value in (override_args or {}).items():
if value is not NULL and getattr(parsed_args, name, NULL) is NULL:
setattr(parsed_args, name, value)
return parsed_args
class _GreedySubParsersAction(argparse._SubParsersAction):
"""A custom subparser action to conditionally act as a greedy consumer.
This is a workaround since argparse.REMAINDER does not work as expected,
see https://github.com/python/cpython/issues/61252.
"""
def __call__(self, parser, namespace, values, option_string=None):
super().__call__(parser, namespace, values, option_string)
parser = self._name_parser_map[values[0]]
# if the parser has a greedy=True attribute we want to consume all arguments
# i.e. all unknown args should be passed to the subcommand as is
if getattr(parser, "greedy", False):
try:
unknown = getattr(namespace, argparse._UNRECOGNIZED_ARGS_ATTR)
delattr(namespace, argparse._UNRECOGNIZED_ARGS_ATTR)
except AttributeError:
unknown = ()
# underscore prefixed indicating this is not a normal argparse argument
namespace._args = tuple(unknown)
def _get_subactions(self):
"""Sort actions for subcommands to appear alphabetically in help blurb."""
return sorted(self._choices_actions, key=lambda action: action.dest)
def _exec(executable_args, env_vars):
return (_exec_win if on_win else _exec_unix)(executable_args, env_vars)
def _exec_win(executable_args, env_vars):
p = Popen(executable_args, env=env_vars)
try:
p.communicate()
except KeyboardInterrupt:
p.wait()
finally:
sys.exit(p.returncode)
def _exec_unix(executable_args, env_vars):
os.execvpe(executable_args[0], executable_args, env_vars)
def configure_parser_plugins(sub_parsers) -> None:
"""
For each of the provided plugin-based subcommands, we'll create
a new subparser for an improved help printout and calling the
:meth:`~conda.plugins.types.CondaSubcommand.configure_parser`
with the newly created subcommand specific argument parser.
"""
plugin_subcommands = context.plugin_manager.get_subcommands()
for name, plugin_subcommand in plugin_subcommands.items():
# if the name of the plugin-based subcommand overlaps a built-in
# subcommand, we print an error
if name in BUILTIN_COMMANDS:
log.error(
dals(
f"""
The plugin '{name}' is trying to override the built-in command
with the same name, which is not allowed.
Please uninstall the plugin to stop seeing this error message.
"""
)
)
continue
parser = sub_parsers.add_parser(
name,
description=plugin_subcommand.summary,
help=plugin_subcommand.summary,
add_help=False, # defer to subcommand's help processing
)
# case 1: plugin extends the parser
if plugin_subcommand.configure_parser:
plugin_subcommand.configure_parser(parser)
# attempt to add standard help processing, will fail if plugin defines their own
try:
add_parser_help(parser)
except argparse.ArgumentError:
pass
# case 2: plugin has their own parser, see _GreedySubParsersAction
else:
parser.greedy = True
# underscore prefixed indicating this is not a normal argparse argument
parser.set_defaults(_plugin_subcommand=plugin_subcommand)
if context.no_plugins:
return
# Ignore the legacy `conda-env` entrypoints since we already register `env`
# as a subcommand in `generate_parser` above
legacy = set(find_commands()).difference(plugin_subcommands) - {"env"}
for name in legacy:
# if the name of the plugin-based subcommand overlaps a built-in
# subcommand, we print an error
if name in BUILTIN_COMMANDS:
log.error(
dals(
f"""
The (legacy) plugin '{name}' is trying to override the built-in command
with the same name, which is not allowed.
Please uninstall the plugin to stop seeing this error message.
"""
)
)
continue
parser = sub_parsers.add_parser(
name,
description=f"See `conda {name} --help`.",
help=f"See `conda {name} --help`.",
add_help=False, # defer to subcommand's help processing
)
# case 3: legacy plugins are always greedy
parser.greedy = True
parser.set_defaults(_executable=name)
|