Skip to content

Commit

Permalink
uninstall: tweak behavior
Browse files Browse the repository at this point in the history
Fixes #1115
  • Loading branch information
jdx committed Dec 12, 2023
1 parent 29ea4b2 commit acaeb50
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 58 deletions.
126 changes: 73 additions & 53 deletions src/cli/uninstall.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
use console::style;
use eyre::{Result, WrapErr};
use itertools::Itertools;
use rayon::prelude::*;
use std::sync::Arc;

use crate::cli::args::tool::{ToolArg, ToolArgParser};
use crate::config::Config;
use crate::output::Output;
use crate::plugins::Plugin;
use crate::toolset::{ToolVersion, ToolVersionRequest, ToolsetBuilder};
use crate::ui::multi_progress_report::MultiProgressReport;
use crate::{runtime_symlinks, shims};
Expand All @@ -13,11 +17,11 @@ use crate::{runtime_symlinks, shims};
#[clap(verbatim_doc_comment, alias = "remove", alias = "rm", after_long_help = AFTER_LONG_HELP)]
pub struct Uninstall {
/// Tool(s) to remove
#[clap(required = true, value_name = "TOOL@VERSION", value_parser = ToolArgParser)]
#[clap(value_name = "TOOL@VERSION", value_parser = ToolArgParser, required_unless_present = "all")]
tool: Vec<ToolArg>,

/// Delete all installed versions
#[clap(long, short = 'a')]
#[clap(long, short)]
all: bool,

/// Do not actually delete anything
Expand All @@ -27,58 +31,19 @@ pub struct Uninstall {

impl Uninstall {
pub fn run(self, config: Config, _out: &mut Output) -> Result<()> {
let runtimes = ToolArg::double_tool_condition(&self.tool);

let mut tool_versions = vec![];
if self.all {
for runtime in runtimes {
let tool = config.get_or_create_plugin(&runtime.plugin);
let query = runtime.tvr.map(|tvr| tvr.version()).unwrap_or_default();
let tvs = tool
.list_installed_versions()?
.into_iter()
.filter(|v| v.starts_with(&query))
.map(|v| {
let tvr = ToolVersionRequest::new(tool.name().into(), &v);
let tv = ToolVersion::new(tool.clone(), tvr, Default::default(), v);
(tool.clone(), tv)
})
.collect::<Vec<_>>();
if tvs.is_empty() {
warn!("no versions found for {}", style(&tool).cyan().for_stderr());
}
tool_versions.extend(tvs);
}
let tool_versions = if self.tool.is_empty() && self.all {
self.get_all_tool_versions(&config)?
} else {
tool_versions = runtimes
.into_iter()
.map(|a| {
let tool = config.get_or_create_plugin(&a.plugin);
let tvs = match a.tvr {
Some(tvr) => {
vec![tvr.resolve(&config, tool.clone(), Default::default(), false)?]
}
None => {
let ts = ToolsetBuilder::new().build(&config)?;
match ts.versions.get(&a.plugin) {
Some(tvl) => tvl.versions.clone(),
None => bail!(
"no versions found for {}",
style(&tool).cyan().for_stderr()
),
}
}
};
Ok(tvs
.into_iter()
.map(|tv| (tool.clone(), tv))
.collect::<Vec<_>>())
})
.collect::<Result<Vec<_>>>()?
.into_iter()
.flatten()
.collect::<Vec<_>>();
self.get_requested_tool_versions(&config)?
};
if !self.all && tool_versions.len() > 1 {
bail!("multiple tools specified, use --all to uninstall all versions");
}
let tool_versions = tool_versions
.into_iter()
.unique()
.sorted()
.collect::<Vec<_>>();

let mpr = MultiProgressReport::new(&config.settings);
for (plugin, tv) in tool_versions {
Expand All @@ -93,7 +58,11 @@ impl Uninstall {
pr.error(err.to_string());
return Err(eyre!(err).wrap_err(format!("failed to uninstall {tv}")));
}
pr.finish_with_message("uninstalled");
if self.dry_run {
pr.finish_with_message("uninstalled (dry-run)");
} else {
pr.finish_with_message("uninstalled");
}
}

let ts = ToolsetBuilder::new().build(&config)?;
Expand All @@ -102,6 +71,57 @@ impl Uninstall {

Ok(())
}

fn get_all_tool_versions(
&self,
config: &Config,
) -> Result<Vec<(Arc<dyn Plugin>, ToolVersion)>> {
let ts = ToolsetBuilder::new().build(config)?;
let tool_versions = ts
.list_installed_versions(config)?
.into_iter()
.collect::<Vec<_>>();
Ok(tool_versions)
}
fn get_requested_tool_versions(
&self,
config: &Config,
) -> Result<Vec<(Arc<dyn Plugin>, ToolVersion)>> {
let runtimes = ToolArg::double_tool_condition(&self.tool);
let tool_versions = runtimes
.into_iter()
.map(|a| (config.get_or_create_plugin(&a.plugin), a))
.collect_vec()
.into_par_iter()
.map(|(tool, a)| {
let query = a.tvr.as_ref().map(|tvr| tvr.version()).unwrap_or_default();
let mut tvs = tool
.list_installed_versions()?
.into_iter()
.filter(|v| v.starts_with(&query))
.map(|v| {
let tvr = ToolVersionRequest::new(tool.name().into(), &v);
let tv = ToolVersion::new(tool.clone(), tvr, Default::default(), v);
(tool.clone(), tv)
})
.collect::<Vec<_>>();
if let Some(tvr) = &a.tvr {
tvs.push((
tool.clone(),
tvr.resolve(&config, tool.clone(), Default::default(), true)?,
));
}
if tvs.is_empty() {
warn!("no versions found for {}", style(&tool).cyan().for_stderr());
}
Ok(tvs)
})
.collect::<Result<Vec<_>>>()?
.into_iter()
.flatten()
.collect::<Vec<_>>();
Ok(tool_versions)
}
}

static AFTER_LONG_HELP: &str = color_print::cstr!(
Expand Down
16 changes: 14 additions & 2 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,14 @@ pub fn remove_file<P: AsRef<Path>>(path: P) -> Result<()> {

pub fn remove_dir<P: AsRef<Path>>(path: P) -> Result<()> {
let path = path.as_ref();
trace!("rmdir {}", display_path(path));
fs::remove_dir(path).wrap_err_with(|| format!("failed rmdir: {}", display_path(path)))
(|| -> Result<()> {
if path.exists() && is_empty_dir(path)? {
trace!("rmdir {}", display_path(path));
fs::remove_dir(path)?;
}
Ok(())
})()
.wrap_err_with(|| format!("failed to remove_dir: {}", display_path(path)))
}

pub fn remove_all_with_warning<P: AsRef<Path>>(path: P) -> Result<()> {
Expand Down Expand Up @@ -207,6 +213,12 @@ pub fn make_executable(path: &Path) -> Result<()> {
Ok(())
}

fn is_empty_dir(path: &Path) -> Result<bool> {
path.read_dir()
.map(|mut i| i.next().is_none())
.wrap_err_with(|| format!("failed to read_dir: {}", display_path(path)))
}

pub struct FindUp {
current_dir: PathBuf,
current_dir_filenames: Vec<String>,
Expand Down
6 changes: 6 additions & 0 deletions src/plugins/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::collections::{BTreeMap, HashMap};
use std::fmt::{Debug, Display};
use std::fs::File;
use std::hash::Hash;
use std::path::{Path, PathBuf};
use std::sync::Arc;

Expand Down Expand Up @@ -409,6 +410,11 @@ impl PartialEq for dyn Plugin {
self.get_type() == other.get_type() && self.name() == other.name()
}
}
impl Hash for dyn Plugin {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.name().hash(state)
}
}
impl PartialOrd for dyn Plugin {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
Expand Down
4 changes: 2 additions & 2 deletions src/runtime_symlinks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ pub fn rebuild(config: &Config) -> Result<()> {
make_symlink(&to, &from)?;
}
remove_missing_symlinks(plugin.clone())?;
// attempt to remove the installs dir (will fail if not empty)
let _ = file::remove_dir(&installs_dir);
// remove install dir if empty
file::remove_dir(&installs_dir)?;
}
Ok(())
}
Expand Down
30 changes: 29 additions & 1 deletion src/toolset/tool_version.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use std::cmp::Ordering;
use std::fmt::{Display, Formatter};
use std::fs;
use std::hash::{Hash, Hasher};
use std::path::PathBuf;
use std::sync::Arc;

Expand All @@ -13,7 +15,7 @@ use crate::plugins::{Plugin, PluginName};
use crate::toolset::{ToolVersionOptions, ToolVersionRequest};

/// represents a single version of a tool for a particular plugin
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[derive(Debug, Clone)]
pub struct ToolVersion {
pub request: ToolVersionRequest,
pub plugin_name: PluginName,
Expand Down Expand Up @@ -244,6 +246,32 @@ impl Display for ToolVersion {
}
}

impl PartialEq for ToolVersion {
fn eq(&self, other: &Self) -> bool {
self.plugin_name == other.plugin_name && self.version == other.version
}
}
impl Eq for ToolVersion {}
impl PartialOrd for ToolVersion {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for ToolVersion {
fn cmp(&self, other: &Self) -> Ordering {
match self.plugin_name.cmp(&other.plugin_name) {
Ordering::Equal => self.version.cmp(&other.version),
o => return o,
}
}
}
impl Hash for ToolVersion {
fn hash<H: Hasher>(&self, state: &mut H) {
self.plugin_name.hash(state);
self.version.hash(state);
}
}

/// subtracts sub from orig and removes suffix
/// e.g. version_sub("18.2.3", "2") -> "16"
/// e.g. version_sub("18.2.3", "0.1") -> "18.1"
Expand Down

0 comments on commit acaeb50

Please sign in to comment.