-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathgo.rs
More file actions
395 lines (364 loc) · 13.2 KB
/
go.rs
File metadata and controls
395 lines (364 loc) · 13.2 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
use std::path::{Path, PathBuf};
use std::{collections::BTreeMap, sync::Arc};
use crate::Result;
use crate::backend::platform_target::PlatformTarget;
use crate::backend::static_helpers::fetch_checksum_from_file;
use crate::backend::{Backend, VersionInfo};
use crate::cli::args::BackendArg;
use crate::cmd::CmdLineRunner;
use crate::config::{Config, Settings};
use crate::file::{TarFormat, TarOptions};
use crate::http::HTTP;
use crate::install_context::InstallContext;
use crate::lockfile::PlatformInfo;
use crate::toolset::{ToolRequest, ToolVersion, Toolset};
use crate::ui::progress_report::SingleReport;
use crate::{env, file, github, plugins};
use async_trait::async_trait;
use itertools::Itertools;
use tempfile::tempdir_in;
use versions::Versioning;
use xx::regex;
#[derive(Debug)]
pub struct GoPlugin {
ba: Arc<BackendArg>,
}
impl GoPlugin {
pub fn new() -> Self {
Self {
ba: Arc::new(plugins::core::new_backend_arg("go")),
}
}
/// Check if a Go version string is valid (not "1" and not beta/rc)
/// - "1" corresponds to the `go1` tag which has no installable download
/// - beta/rc versions are pre-release and should be excluded by default
fn is_valid_version(v: &str) -> bool {
v != "1" && !regex!(r"(beta|rc)[0-9]*$").is_match(v)
}
// Represents go binary path
fn go_bin(&self, tv: &ToolVersion) -> PathBuf {
tv.install_path().join("bin").join("go")
}
// Represents GOPATH environment variable
fn gopath(&self, tv: &ToolVersion) -> PathBuf {
tv.install_path().join("packages")
}
// Represents GOROOT environment variable
fn goroot(&self, tv: &ToolVersion) -> PathBuf {
let old_path = tv.install_path().join("go");
if old_path.exists() {
return old_path;
}
tv.install_path()
}
// Represents GOBIN environment variable
fn gobin(&self, tv: &ToolVersion) -> PathBuf {
tv.install_path().join("bin")
}
fn install_default_packages(
&self,
tv: &ToolVersion,
pr: &dyn SingleReport,
) -> eyre::Result<()> {
let settings = Settings::get();
let default_packages_file = file::replace_path(&settings.go.default_packages_file);
let body = file::read_to_string(default_packages_file).unwrap_or_default();
let mut packages = body
.lines()
.filter_map(Settings::parse_default_package_line)
.peekable();
if packages.peek().is_some() {
Settings::warn_default_package_file_deprecated(
"go.default_packages_file",
"go package",
);
}
for package in packages {
pr.set_message(format!("install default package: {package}"));
let package = if package.contains('@') {
package.to_string()
} else {
format!("{package}@latest")
};
CmdLineRunner::new(self.go_bin(tv))
.with_pr(pr)
.arg("install")
.arg(package)
.envs(self._exec_env(tv)?)
.envs(tv.install_env())
.execute()?;
}
Ok(())
}
fn test_go(&self, tv: &ToolVersion, pr: &dyn SingleReport) -> eyre::Result<()> {
pr.set_message("go version".into());
CmdLineRunner::new(self.go_bin(tv))
// run the command in the install path to prevent issues with go.mod version mismatch
.current_dir(tv.install_path())
.with_pr(pr)
.arg("version")
.envs(tv.install_env())
.execute()
}
async fn download(&self, tv: &mut ToolVersion, pr: &dyn SingleReport) -> eyre::Result<PathBuf> {
let settings = Settings::get();
let tarball_url = Arc::new(
self.get_tarball_url(tv, &PlatformTarget::from_current())
.await?
.ok_or_else(|| eyre::eyre!("Failed to get go tarball URL"))?,
);
let filename = tarball_url.split('/').next_back().unwrap();
let tarball_path = tv.download_path().join(filename);
let tarball_url_ = tarball_url.clone();
let checksum_handle = tokio::spawn(async move {
let checksum_url = format!("{}.sha256", &tarball_url_);
HTTP.get_text(checksum_url).await
});
pr.set_message(format!("download {filename}"));
HTTP.download_file(&*tarball_url, &tarball_path, Some(pr))
.await?;
if !settings.go.skip_checksum {
let platform_key = self.get_platform_key();
let platform_info = tv.lock_platforms.entry(platform_key).or_default();
platform_info.url = Some(tarball_url.to_string());
if platform_info.checksum.is_none() {
let checksum = checksum_handle.await.unwrap()?;
platform_info.checksum = Some(format!("sha256:{checksum}"));
}
}
Ok(tarball_path)
}
fn install(
&self,
tv: &ToolVersion,
pr: &dyn SingleReport,
tarball_path: &Path,
) -> eyre::Result<()> {
let tarball = tarball_path
.file_name()
.unwrap_or_default()
.to_string_lossy();
pr.set_message(format!("extract {tarball}"));
let tmp_extract_path = tempdir_in(tv.install_path().parent().unwrap())?;
if cfg!(windows) {
file::unzip(tarball_path, tmp_extract_path.path(), &Default::default())?;
} else {
file::untar(
tarball_path,
tmp_extract_path.path(),
&TarOptions {
pr: Some(pr),
..TarOptions::new(TarFormat::TarGz)
},
)?;
}
file::remove_all(tv.install_path())?;
file::rename(tmp_extract_path.path().join("go"), tv.install_path())?;
Ok(())
}
fn verify(&self, tv: &ToolVersion, pr: &dyn SingleReport) -> eyre::Result<()> {
self.test_go(tv, pr)?;
if let Err(err) = self.install_default_packages(tv, pr) {
warn!("failed to install default go packages: {err:#}");
}
let settings = Settings::get();
if settings.go.set_gopath {
warn!("setting go.set_gopath is deprecated");
}
Ok(())
}
fn _exec_env(&self, tv: &ToolVersion) -> eyre::Result<BTreeMap<String, String>> {
let mut map = BTreeMap::new();
let mut set = |k: &str, v: PathBuf| {
map.insert(k.to_string(), v.to_string_lossy().to_string());
};
let settings = Settings::get();
let gobin = settings.go.set_gobin;
let gobin_env_is_set = env::PRISTINE_ENV.contains_key("GOBIN");
if gobin == Some(true) || (gobin.is_none() && !gobin_env_is_set) {
set("GOBIN", self.gobin(tv));
}
if settings.go.set_goroot {
set("GOROOT", self.goroot(tv));
}
if settings.go.set_gopath {
set("GOPATH", self.gopath(tv));
}
Ok(map)
}
}
#[async_trait]
impl Backend for GoPlugin {
fn ba(&self) -> &Arc<BackendArg> {
&self.ba
}
async fn security_info(&self) -> Vec<crate::backend::SecurityFeature> {
use crate::backend::SecurityFeature;
vec![SecurityFeature::Checksum {
algorithm: Some("sha256".to_string()),
}]
}
async fn _list_remote_versions(&self, _config: &Arc<Config>) -> eyre::Result<Vec<VersionInfo>> {
// Extract repo name (e.g., "golang/go") from the configured URL
// The go.repo setting is like "https://github.com/golang/go"
let settings = Settings::get();
let repo = settings
.go
.repo
.trim_start_matches("https://")
.trim_start_matches("http://")
.trim_start_matches("github.com/")
.trim_end_matches(".git")
.trim_end_matches('/');
// Go uses tags, not releases. When MISE_LIST_ALL_VERSIONS is set,
// we fetch tags with dates (slower). Otherwise, use fast method without dates.
let versions: Vec<VersionInfo> = if *env::MISE_LIST_ALL_VERSIONS {
// Slow path: fetch tags with commit dates for versions host
github::list_tags_with_dates(repo)
.await?
.into_iter()
.filter_map(|t| t.name.strip_prefix("go").map(|v| (v.to_string(), t.date)))
.filter(|(v, _)| Self::is_valid_version(v))
.unique_by(|(v, _)| v.clone())
.sorted_by_cached_key(|(v, _)| (Versioning::new(v), v.to_string()))
.map(|(version, created_at)| VersionInfo {
version,
created_at,
..Default::default()
})
.collect()
} else {
// Fast path: use git ls-remote to get all go tags efficiently
// We can't use github::list_tags here because golang/go has 500+ tags
// and the "go1.x" version tags aren't on the first page of API results
let go_repo = Settings::get().go.repo.clone();
plugins::core::run_fetch_task_with_timeout_async(async move || {
let output = crate::cmd::cmd_read_async_inherited_env(
"git",
&["ls-remote", "--tags", "--refs", &go_repo, "go*"],
std::iter::empty::<(&str, &std::ffi::OsStr)>(),
)
.await?;
let versions: Vec<VersionInfo> = output
.lines()
.filter_map(|line| line.split("/go").last())
.filter(|s| !s.is_empty())
.filter(|s| Self::is_valid_version(s))
.map(|s| s.to_string())
.unique()
.sorted_by_cached_key(|v| (Versioning::new(v), v.to_string()))
.map(|version| VersionInfo {
version,
..Default::default()
})
.collect();
Ok(versions)
})
.await?
};
Ok(versions)
}
async fn _idiomatic_filenames(&self) -> eyre::Result<Vec<String>> {
Ok(vec![".go-version".into()])
}
async fn install_version_(
&self,
ctx: &InstallContext,
mut tv: ToolVersion,
) -> Result<ToolVersion> {
let tarball_path = self.download(&mut tv, ctx.pr.as_ref()).await?;
ctx.pr.next_operation();
self.verify_checksum(ctx, &mut tv, &tarball_path)?;
ctx.pr.next_operation();
self.install(&tv, ctx.pr.as_ref(), &tarball_path)?;
self.verify(&tv, ctx.pr.as_ref())?;
Ok(tv)
}
async fn uninstall_version_impl(
&self,
_config: &Arc<Config>,
_pr: &dyn SingleReport,
tv: &ToolVersion,
) -> eyre::Result<()> {
let gopath = self.gopath(tv);
if gopath.exists() {
cmd!("chmod", "-R", "u+wx", gopath).run()?;
}
Ok(())
}
async fn list_bin_paths(
&self,
_config: &Arc<Config>,
tv: &ToolVersion,
) -> eyre::Result<Vec<PathBuf>> {
if let ToolRequest::System { .. } = tv.request {
return Ok(vec![]);
}
// goroot/bin must always be included, irrespective of MISE_GO_SET_GOROOT
Ok(vec![self.gobin(tv)])
}
async fn exec_env(
&self,
_config: &Arc<Config>,
_ts: &Toolset,
tv: &ToolVersion,
) -> eyre::Result<BTreeMap<String, String>> {
self._exec_env(tv)
}
async fn get_tarball_url(
&self,
tv: &ToolVersion,
target: &PlatformTarget,
) -> Result<Option<String>> {
let settings = Settings::get();
let platform = match target.os_name() {
"macos" => "darwin",
"linux" => "linux",
"windows" => "windows",
_ => "linux",
};
let arch = match target.arch_name() {
"x64" => "amd64",
"arm64" => "arm64",
"arm" => "armv6l",
"riscv64" => "riscv64",
other => other,
};
let ext = if target.os_name() == "windows" {
"zip"
} else {
"tar.gz"
};
Ok(Some(format!(
"{}/go{}.{}-{}.{}",
&settings.go.download_mirror, tv.version, platform, arch, ext
)))
}
async fn resolve_lock_info(
&self,
tv: &ToolVersion,
target: &PlatformTarget,
) -> Result<PlatformInfo> {
let settings = Settings::get();
// Build tarball URL
let url = self
.get_tarball_url(tv, target)
.await?
.ok_or_else(|| eyre::eyre!("Failed to get go tarball URL"))?;
// Go provides .sha256 files alongside each tarball
let checksum = if !settings.go.skip_checksum {
let checksum_url = format!("{}.sha256", &url);
fetch_checksum_from_file(&checksum_url, "sha256").await
} else {
None
};
Ok(PlatformInfo {
url: Some(url),
checksum,
size: None,
url_api: None,
conda_deps: None,
..Default::default()
})
}
}