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

529 lines
23 KiB
Rust
Raw Normal View History

2020-02-18 05:33:16 -06:00
//! The main loop of `rust-analyzer` responsible for dispatching LSP
2020-02-18 05:25:26 -06:00
//! requests/replies and notifications back to the client.
use std::{
2020-06-25 02:51:30 -05:00
env, fmt, panic,
time::{Duration, Instant},
};
2018-08-12 16:09:30 -05:00
2020-06-25 10:14:11 -05:00
use crossbeam_channel::{never, select, Receiver};
2020-06-25 10:50:47 -05:00
use lsp_server::{Connection, Notification, Request, Response};
2020-06-26 10:07:14 -05:00
use lsp_types::notification::Notification as _;
2020-06-24 11:57:30 -05:00
use ra_db::VfsPath;
2020-06-25 02:51:30 -05:00
use ra_ide::{Canceled, FileId};
use ra_prof::profile;
2018-08-12 16:09:30 -05:00
2018-10-15 12:15:53 -05:00
use crate::{
2020-06-25 16:26:21 -05:00
config::Config,
2020-06-25 10:50:47 -05:00
dispatch::{NotificationDispatcher, RequestDispatcher},
2020-06-03 04:16:08 -05:00
from_proto,
2020-06-26 05:02:59 -05:00
global_state::{file_id_to_url, url_to_file_id, GlobalState, Status},
2020-06-24 11:57:30 -05:00
handlers, lsp_ext,
2020-06-26 10:07:14 -05:00
lsp_utils::{apply_document_changes, is_canceled, notification_is, Progress},
Result,
2018-08-12 14:08:14 -05:00
};
2020-07-02 09:47:42 -05:00
use ra_project_model::ProjectWorkspace;
use vfs::ChangeKind;
2018-08-12 14:08:14 -05:00
pub fn main_loop(config: Config, connection: Connection) -> Result<()> {
2020-04-01 10:22:56 -05:00
log::info!("initial config: {:#?}", config);
2019-08-31 06:47:37 -05:00
2020-01-26 05:02:56 -06: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-06-25 17:54:41 -05:00
GlobalState::new(connection.sender.clone(), config).run(connection.receiver)
2020-06-25 10:14:11 -05:00
}
enum Event {
Lsp(lsp_server::Message),
Task(Task),
Vfs(vfs::loader::Message),
Flycheck(flycheck::Message),
}
2020-06-25 15:45:35 -05:00
#[derive(Debug)]
pub(crate) enum Task {
Response(Response),
Diagnostics(Vec<(FileId, Vec<lsp_types::Diagnostic>)>),
2020-07-02 09:47:42 -05:00
Workspaces(Vec<anyhow::Result<ProjectWorkspace>>),
2020-06-25 15:45:35 -05:00
Unit,
}
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 12:23:52 -05: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 10:14:11 -05:00
impl GlobalState {
fn next_event(&self, inbox: &Receiver<lsp_server::Message>) -> Option<Event> {
select! {
recv(inbox) -> msg =>
msg.ok().map(Event::Lsp),
2020-06-25 17:27:39 -05:00
recv(self.task_pool.receiver) -> task =>
2020-06-25 10:14:11 -05:00
Some(Event::Task(task.unwrap())),
2020-06-25 17:27:39 -05:00
recv(self.loader.receiver) -> task =>
2020-06-25 10:14:11 -05:00
Some(Event::Vfs(task.unwrap())),
2020-06-25 17:27:39 -05:00
recv(self.flycheck.as_ref().map_or(&never(), |it| &it.receiver)) -> task =>
2020-06-25 10:14:11 -05:00
Some(Event::Flycheck(task.unwrap())),
}
}
fn run(mut self, inbox: Receiver<lsp_server::Message>) -> Result<()> {
2020-07-02 09:47:42 -05:00
if self.config.linked_projects.is_empty() && self.config.notifications.cargo_toml_not_found
{
self.show_message(
lsp_types::MessageType::Error,
"rust-analyzer failed to discover workspace".to_string(),
);
};
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()),
},
]),
},
2020-07-02 08:32:56 -05:00
};
2020-07-02 08:32:56 -05:00
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()),
2020-07-02 08:32:56 -05:00
};
self.send_request::<lsp_types::request::RegisterCapability>(
lsp_types::RegistrationParams { registrations: vec![registration] },
|_, _| (),
);
2020-07-02 09:47:42 -05:00
self.fetch_workspaces();
2020-06-25 16:26:21 -05:00
2020-06-25 10:14:11 -05: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 10:14:11 -05:00
}
2020-06-25 16:26:21 -05:00
self.handle_event(event)?
}
2020-06-25 16:26:21 -05:00
Err("client exited without proper shutdown sequence")?
}
2020-06-25 10:14:11 -05:00
2020-06-25 16:26:21 -05: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-06-25 16:26:21 -05:00
let _p = profile("GlobalState::handle_event");
2020-06-25 16:26:21 -05:00
log::info!("handle_event({:?})", event);
2020-06-25 17:27:39 -05:00
let queue_count = self.task_pool.handle.len();
if queue_count > 0 {
log::info!("queued count = {}", queue_count);
}
2020-07-01 09:01:03 -05:00
let prev_status = self.status;
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 10:07:14 -05:00
lsp_server::Message::Response(resp) => self.complete_request(resp),
},
Event::Task(task) => {
2020-06-25 12:23:52 -05:00
match task {
Task::Response(response) => self.respond(response),
2020-06-25 15:45:35 -05:00
Task::Diagnostics(diagnostics_per_file) => {
for (file_id, diagnostics) in diagnostics_per_file {
self.diagnostics.set_native_diagnostics(file_id, diagnostics)
}
2020-06-25 12:23:52 -05:00
}
2020-07-02 09:47:42 -05:00
Task::Workspaces(workspaces) => self.switch_workspaces(workspaces),
2020-06-25 12:23:52 -05:00
Task::Unit => (),
}
2020-06-26 04:43:07 -05:00
self.analysis_host.maybe_collect_garbage();
}
2020-07-10 15:29:40 -05:00
Event::Vfs(mut task) => {
let _p = profile("GlobalState::handle_event/vfs");
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(&path) {
vfs.set_file_contents(path, contents)
}
}
}
vfs::loader::Message::Progress { n_total, n_done } => {
if n_total == 0 {
self.transition(Status::Invalid);
} else {
let state = if n_done == 0 {
self.transition(Status::Loading);
Progress::Begin
} else if n_done < n_total {
Progress::Report
} else {
assert_eq!(n_done, n_total);
self.transition(Status::Ready);
Progress::End
};
self.report_progress(
"roots scanned",
state,
Some(format!("{}/{}", n_done, n_total)),
Some(Progress::percentage(n_done, n_total)),
)
}
2020-06-25 10:14:11 -05:00
}
}
2020-07-10 15:29:40 -05: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 15:29:40 -05:00
}
Event::Flycheck(task) => match task {
flycheck::Message::AddDiagnostic { workspace_root, diagnostic } => {
let diagnostics = crate::diagnostics::to_proto::map_rust_diagnostic_to_lsp(
&self.config.diagnostics,
&diagnostic,
&workspace_root,
);
for diag in diagnostics {
2020-07-09 08:35:52 -05:00
match url_to_file_id(&self.vfs.read().0, &diag.url) {
2020-06-26 05:02:59 -05:00
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-25 10:14:11 -05:00
}
};
}
}
2020-06-25 10:14:11 -05:00
flycheck::Message::Progress(status) => {
let (state, message) = match status {
2020-06-26 09:17:22 -05:00
flycheck::Progress::DidStart => {
self.diagnostics.clear_check();
(Progress::Begin, None)
2020-06-26 09:33:57 -05:00
}
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)
}
2020-06-26 09:17:22 -05:00
(Progress::End, None)
}
};
2020-06-26 09:33:57 -05:00
self.report_progress("cargo check", state, message, None);
2020-06-25 10:14:11 -05:00
}
},
}
let state_changed = self.process_changes();
2020-07-01 09:01:03 -05:00
if prev_status == Status::Loading && self.status == Status::Ready {
if let Some(flycheck) = &self.flycheck {
2020-06-25 17:27:39 -05:00
flycheck.handle.update();
2020-06-25 10:14:11 -05:00
}
}
2020-06-25 10:14:11 -05:00
2020-07-01 09:01:03 -05:00
if self.status == Status::Ready && (state_changed || prev_status == Status::Loading) {
let subscriptions = self
.mem_docs
.iter()
.map(|path| self.vfs.read().0.file_id(&path).unwrap())
.collect::<Vec<_>>();
2020-06-25 10:14:11 -05:00
self.update_file_notifications_on_threadpool(subscriptions);
}
2020-06-25 10:14:11 -05:00
2020-06-25 15:45:35 -05: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();
2020-06-26 10:07:14 -05:00
self.send_notification::<lsp_types::notification::PublishDiagnostics>(
lsp_types::PublishDiagnosticsParams { uri: url, diagnostics, version: None },
);
2020-06-25 15:45:35 -05:00
}
}
let loop_duration = loop_start.elapsed();
if loop_duration > Duration::from_millis(100) {
2020-06-25 15:45:35 -05: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 10:14:11 -05:00
}
}
Ok(())
2020-06-25 10:14:11 -05:00
}
fn on_request(&mut self, request_received: Instant, req: Request) -> Result<()> {
2020-06-26 10:07:14 -05:00
self.register_request(&req, request_received);
2020-06-25 12:23:52 -05:00
RequestDispatcher { req: Some(req), global_state: self }
2020-07-02 09:47:42 -05:00
.on_sync::<lsp_ext::ReloadWorkspace>(|s, ()| Ok(s.fetch_workspaces()))?
2020-06-25 10:14:11 -05: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>(|_, ()| Ok(()))?
.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))?
2020-06-25 10:14:11 -05:00
.on::<lsp_ext::AnalyzerStatus>(handlers::handle_analyzer_status)?
.on::<lsp_ext::SyntaxTree>(handlers::handle_syntax_tree)?
.on::<lsp_ext::ExpandMacro>(handlers::handle_expand_macro)?
.on::<lsp_ext::ParentModule>(handlers::handle_parent_module)?
.on::<lsp_ext::Runnables>(handlers::handle_runnables)?
.on::<lsp_ext::InlayHints>(handlers::handle_inlay_hints)?
.on::<lsp_ext::CodeActionRequest>(handlers::handle_code_action)?
.on::<lsp_ext::ResolveCodeActionRequest>(handlers::handle_resolve_code_action)?
.on::<lsp_ext::HoverRequest>(handlers::handle_hover)?
.on::<lsp_types::request::OnTypeFormatting>(handlers::handle_on_type_formatting)?
.on::<lsp_types::request::DocumentSymbolRequest>(handlers::handle_document_symbol)?
.on::<lsp_types::request::WorkspaceSymbol>(handlers::handle_workspace_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)?
.on::<lsp_types::request::Completion>(handlers::handle_completion)?
.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)?
.on::<lsp_types::request::DocumentHighlightRequest>(
handlers::handle_document_highlight,
)?
.on::<lsp_types::request::CallHierarchyPrepare>(
handlers::handle_call_hierarchy_prepare,
)?
.on::<lsp_types::request::CallHierarchyIncomingCalls>(
handlers::handle_call_hierarchy_incoming,
)?
.on::<lsp_types::request::CallHierarchyOutgoingCalls>(
handlers::handle_call_hierarchy_outgoing,
)?
.on::<lsp_types::request::SemanticTokensRequest>(handlers::handle_semantic_tokens)?
.on::<lsp_types::request::SemanticTokensRangeRequest>(
handlers::handle_semantic_tokens_range,
)?
.on::<lsp_ext::Ssr>(handlers::handle_ssr)?
.finish();
Ok(())
}
fn on_notification(&mut self, not: Notification) -> Result<()> {
2020-06-25 10:50:47 -05: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 10:14:11 -05:00
};
2020-06-26 10:07:14 -05:00
this.cancel(id);
2020-06-25 10:50:47 -05:00
Ok(())
})?
.on::<lsp_types::notification::DidOpenTextDocument>(|this, params| {
2020-06-25 10:14:11 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-25 10:50:47 -05:00
if !this.mem_docs.insert(path.clone()) {
2020-06-25 10:14:11 -05:00
log::error!("duplicate DidOpenTextDocument: {}", path)
}
2020-06-25 10:50:47 -05:00
this.vfs
2020-06-25 10:14:11 -05:00
.write()
.0
.set_file_contents(path, Some(params.text_document.text.into_bytes()));
}
2020-06-25 10:50:47 -05:00
Ok(())
})?
.on::<lsp_types::notification::DidChangeTextDocument>(|this, params| {
2020-06-25 10:14:11 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-25 10:50:47 -05:00
assert!(this.mem_docs.contains(&path));
let vfs = &mut this.vfs.write().0;
2020-06-25 10:14:11 -05: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);
vfs.set_file_contents(path, Some(text.into_bytes()))
}
2020-06-25 10:50:47 -05:00
Ok(())
})?
.on::<lsp_types::notification::DidCloseTextDocument>(|this, params| {
2020-06-25 10:14:11 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-25 10:50:47 -05:00
if !this.mem_docs.remove(&path) {
2020-06-25 10:14:11 -05:00
log::error!("orphan DidCloseTextDocument: {}", path)
}
if let Some(path) = path.as_path() {
2020-06-25 17:27:39 -05:00
this.loader.handle.invalidate(path.to_path_buf());
2020-06-25 10:14:11 -05:00
}
}
2020-06-26 10:07:14 -05:00
this.send_notification::<lsp_types::notification::PublishDiagnostics>(
lsp_types::PublishDiagnosticsParams {
uri: params.text_document.uri,
diagnostics: Vec::new(),
version: None,
},
);
2020-06-25 10:50:47 -05:00
Ok(())
})?
2020-07-02 08:32:56 -05:00
.on::<lsp_types::notification::DidSaveTextDocument>(|this, params| {
2020-06-25 10:50:47 -05:00
if let Some(flycheck) = &this.flycheck {
2020-06-25 17:27:39 -05:00
flycheck.handle.update();
2020-06-25 10:14:11 -05:00
}
if let Ok(abs_path) = from_proto::abs_path(&params.text_document.uri) {
this.maybe_refresh(&[(abs_path, ChangeKind::Modify)]);
}
2020-06-25 10:50:47 -05:00
Ok(())
})?
.on::<lsp_types::notification::DidChangeConfiguration>(|this, _params| {
2020-06-25 10:14:11 -05: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 10:07:14 -05:00
this.send_request::<lsp_types::request::WorkspaceConfiguration>(
2020-06-25 10:14:11 -05: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) {
2020-06-25 10:14:11 -05:00
let mut config = this.config.clone();
config.update(json.take());
2020-06-25 10:14:11 -05:00
this.update_configuration(config);
}
}
(None, None) => log::error!(
"received empty server settings response from the client"
),
}
},
);
return Ok(());
2020-06-25 10:50:47 -05:00
})?
.on::<lsp_types::notification::DidChangeWatchedFiles>(|this, params| {
2020-06-25 10:14:11 -05:00
for change in params.changes {
if let Ok(path) = from_proto::abs_path(&change.uri) {
2020-06-25 17:27:39 -05:00
this.loader.handle.invalidate(path);
2020-06-25 10:14:11 -05:00
}
}
2020-06-25 10:50:47 -05:00
Ok(())
})?
.finish();
2020-06-25 10:14:11 -05:00
Ok(())
}
fn update_file_notifications_on_threadpool(&mut self, subscriptions: Vec<FileId>) {
log::trace!("updating notifications for {:?}", subscriptions);
if self.config.publish_diagnostics {
let snapshot = self.snapshot();
let subscriptions = subscriptions.clone();
2020-06-25 17:27:39 -05:00
self.task_pool.handle.spawn(move || {
2020-06-25 10:14:11 -05:00
let diagnostics = subscriptions
.into_iter()
.filter_map(|file_id| {
handlers::publish_diagnostics(&snapshot, file_id)
.map_err(|err| {
if !is_canceled(&*err) {
log::error!("failed to compute diagnostics: {:?}", err);
}
()
})
.ok()
2020-06-25 15:45:35 -05:00
.map(|diags| (file_id, diags))
2020-06-25 10:14:11 -05:00
})
.collect::<Vec<_>>();
Task::Diagnostics(diagnostics)
})
}
2020-06-25 17:27:39 -05:00
self.task_pool.handle.spawn({
2020-06-25 10:14:11 -05:00
let subs = subscriptions;
let snap = self.snapshot();
move || {
snap.analysis.prime_caches(subs).unwrap_or_else(|_: Canceled| ());
Task::Unit
}
});
2019-08-31 06:47:37 -05:00
}
2018-09-01 09:40:45 -05:00
}