2017-09-18 10:47:33 +00:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2018-09-15 07:21:58 +00:00
|
|
|
// FIXME: switch to something more ergonomic here, once available.
|
2019-01-31 01:15:29 +00:00
|
|
|
// (Currently there is no way to opt into sysroot crates without `extern crate`.)
|
2018-09-15 07:21:58 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
|
|
|
extern crate rustc_driver;
|
|
|
|
#[allow(unused_extern_crates)]
|
2019-02-01 22:28:14 +00:00
|
|
|
extern crate rustc_interface;
|
2019-03-10 11:00:17 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
|
|
|
extern crate rustc_plugin;
|
2018-09-15 07:21:58 +00:00
|
|
|
|
2019-02-01 22:28:14 +00:00
|
|
|
use rustc_interface::interface;
|
2018-09-06 05:01:56 +00:00
|
|
|
use std::path::Path;
|
2018-12-14 09:15:56 +00:00
|
|
|
use std::process::{exit, Command};
|
2017-09-18 10:47:33 +00:00
|
|
|
|
|
|
|
fn show_version() {
|
2018-04-05 02:15:21 +00:00
|
|
|
println!(env!("CARGO_PKG_VERSION"));
|
2017-09-18 10:47:33 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 18:56:09 +00:00
|
|
|
/// If a command-line option matches `find_arg`, then apply the predicate `pred` on its value. If
|
|
|
|
/// true, then return it. The parameter is assumed to be either `--arg=value` or `--arg value`.
|
|
|
|
fn arg_value<'a>(
|
|
|
|
args: impl IntoIterator<Item = &'a String>,
|
|
|
|
find_arg: &str,
|
|
|
|
pred: impl Fn(&str) -> bool,
|
|
|
|
) -> Option<&'a str> {
|
|
|
|
let mut args = args.into_iter().map(String::as_str);
|
|
|
|
|
|
|
|
while let Some(arg) = args.next() {
|
|
|
|
let arg: Vec<_> = arg.splitn(2, '=').collect();
|
|
|
|
if arg.get(0) != Some(&find_arg) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let value = arg.get(1).cloned().or_else(|| args.next());
|
|
|
|
if value.as_ref().map_or(false, |p| pred(p)) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_arg_value() {
|
|
|
|
let args: Vec<_> = ["--bar=bar", "--foobar", "123", "--foo"]
|
|
|
|
.iter()
|
2019-02-10 12:35:44 +00:00
|
|
|
.map(std::string::ToString::to_string)
|
2019-01-15 18:56:09 +00:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
assert_eq!(arg_value(None, "--foobar", |_| true), None);
|
|
|
|
assert_eq!(arg_value(&args, "--bar", |_| false), None);
|
|
|
|
assert_eq!(arg_value(&args, "--bar", |_| true), Some("bar"));
|
|
|
|
assert_eq!(arg_value(&args, "--bar", |p| p == "bar"), Some("bar"));
|
|
|
|
assert_eq!(arg_value(&args, "--bar", |p| p == "foo"), None);
|
|
|
|
assert_eq!(arg_value(&args, "--foobar", |p| p == "foo"), None);
|
|
|
|
assert_eq!(arg_value(&args, "--foobar", |p| p == "123"), Some("123"));
|
|
|
|
assert_eq!(arg_value(&args, "--foo", |_| true), None);
|
|
|
|
}
|
|
|
|
|
2019-01-13 15:19:02 +00:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-02-01 22:28:14 +00:00
|
|
|
|
|
|
|
struct ClippyCallbacks;
|
|
|
|
|
|
|
|
impl rustc_driver::Callbacks for ClippyCallbacks {
|
|
|
|
fn after_parsing(&mut self, compiler: &interface::Compiler) -> bool {
|
|
|
|
let sess = compiler.session();
|
|
|
|
let mut registry = rustc_plugin::registry::Registry::new(
|
|
|
|
sess,
|
2019-03-10 11:00:17 +00:00
|
|
|
compiler
|
|
|
|
.parse()
|
|
|
|
.expect(
|
|
|
|
"at this compilation stage \
|
|
|
|
the crate must be parsed",
|
|
|
|
)
|
|
|
|
.peek()
|
|
|
|
.span,
|
2019-02-01 22:28:14 +00:00
|
|
|
);
|
|
|
|
registry.args_hidden = Some(Vec::new());
|
|
|
|
|
|
|
|
let conf = clippy_lints::read_conf(®istry);
|
|
|
|
clippy_lints::register_plugins(&mut registry, &conf);
|
|
|
|
|
|
|
|
let rustc_plugin::registry::Registry {
|
|
|
|
early_lint_passes,
|
|
|
|
late_lint_passes,
|
|
|
|
lint_groups,
|
|
|
|
llvm_passes,
|
|
|
|
attributes,
|
|
|
|
..
|
|
|
|
} = registry;
|
|
|
|
let mut ls = sess.lint_store.borrow_mut();
|
|
|
|
for pass in early_lint_passes {
|
|
|
|
ls.register_early_pass(Some(sess), true, false, pass);
|
|
|
|
}
|
|
|
|
for pass in late_lint_passes {
|
2019-03-30 14:58:14 +00:00
|
|
|
ls.register_late_pass(Some(sess), true, false, false, pass);
|
2019-02-01 22:28:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (name, (to, deprecated_name)) in lint_groups {
|
|
|
|
ls.register_group(Some(sess), true, name, deprecated_name, to);
|
|
|
|
}
|
|
|
|
clippy_lints::register_pre_expansion_lints(sess, &mut ls, &conf);
|
|
|
|
clippy_lints::register_renamed(&mut ls);
|
|
|
|
|
|
|
|
sess.plugin_llvm_passes.borrow_mut().extend(llvm_passes);
|
|
|
|
sess.plugin_attributes.borrow_mut().extend(attributes);
|
|
|
|
|
|
|
|
// Continue execution
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-18 10:47:33 +00:00
|
|
|
pub fn main() {
|
2018-10-03 18:41:02 +00:00
|
|
|
rustc_driver::init_rustc_env_logger();
|
2018-11-27 20:12:13 +00:00
|
|
|
exit(
|
2019-02-01 22:28:14 +00:00
|
|
|
rustc_driver::report_ices_to_stderr_if_any(move || {
|
2018-11-27 20:12:13 +00:00
|
|
|
use std::env;
|
|
|
|
|
|
|
|
if std::env::args().any(|a| a == "--version" || a == "-V") {
|
|
|
|
show_version();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2019-01-15 19:39:23 +00:00
|
|
|
let mut orig_args: Vec<String> = env::args().collect();
|
|
|
|
|
|
|
|
// Get the sysroot, looking from most specific to this invocation to the least:
|
|
|
|
// - command line
|
|
|
|
// - runtime environment
|
|
|
|
// - SYSROOT
|
|
|
|
// - RUSTUP_HOME, MULTIRUST_HOME, RUSTUP_TOOLCHAIN, MULTIRUST_TOOLCHAIN
|
|
|
|
// - sysroot from rustc in the path
|
|
|
|
// - compile-time environment
|
|
|
|
let sys_root_arg = arg_value(&orig_args, "--sysroot", |_| true);
|
|
|
|
let have_sys_root_arg = sys_root_arg.is_some();
|
|
|
|
let sys_root = sys_root_arg
|
2019-02-10 12:35:44 +00:00
|
|
|
.map(std::string::ToString::to_string)
|
2018-12-14 09:15:56 +00:00
|
|
|
.or_else(|| std::env::var("SYSROOT").ok())
|
|
|
|
.or_else(|| {
|
|
|
|
let home = option_env!("RUSTUP_HOME").or(option_env!("MULTIRUST_HOME"));
|
|
|
|
let toolchain = option_env!("RUSTUP_TOOLCHAIN").or(option_env!("MULTIRUST_TOOLCHAIN"));
|
|
|
|
home.and_then(|home| toolchain.map(|toolchain| format!("{}/toolchains/{}", home, toolchain)))
|
|
|
|
})
|
|
|
|
.or_else(|| {
|
|
|
|
Command::new("rustc")
|
|
|
|
.arg("--print")
|
|
|
|
.arg("sysroot")
|
|
|
|
.output()
|
|
|
|
.ok()
|
|
|
|
.and_then(|out| String::from_utf8(out.stdout).ok())
|
|
|
|
.map(|s| s.trim().to_owned())
|
|
|
|
})
|
2019-01-15 19:39:23 +00:00
|
|
|
.or_else(|| option_env!("SYSROOT").map(String::from))
|
2018-12-14 09:15:56 +00:00
|
|
|
.expect("need to specify SYSROOT env var during clippy compilation, or use rustup or multirust");
|
|
|
|
|
2018-11-27 20:12:13 +00:00
|
|
|
// Setting RUSTC_WRAPPER causes Cargo to pass 'rustc' as the first argument.
|
|
|
|
// We're invoking the compiler programmatically, so we ignore this/
|
2018-12-14 09:15:56 +00:00
|
|
|
if orig_args.len() <= 1 {
|
2018-11-27 20:12:13 +00:00
|
|
|
std::process::exit(1);
|
|
|
|
}
|
2018-12-14 09:15:56 +00:00
|
|
|
if Path::new(&orig_args[1]).file_stem() == Some("rustc".as_ref()) {
|
2018-11-27 20:12:13 +00:00
|
|
|
// we still want to be able to invoke it normally though
|
2018-12-14 09:15:56 +00:00
|
|
|
orig_args.remove(1);
|
2018-11-27 20:12:13 +00:00
|
|
|
}
|
2018-12-14 09:15:56 +00:00
|
|
|
// this conditional check for the --sysroot flag is there so users can call
|
|
|
|
// `clippy_driver` directly
|
|
|
|
// without having to pass --sysroot or anything
|
2019-01-15 19:39:23 +00:00
|
|
|
let mut args: Vec<String> = if have_sys_root_arg {
|
2018-12-14 09:15:56 +00:00
|
|
|
orig_args.clone()
|
|
|
|
} else {
|
|
|
|
orig_args
|
|
|
|
.clone()
|
|
|
|
.into_iter()
|
|
|
|
.chain(Some("--sysroot".to_owned()))
|
|
|
|
.chain(Some(sys_root))
|
|
|
|
.collect()
|
|
|
|
};
|
2018-11-27 20:12:13 +00:00
|
|
|
|
|
|
|
// this check ensures that dependencies are built but not linted and the final
|
|
|
|
// crate is
|
|
|
|
// linted but not built
|
|
|
|
let clippy_enabled = env::var("CLIPPY_TESTS").ok().map_or(false, |val| val == "true")
|
2019-01-15 18:56:09 +00:00
|
|
|
|| arg_value(&orig_args, "--emit", |val| val.split(',').any(|e| e == "metadata")).is_some();
|
2018-11-27 20:12:13 +00:00
|
|
|
|
|
|
|
if clippy_enabled {
|
|
|
|
args.extend_from_slice(&["--cfg".to_owned(), r#"feature="cargo-clippy""#.to_owned()]);
|
|
|
|
if let Ok(extra_args) = env::var("CLIPPY_ARGS") {
|
|
|
|
args.extend(extra_args.split("__CLIPPY_HACKERY__").filter_map(|s| {
|
|
|
|
if s.is_empty() {
|
2018-09-14 10:56:25 +00:00
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(s.to_string())
|
2018-11-27 20:12:13 +00:00
|
|
|
}
|
|
|
|
}));
|
2018-08-26 13:49:08 +00:00
|
|
|
}
|
2018-11-27 20:12:13 +00:00
|
|
|
}
|
2018-06-07 20:03:15 +00:00
|
|
|
|
2019-02-01 22:28:14 +00:00
|
|
|
let mut clippy = ClippyCallbacks;
|
|
|
|
let mut default = rustc_driver::DefaultCallbacks;
|
2019-03-10 11:00:17 +00:00
|
|
|
let callbacks: &mut (dyn rustc_driver::Callbacks + Send) =
|
|
|
|
if clippy_enabled { &mut clippy } else { &mut default };
|
2018-11-27 20:12:13 +00:00
|
|
|
let args = args;
|
2019-02-01 22:28:14 +00:00
|
|
|
rustc_driver::run_compiler(&args, callbacks, None, None)
|
2019-03-10 11:00:17 +00:00
|
|
|
})
|
|
|
|
.and_then(|result| result)
|
|
|
|
.is_err() as i32,
|
2018-11-27 20:12:13 +00:00
|
|
|
)
|
2017-09-18 10:47:33 +00:00
|
|
|
}
|