| |
| |
| """Conda activate and deactivate logic. |
| |
| Implementation for all shell interface logic exposed via |
| `conda shell.* [activate|deactivate|reactivate|hook|commands]`. This includes a custom argument |
| parser, an abstract shell class, and special path handling for Windows. |
| |
| See conda.cli.main.main_sourced for the entry point into this module. |
| """ |
|
|
| from __future__ import annotations |
|
|
| import abc |
| import os |
| import re |
| import sys |
| from logging import getLogger |
| from os.path import ( |
| abspath, |
| basename, |
| dirname, |
| exists, |
| expanduser, |
| expandvars, |
| isdir, |
| join, |
| ) |
| from pathlib import Path |
| from typing import TYPE_CHECKING |
|
|
| |
| |
| from . import CONDA_PACKAGE_ROOT |
| from .auxlib.compat import Utf8NamedTemporaryFile |
| from .base.constants import ( |
| CONDA_ENV_VARS_UNSET_VAR, |
| PACKAGE_ENV_VARS_DIR, |
| PREFIX_STATE_FILE, |
| RESERVED_ENV_VARS, |
| ) |
| from .base.context import context, locate_prefix_by_name |
| from .common.compat import on_win |
| from .common.path import path_identity as _path_identity |
| from .common.path import paths_equal, unix_path_to_win, win_path_to_unix |
| from .common.serialize import json |
| from .deprecations import deprecated |
| from .exceptions import ActivateHelp, ArgumentError, DeactivateHelp, GenericHelp |
|
|
| if TYPE_CHECKING: |
| from collections.abc import Callable, Iterable |
|
|
| log = getLogger(__name__) |
|
|
|
|
| BUILTIN_COMMANDS = { |
| "activate": ActivateHelp(), |
| "deactivate": DeactivateHelp(), |
| "hook": GenericHelp("hook"), |
| "commands": GenericHelp("commands"), |
| "reactivate": GenericHelp("reactivate"), |
| } |
|
|
|
|
| class _Activator(metaclass=abc.ABCMeta): |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| pathsep_join: str |
| sep: str |
| path_conversion: Callable[ |
| [str | Iterable[str] | None], str | tuple[str, ...] | None |
| ] |
| script_extension: str |
|
|
| tempfile_extension: str | None |
| """Temporary file's extension, None writes to stdout instead.""" |
| command_join: str |
|
|
| unset_var_tmpl: str |
| export_var_tmpl: str |
| path_var_tmpl: str |
| set_var_tmpl: str |
| run_script_tmpl: str |
|
|
| hook_source_path: Path | None |
| inline_hook_source: bool |
|
|
| needs_line_ending_fix: bool |
|
|
| def __init__(self, arguments=None): |
| self._raw_arguments = arguments |
|
|
| def get_export_unset_vars(self, export_metavars=True, **kwargs): |
| """ |
| :param export_metavars: whether to export `conda_exe_vars` meta variables. |
| :param kwargs: environment variables to export. |
| .. if you pass and set any other variable to None, then it |
| emits it to the dict with a value of None. |
| |
| :return: A dict of env vars to export ordered the same way as kwargs. |
| And a list of env vars to unset. |
| """ |
| unset_vars = [] |
| export_vars = {} |
|
|
| |
| for name, value in kwargs.items(): |
| if value is None: |
| unset_vars.append(name) |
| else: |
| export_vars[name] = value |
|
|
| if export_metavars: |
| |
| for name, value in context.conda_exe_vars_dict.items(): |
| if value is None: |
| unset_vars.append(name) |
| elif "/" in value or "\\" in value: |
| export_vars[name] = self.path_conversion(value) |
| else: |
| export_vars[name] = value |
| else: |
| |
| unset_vars.extend(context.conda_exe_vars_dict) |
|
|
| |
| if context.envvars_force_uppercase: |
| export_vars = {name.upper(): value for name, value in export_vars.items()} |
| unset_vars = [name.upper() for name in unset_vars] |
|
|
| return export_vars, unset_vars |
|
|
| def _finalize(self, commands, ext): |
| commands = (*commands, "") |
| content = self.command_join.join(commands) |
|
|
| |
| if on_win and self.path_conversion == win_path_to_unix: |
| content = content.replace("\r\n", "\n") |
|
|
| if ext is None: |
| return content |
| elif ext: |
| with Utf8NamedTemporaryFile("w+", suffix=ext, delete=False) as tf: |
| |
| tf.write(content) |
| return tf.name |
| else: |
| raise NotImplementedError() |
|
|
| def activate(self): |
| if self.stack: |
| builder_result = self.build_stack(self.env_name_or_prefix) |
| else: |
| builder_result = self.build_activate(self.env_name_or_prefix) |
| return self._finalize( |
| self._yield_commands(builder_result), self.tempfile_extension |
| ) |
|
|
| def deactivate(self): |
| return self._finalize( |
| self._yield_commands(self.build_deactivate()), self.tempfile_extension |
| ) |
|
|
| def reactivate(self): |
| return self._finalize( |
| self._yield_commands(self.build_reactivate()), self.tempfile_extension |
| ) |
|
|
| @deprecated.argument("25.9", "26.3", "auto_activate_base", rename="auto_activate") |
| def hook(self, auto_activate: bool | None = None) -> str: |
| builder: list[str] = [] |
| if preamble := self._hook_preamble(): |
| builder.append(preamble) |
| if self.hook_source_path: |
| if self.inline_hook_source: |
| builder.append(self.hook_source_path.read_text()) |
| else: |
| builder.append(self.run_script_tmpl % self.hook_source_path) |
| if auto_activate is None and context.auto_activate or auto_activate: |
| builder.append(f"conda activate '{context.default_activation_env}'\n") |
| postamble = self._hook_postamble() |
| if postamble is not None: |
| builder.append(postamble) |
| return "\n".join(builder) |
|
|
| def execute(self): |
| |
| self._parse_and_set_args() |
|
|
| |
| context.plugin_manager.invoke_pre_commands(self.command) |
| response = getattr(self, self.command)() |
| context.plugin_manager.invoke_post_commands(self.command) |
| return response |
|
|
| def template_unset_var(self, key: str) -> str: |
| return self.unset_var_tmpl % key |
|
|
| def template_export_var(self, key: str, value: str) -> str: |
| return self.export_var_tmpl % (key, value) |
|
|
| def template_path_var(self, key: str, value: str) -> str: |
| return self.path_var_tmpl % (key, value) |
|
|
| def _hook_preamble(self) -> str | None: |
| result = [] |
| for key, value in context.conda_exe_vars_dict.items(): |
| if value is None: |
| result.append(self.template_unset_var(key)) |
| elif {"/", "\\"}.intersection(value): |
| result.append(self.template_path_var(key, value)) |
| else: |
| result.append(self.template_export_var(key, value)) |
| if result: |
| return self.command_join.join(result) + self.command_join |
| return None |
|
|
| def _hook_postamble(self) -> str | None: |
| return None |
|
|
| def _parse_and_set_args(self) -> None: |
| command, *arguments = self._raw_arguments or [None] |
| help_flags = ("-h", "--help", "/?") |
| non_help_args = tuple(arg for arg in arguments if arg not in help_flags) |
| help_requested = len(arguments) != len(non_help_args) |
| remainder_args = list(arg for arg in non_help_args if arg and arg != command) |
|
|
| if command not in BUILTIN_COMMANDS: |
| raise ArgumentError( |
| "'activate', 'deactivate', 'hook', 'commands', or 'reactivate' " |
| "command must be given." + (f", not '{command}'." if command else ".") |
| ) |
| elif help_requested: |
| raise BUILTIN_COMMANDS[command] |
|
|
| if command.endswith("activate") or command == "hook": |
| try: |
| dev_idx = remainder_args.index("--dev") |
| except ValueError: |
| context.dev = False |
| else: |
| del remainder_args[dev_idx] |
| context.dev = True |
|
|
| if command == "activate": |
| self.stack = context.auto_stack and context.shlvl <= context.auto_stack |
| try: |
| stack_idx = remainder_args.index("--stack") |
| except ValueError: |
| stack_idx = -1 |
| try: |
| no_stack_idx = remainder_args.index("--no-stack") |
| except ValueError: |
| no_stack_idx = -1 |
| if stack_idx >= 0 and no_stack_idx >= 0: |
| raise ArgumentError( |
| "cannot specify both --stack and --no-stack to " + command |
| ) |
| if stack_idx >= 0: |
| self.stack = True |
| del remainder_args[stack_idx] |
| if no_stack_idx >= 0: |
| self.stack = False |
| del remainder_args[no_stack_idx] |
| if len(remainder_args) > 1: |
| raise ArgumentError( |
| command |
| + " does not accept more than one argument:\n" |
| + str(remainder_args) |
| + "\n" |
| ) |
| if remainder_args: |
| self.env_name_or_prefix = remainder_args[0] |
| else: |
| self.env_name_or_prefix = context.default_activation_env |
| elif remainder_args: |
| raise ArgumentError( |
| f"{command} does not accept arguments\nremainder_args: {remainder_args}\n" |
| ) |
|
|
| self.command = command |
|
|
| def _yield_commands(self, cmds_dict): |
| for key, value in sorted(cmds_dict.get("export_path", {}).items()): |
| yield self.export_var_tmpl % (key, value) |
|
|
| for script in cmds_dict.get("deactivate_scripts", ()): |
| yield self.run_script_tmpl % script |
|
|
| for key in cmds_dict.get("unset_vars", ()): |
| yield self.unset_var_tmpl % key |
|
|
| for key, value in cmds_dict.get("set_vars", {}).items(): |
| yield self.set_var_tmpl % (key, value) |
|
|
| for key, value in cmds_dict.get("export_vars", {}).items(): |
| yield self.export_var_tmpl % (key, value) |
|
|
| for script in cmds_dict.get("activate_scripts", ()): |
| yield self.run_script_tmpl % script |
|
|
| def build_activate(self, env_name_or_prefix): |
| return self._build_activate_stack(env_name_or_prefix, False) |
|
|
| def build_stack(self, env_name_or_prefix): |
| return self._build_activate_stack(env_name_or_prefix, True) |
|
|
| def _build_activate_stack(self, env_name_or_prefix, stack): |
| |
| if re.search(r"\\|/", env_name_or_prefix): |
| prefix = expand(env_name_or_prefix) |
| if not isdir(join(prefix, "conda-meta")): |
| from .exceptions import EnvironmentLocationNotFound |
|
|
| raise EnvironmentLocationNotFound(prefix) |
| else: |
| prefix = locate_prefix_by_name(env_name_or_prefix) |
|
|
| |
| old_conda_shlvl = int(os.getenv("CONDA_SHLVL", "").strip() or 0) |
| old_conda_prefix = os.getenv("CONDA_PREFIX") |
|
|
| |
| if old_conda_prefix == prefix and old_conda_shlvl > 0: |
| return self.build_reactivate() |
|
|
| activate_scripts = self._get_activate_scripts(prefix) |
| conda_shlvl = old_conda_shlvl + 1 |
| conda_default_env = self._default_env(prefix) |
| conda_prompt_modifier = self._prompt_modifier(prefix, conda_default_env) |
| env_vars = { |
| name: value |
| for name, value in self._get_environment_env_vars(prefix).items() |
| if value != CONDA_ENV_VARS_UNSET_VAR |
| } |
|
|
| |
| clobber_vars = set(env_vars).intersection(os.environ) |
| overwritten_clobber_vars = [ |
| clobber_var |
| for clobber_var in clobber_vars |
| if os.getenv(clobber_var) != env_vars[clobber_var] |
| ] |
| if overwritten_clobber_vars: |
| print( |
| "WARNING: overwriting environment variables set in the machine", |
| file=sys.stderr, |
| ) |
| print(f"overwriting variable {overwritten_clobber_vars}", file=sys.stderr) |
| for name in clobber_vars: |
| env_vars[f"__CONDA_SHLVL_{old_conda_shlvl}_{name}"] = os.getenv(name) |
|
|
| if old_conda_shlvl == 0: |
| export_vars, unset_vars = self.get_export_unset_vars( |
| PATH=self.pathsep_join(self._add_prefix_to_path(prefix)), |
| CONDA_PREFIX=prefix, |
| CONDA_SHLVL=conda_shlvl, |
| CONDA_DEFAULT_ENV=conda_default_env, |
| CONDA_PROMPT_MODIFIER=conda_prompt_modifier, |
| **env_vars, |
| ) |
| deactivate_scripts = () |
| elif stack: |
| export_vars, unset_vars = self.get_export_unset_vars( |
| PATH=self.pathsep_join(self._add_prefix_to_path(prefix)), |
| CONDA_PREFIX=prefix, |
| CONDA_SHLVL=conda_shlvl, |
| CONDA_DEFAULT_ENV=conda_default_env, |
| CONDA_PROMPT_MODIFIER=conda_prompt_modifier, |
| **env_vars, |
| **{ |
| f"CONDA_PREFIX_{old_conda_shlvl}": old_conda_prefix, |
| f"CONDA_STACKED_{conda_shlvl}": "true", |
| }, |
| ) |
| deactivate_scripts = () |
| else: |
| export_vars, unset_vars = self.get_export_unset_vars( |
| PATH=self.pathsep_join( |
| self._replace_prefix_in_path(old_conda_prefix, prefix) |
| ), |
| CONDA_PREFIX=prefix, |
| CONDA_SHLVL=conda_shlvl, |
| CONDA_DEFAULT_ENV=conda_default_env, |
| CONDA_PROMPT_MODIFIER=conda_prompt_modifier, |
| **env_vars, |
| **{ |
| f"CONDA_PREFIX_{old_conda_shlvl}": old_conda_prefix, |
| }, |
| ) |
| deactivate_scripts = self._get_deactivate_scripts(old_conda_prefix) |
|
|
| set_vars = {} |
| if context.changeps1: |
| self._update_prompt(set_vars, conda_prompt_modifier) |
|
|
| return { |
| "unset_vars": unset_vars, |
| "set_vars": set_vars, |
| "export_vars": export_vars, |
| "deactivate_scripts": deactivate_scripts, |
| "activate_scripts": activate_scripts, |
| } |
|
|
| def build_deactivate(self): |
| self._deactivate = True |
| |
| old_conda_prefix = os.getenv("CONDA_PREFIX") |
| old_conda_shlvl = int(os.getenv("CONDA_SHLVL", "").strip() or 0) |
| if not old_conda_prefix or old_conda_shlvl < 1: |
| |
| return { |
| "unset_vars": (), |
| "set_vars": {}, |
| "export_vars": {}, |
| "deactivate_scripts": (), |
| "activate_scripts": (), |
| } |
| deactivate_scripts = self._get_deactivate_scripts(old_conda_prefix) |
| old_conda_environment_env_vars = self._get_environment_env_vars( |
| old_conda_prefix |
| ) |
|
|
| new_conda_shlvl = old_conda_shlvl - 1 |
| set_vars = {} |
| if old_conda_shlvl == 1: |
| new_path = self.pathsep_join( |
| self._remove_prefix_from_path(old_conda_prefix) |
| ) |
| |
| |
| |
| |
| |
| |
| |
| export_vars, unset_vars = self.get_export_unset_vars( |
| CONDA_PREFIX=None, |
| CONDA_SHLVL=new_conda_shlvl, |
| CONDA_DEFAULT_ENV=None, |
| CONDA_PROMPT_MODIFIER=None, |
| ) |
| conda_prompt_modifier = "" |
| activate_scripts = () |
| export_path = {"PATH": new_path} |
| else: |
| if old_conda_shlvl <= 1: |
| raise ValueError("'old_conda_shlvl' must be 2 or larger") |
| new_prefix = os.getenv("CONDA_PREFIX_%d" % new_conda_shlvl) |
| if not new_prefix: |
| raise ValueError( |
| "This should not happen! You may have non-consecutive `CONDA_PREFIX_<number> " |
| "environment variables. Try restarting your shell and, if it persists, " |
| "check your shell profile to see what may be adding a faulty " |
| "CONDA_PREFIX_<number> environment variable." |
| ) |
| conda_default_env = self._default_env(new_prefix) |
| conda_prompt_modifier = self._prompt_modifier(new_prefix, conda_default_env) |
| new_conda_environment_env_vars = self._get_environment_env_vars(new_prefix) |
|
|
| old_prefix_stacked = "CONDA_STACKED_%d" % old_conda_shlvl in os.environ |
| new_path = "" |
|
|
| unset_vars = ["CONDA_PREFIX_%d" % new_conda_shlvl] |
| if old_prefix_stacked: |
| new_path = self.pathsep_join( |
| self._remove_prefix_from_path(old_conda_prefix) |
| ) |
| unset_vars.append("CONDA_STACKED_%d" % old_conda_shlvl) |
| else: |
| new_path = self.pathsep_join( |
| self._replace_prefix_in_path(old_conda_prefix, new_prefix) |
| ) |
|
|
| export_vars, unset_vars2 = self.get_export_unset_vars( |
| CONDA_PREFIX=new_prefix, |
| CONDA_SHLVL=new_conda_shlvl, |
| CONDA_DEFAULT_ENV=conda_default_env, |
| CONDA_PROMPT_MODIFIER=conda_prompt_modifier, |
| **new_conda_environment_env_vars, |
| ) |
| unset_vars += unset_vars2 |
| export_path = {"PATH": new_path} |
| activate_scripts = self._get_activate_scripts(new_prefix) |
|
|
| if context.changeps1: |
| self._update_prompt(set_vars, conda_prompt_modifier) |
|
|
| |
| for env_var in old_conda_environment_env_vars.keys(): |
| if save_value := os.getenv(f"__CONDA_SHLVL_{new_conda_shlvl}_{env_var}"): |
| export_vars[env_var] = save_value |
| else: |
| |
| if context.envvars_force_uppercase: |
| unset_vars.append(env_var.upper()) |
| else: |
| unset_vars.append(env_var) |
|
|
| return { |
| "unset_vars": unset_vars, |
| "set_vars": set_vars, |
| "export_vars": export_vars, |
| "export_path": export_path, |
| "deactivate_scripts": deactivate_scripts, |
| "activate_scripts": activate_scripts, |
| } |
|
|
| def build_reactivate(self): |
| self._reactivate = True |
| conda_prefix = os.getenv("CONDA_PREFIX") |
| conda_shlvl = int(os.getenv("CONDA_SHLVL", "").strip() or 0) |
| if not conda_prefix or conda_shlvl < 1: |
| |
| return { |
| "unset_vars": [], |
| "set_vars": {}, |
| "export_vars": {}, |
| "deactivate_scripts": (), |
| "activate_scripts": (), |
| } |
| conda_default_env = os.getenv( |
| "CONDA_DEFAULT_ENV", self._default_env(conda_prefix) |
| ) |
| new_path = self.pathsep_join( |
| self._replace_prefix_in_path(conda_prefix, conda_prefix) |
| ) |
| set_vars = {} |
| conda_prompt_modifier = self._prompt_modifier(conda_prefix, conda_default_env) |
| if context.changeps1: |
| self._update_prompt(set_vars, conda_prompt_modifier) |
|
|
| export_vars, unset_vars = self.get_export_unset_vars( |
| PATH=new_path, |
| CONDA_SHLVL=conda_shlvl, |
| CONDA_PROMPT_MODIFIER=self._prompt_modifier( |
| conda_prefix, conda_default_env |
| ), |
| ) |
|
|
| |
| return { |
| "unset_vars": unset_vars, |
| "set_vars": set_vars, |
| "export_vars": export_vars, |
| "deactivate_scripts": self._get_deactivate_scripts(conda_prefix), |
| "activate_scripts": self._get_activate_scripts(conda_prefix), |
| } |
|
|
| def _get_starting_path_list(self): |
| |
| |
| |
| |
| clean_paths = { |
| "darwin": "/usr/bin:/bin:/usr/sbin:/sbin", |
| |
| |
| "win32": "C:\\Windows\\system32;" |
| "C:\\Windows;" |
| "C:\\Windows\\System32\\Wbem;" |
| "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\", |
| } |
| path = os.getenv( |
| "PATH", |
| clean_paths[sys.platform] if sys.platform in clean_paths else "/usr/bin", |
| ) |
| path_split = path.split(os.pathsep) |
| return path_split |
|
|
| def _get_path_dirs(self, prefix): |
| if on_win: |
| yield prefix.rstrip(self.sep) |
|
|
| |
| |
| |
| |
| |
| |
| variants = [] |
| for variant in ["ucrt64", "clang64", "mingw64", "clangarm64"]: |
| path = self.sep.join((prefix, "Library", variant)) |
|
|
| |
| |
| if re.match("^(/[A-Za-z]/|/cygdrive/[A-Za-z]/).*", prefix): |
| path = unix_path_to_win(path, prefix) |
|
|
| if isdir(path): |
| variants.append(variant) |
|
|
| if len(variants) > 1: |
| print( |
| f"WARNING: {prefix}: {variants} MSYS2 envs exist: please check your dependencies", |
| file=sys.stderr, |
| ) |
| print( |
| f"WARNING: conda list -n {self._default_env(prefix)}", |
| file=sys.stderr, |
| ) |
|
|
| if variants: |
| yield self.sep.join((prefix, "Library", variants[0], "bin")) |
|
|
| yield self.sep.join((prefix, "Library", "mingw-w64", "bin")) |
| yield self.sep.join((prefix, "Library", "usr", "bin")) |
| yield self.sep.join((prefix, "Library", "bin")) |
| yield self.sep.join((prefix, "Scripts")) |
| yield self.sep.join((prefix, "bin")) |
| else: |
| yield self.sep.join((prefix, "bin")) |
|
|
| def _add_prefix_to_path(self, prefix, starting_path_dirs=None): |
| prefix = self.path_conversion(prefix) |
| if starting_path_dirs is None: |
| path_list = list(self.path_conversion(self._get_starting_path_list())) |
| else: |
| path_list = list(self.path_conversion(starting_path_dirs)) |
|
|
| |
| |
| |
| |
| old_conda_shlvl = int(os.getenv("CONDA_SHLVL", "").strip() or 0) |
| if not old_conda_shlvl and not any(p.endswith("condabin") for p in path_list): |
| condabin_dir = self.path_conversion(join(context.conda_prefix, "condabin")) |
| path_list.insert(0, condabin_dir) |
|
|
| path_list[0:0] = list(self.path_conversion(self._get_path_dirs(prefix))) |
| return tuple(path_list) |
|
|
| def _remove_prefix_from_path(self, prefix, starting_path_dirs=None): |
| return self._replace_prefix_in_path(prefix, None, starting_path_dirs) |
|
|
| def _replace_prefix_in_path(self, old_prefix, new_prefix, starting_path_dirs=None): |
| old_prefix = self.path_conversion(old_prefix) |
| new_prefix = self.path_conversion(new_prefix) |
| if starting_path_dirs is None: |
| path_list = list(self.path_conversion(self._get_starting_path_list())) |
| else: |
| path_list = list(self.path_conversion(starting_path_dirs)) |
|
|
| def index_of_path(paths, test_path): |
| for q, path in enumerate(paths): |
| if paths_equal(path, test_path): |
| return q |
| return None |
|
|
| if old_prefix is not None: |
| prefix_dirs = tuple(self._get_path_dirs(old_prefix)) |
| first_idx = index_of_path(path_list, prefix_dirs[0]) |
| if first_idx is None: |
| first_idx = 0 |
| else: |
| prefix_dirs_idx = len(prefix_dirs) - 1 |
| last_idx = None |
| while last_idx is None and prefix_dirs_idx > -1: |
| last_idx = index_of_path(path_list, prefix_dirs[prefix_dirs_idx]) |
| if last_idx is None: |
| print( |
| f"Did not find path entry {prefix_dirs[prefix_dirs_idx]}", |
| file=sys.stderr, |
| ) |
| prefix_dirs_idx = prefix_dirs_idx - 1 |
| |
| |
| library_bin_dir = self.path_conversion( |
| self.sep.join((sys.prefix, "Library", "bin")) |
| ) |
| if path_list[last_idx + 1] == library_bin_dir: |
| last_idx += 1 |
| del path_list[first_idx : last_idx + 1] |
| else: |
| first_idx = 0 |
|
|
| if new_prefix is not None: |
| path_list[first_idx:first_idx] = list(self._get_path_dirs(new_prefix)) |
|
|
| return tuple(path_list) |
|
|
| def _update_prompt(self, set_vars, conda_prompt_modifier): |
| pass |
|
|
| def _default_env(self, prefix): |
| if paths_equal(prefix, context.root_prefix): |
| return "base" |
| return basename(prefix) if basename(dirname(prefix)) == "envs" else prefix |
|
|
| def _prompt_modifier(self, prefix, conda_default_env): |
| if context.changeps1: |
| |
| env_stack = [] |
| prompt_stack = [] |
| old_shlvl = int(os.getenv("CONDA_SHLVL", "0").rstrip()) |
| for i in range(1, old_shlvl + 1): |
| if i == old_shlvl: |
| env_i = self._default_env(os.getenv("CONDA_PREFIX", "")) |
| else: |
| env_i = self._default_env( |
| os.getenv(f"CONDA_PREFIX_{i}", "").rstrip() |
| ) |
| stacked_i = bool(os.getenv(f"CONDA_STACKED_{i}", "").rstrip()) |
| env_stack.append(env_i) |
| if not stacked_i: |
| prompt_stack = prompt_stack[0:-1] |
| prompt_stack.append(env_i) |
|
|
| |
| deactivate = getattr(self, "_deactivate", False) |
| reactivate = getattr(self, "_reactivate", False) |
| if deactivate: |
| prompt_stack = prompt_stack[0:-1] |
| env_stack = env_stack[0:-1] |
| stacked = bool(os.getenv(f"CONDA_STACKED_{old_shlvl}", "").rstrip()) |
| if not stacked and env_stack: |
| prompt_stack.append(env_stack[-1]) |
| elif reactivate: |
| pass |
| else: |
| stack = getattr(self, "stack", False) |
| if not stack: |
| prompt_stack = prompt_stack[0:-1] |
| prompt_stack.append(conda_default_env) |
|
|
| conda_stacked_env = ",".join(prompt_stack[::-1]) |
|
|
| return context.env_prompt.format( |
| default_env=conda_default_env, |
| stacked_env=conda_stacked_env, |
| prefix=prefix, |
| name=basename(prefix), |
| ) |
| else: |
| return "" |
|
|
| def _get_activate_scripts(self, prefix): |
| _script_extension = self.script_extension |
| se_len = -len(_script_extension) |
| try: |
| paths = ( |
| entry.path |
| for entry in os.scandir(join(prefix, "etc", "conda", "activate.d")) |
| ) |
| except OSError: |
| return () |
| return self.path_conversion( |
| sorted(p for p in paths if p[se_len:] == _script_extension) |
| ) |
|
|
| def _get_deactivate_scripts(self, prefix): |
| _script_extension = self.script_extension |
| se_len = -len(_script_extension) |
| try: |
| paths = ( |
| entry.path |
| for entry in os.scandir(join(prefix, "etc", "conda", "deactivate.d")) |
| ) |
| except OSError: |
| return () |
| return self.path_conversion( |
| sorted((p for p in paths if p[se_len:] == _script_extension), reverse=True) |
| ) |
|
|
| def _get_environment_env_vars(self, prefix): |
| env_vars_file = join(prefix, PREFIX_STATE_FILE) |
| pkg_env_var_dir = join(prefix, PACKAGE_ENV_VARS_DIR) |
| env_vars = {} |
|
|
| |
| if exists(pkg_env_var_dir): |
| for pkg_env_var_path in sorted( |
| entry.path for entry in os.scandir(pkg_env_var_dir) |
| ): |
| with open(pkg_env_var_path) as f: |
| env_vars.update(json.loads(f.read())) |
|
|
| |
| if exists(env_vars_file): |
| with open(env_vars_file) as f: |
| prefix_state = json.loads(f.read()) |
| prefix_state_env_vars = prefix_state.get("env_vars", {}) |
| dup_vars = [ |
| ev for ev in env_vars.keys() if ev in prefix_state_env_vars.keys() |
| ] |
| for dup in dup_vars: |
| print( |
| "WARNING: duplicate env vars detected. Vars from the environment " |
| "will overwrite those from packages", |
| file=sys.stderr, |
| ) |
| print(f"variable {dup} duplicated", file=sys.stderr) |
| env_vars.update(prefix_state_env_vars) |
|
|
| |
| collect_reserved_vars = [] |
| for reserved in RESERVED_ENV_VARS: |
| if reserved in env_vars: |
| |
| if env_vars[reserved] != CONDA_ENV_VARS_UNSET_VAR: |
| collect_reserved_vars.append(reserved) |
| |
| env_vars.pop(reserved) |
|
|
| if collect_reserved_vars: |
| print_reserved_vars = ", ".join(collect_reserved_vars) |
| print( |
| f"WARNING: the configured environment variable(s) for prefix '{prefix}' " |
| f"are reserved and will be ignored: {print_reserved_vars}.\n\n" |
| f"Remove the invalid configuration with `conda env config vars unset " |
| f"-p {prefix} {' '.join(collect_reserved_vars)}`.\n", |
| file=sys.stderr, |
| ) |
| return env_vars |
|
|
|
|
| def expand(path): |
| return abspath(expanduser(expandvars(path))) |
|
|
|
|
| def backslash_to_forwardslash( |
| paths: str | Iterable[str] | None, |
| ) -> str | tuple[str, ...] | None: |
| if paths is None: |
| return None |
| elif isinstance(paths, str): |
| return paths.replace("\\", "/") |
| else: |
| return tuple([path.replace("\\", "/") for path in paths]) |
|
|
|
|
| class PosixActivator(_Activator): |
| pathsep_join = ":".join |
| sep = "/" |
| path_conversion = staticmethod(win_path_to_unix if on_win else _path_identity) |
| script_extension = ".sh" |
| tempfile_extension = None |
| command_join = "\n" |
| needs_line_ending_fix = True |
|
|
| |
| |
| unset_var_tmpl = "export %s=''" |
| export_var_tmpl = "export %s='%s'" |
| path_var_tmpl = "export %s=\"$(cygpath '%s')\"" if on_win else export_var_tmpl |
| set_var_tmpl = "%s='%s'" |
| run_script_tmpl = ". \"`cygpath '%s'`\"" if on_win else '. "%s"' |
|
|
| hook_source_path = Path( |
| CONDA_PACKAGE_ROOT, |
| "shell", |
| "etc", |
| "profile.d", |
| "conda.sh", |
| ) |
| inline_hook_source = True |
|
|
| def _update_prompt(self, set_vars, conda_prompt_modifier): |
| ps1 = os.getenv("PS1", "") |
| if "POWERLINE_COMMAND" in ps1: |
| |
| return |
| current_prompt_modifier = os.getenv("CONDA_PROMPT_MODIFIER") |
| if current_prompt_modifier: |
| ps1 = re.sub(re.escape(current_prompt_modifier), r"", ps1) |
| |
| |
| |
| ps1 = ps1.replace("'", "'\"'\"'") |
| set_vars.update( |
| { |
| "PS1": conda_prompt_modifier + ps1, |
| } |
| ) |
|
|
|
|
| class CshActivator(_Activator): |
| pathsep_join = ":".join |
| sep = "/" |
| path_conversion = staticmethod(win_path_to_unix if on_win else _path_identity) |
| script_extension = ".csh" |
| tempfile_extension = None |
| command_join = ";\n" |
| needs_line_ending_fix = True |
|
|
| unset_var_tmpl = "unsetenv %s" |
| export_var_tmpl = 'setenv %s "%s"' |
| path_var_tmpl = "setenv %s \"`cygpath '%s'`\"" if on_win else export_var_tmpl |
| set_var_tmpl = "set %s='%s'" |
| run_script_tmpl = "source \"`cygpath '%s'`\"" if on_win else 'source "%s"' |
|
|
| hook_source_path = Path( |
| CONDA_PACKAGE_ROOT, |
| "shell", |
| "etc", |
| "profile.d", |
| "conda.csh", |
| ) |
| |
| |
| inline_hook_source = False |
|
|
| def _update_prompt(self, set_vars, conda_prompt_modifier): |
| prompt = os.getenv("prompt", "") |
| current_prompt_modifier = os.getenv("CONDA_PROMPT_MODIFIER") |
| if current_prompt_modifier: |
| prompt = re.sub(re.escape(current_prompt_modifier), r"", prompt) |
| set_vars.update( |
| { |
| "prompt": conda_prompt_modifier + prompt, |
| } |
| ) |
|
|
|
|
| class XonshActivator(_Activator): |
| pathsep_join = ";".join if on_win else ":".join |
| sep = "/" |
| path_conversion = staticmethod( |
| backslash_to_forwardslash if on_win else _path_identity |
| ) |
| |
| |
| script_extension = ".bat" if on_win else ".sh" |
| tempfile_extension = None |
| command_join = "\n" |
| needs_line_ending_fix = False |
|
|
| unset_var_tmpl = "try:\n del $%s\nexcept KeyError:\n pass" |
| export_var_tmpl = "$%s = '%s'" |
| path_var_tmpl = export_var_tmpl |
| set_var_tmpl = export_var_tmpl |
| run_script_tmpl = ( |
| 'source-cmd --suppress-skip-message "%s"' |
| if on_win |
| else 'source-bash --suppress-skip-message -n "%s"' |
| ) |
|
|
| hook_source_path = Path(CONDA_PACKAGE_ROOT, "shell", "conda.xsh") |
| inline_hook_source = True |
|
|
| def template_path_var(self, key: str, value: str) -> str: |
| return self.path_var_tmpl % (key, self.path_conversion(value)) |
|
|
|
|
| class CmdExeActivator(_Activator): |
| pathsep_join = ";".join |
| sep = "\\" |
| path_conversion = staticmethod(_path_identity) |
| script_extension = ".bat" |
| tempfile_extension = ".env" |
| command_join = "\n" |
| needs_line_ending_fix = False |
|
|
| |
| |
| |
| unset_var_tmpl = "%s=" |
| export_var_tmpl = "%s=%s" |
| path_var_tmpl = export_var_tmpl |
| set_var_tmpl = export_var_tmpl |
| run_script_tmpl = "_CONDA_SCRIPT=%s" |
|
|
| hook_source_path = None |
| inline_hook_source = None |
|
|
| def _update_prompt(self, set_vars, conda_prompt_modifier): |
| prompt = os.getenv("PROMPT", "") |
| current_prompt_modifier = os.getenv("CONDA_PROMPT_MODIFIER") |
| if current_prompt_modifier: |
| prompt = re.sub(re.escape(current_prompt_modifier), r"", prompt) |
| set_vars["PROMPT"] = conda_prompt_modifier + prompt |
|
|
| def _hook_preamble(self) -> None: |
| |
| |
| pass |
|
|
|
|
| class CmdExeRunActivator(CmdExeActivator): |
| |
| |
| tempfile_extension = None |
|
|
| unset_var_tmpl = 'SET "%s="' |
| export_var_tmpl = 'SET "%s=%s"' |
| path_var_tmpl = export_var_tmpl |
| set_var_tmpl = export_var_tmpl |
| |
| |
| run_script_tmpl = 'CALL "%s"\nIF %%ERRORLEVEL%% NEQ 0 EXIT /b %%ERRORLEVEL%%' |
|
|
|
|
| class FishActivator(_Activator): |
| pathsep_join = '" "'.join |
| sep = "/" |
| path_conversion = staticmethod(win_path_to_unix if on_win else _path_identity) |
| script_extension = ".fish" |
| tempfile_extension = None |
| command_join = ";\n" |
| needs_line_ending_fix = True |
|
|
| unset_var_tmpl = "set -e %s || true" |
| export_var_tmpl = 'set -gx %s "%s"' |
| path_var_tmpl = 'set -gx %s (cygpath "%s")' if on_win else export_var_tmpl |
| set_var_tmpl = 'set -g %s "%s"' |
| run_script_tmpl = 'source "%s"' |
|
|
| hook_source_path = Path( |
| CONDA_PACKAGE_ROOT, |
| "shell", |
| "etc", |
| "fish", |
| "conf.d", |
| "conda.fish", |
| ) |
| inline_hook_source = True |
|
|
|
|
| class PowerShellActivator(_Activator): |
| pathsep_join = ";".join if on_win else ":".join |
| sep = "\\" if on_win else "/" |
| path_conversion = staticmethod(_path_identity) |
| script_extension = ".ps1" |
| tempfile_extension = None |
| command_join = "\n" |
| needs_line_ending_fix = False |
|
|
| unset_var_tmpl = "$Env:%s = $null" |
| export_var_tmpl = '$Env:%s = "%s"' |
| path_var_tmpl = export_var_tmpl |
| set_var_tmpl = export_var_tmpl |
| run_script_tmpl = '. "%s"' |
|
|
| hook_source_path = Path( |
| CONDA_PACKAGE_ROOT, |
| "shell", |
| "condabin", |
| "conda-hook.ps1", |
| ) |
| inline_hook_source = True |
|
|
| def _hook_preamble(self) -> str: |
| module_args = f"$CondaModuleArgs = @{{ChangePs1 = ${context.changeps1}}}" |
| return super()._hook_preamble() + module_args + self.command_join |
|
|
| def _hook_postamble(self) -> str: |
| return "Remove-Variable CondaModuleArgs" |
|
|
|
|
| class JSONFormatMixin(_Activator): |
| """Returns the necessary values for activation as JSON, so that tools can use them.""" |
|
|
| pathsep_join = list |
| tempfile_extension = None |
| command_join = list |
|
|
| def _hook_preamble(self): |
| return context.conda_exe_vars_dict |
|
|
| def _finalize(self, commands, ext): |
| merged = {} |
| for _cmds in commands: |
| merged.update(_cmds) |
|
|
| commands = merged |
| if ext is None: |
| return json.dumps(commands, indent=2) |
| elif ext: |
| with Utf8NamedTemporaryFile("w+", suffix=ext, delete=False) as tf: |
| |
| |
| json.dump(commands, tf) |
| return tf.name |
| else: |
| raise NotImplementedError() |
|
|
| def _yield_commands(self, cmds_dict): |
| |
| |
| path = cmds_dict.get("export_path", {}) |
| export_vars = cmds_dict.get("export_vars", {}) |
| |
| if "PATH" in export_vars: |
| new_path = path.get("PATH", []) |
| new_path.extend(export_vars.pop("PATH")) |
| path["PATH"] = new_path |
|
|
| yield { |
| "path": path, |
| "vars": { |
| "export": export_vars, |
| "unset": cmds_dict.get("unset_vars", ()), |
| "set": cmds_dict.get("set_vars", {}), |
| }, |
| "scripts": { |
| "activate": cmds_dict.get("activate_scripts", ()), |
| "deactivate": cmds_dict.get("deactivate_scripts", ()), |
| }, |
| } |
|
|
|
|
| activator_map: dict[str, type[_Activator]] = { |
| "posix": PosixActivator, |
| "ash": PosixActivator, |
| "bash": PosixActivator, |
| "dash": PosixActivator, |
| "zsh": PosixActivator, |
| "csh": CshActivator, |
| "tcsh": CshActivator, |
| "xonsh": XonshActivator, |
| "cmd.exe": CmdExeActivator, |
| "cmd.exe.run": CmdExeRunActivator, |
| "fish": FishActivator, |
| "powershell": PowerShellActivator, |
| } |
|
|
| formatter_map = { |
| "json": JSONFormatMixin, |
| } |
|
|
|
|
| def _build_activator_cls(shell): |
| """Dynamically construct the activator class. |
| |
| Detect the base activator and any number of formatters (appended using '+' to the base name). |
| For example, `posix+json` (as in `conda shell.posix+json activate`) would use the |
| `PosixActivator` base class and add the `JSONFormatMixin`. |
| """ |
| shell_etc = shell.split("+") |
| activator, formatters = shell_etc[0], shell_etc[1:] |
|
|
| bases = [activator_map[activator]] |
| for f in formatters: |
| bases.append(formatter_map[f]) |
|
|
| cls = type("Activator", tuple(reversed(bases)), {}) |
| return cls |
|
|