rust/crates/rust-analyzer/src/main_loop.rs

769 lines
35 KiB
Rust
Raw Normal View History

2020-02-18 11:33:16 +00:00
//! The main loop of `rust-analyzer` responsible for dispatching LSP
2020-02-18 11:25:26 +00:00
//! requests/replies and notifications back to the client.
use std::{
2020-11-26 17:25:59 +00:00
env, fmt,
2021-04-06 09:40:31 +00:00
sync::Arc,
time::{Duration, Instant},
};
2018-08-12 21:09:30 +00:00
use always_assert::always;
use crossbeam_channel::{select, Receiver};
use ide::{FileId, PrimeCachesProgress};
2020-10-24 08:39:57 +00:00
use ide_db::base_db::VfsPath;
2020-06-25 15:50:47 +00:00
use lsp_server::{Connection, Notification, Request, Response};
use lsp_types::notification::Notification as _;
use project_model::BuildDataCollector;
2020-08-25 09:27:22 +00:00
use vfs::ChangeKind;
2018-08-12 21:09:30 +00:00
2018-10-15 17:15:53 +00:00
use crate::{
2020-06-25 21:26:21 +00:00
config::Config,
2020-06-25 15:50:47 +00:00
dispatch::{NotificationDispatcher, RequestDispatcher},
document::DocumentData,
2020-06-03 09:16:08 +00:00
from_proto,
2021-04-06 11:16:35 +00:00
global_state::{file_id_to_url, url_to_file_id, GlobalState},
2020-06-24 16:57:30 +00:00
handlers, lsp_ext,
2021-05-17 17:07:10 +00:00
lsp_utils::{apply_document_changes, is_cancelled, notification_is, Progress},
2021-01-28 15:33:02 +00:00
reload::{BuildDataProgress, ProjectWorkspaceProgress},
Result,
2018-08-12 19:08:14 +00:00
};
pub fn main_loop(config: Config, connection: Connection) -> Result<()> {
2020-04-01 15:22:56 +00:00
log::info!("initial config: {:#?}", config);
2019-08-31 11:47:37 +00:00
2020-01-26 11:02:56 +00:00
// Windows scheduler implements priority boosts: if thread waits for an
// event (like a condvar), and event fires, priority of the thread is
// temporary bumped. This optimization backfires in our case: each time the
// `main_loop` schedules a task to run on a threadpool, the worker threads
// gets a higher priority, and (on a machine with fewer cores) displaces the
// main loop! We work-around this by marking the main loop as a
// higher-priority thread.
//
// https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
// https://docs.microsoft.com/en-us/windows/win32/procthread/priority-boosts
// https://github.com/rust-analyzer/rust-analyzer/issues/2835
#[cfg(windows)]
unsafe {
use winapi::um::processthreadsapi::*;
let thread = GetCurrentThread();
let thread_priority_above_normal = 1;
SetThreadPriority(thread, thread_priority_above_normal);
}
2020-08-08 14:42:50 +00:00
GlobalState::new(connection.sender, config).run(connection.receiver)
2020-06-25 15:14:11 +00:00
}
enum Event {
Lsp(lsp_server::Message),
Task(Task),
Vfs(vfs::loader::Message),
Flycheck(flycheck::Message),
}
2020-06-25 20:45:35 +00:00
#[derive(Debug)]
pub(crate) enum Task {
Response(Response),
Diagnostics(Vec<(FileId, Vec<lsp_types::Diagnostic>)>),
PrimeCaches(PrimeCachesProgress),
FetchWorkspace(ProjectWorkspaceProgress),
2021-01-28 15:33:02 +00:00
FetchBuildData(BuildDataProgress),
2020-06-25 20:45:35 +00:00
}
impl fmt::Debug for Event {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let debug_verbose_not = |not: &Notification, f: &mut fmt::Formatter| {
f.debug_struct("Notification").field("method", &not.method).finish()
};
match self {
Event::Lsp(lsp_server::Message::Notification(not)) => {
if notification_is::<lsp_types::notification::DidOpenTextDocument>(not)
|| notification_is::<lsp_types::notification::DidChangeTextDocument>(not)
{
return debug_verbose_not(not, f);
}
}
2020-06-25 17:23:52 +00:00
Event::Task(Task::Response(resp)) => {
return f
.debug_struct("Response")
.field("id", &resp.id)
.field("error", &resp.error)
.finish();
}
_ => (),
}
match self {
Event::Lsp(it) => fmt::Debug::fmt(it, f),
Event::Task(it) => fmt::Debug::fmt(it, f),
Event::Vfs(it) => fmt::Debug::fmt(it, f),
Event::Flycheck(it) => fmt::Debug::fmt(it, f),
}
}
}
2020-06-25 15:14:11 +00:00
impl GlobalState {
fn run(mut self, inbox: Receiver<lsp_server::Message>) -> Result<()> {
if self.config.linked_projects().is_empty()
2021-05-23 17:32:22 +00:00
&& self.config.detached_files().is_empty()
&& self.config.notifications().cargo_toml_not_found
2020-07-02 14:47:42 +00:00
{
self.show_message(
lsp_types::MessageType::Error,
"rust-analyzer failed to discover workspace".to_string(),
);
};
if self.config.did_save_text_document_dynamic_registration() {
let save_registration_options = lsp_types::TextDocumentSaveRegistrationOptions {
include_text: Some(false),
text_document_registration_options: lsp_types::TextDocumentRegistrationOptions {
document_selector: Some(vec![
lsp_types::DocumentFilter {
language: None,
scheme: None,
pattern: Some("**/*.rs".into()),
},
lsp_types::DocumentFilter {
language: None,
scheme: None,
pattern: Some("**/Cargo.toml".into()),
},
lsp_types::DocumentFilter {
language: None,
scheme: None,
pattern: Some("**/Cargo.lock".into()),
},
]),
},
};
let registration = lsp_types::Registration {
id: "textDocument/didSave".to_string(),
method: "textDocument/didSave".to_string(),
register_options: Some(serde_json::to_value(save_registration_options).unwrap()),
};
self.send_request::<lsp_types::request::RegisterCapability>(
lsp_types::RegistrationParams { registrations: vec![registration] },
|_, _| (),
);
}
2020-07-02 13:32:56 +00:00
self.fetch_workspaces_request();
self.fetch_workspaces_if_needed();
2020-06-25 21:26:21 +00:00
2020-06-25 15:14:11 +00:00
while let Some(event) = self.next_event(&inbox) {
if let Event::Lsp(lsp_server::Message::Notification(not)) = &event {
if not.method == lsp_types::notification::Exit::METHOD {
return Ok(());
}
2020-06-25 15:14:11 +00:00
}
2020-06-25 21:26:21 +00:00
self.handle_event(event)?
}
2020-06-25 21:26:21 +00:00
Err("client exited without proper shutdown sequence")?
}
2020-06-25 15:14:11 +00:00
2020-07-23 08:26:56 +00:00
fn next_event(&self, inbox: &Receiver<lsp_server::Message>) -> Option<Event> {
select! {
recv(inbox) -> msg =>
msg.ok().map(Event::Lsp),
recv(self.task_pool.receiver) -> task =>
Some(Event::Task(task.unwrap())),
recv(self.loader.receiver) -> task =>
Some(Event::Vfs(task.unwrap())),
recv(self.flycheck_receiver) -> task =>
Some(Event::Flycheck(task.unwrap())),
}
}
2020-06-25 21:26:21 +00:00
fn handle_event(&mut self, event: Event) -> Result<()> {
let loop_start = Instant::now();
// NOTE: don't count blocking select! call as a loop-turn time
2020-08-12 14:32:36 +00:00
let _p = profile::span("GlobalState::handle_event");
2020-06-25 21:26:21 +00:00
log::info!("handle_event({:?})", event);
2020-08-25 09:27:22 +00:00
let task_queue_len = self.task_pool.handle.len();
if task_queue_len > 0 {
log::info!("task queue len: {}", task_queue_len);
}
2021-04-06 11:16:35 +00:00
let was_quiescent = self.is_quiescent();
match event {
Event::Lsp(msg) => match msg {
lsp_server::Message::Request(req) => self.on_request(loop_start, req)?,
lsp_server::Message::Notification(not) => {
self.on_notification(not)?;
}
2020-06-26 15:07:14 +00:00
lsp_server::Message::Response(resp) => self.complete_request(resp),
},
2020-11-02 16:06:49 +00:00
Event::Task(mut task) => {
let _p = profile::span("GlobalState::handle_event/task");
let mut prime_caches_progress = Vec::new();
2020-11-02 16:06:49 +00:00
loop {
match task {
Task::Response(response) => self.respond(response),
Task::Diagnostics(diagnostics_per_file) => {
for (file_id, diagnostics) in diagnostics_per_file {
self.diagnostics.set_native_diagnostics(file_id, diagnostics)
}
}
Task::PrimeCaches(progress) => match progress {
PrimeCachesProgress::Started => prime_caches_progress.push(progress),
PrimeCachesProgress::StartedOnCrate { .. } => {
match prime_caches_progress.last_mut() {
Some(last @ PrimeCachesProgress::StartedOnCrate { .. }) => {
// Coalesce subsequent update events.
*last = progress;
}
_ => prime_caches_progress.push(progress),
}
2020-11-02 16:06:49 +00:00
}
PrimeCachesProgress::Finished => prime_caches_progress.push(progress),
},
Task::FetchWorkspace(progress) => {
let (state, msg) = match progress {
ProjectWorkspaceProgress::Begin => (Progress::Begin, None),
ProjectWorkspaceProgress::Report(msg) => {
(Progress::Report, Some(msg))
}
ProjectWorkspaceProgress::End(workspaces) => {
self.fetch_workspaces_completed(workspaces);
2021-04-06 09:40:31 +00:00
let old = Arc::clone(&self.workspaces);
self.switch_workspaces();
2021-04-06 09:40:31 +00:00
let workspaces_updated = !Arc::ptr_eq(&old, &self.workspaces);
if self.config.run_build_scripts() && workspaces_updated {
let mut collector =
BuildDataCollector::new(self.config.wrap_rustc());
for ws in self.workspaces.iter() {
ws.collect_build_data_configs(&mut collector);
}
self.fetch_build_data_request(collector)
}
2021-04-06 09:40:31 +00:00
(Progress::End, None)
}
};
2021-04-06 09:40:31 +00:00
2021-04-15 18:39:34 +00:00
self.report_progress("Fetching", state, msg, None);
}
2021-01-28 15:33:02 +00:00
Task::FetchBuildData(progress) => {
let (state, msg) = match progress {
BuildDataProgress::Begin => (Some(Progress::Begin), None),
BuildDataProgress::Report(msg) => {
(Some(Progress::Report), Some(msg))
}
BuildDataProgress::End(build_data_result) => {
self.fetch_build_data_completed(build_data_result);
2021-04-06 09:40:31 +00:00
self.switch_workspaces();
2021-04-06 09:40:31 +00:00
2021-01-28 15:33:02 +00:00
(Some(Progress::End), None)
}
};
2021-04-06 09:40:31 +00:00
2021-01-28 15:33:02 +00:00
if let Some(state) = state {
2021-04-15 18:39:34 +00:00
self.report_progress("Loading", state, msg, None);
2021-01-28 15:33:02 +00:00
}
}
2020-06-25 17:23:52 +00:00
}
2021-04-06 09:40:31 +00:00
2020-11-02 16:06:49 +00:00
// Coalesce multiple task events into one loop turn
task = match self.task_pool.receiver.try_recv() {
Ok(task) => task,
Err(_) => break,
};
2020-06-25 17:23:52 +00:00
}
2020-11-02 16:06:49 +00:00
for progress in prime_caches_progress {
let (state, message, fraction);
match progress {
PrimeCachesProgress::Started => {
state = Progress::Begin;
message = None;
fraction = 0.0;
}
PrimeCachesProgress::StartedOnCrate { on_crate, n_done, n_total } => {
state = Progress::Report;
message = Some(format!("{}/{} ({})", n_done, n_total, on_crate));
fraction = Progress::fraction(n_done, n_total);
}
PrimeCachesProgress::Finished => {
state = Progress::End;
message = None;
fraction = 1.0;
self.prime_caches_queue.op_completed(());
}
};
2021-04-15 18:39:34 +00:00
self.report_progress("Indexing", state, message, Some(fraction));
}
2020-11-02 16:06:49 +00:00
}
2020-07-10 20:29:40 +00:00
Event::Vfs(mut task) => {
2020-08-12 14:32:36 +00:00
let _p = profile::span("GlobalState::handle_event/vfs");
2020-07-10 20:29:40 +00:00
loop {
match task {
vfs::loader::Message::Loaded { files } => {
let vfs = &mut self.vfs.write().0;
for (path, contents) in files {
let path = VfsPath::from(path);
if !self.mem_docs.contains_key(&path) {
vfs.set_file_contents(path, contents);
2020-07-10 20:29:40 +00:00
}
}
}
vfs::loader::Message::Progress { n_total, n_done, config_version } => {
2021-04-06 11:16:35 +00:00
always!(config_version <= self.vfs_config_version);
self.vfs_progress_config_version = config_version;
self.vfs_progress_n_total = n_total;
self.vfs_progress_n_done = n_done;
2021-04-06 11:16:35 +00:00
let state = if n_done == 0 {
Progress::Begin
} else if n_done < n_total {
Progress::Report
2020-07-10 20:29:40 +00:00
} else {
assert_eq!(n_done, n_total);
Progress::End
};
self.report_progress(
2021-04-15 18:39:34 +00:00
"Roots Scanned",
state,
Some(format!("{}/{}", n_done, n_total)),
Some(Progress::fraction(n_done, n_total)),
)
2020-06-25 15:14:11 +00:00
}
}
2020-07-10 20:29:40 +00:00
// Coalesce many VFS event into a single loop turn
task = match self.loader.receiver.try_recv() {
Ok(task) => task,
Err(_) => break,
}
}
2020-07-10 20:29:40 +00:00
}
2020-11-27 21:52:22 +00:00
Event::Flycheck(mut task) => {
let _p = profile::span("GlobalState::handle_event/flycheck");
loop {
match task {
flycheck::Message::AddDiagnostic { workspace_root, diagnostic } => {
let diagnostics =
crate::diagnostics::to_proto::map_rust_diagnostic_to_lsp(
&self.config.diagnostics_map(),
2020-11-27 21:52:22 +00:00
&diagnostic,
&workspace_root,
);
for diag in diagnostics {
match url_to_file_id(&self.vfs.read().0, &diag.url) {
Ok(file_id) => self.diagnostics.add_check_diagnostic(
file_id,
diag.diagnostic,
diag.fixes,
),
Err(err) => {
log::error!(
"File with cargo diagnostic not found in VFS: {}",
err
);
}
};
}
2020-06-26 14:17:22 +00:00
}
2020-11-27 21:52:22 +00:00
flycheck::Message::Progress { id, progress } => {
let (state, message) = match progress {
flycheck::Progress::DidStart => {
self.diagnostics.clear_check();
(Progress::Begin, None)
}
flycheck::Progress::DidCheckCrate(target) => {
(Progress::Report, Some(target))
}
flycheck::Progress::DidCancel => (Progress::End, None),
flycheck::Progress::DidFinish(result) => {
if let Err(err) = result {
log::error!("cargo check failed: {}", err)
}
(Progress::End, None)
}
};
// When we're running multiple flychecks, we have to include a disambiguator in
// the title, or the editor complains. Note that this is a user-facing string.
let title = if self.flycheck.len() == 1 {
"cargo check".to_string()
} else {
format!("cargo check (#{})", id + 1)
};
self.report_progress(&title, state, message, None);
}
}
// Coalesce many flycheck updates into a single loop turn
task = match self.flycheck_receiver.try_recv() {
Ok(task) => task,
Err(_) => break,
}
2020-06-25 15:14:11 +00:00
}
2020-11-27 21:52:22 +00:00
}
}
let state_changed = self.process_changes();
2021-04-06 11:16:35 +00:00
if self.is_quiescent() && !was_quiescent {
for flycheck in &self.flycheck {
flycheck.update();
2020-06-25 15:14:11 +00:00
}
}
2020-06-25 15:14:11 +00:00
2021-04-06 11:16:35 +00:00
if self.is_quiescent() && (!was_quiescent || state_changed) {
self.update_file_notifications_on_threadpool();
// Refresh semantic tokens if the client supports it.
if self.config.semantic_tokens_refresh() {
self.semantic_tokens_cache.lock().clear();
self.send_request::<lsp_types::request::SemanticTokensRefesh>((), |_, _| ());
}
2020-12-09 19:36:47 +00:00
// Refresh code lens if the client supports it.
if self.config.code_lens_refresh() {
2020-12-09 19:36:47 +00:00
self.send_request::<lsp_types::request::CodeLensRefresh>((), |_, _| ());
}
}
2020-06-25 15:14:11 +00:00
2020-06-25 20:45:35 +00:00
if let Some(diagnostic_changes) = self.diagnostics.take_changes() {
for file_id in diagnostic_changes {
let url = file_id_to_url(&self.vfs.read().0, file_id);
let diagnostics = self.diagnostics.diagnostics_for(file_id).cloned().collect();
let version = from_proto::vfs_path(&url)
.map(|path| self.mem_docs.get(&path).map(|it| it.version))
.unwrap_or_default();
2020-06-26 15:07:14 +00:00
self.send_notification::<lsp_types::notification::PublishDiagnostics>(
lsp_types::PublishDiagnosticsParams { uri: url, diagnostics, version },
2020-06-26 15:07:14 +00:00
);
2020-06-25 20:45:35 +00:00
}
}
if self.config.cargo_autoreload() {
self.fetch_workspaces_if_needed();
}
2021-01-28 15:33:02 +00:00
self.fetch_build_data_if_needed();
2021-04-06 11:16:35 +00:00
self.report_new_status_if_needed();
let loop_duration = loop_start.elapsed();
if loop_duration > Duration::from_millis(100) {
2020-06-25 20:45:35 +00:00
log::warn!("overly long loop turn: {:?}", loop_duration);
if env::var("RA_PROFILE").is_ok() {
self.show_message(
lsp_types::MessageType::Error,
format!("overly long loop turn: {:?}", loop_duration),
)
2020-06-25 15:14:11 +00:00
}
}
Ok(())
2020-06-25 15:14:11 +00:00
}
fn on_request(&mut self, request_received: Instant, req: Request) -> Result<()> {
2020-06-26 15:07:14 +00:00
self.register_request(&req, request_received);
2020-06-25 17:23:52 +00:00
if self.shutdown_requested {
self.respond(Response::new_err(
req.id,
lsp_server::ErrorCode::InvalidRequest as i32,
"Shutdown already requested.".to_owned(),
));
return Ok(());
}
2021-04-06 11:16:35 +00:00
// Avoid flashing a bunch of unresolved references during initial load.
if self.workspaces.is_empty() && !self.is_quiescent() {
self.respond(lsp_server::Response::new_err(
req.id,
// FIXME: i32 should impl From<ErrorCode> (from() guarantees lossless conversion)
lsp_server::ErrorCode::ContentModified as i32,
"waiting for cargo metadata or cargo check".to_owned(),
));
return Ok(());
}
2020-06-25 17:23:52 +00:00
RequestDispatcher { req: Some(req), global_state: self }
.on_sync::<lsp_ext::ReloadWorkspace>(|s, ()| {
s.fetch_workspaces_request();
s.fetch_workspaces_if_needed();
Ok(())
})?
2020-06-25 15:14:11 +00:00
.on_sync::<lsp_ext::JoinLines>(|s, p| handlers::handle_join_lines(s.snapshot(), p))?
.on_sync::<lsp_ext::OnEnter>(|s, p| handlers::handle_on_enter(s.snapshot(), p))?
.on_sync::<lsp_types::request::Shutdown>(|s, ()| {
s.shutdown_requested = true;
Ok(())
})?
2020-06-25 15:14:11 +00:00
.on_sync::<lsp_types::request::SelectionRangeRequest>(|s, p| {
handlers::handle_selection_range(s.snapshot(), p)
})?
.on_sync::<lsp_ext::MatchingBrace>(|s, p| {
handlers::handle_matching_brace(s.snapshot(), p)
})?
.on_sync::<lsp_ext::MemoryUsage>(|s, p| handlers::handle_memory_usage(s, p))?
.on::<lsp_ext::AnalyzerStatus>(handlers::handle_analyzer_status)
.on::<lsp_ext::SyntaxTree>(handlers::handle_syntax_tree)
.on::<lsp_ext::ViewHir>(handlers::handle_view_hir)
.on::<lsp_ext::ViewCrateGraph>(handlers::handle_view_crate_graph)
2021-05-21 21:59:52 +00:00
.on::<lsp_ext::ViewItemTree>(handlers::handle_view_item_tree)
.on::<lsp_ext::ExpandMacro>(handlers::handle_expand_macro)
.on::<lsp_ext::ParentModule>(handlers::handle_parent_module)
.on::<lsp_ext::Runnables>(handlers::handle_runnables)
2021-02-27 17:04:43 +00:00
.on::<lsp_ext::RelatedTests>(handlers::handle_related_tests)
.on::<lsp_ext::InlayHints>(handlers::handle_inlay_hints)
.on::<lsp_ext::CodeActionRequest>(handlers::handle_code_action)
.on::<lsp_ext::CodeActionResolveRequest>(handlers::handle_code_action_resolve)
.on::<lsp_ext::HoverRequest>(handlers::handle_hover)
.on::<lsp_ext::ExternalDocs>(handlers::handle_open_docs)
2020-11-13 01:48:07 +00:00
.on::<lsp_ext::OpenCargoToml>(handlers::handle_open_cargo_toml)
2021-03-16 12:37:00 +00:00
.on::<lsp_ext::MoveItem>(handlers::handle_move_item)
.on::<lsp_ext::WorkspaceSymbol>(handlers::handle_workspace_symbol)
.on::<lsp_types::request::OnTypeFormatting>(handlers::handle_on_type_formatting)
.on::<lsp_types::request::DocumentSymbolRequest>(handlers::handle_document_symbol)
.on::<lsp_types::request::GotoDefinition>(handlers::handle_goto_definition)
.on::<lsp_types::request::GotoImplementation>(handlers::handle_goto_implementation)
.on::<lsp_types::request::GotoTypeDefinition>(handlers::handle_goto_type_definition)
2020-12-04 08:02:22 +00:00
.on::<lsp_types::request::Completion>(handlers::handle_completion)
.on::<lsp_types::request::ResolveCompletionItem>(handlers::handle_completion_resolve)
.on::<lsp_types::request::CodeLensRequest>(handlers::handle_code_lens)
.on::<lsp_types::request::CodeLensResolve>(handlers::handle_code_lens_resolve)
.on::<lsp_types::request::FoldingRangeRequest>(handlers::handle_folding_range)
.on::<lsp_types::request::SignatureHelpRequest>(handlers::handle_signature_help)
.on::<lsp_types::request::PrepareRenameRequest>(handlers::handle_prepare_rename)
.on::<lsp_types::request::Rename>(handlers::handle_rename)
.on::<lsp_types::request::References>(handlers::handle_references)
.on::<lsp_types::request::Formatting>(handlers::handle_formatting)
2021-05-04 21:13:51 +00:00
.on::<lsp_types::request::RangeFormatting>(handlers::handle_range_formatting)
.on::<lsp_types::request::DocumentHighlightRequest>(handlers::handle_document_highlight)
.on::<lsp_types::request::CallHierarchyPrepare>(handlers::handle_call_hierarchy_prepare)
2020-06-25 15:14:11 +00:00
.on::<lsp_types::request::CallHierarchyIncomingCalls>(
handlers::handle_call_hierarchy_incoming,
)
2020-06-25 15:14:11 +00:00
.on::<lsp_types::request::CallHierarchyOutgoingCalls>(
handlers::handle_call_hierarchy_outgoing,
)
.on::<lsp_types::request::SemanticTokensFullRequest>(
handlers::handle_semantic_tokens_full,
)
.on::<lsp_types::request::SemanticTokensFullDeltaRequest>(
handlers::handle_semantic_tokens_full_delta,
)
2020-06-25 15:14:11 +00:00
.on::<lsp_types::request::SemanticTokensRangeRequest>(
handlers::handle_semantic_tokens_range,
)
.on::<lsp_types::request::WillRenameFiles>(handlers::handle_will_rename_files)
.on::<lsp_ext::Ssr>(handlers::handle_ssr)
2020-06-25 15:14:11 +00:00
.finish();
Ok(())
}
fn on_notification(&mut self, not: Notification) -> Result<()> {
2020-06-25 15:50:47 +00:00
NotificationDispatcher { not: Some(not), global_state: self }
.on::<lsp_types::notification::Cancel>(|this, params| {
let id: lsp_server::RequestId = match params.id {
lsp_types::NumberOrString::Number(id) => id.into(),
lsp_types::NumberOrString::String(id) => id.into(),
2020-06-25 15:14:11 +00:00
};
2020-06-26 15:07:14 +00:00
this.cancel(id);
2020-06-25 15:50:47 +00:00
Ok(())
})?
.on::<lsp_types::notification::WorkDoneProgressCancel>(|_this, _params| {
// Just ignore this. It is OK to continue sending progress
// notifications for this token, as the client can't know when
// we accepted notification.
Ok(())
})?
2020-06-25 15:50:47 +00:00
.on::<lsp_types::notification::DidOpenTextDocument>(|this, params| {
2020-06-25 15:14:11 +00:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
if this
.mem_docs
.insert(path.clone(), DocumentData::new(params.text_document.version))
.is_some()
{
2020-06-25 15:14:11 +00:00
log::error!("duplicate DidOpenTextDocument: {}", path)
}
let changed = this
.vfs
2020-06-25 15:14:11 +00:00
.write()
.0
.set_file_contents(path, Some(params.text_document.text.into_bytes()));
// If the VFS contents are unchanged, update diagnostics, since `handle_event`
// won't see any changes. This avoids missing diagnostics when opening a file.
//
// If the file *was* changed, `handle_event` will already recompute and send
// diagnostics. We can't do it here, since the *current* file contents might be
// unset in salsa, since the VFS change hasn't been applied to the database yet.
if !changed {
this.maybe_update_diagnostics();
}
2020-06-25 15:14:11 +00:00
}
2020-06-25 15:50:47 +00:00
Ok(())
})?
.on::<lsp_types::notification::DidChangeTextDocument>(|this, params| {
2020-06-25 15:14:11 +00:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
let doc = match this.mem_docs.get_mut(&path) {
Some(doc) => doc,
None => {
log::error!("expected DidChangeTextDocument: {}", path);
return Ok(());
}
};
2020-06-25 15:50:47 +00:00
let vfs = &mut this.vfs.write().0;
2020-06-25 15:14:11 +00:00
let file_id = vfs.file_id(&path).unwrap();
let mut text = String::from_utf8(vfs.file_contents(file_id).to_vec()).unwrap();
apply_document_changes(&mut text, params.content_changes);
// The version passed in DidChangeTextDocument is the version after all edits are applied
// so we should apply it before the vfs is notified.
doc.version = params.text_document.version;
vfs.set_file_contents(path.clone(), Some(text.into_bytes()));
2020-06-25 15:14:11 +00:00
}
2020-06-25 15:50:47 +00:00
Ok(())
})?
.on::<lsp_types::notification::DidCloseTextDocument>(|this, params| {
let mut version = None;
2020-06-25 15:14:11 +00:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
match this.mem_docs.remove(&path) {
Some(doc) => version = Some(doc.version),
None => log::error!("orphan DidCloseTextDocument: {}", path),
2020-06-25 15:14:11 +00:00
}
2020-08-06 01:35:35 +00:00
this.semantic_tokens_cache.lock().remove(&params.text_document.uri);
2020-07-24 21:55:17 +00:00
2020-06-25 15:14:11 +00:00
if let Some(path) = path.as_path() {
2020-06-25 22:27:39 +00:00
this.loader.handle.invalidate(path.to_path_buf());
2020-06-25 15:14:11 +00:00
}
}
// Clear the diagnostics for the previously known version of the file.
// This prevents stale "cargo check" diagnostics if the file is
// closed, "cargo check" is run and then the file is reopened.
2020-06-26 15:07:14 +00:00
this.send_notification::<lsp_types::notification::PublishDiagnostics>(
lsp_types::PublishDiagnosticsParams {
uri: params.text_document.uri,
diagnostics: Vec::new(),
version,
2020-06-26 15:07:14 +00:00
},
);
2020-06-25 15:50:47 +00:00
Ok(())
})?
2020-07-02 13:32:56 +00:00
.on::<lsp_types::notification::DidSaveTextDocument>(|this, params| {
for flycheck in &this.flycheck {
flycheck.update();
2020-06-25 15:14:11 +00:00
}
if let Ok(abs_path) = from_proto::abs_path(&params.text_document.uri) {
this.maybe_refresh(&[(abs_path, ChangeKind::Modify)]);
}
2020-06-25 15:50:47 +00:00
Ok(())
})?
.on::<lsp_types::notification::DidChangeConfiguration>(|this, _params| {
2020-06-25 15:14:11 +00:00
// As stated in https://github.com/microsoft/language-server-protocol/issues/676,
// this notification's parameters should be ignored and the actual config queried separately.
2020-06-26 15:07:14 +00:00
this.send_request::<lsp_types::request::WorkspaceConfiguration>(
2020-06-25 15:14:11 +00:00
lsp_types::ConfigurationParams {
items: vec![lsp_types::ConfigurationItem {
scope_uri: None,
section: Some("rust-analyzer".to_string()),
}],
},
|this, resp| {
log::debug!("config update response: '{:?}", resp);
let Response { error, result, .. } = resp;
match (error, result) {
(Some(err), _) => {
log::error!("failed to fetch the server settings: {:?}", err)
}
(None, Some(mut configs)) => {
if let Some(json) = configs.get_mut(0) {
// Note that json can be null according to the spec if the client can't
// provide a configuration. This is handled in Config::update below.
let mut config = Config::clone(&*this.config);
config.update(json.take());
2020-06-25 15:14:11 +00:00
this.update_configuration(config);
}
}
(None, None) => log::error!(
"received empty server settings response from the client"
),
}
},
);
return Ok(());
2020-06-25 15:50:47 +00:00
})?
.on::<lsp_types::notification::DidChangeWatchedFiles>(|this, params| {
2020-06-25 15:14:11 +00:00
for change in params.changes {
if let Ok(path) = from_proto::abs_path(&change.uri) {
2020-06-25 22:27:39 +00:00
this.loader.handle.invalidate(path);
2020-06-25 15:14:11 +00:00
}
}
2020-06-25 15:50:47 +00:00
Ok(())
})?
.finish();
2020-06-25 15:14:11 +00:00
Ok(())
}
fn update_file_notifications_on_threadpool(&mut self) {
self.maybe_update_diagnostics();
// Ensure that only one cache priming task can run at a time
self.prime_caches_queue.request_op(());
if self.prime_caches_queue.should_start_op().is_none() {
return;
}
self.task_pool.handle.spawn_with_sender({
let snap = self.snapshot();
move |sender| {
let cb = |progress| {
sender.send(Task::PrimeCaches(progress)).unwrap();
};
match snap.analysis.prime_caches(cb) {
Ok(()) => (),
Err(_canceled) => (),
}
}
});
}
fn maybe_update_diagnostics(&mut self) {
let subscriptions = self
.mem_docs
.keys()
.map(|path| self.vfs.read().0.file_id(&path).unwrap())
.collect::<Vec<_>>();
2020-06-25 15:14:11 +00:00
log::trace!("updating notifications for {:?}", subscriptions);
if self.config.publish_diagnostics() {
2020-06-25 15:14:11 +00:00
let snapshot = self.snapshot();
2020-06-25 22:27:39 +00:00
self.task_pool.handle.spawn(move || {
2020-06-25 15:14:11 +00:00
let diagnostics = subscriptions
.into_iter()
.filter_map(|file_id| {
handlers::publish_diagnostics(&snapshot, file_id)
.map_err(|err| {
2021-05-17 17:07:10 +00:00
if !is_cancelled(&*err) {
2020-06-25 15:14:11 +00:00
log::error!("failed to compute diagnostics: {:?}", err);
}
()
})
.ok()
2020-06-25 20:45:35 +00:00
.map(|diags| (file_id, diags))
2020-06-25 15:14:11 +00:00
})
.collect::<Vec<_>>();
Task::Diagnostics(diagnostics)
})
}
2019-08-31 11:47:37 +00:00
}
2018-09-01 14:40:45 +00:00
}