2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-09-10 06:56:45 -05:00
|
|
|
mod help;
|
|
|
|
|
|
|
|
use core::fmt::Write;
|
2019-03-05 15:19:36 -06:00
|
|
|
use core::str;
|
2019-09-10 06:56:45 -05:00
|
|
|
use pico_args::Arguments;
|
2019-10-17 11:36:55 -05:00
|
|
|
use std::{env, path::PathBuf};
|
|
|
|
use xtask::{
|
2019-10-23 10:13:40 -05:00
|
|
|
codegen::{self, Mode},
|
|
|
|
install_format_hook, run, run_clippy, run_fuzzer, run_rustfmt, run_with_output, Cmd, Result,
|
2018-12-31 07:14:06 -06:00
|
|
|
};
|
2018-07-30 06:06:22 -05:00
|
|
|
|
2019-10-21 05:40:40 -05:00
|
|
|
// Latest stable, feel free to send a PR if this lags behind.
|
|
|
|
const REQUIRED_RUST_VERSION: u32 = 38;
|
|
|
|
|
2019-07-27 06:35:18 -05:00
|
|
|
struct InstallOpt {
|
|
|
|
client: Option<ClientOpt>,
|
|
|
|
server: Option<ServerOpt>,
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ClientOpt {
|
|
|
|
VsCode,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ServerOpt {
|
|
|
|
jemalloc: bool,
|
|
|
|
}
|
|
|
|
|
2018-07-30 06:06:22 -05:00
|
|
|
fn main() -> Result<()> {
|
2019-09-10 10:17:11 -05:00
|
|
|
let subcommand = match std::env::args_os().nth(1) {
|
|
|
|
None => {
|
|
|
|
eprintln!("{}", help::GLOBAL_HELP);
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
Some(s) => s,
|
|
|
|
};
|
2019-09-10 06:56:45 -05:00
|
|
|
let mut matches = Arguments::from_vec(std::env::args_os().skip(2).collect());
|
|
|
|
let subcommand = &*subcommand.to_string_lossy();
|
|
|
|
match subcommand {
|
2019-10-17 11:36:55 -05:00
|
|
|
"install" => {
|
2019-09-10 06:56:45 -05:00
|
|
|
if matches.contains(["-h", "--help"]) {
|
2019-10-17 11:36:55 -05:00
|
|
|
eprintln!("{}", help::INSTALL_HELP);
|
2019-09-10 10:17:11 -05:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
let server = matches.contains("--server");
|
|
|
|
let client_code = matches.contains("--client-code");
|
|
|
|
if server && client_code {
|
|
|
|
eprintln!("{}", help::INSTALL_RA_CONFLICT);
|
2019-09-10 06:56:45 -05:00
|
|
|
return Ok(());
|
|
|
|
}
|
2019-09-10 10:17:11 -05:00
|
|
|
let jemalloc = matches.contains("--jemalloc");
|
|
|
|
matches.finish().or_else(handle_extra_flags)?;
|
|
|
|
let opts = InstallOpt {
|
|
|
|
client: if server { None } else { Some(ClientOpt::VsCode) },
|
|
|
|
server: if client_code { None } else { Some(ServerOpt { jemalloc: jemalloc }) },
|
|
|
|
};
|
|
|
|
install(opts)?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
|
|
|
"gen-tests" => {
|
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-10-23 10:13:40 -05:00
|
|
|
codegen::generate_parser_tests(Mode::Overwrite)?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
2019-10-17 11:36:55 -05:00
|
|
|
"codegen" => {
|
2019-09-10 06:56:45 -05:00
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-10-23 10:13:40 -05:00
|
|
|
codegen::generate_syntax(Mode::Overwrite)?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
|
|
|
"format" => {
|
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-10-23 10:13:40 -05:00
|
|
|
run_rustfmt(Mode::Overwrite)?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
|
|
|
"format-hook" => {
|
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-09-10 10:17:11 -05:00
|
|
|
install_format_hook()?
|
2019-03-18 12:27:31 -05:00
|
|
|
}
|
2019-09-10 06:56:45 -05:00
|
|
|
"lint" => {
|
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-09-10 10:17:11 -05:00
|
|
|
run_clippy()?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
|
|
|
"fuzz-tests" => {
|
|
|
|
if matches.contains(["-h", "--help"]) {
|
|
|
|
help::print_no_param_subcommand_help(&subcommand);
|
|
|
|
return Ok(());
|
|
|
|
}
|
2019-09-10 10:17:11 -05:00
|
|
|
run_fuzzer()?
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
2019-09-10 10:17:11 -05:00
|
|
|
_ => eprintln!("{}", help::GLOBAL_HELP),
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
2018-08-09 09:43:39 -05:00
|
|
|
Ok(())
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
|
|
|
|
2019-09-10 06:56:45 -05:00
|
|
|
fn handle_extra_flags(e: pico_args::Error) -> Result<()> {
|
|
|
|
if let pico_args::Error::UnusedArgsLeft(flags) = e {
|
|
|
|
let mut invalid_flags = String::new();
|
|
|
|
for flag in flags {
|
2019-09-10 10:17:11 -05:00
|
|
|
write!(&mut invalid_flags, "{}, ", flag)?;
|
2019-09-10 06:56:45 -05:00
|
|
|
}
|
|
|
|
let (invalid_flags, _) = invalid_flags.split_at(invalid_flags.len() - 2);
|
|
|
|
Err(format!("Invalid flags: {}", invalid_flags).into())
|
|
|
|
} else {
|
|
|
|
Err(e.to_string().into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-27 06:35:18 -05:00
|
|
|
fn install(opts: InstallOpt) -> Result<()> {
|
|
|
|
if cfg!(target_os = "macos") {
|
|
|
|
fix_path_for_mac()?
|
2018-09-15 18:02:25 -05:00
|
|
|
}
|
2019-07-27 06:35:18 -05:00
|
|
|
if let Some(server) = opts.server {
|
|
|
|
install_server(server)?;
|
2019-03-05 15:19:36 -06:00
|
|
|
}
|
2019-08-07 05:12:23 -05:00
|
|
|
if let Some(client) = opts.client {
|
|
|
|
install_client(client)?;
|
|
|
|
}
|
2018-09-15 18:12:53 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
2019-03-18 12:27:11 -05:00
|
|
|
|
2019-03-18 14:18:54 -05:00
|
|
|
fn fix_path_for_mac() -> Result<()> {
|
|
|
|
let mut vscode_path: Vec<PathBuf> = {
|
2019-03-18 12:27:11 -05:00
|
|
|
const COMMON_APP_PATH: &str =
|
|
|
|
r"/Applications/Visual Studio Code.app/Contents/Resources/app/bin";
|
|
|
|
const ROOT_DIR: &str = "";
|
|
|
|
let home_dir = match env::var("HOME") {
|
|
|
|
Ok(home) => home,
|
2019-06-15 13:48:50 -05:00
|
|
|
Err(e) => Err(format!("Failed getting HOME from environment with error: {}.", e))?,
|
2019-03-18 12:27:11 -05:00
|
|
|
};
|
|
|
|
|
2019-03-18 14:18:54 -05:00
|
|
|
[ROOT_DIR, &home_dir]
|
|
|
|
.iter()
|
2019-06-03 09:00:51 -05:00
|
|
|
.map(|dir| String::from(*dir) + COMMON_APP_PATH)
|
2019-03-18 14:18:54 -05:00
|
|
|
.map(PathBuf::from)
|
|
|
|
.filter(|path| path.exists())
|
|
|
|
.collect()
|
|
|
|
};
|
2019-03-18 12:27:11 -05:00
|
|
|
|
2019-03-18 14:18:54 -05:00
|
|
|
if !vscode_path.is_empty() {
|
|
|
|
let vars = match env::var_os("PATH") {
|
|
|
|
Some(path) => path,
|
2019-06-15 13:48:50 -05:00
|
|
|
None => Err("Could not get PATH variable from env.")?,
|
2019-03-18 14:18:54 -05:00
|
|
|
};
|
2019-03-18 12:27:11 -05:00
|
|
|
|
2019-03-18 14:18:54 -05:00
|
|
|
let mut paths = env::split_paths(&vars).collect::<Vec<_>>();
|
|
|
|
paths.append(&mut vscode_path);
|
|
|
|
let new_paths = env::join_paths(paths)?;
|
|
|
|
env::set_var("PATH", &new_paths);
|
2019-03-18 12:27:11 -05:00
|
|
|
}
|
2019-03-18 14:18:54 -05:00
|
|
|
|
|
|
|
Ok(())
|
2019-03-18 12:27:11 -05:00
|
|
|
}
|
2019-07-27 06:35:18 -05:00
|
|
|
|
|
|
|
fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
|
|
|
|
Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm.cmd ci", work_dir: "./editors/code" }.run()?;
|
2019-07-27 15:02:03 -05:00
|
|
|
Cmd {
|
|
|
|
unix: r"npm run package",
|
|
|
|
windows: r"cmd.exe /c npm.cmd run package",
|
|
|
|
work_dir: "./editors/code",
|
|
|
|
}
|
|
|
|
.run()?;
|
2019-07-27 06:35:18 -05:00
|
|
|
|
2019-09-21 03:24:41 -05:00
|
|
|
let code_binary = ["code", "code-insiders", "codium"].iter().find(|bin| {
|
2019-09-18 06:24:20 -05:00
|
|
|
Cmd {
|
|
|
|
unix: &format!("{} --version", bin),
|
|
|
|
windows: &format!("cmd.exe /c {}.cmd --version", bin),
|
|
|
|
work_dir: "./editors/code",
|
|
|
|
}
|
|
|
|
.run()
|
|
|
|
.is_ok()
|
|
|
|
});
|
|
|
|
|
|
|
|
let code_binary = match code_binary {
|
|
|
|
Some(it) => it,
|
|
|
|
None => Err("Can't execute `code --version`. Perhaps it is not in $PATH?")?,
|
|
|
|
};
|
2019-07-27 06:35:18 -05:00
|
|
|
|
|
|
|
Cmd {
|
2019-09-18 06:24:20 -05:00
|
|
|
unix: &format!(r"{} --install-extension ./ra-lsp-0.0.1.vsix --force", code_binary),
|
|
|
|
windows: &format!(
|
|
|
|
r"cmd.exe /c {}.cmd --install-extension ./ra-lsp-0.0.1.vsix --force",
|
|
|
|
code_binary
|
|
|
|
),
|
2019-07-27 06:35:18 -05:00
|
|
|
work_dir: "./editors/code",
|
|
|
|
}
|
|
|
|
.run()?;
|
|
|
|
|
|
|
|
let output = Cmd {
|
2019-09-18 06:24:20 -05:00
|
|
|
unix: &format!(r"{} --list-extensions", code_binary),
|
|
|
|
windows: &format!(r"cmd.exe /c {}.cmd --list-extensions", code_binary),
|
2019-07-27 06:35:18 -05:00
|
|
|
work_dir: ".",
|
|
|
|
}
|
|
|
|
.run_with_output()?;
|
|
|
|
|
|
|
|
if !str::from_utf8(&output.stdout)?.contains("ra-lsp") {
|
|
|
|
Err("Could not install the Visual Studio Code extension. \
|
|
|
|
Please make sure you have at least NodeJS 10.x installed and try again.")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn install_server(opts: ServerOpt) -> Result<()> {
|
2019-10-21 05:40:40 -05:00
|
|
|
let mut old_rust = false;
|
|
|
|
if let Ok(output) = run_with_output("cargo --version", ".") {
|
|
|
|
if let Ok(stdout) = String::from_utf8(output.stdout) {
|
|
|
|
if !check_version(&stdout, REQUIRED_RUST_VERSION) {
|
|
|
|
old_rust = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if old_rust {
|
|
|
|
eprintln!(
|
|
|
|
"\nWARNING: at least rust 1.{}.0 is required to compile rust-analyzer\n",
|
|
|
|
REQUIRED_RUST_VERSION
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = if opts.jemalloc {
|
2019-08-20 11:27:33 -05:00
|
|
|
run("cargo install --path crates/ra_lsp_server --locked --force --features jemalloc", ".")
|
2019-07-27 06:35:18 -05:00
|
|
|
} else {
|
2019-08-20 11:27:33 -05:00
|
|
|
run("cargo install --path crates/ra_lsp_server --locked --force", ".")
|
2019-10-21 05:40:40 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if res.is_err() && old_rust {
|
|
|
|
eprintln!(
|
|
|
|
"\nWARNING: at least rust 1.{}.0 is required to compile rust-analyzer\n",
|
|
|
|
REQUIRED_RUST_VERSION
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_version(version_output: &str, min_minor_version: u32) -> bool {
|
|
|
|
// Parse second the number out of
|
|
|
|
// cargo 1.39.0-beta (1c6ec66d5 2019-09-30)
|
|
|
|
let minor: Option<u32> = version_output.split('.').nth(1).and_then(|it| it.parse().ok());
|
|
|
|
match minor {
|
|
|
|
None => true,
|
|
|
|
Some(minor) => minor >= min_minor_version,
|
2019-07-27 06:35:18 -05:00
|
|
|
}
|
|
|
|
}
|