File size: 20,023 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 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""
Configuration file manipulation utilities for conda.
This module provides classes and functions for working with conda configuration
files (.condarc), including reading, writing, and validating configuration keys.
"""
from __future__ import annotations
import os
import sys
from collections.abc import Sequence
from functools import cached_property
from logging import getLogger
from pathlib import Path
from typing import TYPE_CHECKING
from ..common.configuration import DEFAULT_CONDARC_FILENAME
if TYPE_CHECKING:
from collections.abc import Callable
from typing import Any
from ..common.configuration import Configuration
log = getLogger(__name__)
def _register_enum_representers() -> None:
"""Register YAML representers for conda enum types.
This function registers custom YAML representers for all conda enum types
to ensure they are serialized as strings rather than complex objects.
This is called once at module load time to ensure representers are available
before any YAML serialization occurs.
"""
from ruamel.yaml.representer import RoundTripRepresenter
from ..base.constants import (
ChannelPriority,
DepsModifier,
PathConflict,
SafetyChecks,
SatSolverChoice,
UpdateModifier,
)
def enum_representer(dumper, data):
return dumper.represent_str(str(data))
# Register each enum type individually (base Enum class registration doesn't work)
for enum_class in (
SafetyChecks,
PathConflict,
DepsModifier,
UpdateModifier,
ChannelPriority,
SatSolverChoice,
):
RoundTripRepresenter.add_representer(enum_class, enum_representer)
# Register enum representers once at module load time
_register_enum_representers()
class _MissingSentinel:
"""Sentinel value to indicate a missing configuration key.
This is used by ConfigurationFile.get_key() to distinguish between a key that
doesn't exist and a key that exists but has a None value.
"""
def __repr__(self):
return "<MISSING>"
def __bool__(self):
return False
def __eq__(self, other):
return isinstance(other, _MissingSentinel)
def __hash__(self):
return hash(_MissingSentinel)
MISSING = _MissingSentinel()
class ParameterTypeGroups:
"""
Groups configuration parameters by their parameter type.
Organizes configuration parameters from a Configuration instance into sequence
and map parameters, handling both regular and plugin parameters separately.
This is primarily used by ConfigurationFile to efficiently determine which operations
are valid for different configuration keys.
"""
def __init__(self, context: Configuration) -> None:
"""
Initialize ParameterTypeGroups by grouping parameters by type.
:param context: Configuration instance containing configuration parameters.
"""
from ..common.iterators import groupby_to_dict as groupby
self._grouped_parameter = groupby(
lambda p: context.describe_parameter(p)["parameter_type"],
context.list_parameters(),
)
# Handle plugin parameters if the context has a plugins attribute
if hasattr(context, "plugins"):
self._plugin_grouped_parameters = groupby(
lambda p: context.plugins.describe_parameter(p)["parameter_type"],
context.plugins.list_parameters(),
)
else:
self._plugin_grouped_parameters = {}
@cached_property
def sequence_parameters(self) -> list[str]:
"""List of sequence parameter names."""
return self._grouped_parameter.get("sequence", [])
@cached_property
def plugin_sequence_parameters(self) -> list[str]:
"""List of plugin sequence parameter names."""
return self._plugin_grouped_parameters.get("sequence", [])
@cached_property
def map_parameters(self) -> list[str]:
"""List of map parameter names."""
return self._grouped_parameter.get("map", [])
@cached_property
def plugin_map_parameters(self) -> list[str]:
"""List of plugin map parameter names."""
return self._plugin_grouped_parameters.get("map", [])
def validate_provided_parameters(
parameters: Sequence[str],
plugin_parameters: Sequence[str],
context: Configuration,
) -> None:
"""
Validate that provided parameters exist in the configuration context.
Compares the provided parameters with the available parameters in the context
and raises an error if any are invalid.
:param parameters: Regular parameter names to validate.
:param plugin_parameters: Plugin parameter names to validate.
:param context: Configuration instance containing available parameters.
:raises ArgumentError: If any provided parameters are not valid.
"""
from ..common.io import dashlist
from ..exceptions import ArgumentError
all_names = context.list_parameters(aliases=True)
# Handle plugin parameters if the context has a plugins attribute
if hasattr(context, "plugins"):
all_plugin_names = context.plugins.list_parameters()
else:
all_plugin_names = []
not_params = set(parameters) - set(all_names)
not_plugin_params = set(plugin_parameters) - set(all_plugin_names)
if not_params or not_plugin_params:
not_plugin_params = {f"plugins.{name}" for name in not_plugin_params}
error_params = not_params | not_plugin_params
raise ArgumentError(
f"Invalid configuration parameters: {dashlist(error_params)}"
)
class ConfigurationFile:
"""
Represents and manipulates a conda configuration (.condarc) file.
Provides methods to read, write, and modify configuration files while
validating keys and maintaining proper structure.
Can be used as a context manager for atomic edits:
with ConfigurationFile.from_user_condarc() as config:
config.set_key("channels", ["conda-forge"])
config.add("channels", "defaults")
# File is automatically written when exiting the context
"""
def __init__(
self,
path: str | os.PathLike[str] | Path | None = None,
context: Configuration | None = None,
content: dict[str, Any] | None = None,
warning_handler: Callable[[str], None] | None = None,
) -> None:
self._path = path
self._content = content
self._context = context
self._context_params: ParameterTypeGroups | None = None
self.warning_handler = warning_handler or (lambda msg: None)
@classmethod
def from_user_condarc(
cls, context: Configuration | None = None
) -> ConfigurationFile:
"""
Create a ConfigurationFile instance for the default user .condarc file.
:param context: Optional Configuration instance. If None, uses the global context.
:returns: ConfigurationFile instance configured for the user's .condarc file.
"""
from ..base.context import user_rc_path
return cls(path=user_rc_path, context=context)
@classmethod
def from_system_condarc(
cls, context: Configuration | None = None
) -> ConfigurationFile:
"""
Create a ConfigurationFile instance for the system .condarc file.
:param context: Optional Configuration instance. If None, uses the global context.
:returns: ConfigurationFile instance configured for the system .condarc file.
"""
from ..base.context import sys_rc_path
return cls(path=sys_rc_path, context=context)
@classmethod
def from_env_condarc(
cls,
prefix: str | os.PathLike[str] | Path | None = None,
context: Configuration | None = None,
) -> ConfigurationFile:
"""
Create a ConfigurationFile instance for an environment-specific .condarc file.
Environment-specific .condarc files are located at `{prefix}/.condarc` and allow
per-environment configuration overrides.
:param prefix: Path to the conda environment. If None, uses $CONDA_PREFIX or sys.prefix.
:param context: Optional Configuration instance. If None, uses the global context.
:returns: ConfigurationFile instance configured for the environment's .condarc file.
"""
if prefix is None:
prefix = os.environ.get("CONDA_PREFIX", sys.prefix)
return cls(path=Path(prefix) / DEFAULT_CONDARC_FILENAME, context=context)
def __enter__(self) -> ConfigurationFile:
"""Enter the context manager."""
return self
def __exit__(self, exc_type, exc_val, exc_tb) -> None:
"""Exit the context manager and write changes if no exception occurred."""
if exc_type is None:
self.write()
@property
def path(self) -> str | os.PathLike[str] | Path:
"""
Get the path to the configuration file.
:returns: Path to the configuration file.
:raises AttributeError: If path has not been set.
"""
if self._path is None:
raise AttributeError("Configuration file path has not been set")
return self._path
@path.setter
def path(self, path: str | os.PathLike[str] | Path) -> None:
"""
Set the path to the configuration file.
:param path: Path to the configuration file.
"""
self._path = path
@property
def context(self) -> Configuration:
"""
Get the context instance.
If no context was provided during initialization, falls back to the global
conda context singleton. This lazy import is necessary to avoid circular
dependencies at module load time.
:returns: Configuration instance.
"""
if self._context is None:
# Import the global context singleton
# This is imported lazily to avoid circular import issues
from ..base.context import context
self._context = context
return self._context
@property
def context_params(self) -> ParameterTypeGroups:
if self._context_params is None:
self._context_params = ParameterTypeGroups(self.context)
return self._context_params
@property
def content(self) -> dict[str, Any]:
"""
Get the configuration content, reading from file if needed.
:returns: Dictionary containing configuration content.
"""
if self._content is None:
self.read()
return self._content
def read(self, path: str | os.PathLike[str] | Path | None = None) -> dict[str, Any]:
"""
Read configuration content from file.
:param path: Optional path to read from. If None, uses the instance path.
:returns: Dictionary containing configuration content.
"""
from ..common.serialize import yaml
path = Path(path or self._path)
try:
self._content = yaml.read(path=path) or {}
except FileNotFoundError:
self._content = {}
return self._content
def write(self, path: str | os.PathLike[str] | Path | None = None) -> None:
"""
Write configuration content to file.
:param path: Optional path to write to. If None, uses the instance path.
:raises CondaError: If the file cannot be written.
"""
from .. import CondaError
from ..common.serialize import yaml
path: Path = Path(path or self._path)
try:
yaml.write(self.content, path=path)
except OSError as e:
raise CondaError(f"Cannot write to condarc file at {path}\nCaused by {e!r}")
def key_exists(self, key: str) -> bool:
"""
Check if a configuration key is valid.
:param key: Configuration key to check.
:returns: True if the key is valid, False otherwise.
"""
first, *rest = key.split(".")
# Handle plugin parameters if the context has a plugins attribute
if (
first == "plugins"
and len(rest) > 0
and hasattr(self.context, "plugins")
and rest[0] in self.context.plugins.list_parameters()
):
return True
if first not in self.context.list_parameters():
exists = bool(self.context.name_for_alias(first))
if not exists:
self.warning_handler(f"Unknown key: {key!r}")
return exists
return True
def add(self, key: str, item: Any, prepend: bool = False) -> None:
"""
Add an item to a sequence configuration parameter.
:param key: Configuration key name (may contain dots for nested keys).
:param item: Item to add to the sequence.
:param prepend: If True, add to the beginning; if False, add to the end.
:raises CondaValueError: If the key is not a known sequence parameter.
:raises CouldntParseError: If the key should be a list but isn't.
"""
from ..exceptions import CondaValueError, CouldntParseError
key, subkey = key.split(".", 1) if "." in key else (key, None)
if key in self.context_params.sequence_parameters:
arglist = self.content.setdefault(key, [])
elif (
key == "plugins"
and subkey in self.context_params.plugin_sequence_parameters
):
arglist = self.content.setdefault("plugins", {}).setdefault(subkey, [])
elif key in self.context_params.map_parameters:
arglist = self.content.setdefault(key, {}).setdefault(subkey, [])
elif key in self.context_params.plugin_map_parameters:
arglist = self.content.setdefault("plugins", {}).setdefault(subkey, {})
else:
raise CondaValueError(f"Key '{key}' is not a known sequence parameter.")
if not (isinstance(arglist, Sequence) and not isinstance(arglist, str)):
bad = self.content[key].__class__.__name__
raise CouldntParseError(f"key {key!r} should be a list, not {bad}.")
if item in arglist:
# Right now, all list keys should not contain duplicates
location = "top" if prepend else "bottom"
message_key = key + "." + subkey if subkey is not None else key
message = f"Warning: '{item}' already in '{message_key}' list, moving to the {location}"
if subkey is None:
arglist = self.content[key] = [p for p in arglist if p != item]
else:
arglist = self.content[key][subkey] = [p for p in arglist if p != item]
self.warning_handler(msg=message)
arglist.insert(0 if prepend else len(arglist), item)
def get_key(
self,
key: str,
) -> tuple[str, Any | _MissingSentinel]:
"""
Get a configuration value by key.
:param key: Configuration key name (may contain dots for nested keys).
:returns: Tuple of (key, value) or (key, MISSING) if key doesn't exist.
"""
key_parts = key.split(".")
if not self.key_exists(key):
return key, MISSING
if alias := self.context.name_for_alias(key):
key = alias
key_parts = alias.split(".")
sub_config = self.content
try:
for part in key_parts:
sub_config = sub_config[part]
except KeyError:
pass
else:
return key, sub_config
return key, MISSING
def set_key(self, key: str, item: Any) -> None:
"""
Set a configuration value for a primitive or map parameter.
:param key: Configuration key name (may contain dots for nested keys).
:param item: Value to set.
:raises CondaKeyError: If the key is unknown or invalid.
"""
from ..exceptions import CondaKeyError
if not self.key_exists(key):
raise CondaKeyError(key, "unknown parameter")
if aliased := self.context.name_for_alias(key):
log.warning(
"Key %s is an alias of %s; setting value with latter", key, aliased
)
key = aliased
first, *rest = key.split(".")
if first == "plugins" and hasattr(self.context, "plugins"):
base_context = self.context.plugins
base_config = self.content.setdefault("plugins", {})
parameter_name, *rest = rest
else:
base_context = self.context
base_config = self.content
parameter_name = first
parameter_type = base_context.describe_parameter(parameter_name)[
"parameter_type"
]
if parameter_type == "primitive" and len(rest) == 0:
base_config[parameter_name] = base_context.typify_parameter(
parameter_name, item, "--set parameter"
)
elif parameter_type == "map" and len(rest) == 1:
base_config.setdefault(parameter_name, {})[rest[0]] = item
else:
raise CondaKeyError(key, "invalid parameter")
def remove_item(self, key: str, item: Any) -> None:
"""
Remove an item from a sequence configuration parameter.
:param key: Configuration key name.
:param item: Item to remove from the sequence.
:raises CondaKeyError: If the key is unknown, undefined, or the item is not present.
"""
from ..exceptions import CondaKeyError
first, *rest = key.split(".")
if first == "plugins" and hasattr(self.context, "plugins"):
base_context = self.context.plugins
base_config = self.content.setdefault("plugins", {})
parameter_name = rest[0]
rest = []
else:
base_context = self.context
base_config = self.content
parameter_name = first
try:
parameter_type = base_context.describe_parameter(parameter_name)[
"parameter_type"
]
except KeyError:
# KeyError: key_parts[0] is an unknown parameter
raise CondaKeyError(key, "unknown parameter")
if parameter_type == "sequence" and len(rest) == 0:
if parameter_name not in base_config:
if parameter_name != "channels":
raise CondaKeyError(key, "undefined in config")
self.content[parameter_name] = ["defaults"]
if item not in base_config[parameter_name]:
raise CondaKeyError(
parameter_name, f"value {item!r} not present in config"
)
base_config[parameter_name] = [
i for i in base_config[parameter_name] if i != item
]
else:
raise CondaKeyError(key, "invalid parameter")
def remove_key(self, key: str) -> None:
"""
Remove a configuration key entirely.
:param key: Configuration key name (may contain dots for nested keys).
:raises CondaKeyError: If the key is undefined in the config.
"""
from ..exceptions import CondaKeyError
key_parts = key.split(".")
sub_config = self.content
try:
for part in key_parts[:-1]:
sub_config = sub_config[part]
del sub_config[key_parts[-1]]
except KeyError:
# KeyError: part not found, nothing to remove, but maybe user passed an alias?
if alias := self.context.name_for_alias(key):
try:
return self.remove_key(alias)
except CondaKeyError:
pass # raise with originally passed key
raise CondaKeyError(key, "undefined in config")
|