File size: 12,628 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 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Miscellaneous utility functions."""
from __future__ import annotations
import os
import re
import shutil
from logging import getLogger
from os.path import abspath, dirname, exists, isdir, isfile, join, relpath
from typing import TYPE_CHECKING
from .base.constants import EXPLICIT_MARKER
from .base.context import context
from .common.compat import on_mac, on_win, open_utf8
from .common.io import dashlist
from .common.path import expand
from .common.url import is_url, join_url, path_to_url
from .core.index import Index
from .core.link import PrefixSetup, UnlinkLinkTransaction
from .core.package_cache_data import PackageCacheData, ProgressiveFetchExtract
from .core.prefix_data import PrefixData
from .deprecations import deprecated
from .exceptions import (
DisallowedPackageError,
DryRunExit,
PackagesNotFoundError,
ParseError,
SpecNotFoundInPackageCache,
)
from .gateways.disk.delete import rm_rf
from .gateways.disk.link import islink, readlink, symlink
from .models.match_spec import ChannelMatch, MatchSpec
from .models.prefix_graph import PrefixGraph
if TYPE_CHECKING:
from collections.abc import Iterable, Sequence
from typing import Any
from .models.records import PackageCacheRecord, PackageRecord
log = getLogger(__name__)
def conda_installed_files(prefix, exclude_self_build=False):
"""
Return the set of files which have been installed (using conda) into
a given prefix.
"""
res = set()
for meta in PrefixData(prefix).iter_records():
if exclude_self_build and "file_hash" in meta:
continue
res.update(set(meta.get("files", ())))
return res
deprecated.constant(
"26.9",
"27.3",
"url_pat",
re.compile(
r"(?:(?P<url_p>.+)(?:[/\\]))?"
r"(?P<fn>[^/\\#]+(?:\.conda|\.tar\.bz2))"
r"(?:#("
r"(?P<md5>[0-9a-f]{32})"
r"|((sha256:)?(?P<sha256>[0-9a-f]{64}))"
r"))?$"
),
addendum="Use `conda.misc._get_url_pattern()` instead.",
)
def _get_url_pattern() -> re.Pattern:
"""Build URL pattern dynamically based on registered package extensions."""
extensions = context.plugin_manager.get_package_extractors().keys()
ext_pattern = "|".join(map(re.escape, extensions))
return re.compile(
r"(?:(?P<url_p>.+)(?:[/\\]))?"
rf"(?P<fn>[^/\\#]+(?:{ext_pattern}))"
r"(?:#("
r"(?P<md5>[0-9a-f]{32})"
r"|((sha256:)?(?P<sha256>[0-9a-f]{64}))"
r"))?$"
)
def _match_specs_from_explicit(specs: Iterable[str]) -> Iterable[MatchSpec]:
url_pat = _get_url_pattern()
for spec in specs:
if spec == EXPLICIT_MARKER:
continue
if not is_url(spec):
"""
# This does not work because url_to_path does not enforce Windows
# backslashes. Should it? Seems like a dangerous change to make but
# it would be cleaner.
expanded = expand(spec)
urled = path_to_url(expanded)
pathed = url_to_path(urled)
assert pathed == expanded
"""
spec = path_to_url(expand(spec))
# parse URL
m = url_pat.match(spec)
if m is None:
raise ParseError(f"Could not parse explicit URL: {spec}")
url_p, fn = m.group("url_p"), m.group("fn")
url = join_url(url_p, fn)
# url_p is everything but the tarball_basename and the checksum
checksums = {}
if md5 := m.group("md5"):
checksums["md5"] = md5
if sha256 := m.group("sha256"):
checksums["sha256"] = sha256
yield MatchSpec(url, **checksums)
def explicit(
specs: Iterable[str],
prefix: str,
verbose: bool = False,
force_extract: bool = True,
index: Any = None,
requested_specs: Sequence[str] | None = None,
) -> None:
package_cache_records = get_package_records_from_explicit(specs)
install_explicit_packages(
package_cache_records=package_cache_records,
prefix=prefix,
requested_specs=requested_specs,
)
def install_explicit_packages(
package_cache_records: list[PackageRecord],
prefix: str,
requested_specs: Sequence[str] | None = None,
):
"""Install a list of PackageRecords into a prefix"""
specs_pcrecs = tuple([rec.to_match_spec(), rec] for rec in package_cache_records)
precs_to_remove = []
prefix_data = PrefixData(prefix)
for q, (spec, pcrec) in enumerate(specs_pcrecs):
new_spec = MatchSpec(spec, name=pcrec.name)
specs_pcrecs[q][0] = new_spec
prec = prefix_data.get(pcrec.name, None)
if prec:
# If we've already got matching specifications, then don't bother re-linking it
if next(prefix_data.query(new_spec), None):
specs_pcrecs[q][0] = None
else:
precs_to_remove.append(prec)
# Record user-requested specs in history when provided, otherwise fall back to
# all processed specs for backwards compatibility
if requested_specs:
update_specs_for_history = tuple(MatchSpec(spec) for spec in requested_specs)
else:
update_specs_for_history = tuple(sp[0] for sp in specs_pcrecs if sp[0])
stp = PrefixSetup(
prefix,
precs_to_remove,
tuple(sp[1] for sp in specs_pcrecs if sp[0]),
(),
update_specs_for_history,
(),
)
txn = UnlinkLinkTransaction(stp)
if not context.json and not context.quiet:
txn.print_transaction_summary()
txn.execute()
def _get_package_record_from_specs(specs: list[str]) -> Iterable[PackageCacheRecord]:
"""Given a list of specs, find the corresponding PackageCacheRecord. If
some PackageCacheRecords are missing, raise an error.
"""
specs_pcrecs = tuple(
[spec, next(PackageCacheData.query_all(spec), None)] for spec in specs
)
# Assert that every spec has a PackageCacheRecord
specs_with_missing_pcrecs = [
str(spec) for spec, pcrec in specs_pcrecs if pcrec is None
]
if specs_with_missing_pcrecs:
if len(specs_with_missing_pcrecs) == len(specs_pcrecs):
raise SpecNotFoundInPackageCache("No package cache records found")
else:
missing_precs_list = ", ".join(specs_with_missing_pcrecs)
raise SpecNotFoundInPackageCache(
f"Missing package cache records for: {missing_precs_list}"
)
return [rec[1] for rec in specs_pcrecs]
def get_package_records_from_explicit(lines: list[str]) -> Iterable[PackageCacheRecord]:
"""Given the lines from an explicit.txt, create the PackageRecords for each of the
specified packages. This may require downloading the package, if it does not already
exist in the package cache.
"""
# Extract the list of specs
fetch_specs = list(_match_specs_from_explicit(lines))
if context.dry_run:
raise DryRunExit()
# Fetch the packages - if they are already cached nothing new will be downloaded
pfe = ProgressiveFetchExtract(fetch_specs)
pfe.execute()
# Get the package records from the cache
return _get_package_record_from_specs(fetch_specs)
def walk_prefix(prefix, ignore_predefined_files=True, windows_forward_slashes=True):
"""Return the set of all files in a given prefix directory."""
res = set()
prefix = abspath(prefix)
ignore = {
"pkgs",
"envs",
"conda-bld",
"conda-meta",
".conda_lock",
"users",
"LICENSE.txt",
"info",
"conda-recipes",
".index",
".unionfs",
".nonadmin",
}
binignore = {"conda", "activate", "deactivate"}
if on_mac:
ignore.update({"python.app", "Launcher.app"})
for fn in (entry.name for entry in os.scandir(prefix)):
if ignore_predefined_files and fn in ignore:
continue
if isfile(join(prefix, fn)):
res.add(fn)
continue
for root, dirs, files in os.walk(join(prefix, fn)):
should_ignore = ignore_predefined_files and root == join(prefix, "bin")
for fn2 in files:
if should_ignore and fn2 in binignore:
continue
res.add(relpath(join(root, fn2), prefix))
for dn in dirs:
path = join(root, dn)
if islink(path):
res.add(relpath(path, prefix))
if on_win and windows_forward_slashes:
return {path.replace("\\", "/") for path in res}
else:
return res
def untracked(prefix, exclude_self_build=False):
"""Return (the set) of all untracked files for a given prefix."""
conda_files = conda_installed_files(prefix, exclude_self_build)
return {
path
for path in walk_prefix(prefix) - conda_files
if not (
path.endswith("~")
or on_mac
and path.endswith(".DS_Store")
or path.endswith(".pyc")
and path[:-1] in conda_files
)
}
@deprecated("25.9", "26.3", addendum="Use PrefixData.set_nonadmin()")
def touch_nonadmin(prefix):
"""Creates $PREFIX/.nonadmin if sys.prefix/.nonadmin exists (on Windows)."""
if on_win and exists(join(context.root_prefix, ".nonadmin")):
if not isdir(prefix):
os.makedirs(prefix)
with open_utf8(join(prefix, ".nonadmin"), "w") as fo:
fo.write("")
def clone_env(prefix1, prefix2, verbose=True, quiet=False, index_args=None):
"""Clone existing prefix1 into new prefix2."""
untracked_files = untracked(prefix1)
drecs = {prec for prec in PrefixData(prefix1).iter_records()}
# Resolve URLs for packages that do not have URLs
index = {}
unknowns = [prec for prec in drecs if not prec.get("url")]
notfound = []
if unknowns:
index_args = index_args or {}
index_args["channels"] = index_args.pop("channel_urls")
index = Index(**index_args)
for prec in unknowns:
spec = MatchSpec(name=prec.name, version=prec.version, build=prec.build)
precs = tuple(prec for prec in index.values() if spec.match(prec))
if not precs:
notfound.append(spec)
elif len(precs) > 1:
drecs.remove(prec)
drecs.add(_get_best_prec_match(precs))
else:
drecs.remove(prec)
drecs.add(precs[0])
if notfound:
raise PackagesNotFoundError(notfound)
# Assemble the URL and channel list
urls = {}
for prec in drecs:
urls[prec] = prec["url"]
precs = tuple(PrefixGraph(urls).graph)
urls = [urls[prec] for prec in precs]
disallowed = tuple(MatchSpec(s) for s in context.disallowed_packages)
for prec in precs:
if any(d.match(prec) for d in disallowed):
raise DisallowedPackageError(prec)
if verbose:
print("Packages: %d" % len(precs))
print("Files: %d" % len(untracked_files))
if context.dry_run:
raise DryRunExit()
for f in untracked_files:
src = join(prefix1, f)
dst = join(prefix2, f)
dst_dir = dirname(dst)
if islink(dst_dir) or isfile(dst_dir):
rm_rf(dst_dir)
if not isdir(dst_dir):
os.makedirs(dst_dir)
if islink(src):
symlink(readlink(src), dst)
continue
try:
with open_utf8(src, "rb") as fi:
data = fi.read()
except OSError:
continue
try:
s = data.decode("utf-8")
s = s.replace(prefix1, prefix2)
data = s.encode("utf-8")
except UnicodeDecodeError: # data is binary
pass
with open_utf8(dst, "wb") as fo:
fo.write(data)
shutil.copystat(src, dst)
actions = explicit(
urls,
prefix2,
verbose=not quiet,
index=index,
force_extract=False,
)
return actions, untracked_files
def _get_best_prec_match(precs):
if not precs:
raise ValueError("'precs' cannot be empty.")
for channel in context.channels:
channel_matcher = ChannelMatch(channel)
prec_matches = tuple(
prec for prec in precs if channel_matcher.match(prec.channel.name)
)
if prec_matches:
break
else:
prec_matches = precs
log.warning("Multiple packages found: %s", dashlist(prec_matches))
return prec_matches[0]
|