2020-04-14 04:35:34 -07:00
|
|
|
//! Analyze all modules in a project for diagnostics. Exits with a non-zero status
|
2020-04-13 05:44:35 -07:00
|
|
|
//! code if any errors are found.
|
|
|
|
|
|
2020-06-29 18:07:52 +03:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
2020-04-13 05:44:35 -07:00
|
|
|
use anyhow::anyhow;
|
2020-06-29 18:07:52 +03:00
|
|
|
use rustc_hash::FxHashSet;
|
|
|
|
|
|
2020-08-13 16:25:38 +02:00
|
|
|
use base_db::SourceDatabaseExt;
|
2020-06-11 11:04:09 +02:00
|
|
|
use hir::Crate;
|
2020-08-13 17:42:52 +02:00
|
|
|
use ide::Severity;
|
2020-04-13 05:44:35 -07:00
|
|
|
|
|
|
|
|
use crate::cli::{load_cargo::load_cargo, Result};
|
|
|
|
|
|
2020-04-12 18:25:31 +08:00
|
|
|
pub fn diagnostics(
|
|
|
|
|
path: &Path,
|
|
|
|
|
load_output_dirs: bool,
|
|
|
|
|
with_proc_macro: bool,
|
2020-06-11 11:04:09 +02:00
|
|
|
_all: bool,
|
2020-04-12 18:25:31 +08:00
|
|
|
) -> Result<()> {
|
2020-06-11 11:04:09 +02:00
|
|
|
let (host, _vfs) = load_cargo(path, load_output_dirs, with_proc_macro)?;
|
2020-04-13 05:44:35 -07:00
|
|
|
let db = host.raw_database();
|
|
|
|
|
let analysis = host.analysis();
|
|
|
|
|
|
|
|
|
|
let mut found_error = false;
|
2020-06-29 18:07:52 +03:00
|
|
|
let mut visited_files = FxHashSet::default();
|
2020-04-14 05:32:32 -07:00
|
|
|
|
2020-06-11 11:04:09 +02:00
|
|
|
let mut work = Vec::new();
|
|
|
|
|
let krates = Crate::all(db);
|
|
|
|
|
for krate in krates {
|
2020-08-09 18:52:19 -04:00
|
|
|
let module = krate.root_module(db);
|
2020-06-11 11:04:09 +02:00
|
|
|
let file_id = module.definition_source(db).file_id;
|
|
|
|
|
let file_id = file_id.original_file(db);
|
|
|
|
|
let source_root = db.file_source_root(file_id);
|
|
|
|
|
let source_root = db.source_root(source_root);
|
|
|
|
|
if !source_root.is_library {
|
|
|
|
|
work.push(module);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-14 04:35:34 -07:00
|
|
|
|
2020-06-11 11:04:09 +02:00
|
|
|
for module in work {
|
|
|
|
|
let file_id = module.definition_source(db).file_id.original_file(db);
|
|
|
|
|
if !visited_files.contains(&file_id) {
|
|
|
|
|
let crate_name = if let Some(name) = module.krate().display_name(db) {
|
|
|
|
|
format!("{}", name)
|
|
|
|
|
} else {
|
|
|
|
|
String::from("unknown")
|
|
|
|
|
};
|
|
|
|
|
println!("processing crate: {}, module: {}", crate_name, _vfs.file_path(file_id));
|
2020-07-24 17:39:44 +02:00
|
|
|
for diagnostic in analysis.diagnostics(file_id, true).unwrap() {
|
2020-06-11 11:04:09 +02:00
|
|
|
if matches!(diagnostic.severity, Severity::Error) {
|
|
|
|
|
found_error = true;
|
2020-04-14 04:35:34 -07:00
|
|
|
}
|
2020-06-11 11:04:09 +02:00
|
|
|
|
|
|
|
|
println!("{:?}", diagnostic);
|
2020-04-14 04:35:34 -07:00
|
|
|
}
|
2020-06-11 11:04:09 +02:00
|
|
|
|
|
|
|
|
visited_files.insert(file_id);
|
2020-04-14 04:35:34 -07:00
|
|
|
}
|
2020-04-13 05:44:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
println!();
|
|
|
|
|
println!("diagnostic scan complete");
|
|
|
|
|
|
|
|
|
|
if found_error {
|
|
|
|
|
println!();
|
|
|
|
|
Err(anyhow!("diagnostic error detected"))
|
|
|
|
|
} else {
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|