163 lines
5.5 KiB
Rust
163 lines
5.5 KiB
Rust
//! Book keeping for keeping diagnostics easily in sync with the client.
|
|
pub(crate) mod to_proto;
|
|
|
|
use std::mem;
|
|
|
|
use ide::FileId;
|
|
use ide_db::FxHashMap;
|
|
use nohash_hasher::{IntMap, IntSet};
|
|
use rustc_hash::FxHashSet;
|
|
use triomphe::Arc;
|
|
|
|
use crate::{global_state::GlobalStateSnapshot, lsp, lsp_ext};
|
|
|
|
pub(crate) type CheckFixes = Arc<IntMap<usize, IntMap<FileId, Vec<Fix>>>>;
|
|
|
|
#[derive(Debug, Default, Clone)]
|
|
pub struct DiagnosticsMapConfig {
|
|
pub remap_prefix: FxHashMap<String, String>,
|
|
pub warnings_as_info: Vec<String>,
|
|
pub warnings_as_hint: Vec<String>,
|
|
pub check_ignore: FxHashSet<String>,
|
|
}
|
|
|
|
#[derive(Debug, Default, Clone)]
|
|
pub(crate) struct DiagnosticCollection {
|
|
// FIXME: should be IntMap<FileId, Vec<ra_id::Diagnostic>>
|
|
pub(crate) native: IntMap<FileId, Vec<lsp_types::Diagnostic>>,
|
|
// FIXME: should be Vec<flycheck::Diagnostic>
|
|
pub(crate) check: IntMap<usize, IntMap<FileId, Vec<lsp_types::Diagnostic>>>,
|
|
pub(crate) check_fixes: CheckFixes,
|
|
changes: IntSet<FileId>,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub(crate) struct Fix {
|
|
// Fixes may be triggerable from multiple ranges.
|
|
pub(crate) ranges: Vec<lsp_types::Range>,
|
|
pub(crate) action: lsp_ext::CodeAction,
|
|
}
|
|
|
|
impl DiagnosticCollection {
|
|
pub(crate) fn clear_check(&mut self, flycheck_id: usize) {
|
|
if let Some(it) = Arc::make_mut(&mut self.check_fixes).get_mut(&flycheck_id) {
|
|
it.clear();
|
|
}
|
|
if let Some(it) = self.check.get_mut(&flycheck_id) {
|
|
self.changes.extend(it.drain().map(|(key, _value)| key));
|
|
}
|
|
}
|
|
|
|
pub(crate) fn clear_check_all(&mut self) {
|
|
Arc::make_mut(&mut self.check_fixes).clear();
|
|
self.changes
|
|
.extend(self.check.values_mut().flat_map(|it| it.drain().map(|(key, _value)| key)))
|
|
}
|
|
|
|
pub(crate) fn clear_native_for(&mut self, file_id: FileId) {
|
|
self.native.remove(&file_id);
|
|
self.changes.insert(file_id);
|
|
}
|
|
|
|
pub(crate) fn add_check_diagnostic(
|
|
&mut self,
|
|
flycheck_id: usize,
|
|
file_id: FileId,
|
|
diagnostic: lsp_types::Diagnostic,
|
|
fix: Option<Fix>,
|
|
) {
|
|
let diagnostics = self.check.entry(flycheck_id).or_default().entry(file_id).or_default();
|
|
for existing_diagnostic in diagnostics.iter() {
|
|
if are_diagnostics_equal(existing_diagnostic, &diagnostic) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let check_fixes = Arc::make_mut(&mut self.check_fixes);
|
|
check_fixes.entry(flycheck_id).or_default().entry(file_id).or_default().extend(fix);
|
|
diagnostics.push(diagnostic);
|
|
self.changes.insert(file_id);
|
|
}
|
|
|
|
pub(crate) fn set_native_diagnostics(
|
|
&mut self,
|
|
file_id: FileId,
|
|
diagnostics: Vec<lsp_types::Diagnostic>,
|
|
) {
|
|
if let Some(existing_diagnostics) = self.native.get(&file_id) {
|
|
if existing_diagnostics.len() == diagnostics.len()
|
|
&& diagnostics
|
|
.iter()
|
|
.zip(existing_diagnostics)
|
|
.all(|(new, existing)| are_diagnostics_equal(new, existing))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
self.native.insert(file_id, diagnostics);
|
|
self.changes.insert(file_id);
|
|
}
|
|
|
|
pub(crate) fn diagnostics_for(
|
|
&self,
|
|
file_id: FileId,
|
|
) -> impl Iterator<Item = &lsp_types::Diagnostic> {
|
|
let native = self.native.get(&file_id).into_iter().flatten();
|
|
let check = self.check.values().filter_map(move |it| it.get(&file_id)).flatten();
|
|
native.chain(check)
|
|
}
|
|
|
|
pub(crate) fn take_changes(&mut self) -> Option<IntSet<FileId>> {
|
|
if self.changes.is_empty() {
|
|
return None;
|
|
}
|
|
Some(mem::take(&mut self.changes))
|
|
}
|
|
}
|
|
|
|
fn are_diagnostics_equal(left: &lsp_types::Diagnostic, right: &lsp_types::Diagnostic) -> bool {
|
|
left.source == right.source
|
|
&& left.severity == right.severity
|
|
&& left.range == right.range
|
|
&& left.message == right.message
|
|
}
|
|
|
|
pub(crate) fn fetch_native_diagnostics(
|
|
snapshot: GlobalStateSnapshot,
|
|
subscriptions: Vec<FileId>,
|
|
) -> Vec<(FileId, Vec<lsp_types::Diagnostic>)> {
|
|
let _p = profile::span("fetch_native_diagnostics");
|
|
let _ctx = stdx::panic_context::enter("fetch_native_diagnostics".to_owned());
|
|
subscriptions
|
|
.into_iter()
|
|
.filter_map(|file_id| {
|
|
let line_index = snapshot.file_line_index(file_id).ok()?;
|
|
let diagnostics = snapshot
|
|
.analysis
|
|
.diagnostics(
|
|
&snapshot.config.diagnostics(),
|
|
ide::AssistResolveStrategy::None,
|
|
file_id,
|
|
)
|
|
.ok()?
|
|
.into_iter()
|
|
.map(move |d| lsp_types::Diagnostic {
|
|
range: lsp::to_proto::range(&line_index, d.range),
|
|
severity: Some(lsp::to_proto::diagnostic_severity(d.severity)),
|
|
code: Some(lsp_types::NumberOrString::String(d.code.as_str().to_string())),
|
|
code_description: Some(lsp_types::CodeDescription {
|
|
href: lsp_types::Url::parse(&d.code.url()).unwrap(),
|
|
}),
|
|
source: Some("rust-analyzer".to_string()),
|
|
message: d.message,
|
|
related_information: None,
|
|
tags: d.unused.then(|| vec![lsp_types::DiagnosticTag::UNNECESSARY]),
|
|
data: None,
|
|
})
|
|
.collect::<Vec<_>>();
|
|
Some((file_id, diagnostics))
|
|
})
|
|
.collect()
|
|
}
|