-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a garbage collection mechanism to the CLI (#1217)
## Summary Detects unused cache entries, which can come in a few forms: 1. Directories that are out-dated via our versioning scheme. 2. Old source distribution builds (i.e., we have a more recent version). 3. Old wheels (stored in `archive-v0`, but not symlinked-to from anywhere in the cache). Closes #1059.
- Loading branch information
1 parent
7ee90dc
commit 0f96386
Showing
8 changed files
with
348 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
use std::fmt::Write; | ||
|
||
use anyhow::{Context, Result}; | ||
use owo_colors::OwoColorize; | ||
|
||
use uv_cache::Cache; | ||
use uv_fs::Simplified; | ||
|
||
use crate::commands::{human_readable_bytes, ExitStatus}; | ||
use crate::printer::Printer; | ||
|
||
/// Prune all unreachable objects from the cache. | ||
pub(crate) fn cache_prune(cache: &Cache, printer: Printer) -> Result<ExitStatus> { | ||
if !cache.root().exists() { | ||
writeln!( | ||
printer.stderr(), | ||
"No cache found at: {}", | ||
cache.root().user_display().cyan() | ||
)?; | ||
return Ok(ExitStatus::Success); | ||
} | ||
|
||
writeln!( | ||
printer.stderr(), | ||
"Pruning cache at: {}", | ||
cache.root().user_display().cyan() | ||
)?; | ||
|
||
let summary = cache | ||
.prune() | ||
.with_context(|| format!("Failed to prune cache at: {}", cache.root().user_display()))?; | ||
|
||
// Write a summary of the number of files and directories removed. | ||
match (summary.num_files, summary.num_dirs) { | ||
(0, 0) => { | ||
write!(printer.stderr(), "No unused entries found")?; | ||
} | ||
(0, 1) => { | ||
write!(printer.stderr(), "Removed 1 directory")?; | ||
} | ||
(0, num_dirs_removed) => { | ||
write!(printer.stderr(), "Removed {num_dirs_removed} directories")?; | ||
} | ||
(1, _) => { | ||
write!(printer.stderr(), "Removed 1 file")?; | ||
} | ||
(num_files_removed, _) => { | ||
write!(printer.stderr(), "Removed {num_files_removed} files")?; | ||
} | ||
} | ||
|
||
// If any, write a summary of the total byte count removed. | ||
if summary.total_bytes > 0 { | ||
let bytes = if summary.total_bytes < 1024 { | ||
format!("{}B", summary.total_bytes) | ||
} else { | ||
let (bytes, unit) = human_readable_bytes(summary.total_bytes); | ||
format!("{bytes:.1}{unit}") | ||
}; | ||
write!(printer.stderr(), " ({})", bytes.green())?; | ||
} | ||
|
||
writeln!(printer.stderr())?; | ||
|
||
Ok(ExitStatus::Success) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.