rust-analyzer/xtask/src/main.rs

158 lines
4.5 KiB
Rust
Raw Normal View History

2019-10-26 14:20:44 +00:00
//! See https://github.com/matklad/cargo-xtask/.
//!
//! This binary defines various auxiliary build commands, which are not
//! expressible with just `cargo`. Notably, it provides `cargo xtask codegen`
2019-10-30 20:17:27 +00:00
//! for code generation and `cargo xtask install` for installation of
2019-10-26 14:20:44 +00:00
//! rust-analyzer server and client.
//!
//! This binary is integrated into the `cargo` command line by using an alias in
//! `.cargo/config`.
2020-01-07 13:42:56 +00:00
use std::env;
2019-11-20 06:47:14 +00:00
2020-08-18 17:31:06 +00:00
use codegen::CodegenCmd;
use pico_args::Arguments;
2021-01-11 18:39:16 +00:00
use xshell::{cmd, cp, pushd};
2019-10-17 16:36:55 +00:00
use xtask::{
2019-10-23 15:13:40 +00:00
codegen::{self, Mode},
2020-07-24 13:59:01 +00:00
dist::DistCmd,
install::{InstallCmd, Malloc, ServerOpt},
2020-07-24 22:16:21 +00:00
metrics::MetricsCmd,
pre_cache::PreCacheCmd,
2020-06-08 11:58:54 +00:00
pre_commit, project_root,
2020-07-07 16:12:22 +00:00
release::{PromoteCmd, ReleaseCmd},
run_clippy, run_fuzzer, run_rustfmt, Result,
2018-12-31 13:14:06 +00:00
};
2018-07-30 11:06:22 +00:00
fn main() -> Result<()> {
2019-11-20 06:47:14 +00:00
if env::args().next().map(|it| it.contains("pre-commit")) == Some(true) {
2020-01-07 13:42:56 +00:00
return pre_commit::run_hook();
}
2020-10-16 17:46:03 +00:00
let _d = pushd(project_root())?;
2020-01-08 10:27:31 +00:00
let mut args = Arguments::from_env();
let subcommand = args.subcommand()?.unwrap_or_default();
2020-01-07 13:42:56 +00:00
match subcommand.as_str() {
2019-10-17 16:36:55 +00:00
"install" => {
2020-01-07 13:42:56 +00:00
if args.contains(["-h", "--help"]) {
eprintln!(
"\
cargo xtask install
Install rust-analyzer server or editor plugin.
USAGE:
cargo xtask install [FLAGS]
FLAGS:
--client[=CLIENT] Install only VS Code plugin.
CLIENT is one of 'code', 'code-exploration', 'code-insiders', 'codium', or 'code-oss'
--server Install only the language server
--mimalloc Use mimalloc for server
-h, --help Prints help information
2020-01-07 13:42:56 +00:00
"
);
2019-09-10 15:17:11 +00:00
return Ok(());
}
2020-01-07 13:42:56 +00:00
let server = args.contains("--server");
let client_code = args.contains("--client");
2019-09-10 15:17:11 +00:00
if server && client_code {
2020-01-07 13:42:56 +00:00
eprintln!(
"error: The argument `--server` cannot be used with `--client`\n\n\
2020-01-07 13:42:56 +00:00
For more information try --help"
);
return Ok(());
}
2020-01-07 13:42:56 +00:00
let malloc =
if args.contains("--mimalloc") { Malloc::Mimalloc } else { Malloc::System };
2020-01-07 13:42:56 +00:00
let client_opt = args.opt_value_from_str("--client")?;
2020-01-07 13:42:56 +00:00
args.finish()?;
InstallCmd {
client: if server { None } else { Some(client_opt.unwrap_or_default()) },
2020-07-14 00:12:49 +00:00
server: if client_code { None } else { Some(ServerOpt { malloc }) },
2020-01-07 13:42:56 +00:00
}
.run()
}
2019-10-17 16:36:55 +00:00
"codegen" => {
2020-08-18 17:31:06 +00:00
let features = args.contains("--features");
2020-01-07 13:42:56 +00:00
args.finish()?;
2020-08-18 17:31:06 +00:00
CodegenCmd { features }.run()
}
2020-01-07 13:42:56 +00:00
"format" => {
args.finish()?;
run_rustfmt(Mode::Overwrite)
}
2020-01-07 13:42:56 +00:00
"install-pre-commit-hook" => {
args.finish()?;
pre_commit::install_hook()
2019-09-18 11:24:20 +00:00
}
2020-01-07 13:42:56 +00:00
"lint" => {
args.finish()?;
run_clippy()
}
"fuzz-tests" => {
args.finish()?;
run_fuzzer()
}
"pre-cache" => {
args.finish()?;
PreCacheCmd.run()
}
2020-02-10 14:32:03 +00:00
"release" => {
2020-02-14 17:33:30 +00:00
let dry_run = args.contains("--dry-run");
2020-02-10 14:32:03 +00:00
args.finish()?;
2020-06-08 12:00:30 +00:00
ReleaseCmd { dry_run }.run()
2020-02-10 14:32:03 +00:00
}
2020-07-07 16:12:22 +00:00
"promote" => {
let dry_run = args.contains("--dry-run");
args.finish()?;
PromoteCmd { dry_run }.run()
}
"dist" => {
2020-04-08 09:47:40 +00:00
let nightly = args.contains("--nightly");
let client_version: Option<String> = args.opt_value_from_str("--client")?;
args.finish()?;
2020-07-24 13:59:01 +00:00
DistCmd { nightly, client_version }.run()
}
2020-07-24 22:16:21 +00:00
"metrics" => {
let dry_run = args.contains("--dry-run");
args.finish()?;
MetricsCmd { dry_run }.run()
}
2021-01-11 18:39:16 +00:00
"bb" => {
let suffix: String = args.free_from_str()?.unwrap();
args.finish()?;
cmd!("cargo build --release").run()?;
cp("./target/release/rust-analyzer", format!("./target/rust-analyzer-{}", suffix))?;
Ok(())
}
2020-01-07 13:42:56 +00:00
_ => {
eprintln!(
"\
cargo xtask
Run custom build command.
USAGE:
cargo xtask <SUBCOMMAND>
SUBCOMMANDS:
format
install-pre-commit-hook
fuzz-tests
codegen
install
lint
2020-07-24 13:59:01 +00:00
dist
2021-01-11 18:39:16 +00:00
promote
bb"
2020-01-07 13:42:56 +00:00
);
Ok(())
}
}
}