forked from cross-rs/cross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrustup.rs
87 lines (72 loc) · 2.76 KB
/
rustup.rs
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
use std::process::Command;
use crate::Target;
use crate::errors::*;
use crate::extensions::CommandExt;
#[derive(Debug)]
pub struct AvailableTargets {
default: String,
installed: Vec<String>,
not_installed: Vec<String>,
}
impl AvailableTargets {
pub fn contains(&self, target: &Target) -> bool {
let triple = target.triple();
self.is_installed(target) || self.not_installed.iter().any(|x| x == triple)
}
pub fn is_installed(&self, target: &Target) -> bool {
let target = target.triple();
target == self.default || self.installed.iter().any(|x| x == target)
}
}
pub fn installed_toolchains(verbose: bool) -> Result<Vec<String>> {
let out = Command::new("rustup")
.args(&["toolchain", "list"])
.run_and_get_stdout(verbose)?;
Ok(out.lines().map(|l| l.replace(" (default)", "").trim().to_owned()).collect())
}
pub fn available_targets(toolchain: &str, verbose: bool) -> Result<AvailableTargets> {
let out = Command::new("rustup")
.args(&["target", "list", "--toolchain", toolchain])
.run_and_get_stdout(verbose)?;
let mut default = String::new();
let mut installed = vec![];
let mut not_installed = vec![];
for line in out.lines() {
let target = line.split(' ').next().unwrap().to_string();
if line.contains("(default)") {
assert!(default.is_empty());
default = target;
} else if line.contains("(installed)") {
installed.push(target)
} else {
not_installed.push(target)
}
}
Ok(AvailableTargets { default, installed, not_installed })
}
pub fn install_toolchain(toolchain: &str, verbose: bool) -> Result<()> {
Command::new("rustup")
.args(&["toolchain", "add", toolchain])
.run(verbose)
.chain_err(|| format!("couldn't install toolchain `{}`", toolchain))
}
pub fn install(target: &Target, toolchain: &str, verbose: bool) -> Result<()> {
let target = target.triple();
Command::new("rustup")
.args(&["target", "add", target, "--toolchain", toolchain])
.run(verbose)
.chain_err(|| format!("couldn't install `std` for {}", target))
}
pub fn install_component(component: &str, toolchain: &str, verbose: bool) -> Result<()> {
Command::new("rustup")
.args(&["component", "add", component, "--toolchain", toolchain])
.run(verbose)
.chain_err(|| format!("couldn't install the `{}` component", component))
}
pub fn component_is_installed(component: &str, toolchain: &str, verbose: bool) -> Result<bool> {
Ok(Command::new("rustup")
.args(&["component", "list", "--toolchain", toolchain])
.run_and_get_stdout(verbose)?
.lines()
.any(|l| l.starts_with(component) && l.contains("installed")))
}