Files
rust/crates/rust-analyzer/src/cli/diagnostics.rs

73 lines
2.1 KiB
Rust
Raw Normal View History

2020-04-14 04:35:34 -07:00
//! Analyze all modules in a project for diagnostics. Exits with a non-zero status
//! code if any errors are found.
2020-06-29 18:07:52 +03:00
use std::path::Path;
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;
use ide::{DiagnosticsConfig, Severity};
use crate::cli::{load_cargo::load_cargo, Result};
pub fn diagnostics(
path: &Path,
load_output_dirs: bool,
with_proc_macro: bool,
2020-06-11 11:04:09 +02:00
_all: bool,
) -> Result<()> {
2020-06-11 11:04:09 +02:00
let (host, _vfs) = load_cargo(path, load_output_dirs, with_proc_macro)?;
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 {
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));
for diagnostic in analysis.diagnostics(&DiagnosticsConfig::default(), file_id).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
}
}
println!();
println!("diagnostic scan complete");
if found_error {
println!();
Err(anyhow!("diagnostic error detected"))
} else {
Ok(())
}
}