rust/src/main.rs

222 lines
5.9 KiB
Rust
Raw Normal View History

2019-07-15 05:35:02 +00:00
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
// warn on lints, that are included in `rust-lang/rust`s bootstrap
#![warn(rust_2018_idioms, unused_lifetimes)]
2019-07-15 05:35:02 +00:00
2020-02-21 08:39:38 +00:00
use rustc_tools_util::VersionInfo;
use std::env;
2020-04-15 20:04:04 +00:00
use std::ffi::OsString;
use std::path::PathBuf;
use std::process::{self, Command};
const CARGO_CLIPPY_HELP: &str = r#"Checks a package to catch common mistakes and improve your Rust code.
Usage:
cargo clippy [options] [--] [<opts>...]
Common options:
-h, --help Print this message
-V, --version Print version info and exit
Other options are the same as `cargo check`.
2016-10-25 13:09:56 +00:00
To allow or deny a lint from the command line you can use `cargo clippy --`
with:
-W --warn OPT Set lint warnings
-A --allow OPT Set lint allowed
-D --deny OPT Set lint denied
-F --forbid OPT Set lint forbidden
You can use tool lints to allow or deny lints from your code, eg.:
#[allow(clippy::needless_lifetimes)]
"#;
fn show_help() {
println!("{}", CARGO_CLIPPY_HELP);
}
fn show_version() {
let version_info = rustc_tools_util::get_version_info!();
println!("{}", version_info);
}
pub fn main() {
// Check for version and help flags even when invoked as 'cargo-clippy'
if env::args().any(|a| a == "--help" || a == "-h") {
show_help();
return;
}
if env::args().any(|a| a == "--version" || a == "-V") {
show_version();
return;
}
if let Err(code) = process(env::args().skip(2)) {
process::exit(code);
}
}
struct ClippyCmd {
unstable_options: bool,
2020-04-15 19:31:40 +00:00
cargo_subcommand: &'static str,
args: Vec<String>,
2020-04-15 20:04:04 +00:00
clippy_args: String,
}
2020-04-15 20:04:04 +00:00
impl ClippyCmd {
fn new<I>(mut old_args: I) -> Self
where
I: Iterator<Item = String>,
{
2020-04-15 19:31:40 +00:00
let mut cargo_subcommand = "check";
let mut unstable_options = false;
let mut args = vec![];
for arg in old_args.by_ref() {
match arg.as_str() {
"--fix" => {
2020-04-15 19:31:40 +00:00
cargo_subcommand = "fix";
continue;
},
"--" => break,
// Cover -Zunstable-options and -Z unstable-options
s if s.ends_with("unstable-options") => unstable_options = true,
_ => {},
}
args.push(arg);
}
2020-04-15 19:31:40 +00:00
if cargo_subcommand == "fix" && !unstable_options {
panic!("Usage of `--fix` requires `-Z unstable-options`");
2020-03-23 17:41:19 +00:00
}
// Run the dogfood tests directly on nightly cargo. This is required due
// to a bug in rustup.rs when running cargo on custom toolchains. See issue #3118.
if env::var_os("CLIPPY_DOGFOOD").is_some() && cfg!(windows) {
args.insert(0, "+nightly".to_string());
}
2020-04-15 20:04:04 +00:00
let clippy_args: String = old_args.map(|arg| format!("{}__CLIPPY_HACKERY__", arg)).collect();
ClippyCmd {
unstable_options,
2020-04-15 19:31:40 +00:00
cargo_subcommand,
args,
clippy_args,
}
}
2018-03-28 09:50:17 +00:00
fn path_env(&self) -> &'static str {
if self.unstable_options {
"RUSTC_WORKSPACE_WRAPPER"
2020-03-27 21:05:47 +00:00
} else {
"RUSTC_WRAPPER"
2020-03-27 20:23:06 +00:00
}
2020-03-27 19:47:57 +00:00
}
fn path() -> PathBuf {
let mut path = env::current_exe()
.expect("current executable path invalid")
.with_file_name("clippy-driver");
2020-03-27 19:47:57 +00:00
if cfg!(windows) {
path.set_extension("exe");
}
path
}
fn target_dir() -> Option<(&'static str, OsString)> {
env::var_os("CLIPPY_DOGFOOD")
.map(|_| {
env::var_os("CARGO_MANIFEST_DIR").map_or_else(
|| std::ffi::OsString::from("clippy_dogfood"),
|d| {
std::path::PathBuf::from(d)
.join("target")
.join("dogfood")
.into_os_string()
},
)
})
.map(|p| ("CARGO_TARGET_DIR", p))
2018-01-17 07:52:41 +00:00
}
fn into_std_cmd(self) -> Command {
let mut cmd = Command::new("cargo");
cmd.env(self.path_env(), Self::path())
.envs(ClippyCmd::target_dir())
.env("CLIPPY_ARGS", self.clippy_args)
2020-04-15 19:31:40 +00:00
.arg(self.cargo_subcommand)
.args(&self.args);
cmd
}
}
fn process<I>(old_args: I) -> Result<(), i32>
where
I: Iterator<Item = String>,
{
let cmd = ClippyCmd::new(old_args);
let mut cmd = cmd.into_std_cmd();
let exit_status = cmd
2016-12-20 09:20:41 +00:00
.spawn()
.expect("could not run cargo")
.wait()
.expect("failed to wait for cargo?");
if exit_status.success() {
Ok(())
} else {
2016-06-06 14:43:58 +00:00
Err(exit_status.code().unwrap_or(-1))
}
}
2020-04-15 16:20:41 +00:00
#[cfg(test)]
mod tests {
use super::ClippyCmd;
2020-04-15 16:20:41 +00:00
#[test]
#[should_panic]
fn fix_without_unstable() {
let args = "cargo clippy --fix".split_whitespace().map(ToString::to_string);
let _ = ClippyCmd::new(args);
}
#[test]
fn fix_unstable() {
2020-04-15 20:04:04 +00:00
let args = "cargo clippy --fix -Zunstable-options"
.split_whitespace()
.map(ToString::to_string);
2020-04-15 16:20:41 +00:00
let cmd = ClippyCmd::new(args);
2020-04-15 19:31:40 +00:00
assert_eq!("fix", cmd.cargo_subcommand);
2020-04-15 16:20:41 +00:00
assert_eq!("RUSTC_WORKSPACE_WRAPPER", cmd.path_env());
assert!(cmd.args.iter().any(|arg| arg.ends_with("unstable-options")));
2020-04-15 16:20:41 +00:00
}
#[test]
fn check() {
let args = "cargo clippy".split_whitespace().map(ToString::to_string);
let cmd = ClippyCmd::new(args);
2020-04-15 19:31:40 +00:00
assert_eq!("check", cmd.cargo_subcommand);
2020-04-15 16:20:41 +00:00
assert_eq!("RUSTC_WRAPPER", cmd.path_env());
}
#[test]
fn check_unstable() {
2020-04-15 20:04:04 +00:00
let args = "cargo clippy -Zunstable-options"
.split_whitespace()
.map(ToString::to_string);
2020-04-15 16:20:41 +00:00
let cmd = ClippyCmd::new(args);
2020-04-15 19:31:40 +00:00
assert_eq!("check", cmd.cargo_subcommand);
2020-04-15 16:20:41 +00:00
assert_eq!("RUSTC_WORKSPACE_WRAPPER", cmd.path_env());
}
}