rust-clippy/src/driver.rs

127 lines
4.8 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2017-09-18 10:47:33 +00:00
// error-pattern:yummy
#![feature(box_syntax)]
#![feature(rustc_private)]
2018-10-09 04:40:21 +00:00
#![feature(try_from)]
#![allow(clippy::missing_docs_in_private_items)]
2017-09-18 10:47:33 +00:00
// FIXME: switch to something more ergonomic here, once available.
// (currently there is no way to opt into sysroot crates w/o `extern crate`)
#[allow(unused_extern_crates)]
extern crate rustc_driver;
#[allow(unused_extern_crates)]
extern crate rustc_plugin;
use self::rustc_driver::{driver::CompileController, Compilation};
2018-10-09 04:40:21 +00:00
use std::convert::TryInto;
use std::path::Path;
use std::process::exit;
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
}
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(
rustc_driver::run(move || {
use std::env;
if std::env::args().any(|a| a == "--version" || a == "-V") {
show_version();
exit(0);
}
// Setting RUSTC_WRAPPER causes Cargo to pass 'rustc' as the first argument.
// We're invoking the compiler programmatically, so we ignore this/
let mut args: Vec<String> = env::args().collect();
if args.len() <= 1 {
2018-11-27 20:12:13 +00:00
std::process::exit(1);
}
if Path::new(&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
args.remove(1);
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")
|| args.iter().any(|s| s == "--emit=dep-info,metadata");
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-11-27 20:12:13 +00:00
}
2018-06-07 20:03:15 +00:00
2018-11-27 20:12:13 +00:00
let mut controller = CompileController::basic();
if clippy_enabled {
controller.after_parse.callback = Box::new(move |state| {
let mut registry = rustc_plugin::registry::Registry::new(
state.session,
state
.krate
.as_ref()
.expect(
"at this compilation stage \
the crate must be parsed",
)
.span,
);
registry.args_hidden = Some(Vec::new());
let conf = clippy_lints::read_conf(&registry);
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 sess = &state.session;
let mut ls = sess.lint_store.borrow_mut();
for pass in early_lint_passes {
ls.register_early_pass(Some(sess), true, pass);
}
for pass in late_lint_passes {
ls.register_late_pass(Some(sess), true, pass);
}
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);
sess.plugin_llvm_passes.borrow_mut().extend(llvm_passes);
sess.plugin_attributes.borrow_mut().extend(attributes);
});
}
controller.compilation_done.stop = Compilation::Stop;
let args = args;
rustc_driver::run_compiler(&args, Box::new(controller), None, None)
})
.try_into()
.expect("exit code too large"),
)
2017-09-18 10:47:33 +00:00
}