rust-analyzer/xtask/src/lib.rs

258 lines
7.1 KiB
Rust
Raw Normal View History

2020-02-27 10:07:26 +00:00
//! Support library for `cargo xtask` command.
//!
//! See https://github.com/matklad/cargo-xtask/
2020-02-14 14:59:19 +00:00
pub mod not_bash;
2020-01-07 13:42:56 +00:00
pub mod install;
2020-03-04 17:36:16 +00:00
pub mod dist;
2020-01-07 13:42:56 +00:00
pub mod pre_commit;
2020-01-07 14:33:51 +00:00
pub mod codegen;
mod ast_src;
2019-08-18 18:33:31 +00:00
use std::{
2020-02-14 18:03:45 +00:00
env,
io::Write,
2018-10-15 18:54:27 +00:00
path::{Path, PathBuf},
2020-01-07 14:33:09 +00:00
process::{Command, Stdio},
};
2020-03-21 15:04:28 +00:00
use walkdir::{DirEntry, WalkDir};
2020-02-10 14:32:03 +00:00
use crate::{
codegen::Mode,
2020-04-08 09:47:40 +00:00
not_bash::{date_iso, fs2, pushd, rm_rf, run},
2020-02-10 14:32:03 +00:00
};
2019-08-18 18:34:55 +00:00
pub use anyhow::{bail, Context as _, Result};
2020-01-07 14:33:09 +00:00
const RUSTFMT_TOOLCHAIN: &str = "stable";
2018-10-15 18:54:27 +00:00
pub fn project_root() -> PathBuf {
2019-11-01 20:20:44 +00:00
Path::new(
&env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| env!("CARGO_MANIFEST_DIR").to_owned()),
)
.ancestors()
.nth(1)
.unwrap()
.to_path_buf()
2018-10-15 18:54:27 +00:00
}
2020-03-21 15:04:28 +00:00
pub fn rust_files(path: &Path) -> 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(|path| path.extension().map(|it| it == "rs").unwrap_or(false));
fn is_hidden(entry: &DirEntry) -> bool {
entry.file_name().to_str().map(|s| s.starts_with('.')).unwrap_or(false)
}
}
pub fn run_rustfmt(mode: Mode) -> Result<()> {
2020-03-13 11:28:13 +00:00
let _dir = pushd(project_root());
ensure_rustfmt()?;
2018-10-31 20:57:38 +00:00
if Command::new("cargo")
.env("RUSTUP_TOOLCHAIN", RUSTFMT_TOOLCHAIN)
.args(&["fmt", "--"])
.args(if mode == Mode::Verify { &["--check"][..] } else { &[] })
.stderr(Stdio::inherit())
.status()?
.success()
{
Ok(())
} else {
bail!("Rustfmt failed");
}
}
2018-10-31 20:57:38 +00:00
fn reformat(text: impl std::fmt::Display) -> Result<String> {
ensure_rustfmt()?;
let mut rustfmt = Command::new("rustfmt")
.env("RUSTUP_TOOLCHAIN", RUSTFMT_TOOLCHAIN)
.args(&["--config-path"])
.arg(project_root().join("rustfmt.toml"))
2020-04-09 16:03:03 +00:00
.args(&["--config", "fn_single_line=true"])
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()?;
write!(rustfmt.stdin.take().unwrap(), "{}", text)?;
let output = rustfmt.wait_with_output()?;
let stdout = String::from_utf8(output.stdout)?;
2020-02-07 21:35:34 +00:00
let preamble = "Generated file, do not edit by hand, see `xtask/src/codegen`";
Ok(format!("//! {}\n\n{}", preamble, stdout))
}
fn ensure_rustfmt() -> Result<()> {
match Command::new("rustfmt")
.args(&["--version"])
.env("RUSTUP_TOOLCHAIN", RUSTFMT_TOOLCHAIN)
.stdout(Stdio::piped())
.stderr(Stdio::null())
.spawn()
.and_then(|child| child.wait_with_output())
{
Ok(output)
if output.status.success()
&& std::str::from_utf8(&output.stdout)?.contains(RUSTFMT_TOOLCHAIN) =>
{
Ok(())
}
_ => {
bail!(
"Failed to run rustfmt from toolchain '{0}'. \
Please run `rustup component add rustfmt --toolchain {0}` to install it.",
RUSTFMT_TOOLCHAIN,
);
}
}
2018-10-31 20:57:38 +00:00
}
2018-12-09 10:29:13 +00:00
2019-06-03 13:43:06 +00:00
pub fn run_clippy() -> Result<()> {
match Command::new("cargo")
.args(&["clippy", "--version"])
2019-06-03 13:43:06 +00:00
.stderr(Stdio::null())
.stdout(Stdio::null())
.status()
{
Ok(status) if status.success() => (),
_ => bail!(
"Failed run cargo clippy. \
Please run `rustup component add clippy` to install it.",
),
2019-06-03 13:43:06 +00:00
};
let allowed_lints = [
"clippy::collapsible_if",
"clippy::needless_pass_by_value",
"clippy::nonminimal_bool",
"clippy::redundant_pattern_matching",
];
run!("cargo clippy --all-features --all-targets -- -A {}", allowed_lints.join(" -A "))?;
2020-02-14 14:59:19 +00:00
Ok(())
2019-06-03 13:43:06 +00:00
}
2018-12-31 13:14:06 +00:00
pub fn run_fuzzer() -> Result<()> {
2020-02-14 14:59:19 +00:00
let _d = pushd("./crates/ra_syntax");
2020-02-14 18:13:26 +00:00
if run!("cargo fuzz --help").is_err() {
run!("cargo install cargo-fuzz")?;
2018-12-31 13:14:06 +00:00
};
// Expecting nightly rustc
match Command::new("rustc")
.args(&["--version"])
.env("RUSTUP_TOOLCHAIN", "nightly")
.stdout(Stdio::piped())
.stderr(Stdio::null())
.spawn()
.and_then(|child| child.wait_with_output())
{
Ok(output)
if output.status.success()
&& std::str::from_utf8(&output.stdout)?.contains("nightly") => {}
_ => bail!("fuzz tests require nightly rustc"),
}
let status = Command::new("cargo")
.env("RUSTUP_TOOLCHAIN", "nightly")
.args(&["fuzz", "run", "parser"])
.stderr(Stdio::inherit())
.status()?;
if !status.success() {
bail!("{}", status);
}
2020-02-14 14:59:19 +00:00
Ok(())
2018-12-31 13:14:06 +00:00
}
/// Cleans the `./target` dir after the build such that only
/// dependencies are cached on CI.
pub fn run_pre_cache() -> Result<()> {
let slow_tests_cookie = Path::new("./target/.slow_tests_cookie");
if !slow_tests_cookie.exists() {
panic!("slow tests were skipped on CI!")
}
rm_rf(slow_tests_cookie)?;
for entry in Path::new("./target/debug").read_dir()? {
let entry = entry?;
if entry.file_type().map(|it| it.is_file()).ok() == Some(true) {
// Can't delete yourself on windows :-(
if !entry.path().ends_with("xtask.exe") {
rm_rf(&entry.path())?
}
}
}
2020-02-14 18:03:45 +00:00
fs2::remove_file("./target/.rustc_info.json")?;
let to_delete = ["ra_", "heavy_test", "xtask"];
for &dir in ["./target/debug/deps", "target/debug/.fingerprint"].iter() {
for entry in Path::new(dir).read_dir()? {
let entry = entry?;
if to_delete.iter().any(|&it| entry.path().display().to_string().contains(it)) {
// Can't delete yourself on windows :-(
if !entry.path().ends_with("xtask.exe") {
rm_rf(&entry.path())?
}
}
}
}
Ok(())
}
2020-02-14 17:33:30 +00:00
pub fn run_release(dry_run: bool) -> Result<()> {
if !dry_run {
run!("git switch release")?;
run!("git fetch upstream --tags --force")?;
run!("git reset --hard tags/nightly")?;
2020-02-14 17:33:30 +00:00
run!("git push")?;
}
2020-02-10 14:32:03 +00:00
2020-02-14 17:36:42 +00:00
let website_root = project_root().join("../rust-analyzer.github.io");
let changelog_dir = website_root.join("./thisweek/_posts");
2020-02-10 14:32:03 +00:00
2020-04-08 09:47:40 +00:00
let today = date_iso()?;
2020-02-14 14:59:19 +00:00
let commit = run!("git rev-parse HEAD")?;
let changelog_n = fs2::read_dir(changelog_dir.as_path())?.count();
2020-02-10 14:32:03 +00:00
let contents = format!(
"\
= Changelog #{}
:sectanchors:
:page-layout: post
Commit: commit:{}[] +
Release: release:{}[]
== New Features
* pr:[] .
== Fixes
== Internal Improvements
",
changelog_n, commit, today
);
let path = changelog_dir.join(format!("{}-changelog-{}.adoc", today, changelog_n));
fs2::write(&path, &contents)?;
2020-02-10 14:32:03 +00:00
fs2::copy(project_root().join("./docs/user/readme.adoc"), website_root.join("manual.adoc"))?;
2020-02-14 17:36:42 +00:00
2020-03-02 13:54:55 +00:00
let tags = run!("git tag --list"; echo = false)?;
let prev_tag = tags.lines().filter(|line| is_release_tag(line)).last().unwrap();
println!("\n git log {}..HEAD --merges --reverse", prev_tag);
2020-02-10 14:32:03 +00:00
Ok(())
}
2020-03-02 13:54:55 +00:00
fn is_release_tag(tag: &str) -> bool {
tag.len() == "2020-02-24".len() && tag.starts_with(|c: char| c.is_ascii_digit())
}