| |
| |
| """Defines Channel and MultiChannel objects and other channel-related functions. |
| |
| Object inheritance: |
| |
| .. autoapi-inheritance-diagram:: Channel MultiChannel |
| :top-classes: conda.models.channel.Channel |
| :parts: 1 |
| """ |
|
|
| from __future__ import annotations |
|
|
| from copy import copy |
| from logging import getLogger |
| from typing import TYPE_CHECKING |
|
|
| from boltons.setutils import IndexedSet |
|
|
| from ..base.constants import ( |
| DEFAULTS_CHANNEL_NAME, |
| MAX_CHANNEL_PRIORITY, |
| UNKNOWN_CHANNEL, |
| ) |
| from ..base.context import context |
| from ..common.compat import ensure_text_type, isiterable |
| from ..common.path import is_path, win_path_backout |
| from ..common.url import ( |
| Url, |
| has_scheme, |
| is_url, |
| join_url, |
| path_to_url, |
| percent_decode, |
| split_conda_url_easy_parts, |
| split_platform, |
| split_scheme_auth_token, |
| urlparse, |
| ) |
|
|
| if TYPE_CHECKING: |
| from collections.abc import Iterable, Iterator |
| from typing import Any |
|
|
| from ..base.context import Context |
| from ..common.path import PathType |
|
|
|
|
| log = getLogger(__name__) |
|
|
|
|
| class ChannelType(type): |
| """ |
| This metaclass does basic caching and enables static constructor method usage with a |
| single arg. |
| """ |
|
|
| def __call__(cls, *args, **kwargs): |
| if len(args) == 1 and not kwargs: |
| value = args[0] |
| if isinstance(value, Channel): |
| return value |
| elif value in Channel._cache_: |
| return Channel._cache_[value] |
| else: |
| c = Channel._cache_[value] = Channel.from_value(value) |
| return c |
| elif "channels" in kwargs: |
| |
| channels = tuple(cls(**_kwargs) for _kwargs in kwargs["channels"]) |
| return MultiChannel(kwargs["name"], channels) |
| else: |
| return super().__call__(*args, **kwargs) |
|
|
|
|
| class Channel(metaclass=ChannelType): |
| """ |
| Channel: |
| scheme <> auth <> location <> token <> channel <> subchannel <> platform <> package_filename |
| |
| Package Spec: |
| channel <> subchannel <> namespace <> package_name |
| |
| """ |
|
|
| _cache_ = {} |
|
|
| @staticmethod |
| def _reset_state() -> None: |
| Channel._cache_ = {} |
|
|
| def __init__( |
| self, |
| scheme: str | None = None, |
| auth: str | None = None, |
| location: str | None = None, |
| token: str | None = None, |
| name: str | None = None, |
| platform: str | None = None, |
| package_filename: str | None = None, |
| ): |
| self.scheme = scheme |
| self.auth = auth |
| self.location = location |
| self.token = token |
| self.name = name or "" |
| self.platform = platform |
| self.package_filename = package_filename |
|
|
| @property |
| def channel_location(self) -> str | None: |
| return self.location |
|
|
| @property |
| def channel_name(self) -> str: |
| return self.name |
|
|
| @property |
| def subdir(self) -> str | None: |
| return self.platform |
|
|
| @staticmethod |
| def from_url(url: str) -> Channel: |
| return parse_conda_channel_url(url) |
|
|
| @staticmethod |
| def from_channel_name(channel_name: str) -> Channel: |
| return _get_channel_for_name(channel_name) |
|
|
| @staticmethod |
| def from_value(value: str | None) -> Channel: |
| """Construct a new :class:`Channel` from a single value. |
| |
| Args: |
| value: Anyone of the following forms: |
| |
| `None`, or one of the special strings "<unknown>", "None:///<unknown>", or "None": |
| represents the unknown channel, used for packages with unknown origin. |
| |
| A URL including a scheme like ``file://`` or ``https://``: |
| represents a channel URL. |
| |
| A local directory path: |
| represents a local channel; relative paths must start with ``./``. |
| |
| A package file (i.e. the path to a file ending in ``.conda`` or ``.tar.bz2``): |
| represents a channel for a single package |
| |
| A known channel name: |
| represents a known channel, e.g. from the users ``.condarc`` file or |
| the global configuration. |
| |
| Returns: |
| A channel object. |
| """ |
| if value in (None, "<unknown>", "None:///<unknown>", "None"): |
| return Channel(name=UNKNOWN_CHANNEL) |
| value = ensure_text_type(value) |
| if has_scheme(value): |
| if value.startswith("file:"): |
| value = win_path_backout(value) |
| return Channel.from_url(value) |
| elif is_path(value): |
| return Channel.from_url(path_to_url(value)) |
| elif context.plugin_manager.has_package_extension(value): |
| if value.startswith("file:"): |
| value = win_path_backout(value) |
| return Channel.from_url(value) |
| else: |
| |
| |
| _stripped, platform = split_platform(context.known_subdirs, value) |
| if _stripped in context.custom_multichannels: |
| return MultiChannel( |
| _stripped, context.custom_multichannels[_stripped], platform |
| ) |
| else: |
| return Channel.from_channel_name(value) |
|
|
| @staticmethod |
| def make_simple_channel( |
| channel_alias: Channel, channel_url: str, name: str | None = None |
| ) -> Channel: |
| ca = channel_alias |
| test_url, scheme, auth, token = split_scheme_auth_token(channel_url) |
| if name and scheme: |
| return Channel( |
| scheme=scheme, |
| auth=auth, |
| location=test_url, |
| token=token, |
| name=name.strip("/"), |
| ) |
| if scheme: |
| if ca.location and test_url.startswith(ca.location): |
| location, name = ca.location, test_url.replace(ca.location, "", 1) |
| else: |
| url_parts = urlparse(test_url) |
| location = str(Url(hostname=url_parts.hostname, port=url_parts.port)) |
| name = url_parts.path or "" |
| return Channel( |
| scheme=scheme, |
| auth=auth, |
| location=location, |
| token=token, |
| name=name.strip("/"), |
| ) |
| else: |
| return Channel( |
| scheme=ca.scheme, |
| auth=ca.auth, |
| location=ca.location, |
| token=ca.token, |
| name=name and name.strip("/") or channel_url.strip("/"), |
| ) |
|
|
| @property |
| def canonical_name(self) -> str: |
| try: |
| return self.__canonical_name |
| except AttributeError: |
| pass |
|
|
| for multiname, channels in context.custom_multichannels.items(): |
| for channel in channels: |
| if self.name == channel.name: |
| cn = self.__canonical_name = multiname |
| return cn |
|
|
| for that_name in context.custom_channels: |
| if self.name and tokenized_startswith( |
| self.name.split("/"), that_name.split("/") |
| ): |
| cn = self.__canonical_name = self.name |
| return cn |
|
|
| if any( |
| alias.location == self.location |
| for alias in ( |
| context.channel_alias, |
| *context.migrated_channel_aliases, |
| ) |
| ): |
| cn = self.__canonical_name = self.name |
| return cn |
|
|
| |
| |
| if self.scheme: |
| cn = self.__canonical_name = ( |
| f"{self.scheme}://{join_url(self.location, self.name)}" |
| ) |
| return cn |
| else: |
| cn = self.__canonical_name = join_url(self.location, self.name).lstrip("/") |
| return cn |
|
|
| def urls( |
| self, |
| with_credentials: bool = False, |
| subdirs: Iterable[str] | None = None, |
| ) -> list[str]: |
| """Generate URLs for this channel across specified platforms. |
| |
| Args: |
| with_credentials: If True, include authentication credentials (token, auth) in URLs. |
| subdirs: Specific platform subdirs to generate URLs for. If None, uses the channel's |
| platform (if defined) or falls back to `context.subdirs`. If this is explicitly |
| provided, overrides any platform defined in the channel. |
| |
| Examples: |
| >>> channel = Channel("conda-forge") |
| >>> channel.urls() # Uses context.subdirs |
| ['https://conda.anaconda.org/conda-forge/linux-64', |
| 'https://conda.anaconda.org/conda-forge/noarch'] |
| |
| >>> channel = Channel("conda-forge/linux-aarch64") |
| >>> channel.urls() # Uses channel's platform |
| ['https://conda.anaconda.org/conda-forge/linux-aarch64', |
| 'https://conda.anaconda.org/conda-forge/noarch'] |
| |
| >>> channel.urls(subdirs=("osx-64", "noarch")) |
| ['https://conda.anaconda.org/conda-forge/osx-64', |
| 'https://conda.anaconda.org/conda-forge/noarch'] |
| |
| Returns: |
| list[str]: List of URLs for accessing this channel's specified subdirectories. |
| """ |
| if subdirs is not None and not isiterable(subdirs): |
| raise ValueError( |
| f"`subdirs` must be an iterable of strings. Got: {subdirs}." |
| ) |
|
|
| if self.canonical_name == UNKNOWN_CHANNEL: |
| return Channel(DEFAULTS_CHANNEL_NAME).urls(with_credentials, subdirs) |
|
|
| base = [self.location] |
| if with_credentials and self.token: |
| base.extend(["t", self.token]) |
| base.append(self.name) |
| base = join_url(*base) |
|
|
| def _platforms() -> Iterator[str]: |
| |
| if subdirs is not None: |
| yield from subdirs |
| elif self.platform: |
| yield self.platform |
| if self.platform != "noarch": |
| yield "noarch" |
| else: |
| yield from context.subdirs |
|
|
| bases = (join_url(base, p) for p in _platforms()) |
| if with_credentials and self.auth: |
| return [f"{self.scheme}://{self.auth}@{b}" for b in bases] |
| else: |
| return [f"{self.scheme}://{b}" for b in bases] |
|
|
| def url(self, with_credentials: bool = False) -> str | None: |
| if self.canonical_name == UNKNOWN_CHANNEL: |
| return None |
|
|
| base = [self.location] |
| if with_credentials and self.token: |
| base.extend(["t", self.token]) |
| base.append(self.name) |
| if self.platform: |
| base.append(self.platform) |
| if self.package_filename: |
| base.append(self.package_filename) |
| else: |
| first_non_noarch = next( |
| (s for s in context.subdirs if s != "noarch"), "noarch" |
| ) |
| base.append(first_non_noarch) |
|
|
| base = join_url(*base) |
|
|
| if with_credentials and self.auth: |
| return f"{self.scheme}://{self.auth}@{base}" |
| else: |
| return f"{self.scheme}://{base}" |
|
|
| @property |
| def base_url(self) -> str | None: |
| if self.canonical_name == UNKNOWN_CHANNEL: |
| return None |
| return f"{self.scheme}://{join_url(self.location, self.name)}" |
|
|
| @property |
| def base_urls(self) -> tuple[str | None, ...]: |
| return (self.base_url,) |
|
|
| @property |
| def subdir_url(self) -> str: |
| url = self.url(True) |
| if self.package_filename and url: |
| url = url.rsplit("/", 1)[0] |
| return url |
|
|
| @property |
| def channels(self) -> tuple[Channel, ...]: |
| return (self,) |
|
|
| def __str__(self) -> str: |
| base = self.base_url or self.name |
| if self.subdir: |
| return join_url(base, self.subdir) |
| else: |
| return base |
|
|
| def __repr__(self) -> str: |
| return 'Channel("%s")' % ( |
| join_url(self.name, self.subdir) if self.subdir else self.name |
| ) |
|
|
| def __eq__(self, other: Any) -> bool: |
| if isinstance(other, Channel): |
| return ( |
| self.location == other.location |
| and self.name == other.name |
| and self.platform == other.platform |
| ) |
| else: |
| try: |
| _other = Channel(other) |
| return ( |
| self.location == _other.location |
| and self.name == _other.name |
| and self.platform == _other.platform |
| ) |
| except Exception as e: |
| log.debug("%r", e) |
| return False |
|
|
| def __hash__(self) -> int: |
| return hash((self.location, self.name, self.platform)) |
|
|
| def __nonzero__(self) -> bool: |
| return any((self.location, self.name)) |
|
|
| def __bool__(self) -> bool: |
| return self.__nonzero__() |
|
|
| def __json__(self) -> dict[str, Any]: |
| return self.__dict__ |
|
|
| @property |
| def url_channel_wtf(self) -> tuple[str | None, str]: |
| return self.base_url, self.canonical_name |
|
|
| def dump(self) -> dict[str, Any]: |
| return { |
| "scheme": self.scheme, |
| "auth": self.auth, |
| "location": self.location, |
| "token": self.token, |
| "name": self.name, |
| "platform": self.platform, |
| "package_filename": self.package_filename, |
| } |
|
|
|
|
| class MultiChannel(Channel): |
| def __init__( |
| self, |
| name: str, |
| channels: Iterable[Channel], |
| platform: str | None = None, |
| ): |
| self.name = name |
| self.location = None |
|
|
| |
| if platform: |
| channels = ( |
| Channel(**{**channel.dump(), "platform": platform}) |
| for channel in channels |
| ) |
| self._channels = tuple(channels) |
|
|
| self.scheme = None |
| self.auth = None |
| self.token = None |
| self.platform = platform |
| self.package_filename = None |
|
|
| @property |
| def canonical_name(self) -> str: |
| return self.name |
|
|
| def urls( |
| self, |
| with_credentials: bool = False, |
| subdirs: Iterable[str] | None = None, |
| ) -> list[str]: |
| return [ |
| url |
| for channel in self.channels |
| for url in channel.urls(with_credentials, subdirs) |
| ] |
|
|
| @property |
| def base_url(self) -> None: |
| return None |
|
|
| @property |
| def base_urls(self) -> tuple[str | None, ...]: |
| return tuple(channel.base_url for channel in self.channels) |
|
|
| def url(self, with_credentials: bool = False) -> None: |
| return None |
|
|
| @property |
| def channels(self) -> tuple[Channel, ...]: |
| return self._channels |
|
|
| def dump(self) -> dict[str, Any]: |
| return { |
| "name": self.name, |
| "channels": tuple(channel.dump() for channel in self.channels), |
| } |
|
|
|
|
| def tokenized_startswith( |
| test_iterable: Iterable[Any], startswith_iterable: Iterable[Any] |
| ) -> bool: |
| return all(t == sw for t, sw in zip(test_iterable, startswith_iterable)) |
|
|
|
|
| def tokenized_conda_url_startswith( |
| test_url: Iterable[str], startswith_url: Iterable[str] |
| ) -> bool: |
| test_url, startswith_url = urlparse(test_url), urlparse(startswith_url) |
| if ( |
| test_url.hostname != startswith_url.hostname |
| or test_url.port != startswith_url.port |
| ): |
| return False |
| norm_url_path = lambda url: url.path.strip("/") or "/" |
| return tokenized_startswith( |
| norm_url_path(test_url).split("/"), norm_url_path(startswith_url).split("/") |
| ) |
|
|
|
|
| def _get_channel_for_name(channel_name: str) -> Channel: |
| def _get_channel_for_name_helper(name: str) -> Channel | None: |
| if name in context.custom_channels: |
| return context.custom_channels[name] |
| else: |
| test_name = name.rsplit("/", 1)[0] |
| if test_name == name: |
| return None |
| return _get_channel_for_name_helper(test_name) |
|
|
| _stripped, platform = split_platform(context.known_subdirs, channel_name) |
| channel = _get_channel_for_name_helper(_stripped) |
|
|
| if channel is not None: |
| |
| |
| channel = copy(channel) |
| channel.name = _stripped |
| if platform: |
| channel.platform = platform |
| return channel |
| else: |
| ca = context.channel_alias |
| return Channel( |
| scheme=ca.scheme, |
| auth=ca.auth, |
| location=ca.location, |
| token=ca.token, |
| name=_stripped, |
| platform=platform, |
| ) |
|
|
|
|
| def _read_channel_configuration( |
| scheme: str | None, host: str | None, port: str | None, path: str | None |
| ) -> tuple[str | None, str | None, str | None, str | None, str | None]: |
| |
|
|
| path = path and path.rstrip("/") |
| test_url = str(Url(hostname=host, port=port, path=path)) |
|
|
| |
| if not path: |
| return ( |
| str(Url(hostname=host, port=port)).rstrip("/"), |
| None, |
| scheme or None, |
| None, |
| None, |
| ) |
|
|
| |
| for name, location in sorted( |
| context.migrated_custom_channels.items(), reverse=True, key=lambda x: len(x[0]) |
| ): |
| location, _scheme, _auth, _token = split_scheme_auth_token(location) |
| if tokenized_conda_url_startswith(test_url, join_url(location, name)): |
| |
| subname = test_url.replace(join_url(location, name), "", 1).strip("/") |
| channel_name = join_url(name, subname) |
| channel = _get_channel_for_name(channel_name) |
| return ( |
| channel.location, |
| channel_name, |
| channel.scheme, |
| channel.auth, |
| channel.token, |
| ) |
|
|
| |
| for migrated_alias in context.migrated_channel_aliases: |
| if test_url.startswith(migrated_alias.location): |
| name = test_url.replace(migrated_alias.location, "", 1).strip("/") |
| ca = context.channel_alias |
| return ca.location, name, ca.scheme, ca.auth, ca.token |
|
|
| |
| for name, channel in sorted( |
| context.custom_channels.items(), reverse=True, key=lambda x: len(x[0]) |
| ): |
| that_test_url = join_url(channel.location, channel.name) |
| if tokenized_startswith(test_url.split("/"), that_test_url.split("/")): |
| subname = test_url.replace(that_test_url, "", 1).strip("/") |
| return ( |
| channel.location, |
| join_url(channel.name, subname), |
| scheme, |
| channel.auth, |
| channel.token, |
| ) |
|
|
| |
| ca = context.channel_alias |
| if ca.location and tokenized_startswith( |
| test_url.split("/"), ca.location.split("/") |
| ): |
| name = test_url.replace(ca.location, "", 1).strip("/") or None |
| return ca.location, name, scheme, ca.auth, ca.token |
|
|
| |
| if host is None: |
| |
| if port is not None: |
| raise ValueError("Port should not be set if host is not set either.") |
| location, name = test_url.rsplit("/", 1) |
| if not location: |
| location = "/" |
| _scheme, _auth, _token = "file", None, None |
| return location, name, _scheme, _auth, _token |
|
|
| |
| |
| |
| bump = None |
| path_parts = path.strip("/").split("/") |
| if path_parts and path_parts[0] == "conda": |
| bump, path = "conda", "/".join(path_parts[1:]) |
| return ( |
| str(Url(hostname=host, port=port, path=bump)).rstrip("/"), |
| path.strip("/") or None, |
| scheme or None, |
| None, |
| None, |
| ) |
|
|
|
|
| def parse_conda_channel_url(url: str) -> Channel: |
| ( |
| scheme, |
| auth, |
| token, |
| platform, |
| package_filename, |
| host, |
| port, |
| path, |
| query, |
| ) = split_conda_url_easy_parts(context.known_subdirs, url) |
|
|
| |
| ( |
| channel_location, |
| channel_name, |
| configured_scheme, |
| configured_auth, |
| configured_token, |
| ) = _read_channel_configuration(scheme, host, port, path) |
|
|
| |
| |
| if channel_location is None and channel_name is None: |
| raise ValueError("channel_location and channel_name cannot both be None") |
| |
| |
| if channel_name: |
| channel_name = percent_decode(channel_name) |
| if package_filename: |
| package_filename = percent_decode(package_filename) |
|
|
| return Channel( |
| configured_scheme or "https", |
| auth or configured_auth, |
| channel_location, |
| token or configured_token, |
| channel_name, |
| platform, |
| package_filename, |
| ) |
|
|
|
|
| |
| def get_conda_build_local_url() -> tuple[PathType]: |
| return (context.local_build_root,) |
|
|
|
|
| def prioritize_channels( |
| channels: Iterable[Channel | str], |
| with_credentials: bool = True, |
| subdirs: Iterable[str] | None = None, |
| ) -> dict[str, tuple[str, int]]: |
| """Make a dictionary of channel priorities. |
| |
| Maps channel names to priorities, e.g.: |
| |
| .. code-block:: pycon |
| |
| >>> prioritize_channels(["conda-canary", "defaults", "conda-forge"]) |
| { |
| 'https://conda.anaconda.org/conda-canary/osx-arm64': ('conda-canary', 0), |
| 'https://conda.anaconda.org/conda-canary/noarch': ('conda-canary', 0), |
| 'https://repo.anaconda.com/pkgs/main/osx-arm64': ('defaults', 1), |
| 'https://repo.anaconda.com/pkgs/main/noarch': ('defaults', 1), |
| 'https://repo.anaconda.com/pkgs/r/osx-arm64': ('defaults', 2), |
| 'https://repo.anaconda.com/pkgs/r/noarch': ('defaults', 2), |
| 'https://conda.anaconda.org/conda-forge/osx-arm64': ('conda-forge', 3), |
| 'https://conda.anaconda.org/conda-forge/noarch': ('conda-forge', 3), |
| } |
| |
| Compare with ``conda.resolve.Resolve._make_channel_priorities``. |
| """ |
| channels = (channel for name in channels for channel in Channel(name).channels) |
| result = {} |
| for priority_counter, channel in enumerate(channels): |
| for url in channel.urls(with_credentials, subdirs): |
| if url in result: |
| continue |
| result[url] = ( |
| channel.canonical_name, |
| min(priority_counter, MAX_CHANNEL_PRIORITY - 1), |
| ) |
| return result |
|
|
|
|
| def all_channel_urls( |
| channels: Iterable[str | Channel], |
| subdirs: Iterable[str] | None = None, |
| with_credentials: bool = True, |
| ) -> IndexedSet: |
| result = IndexedSet() |
| for chn in channels: |
| channel = Channel(chn) |
| result.update(channel.urls(with_credentials, subdirs)) |
| return result |
|
|
|
|
| def offline_keep(url: Any) -> bool: |
| return not context.offline or not is_url(url) or url.startswith("file:/") |
|
|
|
|
| def get_channel_objs(ctx: Context) -> tuple[Channel, ...]: |
| """Return current channels as Channel objects""" |
| return tuple(Channel(chn) for chn in ctx.channels) |
|
|
|
|
| context.register_reset_callaback(Channel._reset_state) |
|
|