use super::executor::Executor; use super::terminal::Terminal; use super::utils::{self, Check, PathExt}; use directories::BaseDirs; use failure::Error; use std::path::PathBuf; use std::process::Command; const EMACS_UPGRADE: &str = include_str!("emacs.el"); #[must_use] pub fn run_cargo_update(base_dirs: &BaseDirs, terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(cargo_update) = base_dirs.home_dir().join(".cargo/bin/cargo-install-update").if_exists() { terminal.print_separator("Cargo"); let success = || -> Result<(), Error> { Executor::new(cargo_update, dry_run) .args(&["install-update", "--git", "--all"]) .spawn()? .wait()? .check()?; Ok(()) }().is_ok(); return Some(("Cargo", success)); } None } #[must_use] pub fn run_gem(base_dirs: &BaseDirs, terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(gem) = utils::which("gem") { if base_dirs.home_dir().join(".gem").exists() { terminal.print_separator("RubyGems"); let success = || -> Result<(), Error> { Executor::new(&gem, dry_run) .args(&["update", "--user-install"]) .spawn()? .wait()? .check()?; Ok(()) }().is_ok(); return Some(("RubyGems", success)); } } None } #[must_use] pub fn run_emacs(base_dirs: &BaseDirs, terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(emacs) = utils::which("emacs") { if let Some(init_file) = base_dirs.home_dir().join(".emacs.d/init.el").if_exists() { terminal.print_separator("Emacs"); let success = || -> Result<(), Error> { Executor::new(&emacs, dry_run) .args(&["--batch", "-l", init_file.to_str().unwrap(), "--eval", EMACS_UPGRADE]) .spawn()? .wait()? .check()?; Ok(()) }().is_ok(); return Some(("Emacs", success)); } } None } #[must_use] #[cfg( not( any( target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly" ) ) )] pub fn run_apm(terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(apm) = utils::which("apm") { terminal.print_separator("Atom Package Manager"); let success = || -> Result<(), Error> { Executor::new(&apm, dry_run) .args(&["upgrade", "--confirm=false"]) .spawn()? .wait()? .check()?; Ok(()) }().is_ok(); return Some(("apm", success)); } None } #[must_use] pub fn run_rustup(base_dirs: &BaseDirs, terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(rustup) = utils::which("rustup") { terminal.print_separator("rustup"); let success = || -> Result<(), Error> { if rustup.is_descendant_of(base_dirs.home_dir()) { Executor::new(&rustup, dry_run) .args(&["self", "update"]) .spawn()? .wait()? .check()?; } Executor::new(&rustup, dry_run).arg("update").spawn()?.wait()?.check()?; Ok(()) }().is_ok(); return Some(("rustup", success)); } None } #[must_use] pub fn run_opam_update(terminal: &mut Terminal, dry_run: bool) -> Option<(&'static str, bool)> { if let Some(opam) = utils::which("opam") { terminal.print_separator("OCaml Package Manager"); let success = || -> Result<(), Error> { Executor::new(&opam, dry_run).arg("update").spawn()?.wait()?.check()?; Executor::new(&opam, dry_run).arg("upgrade").spawn()?.wait()?.check()?; Ok(()) }().is_ok(); return Some(("OPAM", success)); } None } #[must_use] pub fn run_custom_command(name: &str, command: &str, terminal: &mut Terminal, dry_run: bool) -> Result<(), Error> { terminal.print_separator(name); Executor::new("sh", dry_run) .arg("-c") .arg(command) .spawn()? .wait()? .check()?; Ok(()) } #[must_use] pub fn run_composer_update( base_dirs: &BaseDirs, terminal: &mut Terminal, dry_run: bool, ) -> Option<(&'static str, bool)> { if let Some(composer) = utils::which("composer") { let composer_home = || -> Result { let output = Command::new(&composer) .args(&["global", "config", "--absolute", "home"]) .output()?; output.status.check()?; Ok(PathBuf::from(&String::from_utf8(output.stdout)?)) }(); if let Ok(composer_home) = composer_home { if composer_home.is_descendant_of(base_dirs.home_dir()) { terminal.print_separator("Composer"); let success = || -> Result<(), Error> { Executor::new(&composer, dry_run) .args(&["global", "update"]) .spawn()? .wait()? .check()?; Ok(()) }().is_ok(); return Some(("Composer", success)); } } } None }