rust-clippy/src/main.rs

138 lines
3.7 KiB
Rust
Raw Normal View History

2019-07-15 05:35:02 +00:00
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
2020-02-21 08:39:38 +00:00
use rustc_tools_util::VersionInfo;
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 std::env::args().any(|a| a == "--help" || a == "-h") {
show_help();
return;
}
if std::env::args().any(|a| a == "--version" || a == "-V") {
show_version();
return;
}
if let Err(code) = process(std::env::args().skip(2)) {
std::process::exit(code);
}
}
2018-03-28 09:50:17 +00:00
fn process<I>(mut old_args: I) -> Result<(), i32>
2017-08-09 07:30:56 +00:00
where
I: Iterator<Item = String>,
{
2018-03-28 09:50:17 +00:00
let mut args = vec!["check".to_owned()];
2020-03-27 19:47:57 +00:00
let mut fix = false;
let mut unstable_options = false;
2018-03-28 09:50:17 +00:00
for arg in old_args.by_ref() {
2020-03-27 20:23:06 +00:00
match arg.as_str() {
2020-03-27 19:47:57 +00:00
"--fix" => {
fix = true;
continue;
2020-03-27 20:26:34 +00:00
},
2020-03-27 19:47:57 +00:00
"--" => break,
// Cover -Zunstable-options and -Z unstable-options
s if s.ends_with("unstable-options") => unstable_options = true,
2020-03-27 20:26:34 +00:00
_ => {},
2020-03-23 17:41:19 +00:00
}
args.push(arg);
}
2018-03-28 09:50:17 +00:00
2020-03-27 20:23:06 +00:00
if fix {
2020-03-27 21:05:47 +00:00
if unstable_options {
2020-03-27 20:23:06 +00:00
args[0] = "fix".to_owned();
2020-03-27 21:05:47 +00:00
} else {
panic!("Usage of `--fix` requires `-Z unstable-options`");
2020-03-27 20:23:06 +00:00
}
2020-03-27 19:47:57 +00:00
}
2020-03-27 20:23:06 +00:00
let path_env = if unstable_options {
2020-03-27 19:47:57 +00:00
"RUSTC_WORKSPACE_WRAPPER"
} else {
"RUSTC_WRAPPER"
};
2018-03-28 09:50:17 +00:00
let clippy_args: String = old_args.map(|arg| format!("{}__CLIPPY_HACKERY__", arg)).collect();
2018-01-17 07:52:41 +00:00
let mut path = std::env::current_exe()
2017-09-18 10:47:33 +00:00
.expect("current executable path invalid")
.with_file_name("clippy-driver");
2018-01-17 07:52:41 +00:00
if cfg!(windows) {
path.set_extension("exe");
}
let target_dir = std::env::var_os("CLIPPY_DOGFOOD")
.map(|_| {
std::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()
},
)
2018-11-27 20:12:13 +00:00
})
.map(|p| ("CARGO_TARGET_DIR", p));
// 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 std::env::var_os("CLIPPY_DOGFOOD").is_some() && cfg!(windows) {
args.insert(0, "+nightly".to_string());
}
let exit_status = std::process::Command::new("cargo")
.args(&args)
2020-03-27 20:23:06 +00:00
.env(path_env, path)
2018-03-28 09:50:17 +00:00
.env("CLIPPY_ARGS", clippy_args)
.envs(target_dir)
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))
}
}