61 lines
1.9 KiB
Rust
61 lines
1.9 KiB
Rust
use std::io;
|
|
use std::path::PathBuf;
|
|
|
|
use clap::Parser;
|
|
use directories::ProjectDirs;
|
|
|
|
use crate::Cache;
|
|
|
|
#[derive(Parser, Debug, Clone)]
|
|
#[command(next_help_heading = "Cache options")]
|
|
pub struct CacheArgs {
|
|
/// Avoid reading from or writing to the cache, instead using a temporary directory for the
|
|
/// duration of the operation.
|
|
#[arg(
|
|
global = true,
|
|
long,
|
|
short,
|
|
alias = "no-cache-dir",
|
|
env = "UV_NO_CACHE",
|
|
value_parser = clap::builder::BoolishValueParser::new(),
|
|
)]
|
|
pub no_cache: bool,
|
|
|
|
/// Path to the cache directory.
|
|
///
|
|
/// Defaults to `$HOME/Library/Caches/uv` on macOS, `$XDG_CACHE_HOME/uv` or `$HOME/.cache/uv` on
|
|
/// Linux, and `{FOLDERID_LocalAppData}\uv\cache` on Windows.
|
|
#[arg(global = true, long, env = "UV_CACHE_DIR")]
|
|
pub cache_dir: Option<PathBuf>,
|
|
}
|
|
|
|
impl Cache {
|
|
/// Prefer, in order:
|
|
///
|
|
/// 1. A temporary cache directory, if the user requested `--no-cache`.
|
|
/// 2. The specific cache directory specified by the user via `--cache-dir` or `UV_CACHE_DIR`.
|
|
/// 3. The system-appropriate cache directory.
|
|
/// 4. A `.uv_cache` directory in the current working directory.
|
|
///
|
|
/// Returns an absolute cache dir.
|
|
pub fn from_settings(no_cache: bool, cache_dir: Option<PathBuf>) -> Result<Self, io::Error> {
|
|
if no_cache {
|
|
Cache::temp()
|
|
} else if let Some(cache_dir) = cache_dir {
|
|
Ok(Cache::from_path(cache_dir))
|
|
} else if let Some(project_dirs) = ProjectDirs::from("", "", "uv") {
|
|
Ok(Cache::from_path(project_dirs.cache_dir()))
|
|
} else {
|
|
Ok(Cache::from_path(".uv_cache"))
|
|
}
|
|
}
|
|
}
|
|
|
|
impl TryFrom<CacheArgs> for Cache {
|
|
type Error = io::Error;
|
|
|
|
fn try_from(value: CacheArgs) -> Result<Self, Self::Error> {
|
|
Cache::from_settings(value.no_cache, value.cache_dir)
|
|
}
|
|
}
|