Skip additional dispatch and eliminate helper function

This commit is contained in:
Sofus Addington 2025-03-03 07:05:48 +01:00
parent 6949048e3b
commit 8b59087d32
No known key found for this signature in database
GPG key ID: 57579341E1199840
3 changed files with 27 additions and 64 deletions

View file

@ -761,7 +761,6 @@ impl Application {
uri, uri,
params.version, params.version,
params.diagnostics, params.diagnostics,
None,
); );
} }
Notification::ShowMessage(params) => { Notification::ShowMessage(params) => {

View file

@ -1,4 +1,4 @@
use std::collections::{HashMap, HashSet}; use std::collections::HashSet;
use std::time::Duration; use std::time::Duration;
use helix_core::diagnostic::DiagnosticProvider; use helix_core::diagnostic::DiagnosticProvider;
@ -46,23 +46,11 @@ pub(super) fn register_hooks(handlers: &Handlers) {
}); });
register_hook!(move |event: &mut DocumentDidOpen<'_>| { register_hook!(move |event: &mut DocumentDidOpen<'_>| {
if event for language_server in event
.doc .doc
.has_language_server_with_feature(LanguageServerFeature::PullDiagnostics) .language_servers_with_feature(LanguageServerFeature::PullDiagnostics)
{ {
let document_id = event.doc.id(); pull_diagnostics_for_document(event.doc, language_server);
job::dispatch_blocking(move |editor, _| {
let Some(doc) = editor.document(document_id) else {
return;
};
let language_servers =
doc.language_servers_with_feature(LanguageServerFeature::PullDiagnostics);
for language_server in language_servers {
pull_diagnostics_for_document(doc, language_server);
}
})
} }
Ok(()) Ok(())
@ -162,64 +150,45 @@ fn handle_pull_diagnostics_response(
uri: Uri, uri: Uri,
document_id: DocumentId, document_id: DocumentId,
) { ) {
let Some(doc) = editor.document_mut(document_id) else { let (result_id, related_documents) = match response {
return;
};
match response {
lsp::DocumentDiagnosticReport::Full(report) => { lsp::DocumentDiagnosticReport::Full(report) => {
// Diagnostic for requested file
editor.handle_lsp_diagnostics( editor.handle_lsp_diagnostics(
provider, provider,
uri, uri,
None, None,
report.full_document_diagnostic_report.items, report.full_document_diagnostic_report.items,
);
(
report.full_document_diagnostic_report.result_id, report.full_document_diagnostic_report.result_id,
);
// Diagnostic for related files
handle_document_diagnostic_report_kind(
editor,
document_id,
report.related_documents, report.related_documents,
provider, )
);
} }
lsp::DocumentDiagnosticReport::Unchanged(report) => { lsp::DocumentDiagnosticReport::Unchanged(report) => (
doc.previous_diagnostic_id = Some(report.unchanged_document_diagnostic_report.result_id),
Some(report.unchanged_document_diagnostic_report.result_id); report.related_documents,
),
};
handle_document_diagnostic_report_kind( if let Some(doc) = editor.document_mut(document_id) {
editor, doc.previous_diagnostic_id = result_id;
document_id, };
report.related_documents,
provider,
);
}
}
}
fn handle_document_diagnostic_report_kind( for (url, report) in related_documents.into_iter().flatten() {
editor: &mut Editor, let result_id = match report {
document_id: DocumentId,
report: Option<HashMap<lsp::Url, lsp::DocumentDiagnosticReportKind>>,
provider: DiagnosticProvider,
) {
for (url, report) in report.into_iter().flatten() {
match report {
lsp::DocumentDiagnosticReportKind::Full(report) => { lsp::DocumentDiagnosticReportKind::Full(report) => {
let Ok(uri) = Uri::try_from(url) else { let Ok(uri) = Uri::try_from(url) else {
return; continue;
}; };
editor.handle_lsp_diagnostics(provider, uri, None, report.items, report.result_id); editor.handle_lsp_diagnostics(provider, uri, None, report.items);
} report.result_id
lsp::DocumentDiagnosticReportKind::Unchanged(report) => {
let Some(doc) = editor.document_mut(document_id) else {
return;
};
doc.previous_diagnostic_id = Some(report.result_id);
} }
lsp::DocumentDiagnosticReportKind::Unchanged(report) => Some(report.result_id),
};
if let Some(doc) = editor.document_mut(document_id) {
doc.previous_diagnostic_id = result_id;
} }
} }
} }

View file

@ -285,7 +285,6 @@ impl Editor {
uri: Uri, uri: Uri,
version: Option<i32>, version: Option<i32>,
mut diagnostics: Vec<lsp::Diagnostic>, mut diagnostics: Vec<lsp::Diagnostic>,
report_id: Option<String>,
) { ) {
let doc = self let doc = self
.documents .documents
@ -367,10 +366,6 @@ impl Editor {
Some(diagnostic_provider), Some(diagnostic_provider),
); );
if report_id.is_some() {
doc.previous_diagnostic_id = report_id;
}
let doc = doc.id(); let doc = doc.id();
helix_event::dispatch(DiagnosticsDidChange { editor: self, doc }); helix_event::dispatch(DiagnosticsDidChange { editor: self, doc });
} }