2019-10-26 09:20:44 -05:00
|
|
|
//! See https://github.com/matklad/cargo-xtask/.
|
|
|
|
//!
|
|
|
|
//! This binary defines various auxiliary build commands, which are not
|
2021-03-12 08:10:33 -06:00
|
|
|
//! expressible with just `cargo`. Notably, it provides tests via `cargo test -p xtask`
|
2019-10-30 15:17:27 -05:00
|
|
|
//! for code generation and `cargo xtask install` for installation of
|
2019-10-26 09:20:44 -05:00
|
|
|
//! rust-analyzer server and client.
|
|
|
|
//!
|
|
|
|
//! This binary is integrated into the `cargo` command line by using an alias in
|
|
|
|
//! `.cargo/config`.
|
2021-03-01 12:12:44 -06:00
|
|
|
mod flags;
|
|
|
|
|
2021-03-01 11:16:23 -06:00
|
|
|
mod codegen;
|
|
|
|
mod ast_src;
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tidy;
|
2019-09-10 06:56:45 -05:00
|
|
|
|
2021-03-01 11:16:23 -06:00
|
|
|
mod install;
|
|
|
|
mod release;
|
|
|
|
mod dist;
|
|
|
|
mod metrics;
|
|
|
|
mod pre_cache;
|
2019-11-20 00:47:14 -06:00
|
|
|
|
2021-03-01 11:16:23 -06:00
|
|
|
use anyhow::{bail, Result};
|
|
|
|
use std::{
|
|
|
|
env,
|
|
|
|
path::{Path, PathBuf},
|
|
|
|
};
|
|
|
|
use walkdir::{DirEntry, WalkDir};
|
|
|
|
use xshell::{cmd, cp, pushd, pushenv};
|
|
|
|
|
2021-03-08 12:39:09 -06:00
|
|
|
use crate::dist::DistCmd;
|
2018-07-30 06:06:22 -05:00
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
2020-10-16 12:46:03 -05:00
|
|
|
let _d = pushd(project_root())?;
|
2020-03-04 10:58:22 -06:00
|
|
|
|
2021-03-01 12:12:44 -06:00
|
|
|
let flags = flags::Xtask::from_env()?;
|
|
|
|
match flags.subcommand {
|
|
|
|
flags::XtaskCmd::Help(_) => {
|
|
|
|
println!("{}", flags::Xtask::HELP);
|
2021-03-21 09:33:18 -05:00
|
|
|
Ok(())
|
2021-03-01 12:12:44 -06:00
|
|
|
}
|
2021-03-05 11:42:41 -06:00
|
|
|
flags::XtaskCmd::Install(cmd) => cmd.run(),
|
2021-03-01 12:12:44 -06:00
|
|
|
flags::XtaskCmd::FuzzTests(_) => run_fuzzer(),
|
|
|
|
flags::XtaskCmd::PreCache(cmd) => cmd.run(),
|
|
|
|
flags::XtaskCmd::Release(cmd) => cmd.run(),
|
|
|
|
flags::XtaskCmd::Promote(cmd) => cmd.run(),
|
|
|
|
flags::XtaskCmd::Dist(flags) => {
|
|
|
|
DistCmd { nightly: flags.nightly, client_version: flags.client }.run()
|
2020-01-07 09:01:41 -06:00
|
|
|
}
|
2021-03-01 12:12:44 -06:00
|
|
|
flags::XtaskCmd::Metrics(cmd) => cmd.run(),
|
|
|
|
flags::XtaskCmd::Bb(cmd) => {
|
2021-02-23 12:02:17 -06:00
|
|
|
{
|
|
|
|
let _d = pushd("./crates/rust-analyzer")?;
|
|
|
|
cmd!("cargo build --release --features jemalloc").run()?;
|
|
|
|
}
|
2021-03-01 12:12:44 -06:00
|
|
|
cp("./target/release/rust-analyzer", format!("./target/rust-analyzer-{}", cmd.suffix))?;
|
2020-01-07 07:42:56 -06:00
|
|
|
Ok(())
|
2019-11-14 02:11:32 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-19 10:56:45 -06:00
|
|
|
|
2021-03-01 11:16:23 -06:00
|
|
|
fn project_root() -> PathBuf {
|
|
|
|
Path::new(
|
|
|
|
&env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| env!("CARGO_MANIFEST_DIR").to_owned()),
|
|
|
|
)
|
|
|
|
.ancestors()
|
|
|
|
.nth(1)
|
|
|
|
.unwrap()
|
|
|
|
.to_path_buf()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rust_files() -> impl Iterator<Item = PathBuf> {
|
|
|
|
rust_files_in(&project_root().join("crates"))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
fn cargo_files() -> impl Iterator<Item = PathBuf> {
|
|
|
|
files_in(&project_root(), "toml")
|
|
|
|
.filter(|path| path.file_name().map(|it| it == "Cargo.toml").unwrap_or(false))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rust_files_in(path: &Path) -> impl Iterator<Item = PathBuf> {
|
|
|
|
files_in(path, "rs")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ensure_rustfmt() -> Result<()> {
|
|
|
|
let out = cmd!("rustfmt --version").read()?;
|
|
|
|
if !out.contains("stable") {
|
|
|
|
bail!(
|
|
|
|
"Failed to run rustfmt from toolchain 'stable'. \
|
|
|
|
Please run `rustup component add rustfmt --toolchain stable` to install it.",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_fuzzer() -> Result<()> {
|
|
|
|
let _d = pushd("./crates/syntax")?;
|
|
|
|
let _e = pushenv("RUSTUP_TOOLCHAIN", "nightly");
|
|
|
|
if cmd!("cargo fuzz --help").read().is_err() {
|
|
|
|
cmd!("cargo install cargo-fuzz").run()?;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Expecting nightly rustc
|
|
|
|
let out = cmd!("rustc --version").read()?;
|
|
|
|
if !out.contains("nightly") {
|
|
|
|
bail!("fuzz tests require nightly rustc")
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd!("cargo fuzz run parser").run()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn date_iso() -> Result<String> {
|
|
|
|
let res = cmd!("date --iso --utc").read()?;
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_release_tag(tag: &str) -> bool {
|
|
|
|
tag.len() == "2020-02-24".len() && tag.starts_with(|c: char| c.is_ascii_digit())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn files_in(path: &Path, ext: &'static str) -> impl Iterator<Item = PathBuf> {
|
|
|
|
let iter = WalkDir::new(path);
|
|
|
|
return iter
|
|
|
|
.into_iter()
|
|
|
|
.filter_entry(|e| !is_hidden(e))
|
|
|
|
.map(|e| e.unwrap())
|
|
|
|
.filter(|e| !e.file_type().is_dir())
|
|
|
|
.map(|e| e.into_path())
|
|
|
|
.filter(move |path| path.extension().map(|it| it == ext).unwrap_or(false));
|
|
|
|
|
|
|
|
fn is_hidden(entry: &DirEntry) -> bool {
|
|
|
|
entry.file_name().to_str().map(|s| s.starts_with('.')).unwrap_or(false)
|
|
|
|
}
|
|
|
|
}
|