| |
| |
| """(Legacy) Low-level implementation of a Channel.""" |
|
|
| import re |
| from logging import getLogger |
| from typing import NamedTuple |
|
|
| from .. import CondaError |
| from ..auxlib.entity import Entity, EntityType, IntegerField, StringField |
| from ..base.constants import ( |
| DEFAULTS_CHANNEL_NAME, |
| UNKNOWN_CHANNEL, |
| ) |
| from ..base.context import context |
| from ..common.compat import ensure_text_type |
| from ..common.constants import NULL |
| from ..common.url import has_platform, is_url, join_url |
| from .channel import Channel |
| from .package_info import PackageInfo |
| from .records import PackageRecord |
|
|
| log = getLogger(__name__) |
|
|
|
|
| class DistDetails(NamedTuple): |
| name: str |
| version: str |
| build_string: str |
| build_number: str |
| dist_name: str |
| fmt: str |
|
|
|
|
| class DistType(EntityType): |
| def __call__(cls, *args, **kwargs): |
| if len(args) == 1 and not kwargs: |
| value = args[0] |
| if value in Dist._cache_: |
| return Dist._cache_[value] |
| elif isinstance(value, Dist): |
| dist = value |
| elif isinstance(value, PackageRecord): |
| dist = Dist.from_string( |
| value.fn, channel_override=value.channel.canonical_name |
| ) |
| elif hasattr(value, "dist") and isinstance(value.dist, Dist): |
| dist = value.dist |
| elif isinstance(value, PackageInfo): |
| dist = Dist.from_string( |
| value.repodata_record.fn, |
| channel_override=value.channel.canonical_name, |
| ) |
| elif isinstance(value, Channel): |
| dist = Dist.from_url(value.url()) |
| else: |
| dist = Dist.from_string(value) |
| Dist._cache_[value] = dist |
| return dist |
| else: |
| return super().__call__(*args, **kwargs) |
|
|
|
|
| |
| def strip_extension(original_dist: str) -> str: |
| if ext := context.plugin_manager.has_package_extension(original_dist): |
| return original_dist[: -len(ext)] |
| return original_dist |
|
|
|
|
| |
| def split_extension(original_dist: str) -> tuple[str, str]: |
| if ext := context.plugin_manager.has_package_extension(original_dist): |
| return original_dist[: -len(ext)], ext |
| return original_dist, "" |
|
|
|
|
| class Dist(Entity, metaclass=DistType): |
| _cache_ = {} |
| _lazy_validate = True |
|
|
| channel = StringField(required=False, nullable=True, immutable=True) |
|
|
| dist_name = StringField(immutable=True) |
| name = StringField(immutable=True) |
| fmt = StringField(immutable=True) |
| version = StringField(immutable=True) |
| build_string = StringField(immutable=True) |
| build_number = IntegerField(immutable=True) |
|
|
| base_url = StringField(required=False, nullable=True, immutable=True) |
| platform = StringField(required=False, nullable=True, immutable=True) |
|
|
| def __init__( |
| self, |
| channel, |
| dist_name=None, |
| name=None, |
| version=None, |
| build_string=None, |
| build_number=None, |
| base_url=None, |
| platform=None, |
| fmt=".tar.bz2", |
| ): |
| super().__init__( |
| channel=channel, |
| dist_name=dist_name, |
| name=name, |
| version=version, |
| build_string=build_string, |
| build_number=build_number, |
| base_url=base_url, |
| platform=platform, |
| fmt=fmt, |
| ) |
|
|
| def to_package_ref(self): |
| return PackageRecord( |
| channel=self.channel, |
| subdir=self.platform, |
| name=self.name, |
| version=self.version, |
| build=self.build_string, |
| build_number=self.build_number, |
| ) |
|
|
| @property |
| def full_name(self): |
| return self.__str__() |
|
|
| @property |
| def build(self): |
| return self.build_string |
|
|
| @property |
| def subdir(self): |
| return self.platform |
|
|
| @property |
| def pair(self): |
| return self.channel or DEFAULTS_CHANNEL_NAME, self.dist_name |
|
|
| @property |
| def quad(self): |
| |
| parts = self.dist_name.rsplit("-", 2) + ["", ""] |
| return parts[0], parts[1], parts[2], self.channel or DEFAULTS_CHANNEL_NAME |
|
|
| def __str__(self): |
| return f"{self.channel}::{self.dist_name}" if self.channel else self.dist_name |
|
|
| @property |
| def is_feature_package(self): |
| return self.dist_name.endswith("@") |
|
|
| @property |
| def is_channel(self): |
| return bool(self.base_url and self.platform) |
|
|
| def to_filename(self, extension=None): |
| if self.is_feature_package: |
| return self.dist_name |
| else: |
| return self.dist_name + self.fmt |
|
|
| def to_matchspec(self): |
| return " ".join(self.quad[:3]) |
|
|
| def to_match_spec(self): |
| from .match_spec import MatchSpec |
|
|
| base = "=".join(self.quad[:3]) |
| return MatchSpec(f"{self.channel}::{base}" if self.channel else base) |
|
|
| @classmethod |
| def from_string(cls, string, channel_override=NULL): |
| string = str(string) |
|
|
| if is_url(string) and channel_override == NULL: |
| return cls.from_url(string) |
|
|
| if string.endswith("@"): |
| return cls( |
| channel="@", |
| name=string, |
| version="", |
| build_string="", |
| build_number=0, |
| dist_name=string, |
| ) |
|
|
| REGEX_STR = ( |
| r"(?:([^\s\[\]]+)::)?" |
| r"([^\s\[\]]+)" |
| r"(?:\[([a-zA-Z0-9_-]+)\])?" |
| ) |
| channel, original_dist, w_f_d = re.search(REGEX_STR, string).groups() |
|
|
| original_dist, fmt = split_extension(original_dist) |
|
|
| if channel_override != NULL: |
| channel = channel_override |
| if not channel: |
| channel = UNKNOWN_CHANNEL |
|
|
| |
| dist_details = cls.parse_dist_name(original_dist) |
| return cls( |
| channel=channel, |
| name=dist_details.name, |
| version=dist_details.version, |
| build_string=dist_details.build_string, |
| build_number=dist_details.build_number, |
| dist_name=original_dist, |
| fmt=fmt, |
| ) |
|
|
| @staticmethod |
| def parse_dist_name(string): |
| original_string = string |
| try: |
| string = ensure_text_type(string) |
| no_fmt_string, fmt = split_extension(string) |
|
|
| |
| if "::" in no_fmt_string: |
| dist_name = no_fmt_string.rsplit("::", 1)[-1] |
| else: |
| dist_name = no_fmt_string.rsplit("/", 1)[-1] |
|
|
| parts = dist_name.rsplit("-", 2) |
|
|
| name = parts[0] |
| version = parts[1] |
| build_string = parts[2] if len(parts) >= 3 else "" |
| build_number_as_string = "".join( |
| filter( |
| lambda x: x.isdigit(), |
| (build_string.rsplit("_")[-1] if build_string else "0"), |
| ) |
| ) |
| build_number = int(build_number_as_string) if build_number_as_string else 0 |
|
|
| return DistDetails( |
| name, version, build_string, build_number, dist_name, fmt |
| ) |
|
|
| except: |
| raise CondaError( |
| f"dist_name is not a valid conda package: {original_string}" |
| ) |
|
|
| @classmethod |
| def from_url(cls, url): |
| if not is_url(url): |
| raise ValueError("'{url}' does not seem to be a valid URL") |
| if not context.plugin_manager.has_package_extension(url) and "::" not in url: |
| raise CondaError(f"url '{url}' is not a conda package") |
|
|
| dist_details = cls.parse_dist_name(url) |
| if "::" in url: |
| url_no_tarball = url.rsplit("::", 1)[0] |
| platform = context.subdir |
| base_url = url_no_tarball.split("::")[0] |
| channel = str(Channel(base_url)) |
| else: |
| url_no_tarball = url.rsplit("/", 1)[0] |
| platform = has_platform(url_no_tarball, context.known_subdirs) |
| base_url = url_no_tarball.rsplit("/", 1)[0] if platform else url_no_tarball |
| channel = Channel(base_url).canonical_name if platform else UNKNOWN_CHANNEL |
|
|
| return cls( |
| channel=channel, |
| name=dist_details.name, |
| version=dist_details.version, |
| build_string=dist_details.build_string, |
| build_number=dist_details.build_number, |
| dist_name=dist_details.dist_name, |
| base_url=base_url, |
| platform=platform, |
| fmt=dist_details.fmt, |
| ) |
|
|
| def to_url(self): |
| if not self.base_url: |
| return None |
| filename = self.dist_name + self.fmt |
| return ( |
| join_url(self.base_url, self.platform, filename) |
| if self.platform |
| else join_url(self.base_url, filename) |
| ) |
|
|
| def __key__(self): |
| return self.channel, self.dist_name |
|
|
| def __lt__(self, other): |
| if not isinstance(other, self.__class__): |
| raise TypeError( |
| "Can only compare with objects of the same type. " |
| f"Left side is {type(self)}, and right side is {type(other)}" |
| ) |
| return self.__key__() < other.__key__() |
|
|
| def __gt__(self, other): |
| if not isinstance(other, self.__class__): |
| raise TypeError( |
| "Can only compare with objects of the same type. " |
| f"Left side is {type(self)}, and right side is {type(other)}" |
| ) |
| return self.__key__() > other.__key__() |
|
|
| def __le__(self, other): |
| if not isinstance(other, self.__class__): |
| raise TypeError( |
| "Can only compare with objects of the same type. " |
| f"Left side is {type(self)}, and right side is {type(other)}" |
| ) |
| return self.__key__() <= other.__key__() |
|
|
| def __ge__(self, other): |
| if not isinstance(other, self.__class__): |
| raise TypeError( |
| "Can only compare with objects of the same type. " |
| f"Left side is {type(self)}, and right side is {type(other)}" |
| ) |
| return self.__key__() >= other.__key__() |
|
|
| def __hash__(self): |
| |
| |
| return hash((self.__key__(), self.fmt)) |
|
|
| def __eq__(self, other): |
| return isinstance(other, self.__class__) and self.__key__() == other.__key__() |
|
|
| def __ne__(self, other): |
| return not self.__eq__(other) |
|
|
| |
|
|
| def split(self, sep=None, maxsplit=-1): |
| if sep != "::": |
| raise ValueError("'sep' can only be '::'") |
| return [self.channel, self.dist_name] if self.channel else [self.dist_name] |
|
|
| def rsplit(self, sep=None, maxsplit=-1): |
| if sep != "-": |
| raise ValueError("'sep' can only be '-'") |
| if maxsplit != 2: |
| raise ValueError("'maxsplit' can only be 2") |
| name = f"{self.channel}::{self.quad[0]}" if self.channel else self.quad[0] |
| return name, self.quad[1], self.quad[2] |
|
|
| def startswith(self, match): |
| return self.dist_name.startswith(match) |
|
|
| def __contains__(self, item): |
| item = strip_extension(ensure_text_type(item)) |
| return item in self.__str__() |
|
|
| @property |
| def fn(self): |
| return self.to_filename() |
|
|
|
|
| def dist_str_to_quad(dist_str): |
| dist_str = strip_extension(dist_str) |
| if "::" in dist_str: |
| channel_str, dist_str = dist_str.split("::", 1) |
| else: |
| channel_str = UNKNOWN_CHANNEL |
| name, version, build = dist_str.rsplit("-", 2) |
| return name, version, build, channel_str |
|
|