File size: 12,202 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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""CLI implementation for `conda clean`.
Removes cached package tarballs, index files, package metadata, temporary files, and log files.
"""
from __future__ import annotations
import os
import sys
from logging import getLogger
from os.path import isdir, join
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from argparse import ArgumentParser, Namespace, _SubParsersAction
from collections.abc import Iterable
from typing import Any
log = getLogger(__name__)
def configure_parser(sub_parsers: _SubParsersAction, **kwargs) -> ArgumentParser:
from ..auxlib.ish import dals
from .actions import ExtendConstAction
from .helpers import add_output_and_prompt_options
summary = "Remove unused packages and caches."
description = summary
epilog = dals(
"""
Examples::
conda clean --tarballs
"""
)
p = sub_parsers.add_parser(
"clean",
help=summary,
description=description,
epilog=epilog,
**kwargs,
)
removal_target_options = p.add_argument_group("Removal Targets")
removal_target_options.add_argument(
"-a",
"--all",
action="store_true",
help="Remove index cache, lock files, unused cache packages, tarballs, and logfiles.",
)
removal_target_options.add_argument(
"-i",
"--index-cache",
action="store_true",
help="Remove index cache.",
)
removal_target_options.add_argument(
"-p",
"--packages",
action="store_true",
help="Remove unused packages from writable package caches. "
"WARNING: This does not check for packages installed using "
"symlinks back to the package cache.",
)
removal_target_options.add_argument(
"-t",
"--tarballs",
action="store_true",
help="Remove cached package tarballs.",
)
removal_target_options.add_argument(
"-f",
"--force-pkgs-dirs",
action="store_true",
help="Remove *all* writable package caches. This option is not included with the --all "
"flag. WARNING: This will break environments with packages installed using symlinks "
"back to the package cache.",
)
removal_target_options.add_argument(
"-c", # for tempfile extension (.c~)
"--tempfiles",
const=sys.prefix,
action=ExtendConstAction,
help=(
"Remove temporary files that could not be deleted earlier due to being in-use. "
"The argument for the --tempfiles flag is a path (or list of paths) to the "
"environment(s) where the tempfiles should be found and removed."
),
)
removal_target_options.add_argument(
"-l",
"--logfiles",
action="store_true",
help="Remove log files.",
)
add_output_and_prompt_options(p)
p.set_defaults(func="conda.cli.main_clean.execute")
return p
def _get_size(*parts: str, warnings: list[str] | None) -> int:
path = join(*parts)
try:
stat = os.lstat(path)
except OSError as e:
if warnings is None:
raise
warnings.append(f"WARNING: {path}: {e}")
# let the user deal with the issue
raise NotImplementedError
else:
# TODO: This doesn't handle packages that have hard links to files within
# themselves, like bin/python3.3 and bin/python3.3m in the Python package
if stat.st_nlink > 1:
raise NotImplementedError
return stat.st_size
def _get_pkgs_dirs(pkg_sizes: dict[str, dict[str, int]]) -> dict[str, tuple[str, ...]]:
return {pkgs_dir: tuple(pkgs) for pkgs_dir, pkgs in pkg_sizes.items()}
def _get_total_size(pkg_sizes: dict[str, dict[str, int]]) -> int:
return sum(sum(pkgs.values()) for pkgs in pkg_sizes.values())
def _rm_rf(*parts: str, quiet: bool, verbose: bool) -> None:
from ..gateways.disk.delete import rm_rf
path = join(*parts)
try:
if rm_rf(path):
if not quiet and verbose:
print(f"Removed {path}")
elif not quiet:
print(f"WARNING: cannot remove, file permissions: {path}")
except OSError as e:
if not quiet:
print(f"WARNING: cannot remove, file permissions: {path}\n{e!r}")
else:
log.info("%r", e)
def find_tarballs() -> dict[str, Any]:
from ..base.constants import PARTIAL_EXTENSION
from ..base.context import context
warnings: list[str] = []
pkg_sizes: dict[str, dict[str, int]] = {}
for pkgs_dir in find_pkgs_dirs():
# tarballs are files in pkgs_dir
_, _, files = next(os.walk(pkgs_dir))
for file in files:
# tarballs end in .tar.bz2, .conda (or .tar.bz2.partial, .conda.partial)
package = file.removesuffix(PARTIAL_EXTENSION)
if not context.plugin_manager.has_package_extension(package):
continue
# get size
try:
size = _get_size(pkgs_dir, file, warnings=warnings)
except NotImplementedError:
pass
else:
pkg_sizes.setdefault(pkgs_dir, {})[file] = size
return {
"warnings": warnings,
"pkg_sizes": pkg_sizes,
"pkgs_dirs": _get_pkgs_dirs(pkg_sizes),
"total_size": _get_total_size(pkg_sizes),
}
def find_pkgs() -> dict[str, Any]:
warnings: list[str] = []
pkg_sizes: dict[str, dict[str, int]] = {}
for pkgs_dir in find_pkgs_dirs():
# pkgs are directories in pkgs_dir
_, pkgs, _ = next(os.walk(pkgs_dir))
for pkg in pkgs:
# pkgs also have an info directory
if not isdir(join(pkgs_dir, pkg, "info")):
continue
# get size
try:
size = sum(
_get_size(root, file, warnings=warnings)
for root, _, files in os.walk(join(pkgs_dir, pkg))
for file in files
)
except NotImplementedError:
pass
else:
pkg_sizes.setdefault(pkgs_dir, {})[pkg] = size
return {
"warnings": warnings,
"pkg_sizes": pkg_sizes,
"pkgs_dirs": _get_pkgs_dirs(pkg_sizes),
"total_size": _get_total_size(pkg_sizes),
}
def rm_pkgs(
pkgs_dirs: dict[str, tuple[str]],
warnings: list[str],
total_size: int,
pkg_sizes: dict[str, dict[str, int]],
*,
quiet: bool,
verbose: bool,
dry_run: bool,
name: str,
) -> None:
from ..base.context import context
from ..reporters import confirm_yn
from ..utils import human_bytes
if not quiet and warnings:
for warning in warnings:
print(warning)
if not any(pkgs for pkgs in pkg_sizes.values()):
if not quiet:
print(f"There are no unused {name} to remove.")
return
if not quiet:
if verbose:
print(f"Will remove the following {name}:")
for pkgs_dir, pkgs in pkg_sizes.items():
print(f" {pkgs_dir}")
print(f" {'-' * len(pkgs_dir)}")
for pkg, size in pkgs.items():
print(f" - {pkg:<40} {human_bytes(size):>10}")
print()
print("-" * 17)
print(f"Total: {human_bytes(total_size):>10}")
print()
else:
count = sum(len(pkgs) for pkgs in pkg_sizes.values())
print(f"Will remove {count} ({human_bytes(total_size)}) {name}.")
if dry_run:
return
if not context.json or not context.always_yes:
confirm_yn()
for pkgs_dir, pkgs in pkg_sizes.items():
for pkg in pkgs:
_rm_rf(pkgs_dir, pkg, quiet=quiet, verbose=verbose)
def find_index_cache() -> list[str]:
files = []
for pkgs_dir in find_pkgs_dirs():
# caches are directories in pkgs_dir
path = join(pkgs_dir, "cache")
if isdir(path):
files.append(path)
return files
def find_pkgs_dirs() -> list[str]:
from ..core.package_cache_data import PackageCacheData
return [
pc.pkgs_dir for pc in PackageCacheData.writable_caches() if isdir(pc.pkgs_dir)
]
def find_tempfiles(paths: Iterable[str]) -> list[str]:
from ..base.constants import CONDA_TEMP_EXTENSIONS
tempfiles = []
for path in sorted(set(paths or [sys.prefix])):
# tempfiles are files in path
for root, _, files in os.walk(path):
for file in files:
# tempfiles also end in .c~ or .trash
if not file.endswith(CONDA_TEMP_EXTENSIONS):
continue
tempfiles.append(join(root, file))
return tempfiles
def find_logfiles() -> list[str]:
from ..base.constants import CONDA_LOGS_DIR
files = []
for pkgs_dir in find_pkgs_dirs():
# .logs are directories in pkgs_dir
path = join(pkgs_dir, CONDA_LOGS_DIR)
if not isdir(path):
continue
try:
# logfiles are files in .logs
_, _, logs = next(os.walk(path))
files.extend([join(path, log) for log in logs])
except StopIteration:
# StopIteration: .logs is empty
pass
return files
def rm_items(
items: list[str],
*,
quiet: bool,
verbose: bool,
dry_run: bool,
name: str,
) -> None:
from ..base.context import context
from ..reporters import confirm_yn
if not items:
if not quiet:
print(f"There are no {name} to remove.")
return
if not quiet:
if verbose:
print(f"Will remove the following {name}:")
for item in items:
print(f" - {item}")
print()
else:
print(f"Will remove {len(items)} {name}.")
if dry_run:
return
if not context.json or not context.always_yes:
confirm_yn()
for item in items:
_rm_rf(item, quiet=quiet, verbose=verbose)
def _execute(args, parser):
from ..base.context import context
json_result = {"success": True}
kwargs = {
"quiet": context.json or context.quiet,
"verbose": context.verbose,
"dry_run": context.dry_run,
}
if args.force_pkgs_dirs:
json_result["pkgs_dirs"] = pkgs_dirs = find_pkgs_dirs()
rm_items(pkgs_dirs, **kwargs, name="package cache(s)")
# we return here because all other clean operations target individual parts of
# package caches
return json_result
if not (
args.all
or args.tarballs
or args.index_cache
or args.packages
or args.tempfiles
or args.logfiles
):
from ..exceptions import ArgumentError
raise ArgumentError(
"At least one removal target must be given. See 'conda clean --help'."
)
if args.tarballs or args.all:
json_result["tarballs"] = tars = find_tarballs()
rm_pkgs(**tars, **kwargs, name="tarball(s)")
if args.index_cache or args.all:
cache = find_index_cache()
json_result["index_cache"] = {"files": cache}
rm_items(cache, **kwargs, name="index cache(s)")
if args.packages or args.all:
json_result["packages"] = pkgs = find_pkgs()
rm_pkgs(**pkgs, **kwargs, name="package(s)")
if args.tempfiles or args.all:
json_result["tempfiles"] = tmps = find_tempfiles(args.tempfiles)
rm_items(tmps, **kwargs, name="tempfile(s)")
if args.logfiles or args.all:
json_result["logfiles"] = logs = find_logfiles()
rm_items(logs, **kwargs, name="logfile(s)")
return json_result
def execute(args: Namespace, parser: ArgumentParser) -> int:
from ..base.context import context
from .common import stdout_json
json_result = _execute(args, parser)
if context.json:
stdout_json(json_result)
if args.dry_run:
from ..exceptions import DryRunExit
raise DryRunExit
return 0
|