rust-analyzer/xtask/src/install.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

145 lines
4.6 KiB
Rust
Raw Normal View History

2020-01-07 14:33:51 +00:00
//! Installs rust-analyzer language server and/or editor plugin.
2020-01-07 13:42:56 +00:00
2020-02-14 16:05:56 +00:00
use std::{env, path::PathBuf, str};
2020-01-07 13:42:56 +00:00
use anyhow::{bail, format_err, Context};
2022-03-13 21:20:51 +00:00
use xshell::{cmd, Shell};
2020-01-07 13:42:56 +00:00
2021-03-05 08:51:32 +00:00
use crate::flags;
impl flags::Install {
pub(crate) fn run(self, sh: &Shell) -> anyhow::Result<()> {
2021-03-05 08:51:32 +00:00
if cfg!(target_os = "macos") {
2022-03-13 21:20:51 +00:00
fix_path_for_mac(sh).context("Fix path for mac")?;
2021-03-05 08:51:32 +00:00
}
if let Some(server) = self.server() {
2022-03-13 21:20:51 +00:00
install_server(sh, server).context("install server")?;
2021-03-05 08:51:32 +00:00
}
if let Some(client) = self.client() {
2022-03-13 21:20:51 +00:00
install_client(sh, client).context("install client")?;
2021-03-05 08:51:32 +00:00
}
Ok(())
}
2020-01-07 13:42:56 +00:00
}
#[derive(Clone)]
pub(crate) struct ClientOpt {
pub(crate) code_bin: Option<String>,
}
const VS_CODES: &[&str] = &["code", "code-exploration", "code-insiders", "codium", "code-oss"];
2020-01-07 13:42:56 +00:00
pub(crate) struct ServerOpt {
pub(crate) malloc: Malloc,
pub(crate) dev_rel: bool,
2020-07-14 00:12:49 +00:00
}
pub(crate) enum Malloc {
2020-07-14 00:12:49 +00:00
System,
Mimalloc,
2021-01-18 18:25:55 +00:00
Jemalloc,
2020-01-07 13:42:56 +00:00
}
fn fix_path_for_mac(sh: &Shell) -> anyhow::Result<()> {
2020-01-07 13:42:56 +00:00
let mut vscode_path: Vec<PathBuf> = {
const COMMON_APP_PATH: &str =
r"/Applications/Visual Studio Code.app/Contents/Resources/app/bin";
const ROOT_DIR: &str = "";
2022-03-13 21:20:51 +00:00
let home_dir = sh.var("HOME").map_err(|err| {
format_err!("Failed getting HOME from environment with error: {}.", err)
})?;
2020-01-07 13:42:56 +00:00
[ROOT_DIR, &home_dir]
.into_iter()
.map(|dir| dir.to_owned() + COMMON_APP_PATH)
2020-01-07 13:42:56 +00:00
.map(PathBuf::from)
.filter(|path| path.exists())
.collect()
};
if !vscode_path.is_empty() {
2022-03-13 21:20:51 +00:00
let vars = sh.var_os("PATH").context("Could not get PATH variable from env.")?;
2020-01-07 13:42:56 +00:00
let mut paths = env::split_paths(&vars).collect::<Vec<_>>();
paths.append(&mut vscode_path);
let new_paths = env::join_paths(paths).context("build env PATH")?;
sh.set_var("PATH", new_paths);
2020-01-07 13:42:56 +00:00
}
Ok(())
}
fn install_client(sh: &Shell, client_opt: ClientOpt) -> anyhow::Result<()> {
2022-03-13 21:20:51 +00:00
let _dir = sh.push_dir("./editors/code");
2020-01-07 13:42:56 +00:00
// Package extension.
if cfg!(unix) {
2022-03-13 21:20:51 +00:00
cmd!(sh, "npm --version").run().context("`npm` is required to build the VS Code plugin")?;
cmd!(sh, "npm ci").run()?;
2020-01-07 13:42:56 +00:00
2022-03-13 21:20:51 +00:00
cmd!(sh, "npm run package --scripts-prepend-node-path").run()?;
2020-02-14 14:59:19 +00:00
} else {
2022-03-13 21:20:51 +00:00
cmd!(sh, "cmd.exe /c npm --version")
2020-10-16 17:46:03 +00:00
.run()
2020-02-14 14:59:19 +00:00
.context("`npm` is required to build the VS Code plugin")?;
2022-03-13 21:20:51 +00:00
cmd!(sh, "cmd.exe /c npm ci").run()?;
2020-02-14 14:59:19 +00:00
2022-03-13 21:20:51 +00:00
cmd!(sh, "cmd.exe /c npm run package").run()?;
};
// Find the appropriate VS Code binary.
let lifetime_extender;
let candidates: &[&str] = match client_opt.code_bin.as_deref() {
Some(it) => {
lifetime_extender = [it];
&lifetime_extender[..]
}
None => VS_CODES,
};
let code = candidates
.iter()
.copied()
.find(|&bin| {
if cfg!(unix) {
2022-03-13 21:20:51 +00:00
cmd!(sh, "{bin} --version").read().is_ok()
} else {
2022-03-13 21:20:51 +00:00
cmd!(sh, "cmd.exe /c {bin}.cmd --version").read().is_ok()
}
})
.ok_or_else(|| {
format_err!("Can't execute `{} --version`. Perhaps it is not in $PATH?", candidates[0])
})?;
2020-02-14 14:59:19 +00:00
// Install & verify.
let installed_extensions = if cfg!(unix) {
2022-03-13 21:20:51 +00:00
cmd!(sh, "{code} --install-extension rust-analyzer.vsix --force").run()?;
cmd!(sh, "{code} --list-extensions").read()?
} else {
2022-03-13 21:20:51 +00:00
cmd!(sh, "cmd.exe /c {code}.cmd --install-extension rust-analyzer.vsix --force").run()?;
cmd!(sh, "cmd.exe /c {code}.cmd --list-extensions").read()?
2020-02-18 13:32:19 +00:00
};
2020-01-07 13:42:56 +00:00
if !installed_extensions.contains("rust-analyzer") {
2020-02-14 14:06:10 +00:00
bail!(
2020-03-01 13:07:16 +00:00
"Could not install the Visual Studio Code extension. \
Please make sure you have at least NodeJS 12.x together with the latest version of VS Code installed and try again. \
2020-03-01 13:07:16 +00:00
Note that installing via xtask install does not work for VS Code Remote, instead youll need to install the .vsix manually."
2020-01-07 13:42:56 +00:00
);
}
Ok(())
}
fn install_server(sh: &Shell, opts: ServerOpt) -> anyhow::Result<()> {
2020-10-16 17:46:03 +00:00
let features = match opts.malloc {
Malloc::System => &[][..],
Malloc::Mimalloc => &["--features", "mimalloc"],
2021-01-18 18:25:55 +00:00
Malloc::Jemalloc => &["--features", "jemalloc"],
2020-07-14 00:12:49 +00:00
};
let profile = if opts.dev_rel { "dev-rel" } else { "release" };
2020-10-16 17:46:03 +00:00
let cmd = cmd!(sh, "cargo install --path crates/rust-analyzer --profile={profile} --locked --force --features force-always-assert {features...}");
2021-10-23 12:07:11 +00:00
cmd.run()?;
2020-10-16 17:46:03 +00:00
Ok(())
2020-01-07 13:42:56 +00:00
}