forked from rust-lang/rustup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.rs
More file actions
199 lines (182 loc) · 6.25 KB
/
install.rs
File metadata and controls
199 lines (182 loc) · 6.25 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
//! Installation and upgrade of both distribution-managed and local
//! toolchains
use std::path::{Path, PathBuf};
use anyhow::Result;
use crate::{
config::Cfg,
dist::{dist, download::DownloadCfg, prefix::InstallPrefix, Notification},
errors::RustupError,
notifications::Notification as RootNotification,
toolchain::{
names::{CustomToolchainName, LocalToolchainName},
toolchain::Toolchain,
},
utils::utils,
};
#[derive(Clone, Debug)]
pub(crate) enum UpdateStatus {
Installed,
Updated(String), // Stores the version of rustc *before* the update
Unchanged,
}
#[derive(Clone)]
pub(crate) enum InstallMethod<'a> {
Copy {
src: &'a Path,
dest: &'a CustomToolchainName,
cfg: &'a Cfg,
},
Link {
src: &'a Path,
dest: &'a CustomToolchainName,
cfg: &'a Cfg,
},
Dist {
cfg: &'a Cfg,
desc: &'a dist::ToolchainDesc,
profile: dist::Profile,
update_hash: Option<&'a Path>,
dl_cfg: DownloadCfg<'a>,
/// --force bool is whether to force an update/install
force: bool,
/// --allow-downgrade
allow_downgrade: bool,
/// toolchain already exists
exists: bool,
/// currently installed date and version
old_date_version: Option<(String, String)>,
/// Extra components to install from dist
components: &'a [&'a str],
/// Extra targets to install from dist
targets: &'a [&'a str],
},
}
impl<'a> InstallMethod<'a> {
// Install a toolchain
#[cfg_attr(feature = "otel", tracing::instrument(err, skip_all))]
pub(crate) fn install(&self) -> Result<UpdateStatus> {
let nh = self.cfg().notify_handler.clone();
match self {
InstallMethod::Copy { .. }
| InstallMethod::Link { .. }
| InstallMethod::Dist {
old_date_version: None,
..
} => (nh)(RootNotification::InstallingToolchain(&self.dest_basename())),
_ => (nh)(RootNotification::UpdatingToolchain(&self.dest_basename())),
}
(self.cfg().notify_handler)(RootNotification::ToolchainDirectory(
&self.dest_path(),
&self.dest_basename(),
));
let updated = self.run(&self.dest_path(), &|n| {
(self.cfg().notify_handler)(n.into())
})?;
let status = match updated {
false => {
(nh)(RootNotification::UpdateHashMatches);
UpdateStatus::Unchanged
}
true => {
(nh)(RootNotification::InstalledToolchain(&self.dest_basename()));
match self {
InstallMethod::Dist {
old_date_version: Some((_, v)),
..
} => UpdateStatus::Updated(v.clone()),
InstallMethod::Copy { .. }
| InstallMethod::Link { .. }
| InstallMethod::Dist { .. } => UpdateStatus::Installed,
}
}
};
// Final check, to ensure we're installed
match Toolchain::exists(self.cfg(), &self.local_name())? {
true => Ok(status),
false => Err(RustupError::ToolchainNotInstallable(self.dest_basename()).into()),
}
}
fn run(&self, path: &Path, notify_handler: &dyn Fn(Notification<'_>)) -> Result<bool> {
if path.exists() {
// Don't uninstall first for Dist method
match self {
InstallMethod::Dist { .. } => {}
_ => {
uninstall(path, notify_handler)?;
}
}
}
match self {
InstallMethod::Copy { src, .. } => {
utils::copy_dir(src, path, notify_handler)?;
Ok(true)
}
InstallMethod::Link { src, .. } => {
utils::symlink_dir(src, path, notify_handler)?;
Ok(true)
}
InstallMethod::Dist {
desc,
profile,
update_hash,
dl_cfg,
force: force_update,
allow_downgrade,
exists,
old_date_version,
components,
targets,
..
} => {
let prefix = &InstallPrefix::from(path.to_owned());
let maybe_new_hash = dist::update_from_dist(
*dl_cfg,
update_hash.as_deref(),
desc,
if *exists { None } else { Some(*profile) },
prefix,
*force_update,
*allow_downgrade,
old_date_version.as_ref().map(|dv| dv.0.as_str()),
components,
targets,
)?;
if let Some(hash) = maybe_new_hash {
if let Some(hash_file) = update_hash {
utils::write_file("update hash", hash_file, &hash)?;
}
Ok(true)
} else {
Ok(false)
}
}
}
}
fn cfg(&self) -> &Cfg {
match self {
InstallMethod::Copy { cfg, .. } => cfg,
InstallMethod::Link { cfg, .. } => cfg,
InstallMethod::Dist { cfg, .. } => cfg,
}
}
fn local_name(&self) -> LocalToolchainName {
match self {
InstallMethod::Copy { dest, .. } => (*dest).into(),
InstallMethod::Link { dest, .. } => (*dest).into(),
InstallMethod::Dist { desc, .. } => (*desc).into(),
}
}
fn dest_basename(&self) -> String {
self.local_name().to_string()
}
fn dest_path(&self) -> PathBuf {
match self {
InstallMethod::Copy { cfg, dest, .. } => cfg.toolchain_path(&(*dest).into()),
InstallMethod::Link { cfg, dest, .. } => cfg.toolchain_path(&(*dest).into()),
InstallMethod::Dist { cfg, desc, .. } => cfg.toolchain_path(&(*desc).into()),
}
}
}
pub(crate) fn uninstall(path: &Path, notify_handler: &dyn Fn(Notification<'_>)) -> Result<()> {
utils::remove_dir("install", path, notify_handler)
}