File size: 12,093 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 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""(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)
# TODO: Consider deprecating in favor of conda.common.path.strip_pkg_extension
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
# TODO: Consider deprecating in favor of conda.common.path.strip_pkg_extension
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):
# returns: name, version, build_string, channel
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\[\]]+)::)?" # optional channel
r"([^\s\[\]]+)" # 3.x dist
r"(?:\[([a-zA-Z0-9_-]+)\])?" # with_features_depends
)
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
# enforce dist format
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)
# remove any directory or channel information
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):
# dists compare equal regardless of fmt, but fmt is taken into account for
# object identity
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)
# ############ conda-build compatibility ################
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
|