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

936 lines
35 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-24 17:35:22 -05:00
env, fmt,
ops::Range,
panic,
sync::Arc,
time::{Duration, Instant},
};
2018-08-12 16:09:30 -05:00
2020-03-30 04:46:04 -05:00
use crossbeam_channel::{never, select, unbounded, RecvError, Sender};
2020-06-25 02:13:46 -05:00
use flycheck::CheckTask;
2020-06-24 17:17:11 -05:00
use lsp_server::{Connection, ErrorCode, Message, Notification, Request, RequestId, Response};
2020-06-11 04:04:09 -05:00
use lsp_types::{request::Request as _, NumberOrString, TextDocumentContentChangeEvent};
2020-06-24 11:57:30 -05:00
use ra_db::VfsPath;
use ra_ide::{Canceled, FileId, LineIndex};
use ra_prof::profile;
use ra_project_model::{PackageRoot, ProjectWorkspace};
use serde::{de::DeserializeOwned, Serialize};
2019-01-06 02:41:11 -06:00
use threadpool::ThreadPool;
2018-08-12 16:09:30 -05:00
2018-10-15 12:15:53 -05:00
use crate::{
config::{Config, FilesWatcher, LinkedProject},
2020-06-13 04:00:06 -05:00
diagnostics::DiagnosticTask,
2020-06-03 04:16:08 -05:00
from_proto,
2020-06-24 17:17:11 -05:00
global_state::{file_id_to_url, GlobalState, GlobalStateSnapshot, Status},
2020-06-24 11:57:30 -05:00
handlers, lsp_ext,
lsp_utils::{is_canceled, notification_cast, notification_is, notification_new, show_message},
2020-06-24 11:57:30 -05:00
request_metrics::RequestMetrics,
2020-06-24 17:35:22 -05:00
LspError, Result,
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-03 04:16:08 -05:00
let mut global_state = {
2019-09-06 08:25:24 -05:00
let workspaces = {
if config.linked_projects.is_empty() && config.notifications.cargo_toml_not_found {
show_message(
2020-05-10 12:24:02 -05:00
lsp_types::MessageType::Error,
"rust-analyzer failed to discover workspace".to_string(),
2020-05-08 18:24:51 -05:00
&connection.sender,
);
};
config
.linked_projects
.iter()
.filter_map(|project| match project {
2020-06-03 07:48:38 -05:00
LinkedProject::ProjectManifest(manifest) => {
ra_project_model::ProjectWorkspace::load(
manifest.clone(),
&config.cargo,
config.with_sysroot,
)
.map_err(|err| {
log::error!("failed to load workspace: {:#}", err);
show_message(
lsp_types::MessageType::Error,
format!("rust-analyzer failed to load workspace: {:#}", err),
&connection.sender,
);
})
.ok()
}
LinkedProject::InlineJsonProject(it) => {
2020-06-24 08:52:07 -05:00
Some(ra_project_model::ProjectWorkspace::Json { project: it.clone() })
}
})
.collect::<Vec<_>>()
2019-09-06 08:25:24 -05:00
};
2020-06-24 17:17:11 -05:00
let mut req_queue = ReqQueue::default();
if let FilesWatcher::Client = config.files.watcher {
2020-05-10 12:24:02 -05:00
let registration_options = lsp_types::DidChangeWatchedFilesRegistrationOptions {
2019-09-06 08:25:24 -05:00
watchers: workspaces
.iter()
.flat_map(ProjectWorkspace::to_roots)
.filter(PackageRoot::is_member)
.map(|root| format!("{}/**/*.rs", root.path().display()))
2020-05-10 12:24:02 -05:00
.map(|glob_pattern| lsp_types::FileSystemWatcher { glob_pattern, kind: None })
2019-09-06 08:25:24 -05:00
.collect(),
};
2020-05-10 12:24:02 -05:00
let registration = lsp_types::Registration {
2019-09-06 08:25:24 -05:00
id: "file-watcher".to_string(),
method: "workspace/didChangeWatchedFiles".to_string(),
register_options: Some(serde_json::to_value(registration_options).unwrap()),
};
2020-05-10 12:24:02 -05:00
let params = lsp_types::RegistrationParams { registrations: vec![registration] };
2020-06-24 17:17:11 -05:00
let request = req_queue.outgoing.register(
2020-06-20 16:08:01 -05:00
lsp_types::request::RegisterCapability::METHOD.to_string(),
params,
DO_NOTHING,
);
2019-09-06 08:25:24 -05:00
connection.sender.send(request.into()).unwrap();
}
2020-06-24 17:17:11 -05:00
GlobalState::new(workspaces, config.lru_capacity, config, req_queue)
2019-08-22 06:44:16 -05:00
};
2018-12-19 06:04:15 -06:00
2020-01-25 06:27:36 -06:00
let pool = ThreadPool::default();
let (task_sender, task_receiver) = unbounded::<Task>();
2018-08-17 11:54:08 -05:00
log::info!("server initialized, serving requests");
2019-08-31 06:47:37 -05:00
{
let task_sender = task_sender;
loop {
log::trace!("selecting");
let event = select! {
recv(&connection.receiver) -> msg => match msg {
Ok(msg) => Event::Msg(msg),
Err(RecvError) => return Err("client exited without shutdown".into()),
2019-08-31 06:47:37 -05:00
},
recv(task_receiver) -> task => Event::Task(task.unwrap()),
2020-06-03 04:16:08 -05:00
recv(global_state.task_receiver) -> task => match task {
2019-08-31 06:47:37 -05:00
Ok(task) => Event::Vfs(task),
Err(RecvError) => return Err("vfs died".into()),
2019-08-31 06:47:37 -05:00
},
2020-06-25 01:39:33 -05:00
recv(global_state.flycheck.as_ref().map_or(&never(), |it| &it.1)) -> task => match task {
Ok(task) => Event::CheckWatcher(task),
Err(RecvError) => return Err("check watcher died".into()),
},
2019-08-31 06:47:37 -05:00
};
if let Event::Msg(Message::Request(req)) = &event {
if connection.handle_shutdown(&req)? {
break;
};
}
2020-06-11 04:04:09 -05:00
assert!(!global_state.vfs.read().0.has_changes());
2020-06-24 17:17:11 -05:00
loop_turn(&pool, &task_sender, &connection, &mut global_state, event)?;
2020-06-11 04:04:09 -05:00
assert!(!global_state.vfs.read().0.has_changes());
2019-08-31 06:47:37 -05:00
}
}
2020-06-03 04:16:08 -05:00
global_state.analysis_host.request_cancellation();
2018-12-06 12:03:39 -06:00
log::info!("waiting for tasks to finish...");
2020-06-24 17:17:11 -05:00
task_receiver.into_iter().for_each(|task| on_task(task, &connection.sender, &mut global_state));
2018-12-06 12:03:39 -06:00
log::info!("...tasks have finished");
log::info!("joining threadpool...");
pool.join();
2018-09-04 12:43:37 -05:00
drop(pool);
2018-12-06 12:03:39 -06:00
log::info!("...threadpool has finished");
2018-09-01 09:40:45 -05:00
2020-06-03 04:16:08 -05:00
let vfs = Arc::try_unwrap(global_state.vfs).expect("all snapshots should be dead");
drop(vfs);
2018-09-02 06:46:15 -05:00
2019-08-31 06:47:37 -05:00
Ok(())
2018-09-01 09:40:45 -05:00
}
#[derive(Debug)]
enum Task {
Respond(Response),
Diagnostic(DiagnosticTask),
}
2018-12-22 03:13:20 -06:00
enum Event {
Msg(Message),
2018-12-22 03:13:20 -06:00
Task(Task),
2020-06-11 04:04:09 -05:00
Vfs(vfs::loader::Message),
CheckWatcher(CheckTask),
2018-12-22 03:13:20 -06: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()
2018-12-22 03:13:20 -06:00
};
match self {
Event::Msg(Message::Notification(not)) => {
2020-05-10 12:24:02 -05:00
if notification_is::<lsp_types::notification::DidOpenTextDocument>(not)
|| notification_is::<lsp_types::notification::DidChangeTextDocument>(not)
{
2018-12-22 03:13:20 -06:00
return debug_verbose_not(not, f);
}
}
2018-12-22 06:09:08 -06:00
Event::Task(Task::Respond(resp)) => {
return f
.debug_struct("Response")
2018-12-22 06:09:08 -06:00
.field("id", &resp.id)
.field("error", &resp.error)
.finish();
}
2018-12-22 03:13:20 -06:00
_ => (),
}
match self {
Event::Msg(it) => fmt::Debug::fmt(it, f),
Event::Task(it) => fmt::Debug::fmt(it, f),
Event::Vfs(it) => fmt::Debug::fmt(it, f),
Event::CheckWatcher(it) => fmt::Debug::fmt(it, f),
2018-12-22 03:13:20 -06:00
}
}
}
2020-06-24 17:17:11 -05:00
pub(crate) type ReqHandler = fn(&mut GlobalState, Response);
pub(crate) type ReqQueue = lsp_server::ReqQueue<(&'static str, Instant), ReqHandler>;
2020-06-20 16:08:01 -05:00
const DO_NOTHING: ReqHandler = |_, _| ();
2019-09-06 08:25:24 -05:00
2019-08-31 06:47:37 -05:00
fn loop_turn(
2018-09-01 09:40:45 -05:00
pool: &ThreadPool,
2019-08-31 06:47:37 -05:00
task_sender: &Sender<Task>,
2019-08-30 12:18:57 -05:00
connection: &Connection,
2020-06-03 04:16:08 -05:00
global_state: &mut GlobalState,
2019-08-31 06:47:37 -05:00
event: Event,
) -> Result<()> {
2019-08-31 06:47:37 -05:00
let loop_start = Instant::now();
2019-08-31 06:47:37 -05:00
// NOTE: don't count blocking select! call as a loop-turn time
let _p = profile("main_loop_inner/loop-turn");
log::info!("loop turn = {:?}", event);
let queue_count = pool.queued_count();
if queue_count > 0 {
log::info!("queued count = {}", queue_count);
}
2019-05-29 06:59:01 -05:00
2020-06-11 04:04:09 -05:00
let mut became_ready = false;
2019-08-31 06:47:37 -05:00
match event {
Event::Task(task) => {
2020-06-24 17:17:11 -05:00
on_task(task, &connection.sender, global_state);
2020-06-03 04:16:08 -05:00
global_state.maybe_collect_garbage();
2019-05-29 06:34:21 -05:00
}
2020-06-11 04:04:09 -05:00
Event::Vfs(task) => match task {
vfs::loader::Message::Loaded { files } => {
let vfs = &mut global_state.vfs.write().0;
for (path, contents) in files {
let path = VfsPath::from(path);
2020-06-24 17:17:11 -05:00
if !global_state.mem_docs.contains(&path) {
2020-06-11 04:04:09 -05:00
vfs.set_file_contents(path, contents)
}
}
}
2020-06-24 09:58:49 -05:00
vfs::loader::Message::Progress { n_total, n_done } => {
let state = if n_done == 0 {
ProgressState::Start
} else if n_done < n_total {
ProgressState::Report
} else {
assert_eq!(n_done, n_total);
2020-06-24 17:17:11 -05:00
global_state.status = Status::Ready;
2020-06-11 04:04:09 -05:00
became_ready = true;
ProgressState::End
};
report_progress(
global_state,
&connection.sender,
"roots scanned",
state,
Some(format!("{}/{}", n_done, n_total)),
Some(percentage(n_done, n_total)),
)
2020-06-11 04:04:09 -05:00
}
},
Event::CheckWatcher(task) => {
on_check_task(task, global_state, task_sender, &connection.sender)?
}
2019-08-31 06:47:37 -05:00
Event::Msg(msg) => match msg {
2020-06-24 17:17:11 -05:00
Message::Request(req) => {
on_request(global_state, pool, task_sender, &connection.sender, loop_start, req)?
}
2019-08-31 06:47:37 -05:00
Message::Notification(not) => {
2020-06-24 17:17:11 -05:00
on_notification(&connection.sender, global_state, not)?;
2018-08-13 05:46:05 -05:00
}
2019-09-06 08:25:24 -05:00
Message::Response(resp) => {
2020-06-24 17:17:11 -05:00
let handler = global_state.req_queue.outgoing.complete(resp.id.clone());
handler(global_state, resp)
2019-09-06 08:25:24 -05:00
}
2019-08-31 06:47:37 -05:00
},
};
2018-08-30 08:27:09 -05:00
2020-06-11 04:04:09 -05:00
let state_changed = global_state.process_changes();
2020-06-11 04:04:09 -05:00
if became_ready {
2020-06-03 04:16:08 -05:00
if let Some(flycheck) = &global_state.flycheck {
2020-06-25 01:39:33 -05:00
flycheck.0.update();
2020-03-30 04:46:04 -05:00
}
2020-03-28 17:33:16 -05:00
}
2020-06-24 17:17:11 -05:00
if global_state.status == Status::Ready && (state_changed || became_ready) {
let subscriptions = global_state
2020-06-11 04:04:09 -05:00
.mem_docs
.iter()
.map(|path| global_state.vfs.read().0.file_id(&path).unwrap())
.collect::<Vec<_>>();
2018-12-19 06:04:15 -06:00
2019-08-31 06:47:37 -05:00
update_file_notifications_on_threadpool(
pool,
2020-06-03 04:16:08 -05:00
global_state.snapshot(),
2019-08-31 06:47:37 -05:00
task_sender.clone(),
2020-06-11 04:04:09 -05:00
subscriptions.clone(),
);
pool.execute({
2020-06-11 04:04:09 -05:00
let subs = subscriptions;
2020-06-03 04:16:08 -05:00
let snap = global_state.snapshot();
2020-06-24 17:41:08 -05:00
move || snap.analysis.prime_caches(subs).unwrap_or_else(|_: Canceled| ())
});
2018-08-12 14:08:14 -05:00
}
let loop_duration = loop_start.elapsed();
2020-01-29 07:04:10 -06:00
if loop_duration > Duration::from_millis(100) {
log::error!("overly long loop turn: {:?}", loop_duration);
if env::var("RA_PROFILE").is_ok() {
show_message(
2020-05-10 12:24:02 -05:00
lsp_types::MessageType::Error,
format!("overly long loop turn: {:?}", loop_duration),
&connection.sender,
);
}
}
Ok(())
2018-08-12 14:08:14 -05:00
}
2020-06-24 17:17:11 -05:00
fn on_task(task: Task, msg_sender: &Sender<Message>, global_state: &mut GlobalState) {
2018-09-01 10:03:57 -05:00
match task {
Task::Respond(response) => {
2020-06-24 17:17:11 -05:00
if let Some((method, start)) =
global_state.req_queue.incoming.complete(response.id.clone())
{
2020-06-20 16:08:01 -05:00
let duration = start.elapsed();
log::info!("handled req#{} in {:?}", response.id, duration);
2020-06-24 17:17:11 -05:00
global_state.complete_request(RequestMetrics {
2020-06-20 16:08:01 -05:00
id: response.id.clone(),
method: method.to_string(),
duration,
});
msg_sender.send(response.into()).unwrap();
2018-09-01 10:03:57 -05:00
}
}
2020-06-24 17:17:11 -05:00
Task::Diagnostic(task) => on_diagnostic_task(task, msg_sender, global_state),
2018-09-01 10:03:57 -05:00
}
}
2018-08-12 16:09:30 -05:00
fn on_request(
2020-06-03 04:16:08 -05:00
global_state: &mut GlobalState,
2018-08-12 16:09:30 -05:00
pool: &ThreadPool,
2020-01-29 04:15:08 -06:00
task_sender: &Sender<Task>,
msg_sender: &Sender<Message>,
2019-05-29 06:59:01 -05:00
request_received: Instant,
req: Request,
2019-05-31 12:42:53 -05:00
) -> Result<()> {
let mut pool_dispatcher = PoolDispatcher {
req: Some(req),
pool,
2020-06-03 04:16:08 -05:00
global_state,
2020-01-29 04:15:08 -06:00
task_sender,
2019-05-31 12:42:53 -05:00
msg_sender,
request_received,
};
pool_dispatcher
2020-05-10 12:25:37 -05:00
.on_sync::<lsp_ext::CollectGarbage>(|s, ()| Ok(s.collect_garbage()))?
.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))?
2020-05-10 12:24:02 -05:00
.on_sync::<lsp_types::request::SelectionRangeRequest>(|s, p| {
handlers::handle_selection_range(s.snapshot(), p)
})?
2020-05-24 10:04:17 -05:00
.on_sync::<lsp_ext::MatchingBrace>(|s, p| handlers::handle_matching_brace(s.snapshot(), p))?
2020-05-10 12:25:37 -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)?
2020-05-17 17:11:40 -05:00
.on::<lsp_ext::CodeActionRequest>(handlers::handle_code_action)?
.on::<lsp_ext::ResolveCodeActionRequest>(handlers::handle_resolve_code_action)?
2020-06-03 06:15:54 -05:00
.on::<lsp_ext::HoverRequest>(handlers::handle_hover)?
2020-05-10 12:24:02 -05:00
.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,
)?
2020-05-10 12:25:37 -05:00
.on::<lsp_ext::Ssr>(handlers::handle_ssr)?
2018-08-31 04:04:33 -05:00
.finish();
2019-05-31 12:42:53 -05:00
Ok(())
2018-08-12 14:08:14 -05:00
}
2018-08-12 16:09:30 -05:00
fn on_notification(
msg_sender: &Sender<Message>,
2020-06-11 04:04:09 -05:00
global_state: &mut GlobalState,
not: Notification,
2018-08-12 16:09:30 -05:00
) -> Result<()> {
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::Cancel>(not) {
2018-09-01 09:40:45 -05:00
Ok(params) => {
let id: RequestId = match params.id {
NumberOrString::Number(id) => id.into(),
NumberOrString::String(id) => id.into(),
2018-09-01 09:40:45 -05:00
};
2020-06-24 17:17:11 -05:00
if let Some(response) = global_state.req_queue.incoming.cancel(id) {
msg_sender.send(response.into()).unwrap()
2018-12-09 05:43:02 -06:00
}
return Ok(());
2018-08-31 04:04:33 -05:00
}
2018-09-01 09:40:45 -05:00
Err(not) => not,
};
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::DidOpenTextDocument>(not) {
2018-09-01 09:40:45 -05:00
Ok(params) => {
2020-06-11 04:04:09 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-24 17:17:11 -05:00
if !global_state.mem_docs.insert(path.clone()) {
2020-06-11 04:04:09 -05:00
log::error!("duplicate DidOpenTextDocument: {}", path)
}
global_state
.vfs
.write()
.0
.set_file_contents(path, Some(params.text_document.text.into_bytes()));
2018-12-19 06:04:15 -06:00
}
return Ok(());
2018-09-01 09:40:45 -05:00
}
Err(not) => not,
};
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::DidChangeTextDocument>(not) {
Ok(params) => {
2020-06-11 04:04:09 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-24 17:17:11 -05:00
assert!(global_state.mem_docs.contains(&path));
2020-06-11 04:04:09 -05:00
let vfs = &mut global_state.vfs.write().0;
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-03-30 04:46:04 -05:00
}
return Ok(());
}
Err(not) => not,
};
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::DidCloseTextDocument>(not) {
2018-09-01 09:40:45 -05:00
Ok(params) => {
2020-06-11 04:04:09 -05:00
if let Ok(path) = from_proto::vfs_path(&params.text_document.uri) {
2020-06-24 17:17:11 -05:00
if !global_state.mem_docs.remove(&path) {
2020-06-11 04:04:09 -05:00
log::error!("orphan DidCloseTextDocument: {}", path)
}
if let Some(path) = path.as_path() {
global_state.loader.invalidate(path.to_path_buf());
}
2018-12-19 06:04:15 -06:00
}
2020-06-11 04:04:09 -05:00
let params = lsp_types::PublishDiagnosticsParams {
uri: params.text_document.uri,
diagnostics: Vec::new(),
version: None,
};
2020-05-10 12:24:02 -05:00
let not = notification_new::<lsp_types::notification::PublishDiagnostics>(params);
msg_sender.send(not.into()).unwrap();
return Ok(());
2018-09-01 09:40:45 -05:00
}
Err(not) => not,
};
2020-06-11 04:04:09 -05:00
let not = match notification_cast::<lsp_types::notification::DidSaveTextDocument>(not) {
Ok(_params) => {
if let Some(flycheck) = &global_state.flycheck {
2020-06-25 01:39:33 -05:00
flycheck.0.update();
2020-06-11 04:04:09 -05:00
}
return Ok(());
}
Err(not) => not,
};
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::DidChangeConfiguration>(not) {
2020-03-20 17:01:47 -05:00
Ok(_) => {
// 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-24 17:17:11 -05:00
let request = global_state.req_queue.outgoing.register(
2020-06-20 16:08:01 -05:00
lsp_types::request::WorkspaceConfiguration::METHOD.to_string(),
lsp_types::ConfigurationParams {
items: vec![lsp_types::ConfigurationItem {
scope_uri: None,
section: Some("rust-analyzer".to_string()),
}],
},
|global_state, 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(configs)) => {
if let Some(new_config) = configs.get(0) {
let mut config = global_state.config.clone();
config.update(&new_config);
global_state.update_configuration(config);
}
}
2020-06-20 16:08:01 -05:00
(None, None) => {
log::error!("received empty server settings response from the client")
}
}
},
);
2020-03-20 17:01:47 -05:00
msg_sender.send(request.into())?;
2020-03-19 16:56:32 -05:00
return Ok(());
}
2020-03-19 16:56:32 -05:00
Err(not) => not,
};
2020-05-10 12:24:02 -05:00
let not = match notification_cast::<lsp_types::notification::DidChangeWatchedFiles>(not) {
2019-09-06 08:25:24 -05:00
Ok(params) => {
for change in params.changes {
2020-06-11 04:04:09 -05:00
if let Ok(path) = from_proto::abs_path(&change.uri) {
global_state.loader.invalidate(path)
}
2019-09-06 08:25:24 -05:00
}
return Ok(());
}
Err(not) => not,
};
if not.method.starts_with("$/") {
return Ok(());
}
2018-12-06 12:03:39 -06:00
log::error!("unhandled notification: {:?}", not);
2018-08-12 16:09:30 -05:00
Ok(())
}
fn apply_document_changes(
old_text: &mut String,
content_changes: Vec<TextDocumentContentChangeEvent>,
) {
2020-06-11 04:04:09 -05:00
let mut line_index = LineIndex::new(old_text);
// The changes we got must be applied sequentially, but can cross lines so we
// have to keep our line index updated.
// Some clients (e.g. Code) sort the ranges in reverse. As an optimization, we
// remember the last valid line in the index and only rebuild it if needed.
// The VFS will normalize the end of lines to `\n`.
enum IndexValid {
All,
UpToLineExclusive(u64),
}
impl IndexValid {
fn covers(&self, line: u64) -> bool {
match *self {
IndexValid::UpToLineExclusive(to) => to > line,
_ => true,
}
}
}
let mut index_valid = IndexValid::All;
for change in content_changes {
match change.range {
Some(range) => {
if !index_valid.covers(range.end.line) {
2020-06-11 04:04:09 -05:00
line_index = LineIndex::new(&old_text);
}
index_valid = IndexValid::UpToLineExclusive(range.start.line);
let range = from_proto::text_range(&line_index, range);
old_text.replace_range(Range::<usize>::from(range), &change.text);
}
None => {
*old_text = change.text;
index_valid = IndexValid::UpToLineExclusive(0);
}
}
}
}
fn on_check_task(
task: CheckTask,
2020-06-03 04:16:08 -05:00
global_state: &mut GlobalState,
task_sender: &Sender<Task>,
msg_sender: &Sender<Message>,
) -> Result<()> {
match task {
CheckTask::ClearDiagnostics => {
task_sender.send(Task::Diagnostic(DiagnosticTask::ClearCheck))?;
}
CheckTask::AddDiagnostic { workspace_root, diagnostic } => {
let diagnostics = crate::diagnostics::to_proto::map_rust_diagnostic_to_lsp(
2020-06-16 15:26:33 -05:00
&global_state.config.diagnostics,
&diagnostic,
&workspace_root,
);
for diag in diagnostics {
2020-06-11 04:04:09 -05:00
let path = from_proto::vfs_path(&diag.location.uri)?;
let file_id = match global_state.vfs.read().0.file_id(&path) {
Some(file) => FileId(file.0),
None => {
2020-06-11 04:04:09 -05:00
log::error!("File with cargo diagnostic not found in VFS: {}", path);
return Ok(());
}
};
task_sender.send(Task::Diagnostic(DiagnosticTask::AddCheck(
file_id,
diag.diagnostic,
diag.fixes.into_iter().map(|it| it.into()).collect(),
)))?;
}
}
CheckTask::Status(status) => {
let (state, message) = match status {
2020-06-25 02:13:46 -05:00
flycheck::Status::Being => (ProgressState::Start, None),
flycheck::Status::Progress(target) => (ProgressState::Report, Some(target)),
flycheck::Status::End => (ProgressState::End, None),
};
report_progress(global_state, msg_sender, "cargo check", state, message, None);
}
};
Ok(())
}
2020-06-03 04:16:08 -05:00
fn on_diagnostic_task(task: DiagnosticTask, msg_sender: &Sender<Message>, state: &mut GlobalState) {
let subscriptions = state.diagnostics.handle_task(task);
for file_id in subscriptions {
2020-06-11 04:04:09 -05:00
let url = file_id_to_url(&state.vfs.read().0, file_id);
let diagnostics = state.diagnostics.diagnostics_for(file_id).cloned().collect();
2020-06-13 04:00:06 -05:00
let params = lsp_types::PublishDiagnosticsParams { uri: url, diagnostics, version: None };
2020-05-10 12:24:02 -05:00
let not = notification_new::<lsp_types::notification::PublishDiagnostics>(params);
msg_sender.send(not.into()).unwrap();
}
}
#[derive(Eq, PartialEq)]
enum ProgressState {
Start,
Report,
End,
}
fn percentage(done: usize, total: usize) -> f64 {
(done as f64 / total.max(1) as f64) * 100.0
}
2020-06-11 04:04:09 -05:00
fn report_progress(
2020-06-24 17:17:11 -05:00
global_state: &mut GlobalState,
2020-06-11 04:04:09 -05:00
sender: &Sender<Message>,
title: &str,
state: ProgressState,
message: Option<String>,
percentage: Option<f64>,
2020-06-11 04:04:09 -05:00
) {
if !global_state.config.client_caps.work_done_progress {
return;
}
let token = lsp_types::ProgressToken::String(format!("rustAnalyzer/{}", title));
let work_done_progress = match state {
ProgressState::Start => {
let work_done_progress_create = global_state.req_queue.outgoing.register(
lsp_types::request::WorkDoneProgressCreate::METHOD.to_string(),
lsp_types::WorkDoneProgressCreateParams { token: token.clone() },
DO_NOTHING,
);
sender.send(work_done_progress_create.into()).unwrap();
lsp_types::WorkDoneProgress::Begin(lsp_types::WorkDoneProgressBegin {
title: title.into(),
cancellable: None,
message,
percentage,
})
}
ProgressState::Report => {
lsp_types::WorkDoneProgress::Report(lsp_types::WorkDoneProgressReport {
cancellable: None,
message,
percentage,
})
}
ProgressState::End => {
lsp_types::WorkDoneProgress::End(lsp_types::WorkDoneProgressEnd { message })
}
2020-06-11 04:04:09 -05:00
};
let notification =
notification_new::<lsp_types::notification::Progress>(lsp_types::ProgressParams {
token,
value: lsp_types::ProgressParamsValue::WorkDone(work_done_progress),
});
sender.send(notification.into()).unwrap();
}
2018-08-29 10:03:14 -05:00
struct PoolDispatcher<'a> {
req: Option<Request>,
2018-08-29 10:03:14 -05:00
pool: &'a ThreadPool,
2020-06-03 04:16:08 -05:00
global_state: &'a mut GlobalState,
msg_sender: &'a Sender<Message>,
2020-01-29 04:15:08 -06:00
task_sender: &'a Sender<Task>,
2019-05-31 12:42:53 -05:00
request_received: Instant,
2018-08-29 10:03:14 -05:00
}
impl<'a> PoolDispatcher<'a> {
/// Dispatches the request onto the current thread
2019-05-31 12:50:16 -05:00
fn on_sync<R>(
&mut self,
2020-06-03 04:16:08 -05:00
f: fn(&mut GlobalState, R::Params) -> Result<R::Result>,
2019-05-31 12:50:16 -05:00
) -> Result<&mut Self>
where
2020-05-10 12:24:02 -05:00
R: lsp_types::request::Request + 'static,
2019-10-24 01:52:32 -05:00
R::Params: DeserializeOwned + panic::UnwindSafe + 'static,
R::Result: Serialize + 'static,
2018-09-01 09:40:45 -05:00
{
2019-05-31 12:50:16 -05:00
let (id, params) = match self.parse::<R>() {
Some(it) => it,
None => {
2019-05-31 12:23:56 -05:00
return Ok(self);
2018-09-01 09:40:45 -05:00
}
2019-05-31 12:23:56 -05:00
};
2020-06-03 04:16:08 -05:00
let world = panic::AssertUnwindSafe(&mut *self.global_state);
2019-10-24 01:52:32 -05:00
let task = panic::catch_unwind(move || {
let result = f(world.0, params);
result_to_task::<R>(id, result)
})
.map_err(|_| format!("sync task {:?} panicked", R::METHOD))?;
2020-06-24 17:17:11 -05:00
on_task(task, self.msg_sender, self.global_state);
2019-05-31 12:50:16 -05:00
Ok(self)
}
2019-05-31 12:23:56 -05:00
/// Dispatches the request onto thread pool
2020-06-03 04:16:08 -05:00
fn on<R>(
&mut self,
f: fn(GlobalStateSnapshot, R::Params) -> Result<R::Result>,
) -> Result<&mut Self>
2019-05-31 12:50:16 -05:00
where
2020-05-10 12:24:02 -05:00
R: lsp_types::request::Request + 'static,
2019-05-31 12:50:16 -05:00
R::Params: DeserializeOwned + Send + 'static,
R::Result: Serialize + 'static,
{
let (id, params) = match self.parse::<R>() {
Some(it) => it,
None => {
return Ok(self);
}
};
2019-05-31 12:23:56 -05:00
2019-05-31 12:30:14 -05:00
self.pool.execute({
2020-06-03 04:16:08 -05:00
let world = self.global_state.snapshot();
2020-01-29 04:15:08 -06:00
let sender = self.task_sender.clone();
2019-05-31 12:30:14 -05:00
move || {
let result = f(world, params);
let task = result_to_task::<R>(id, result);
sender.send(task).unwrap();
}
2019-05-31 12:23:56 -05:00
});
2019-05-31 12:30:14 -05:00
2018-08-29 10:03:14 -05:00
Ok(self)
}
2018-08-31 04:04:33 -05:00
fn parse<R>(&mut self) -> Option<(RequestId, R::Params)>
2019-05-31 12:50:16 -05:00
where
2020-05-10 12:24:02 -05:00
R: lsp_types::request::Request + 'static,
2019-10-24 01:52:32 -05:00
R::Params: DeserializeOwned + 'static,
2019-05-31 12:50:16 -05:00
{
let req = self.req.take()?;
let (id, params) = match req.extract::<R::Params>(R::METHOD) {
2019-05-31 12:50:16 -05:00
Ok(it) => it,
Err(req) => {
self.req = Some(req);
return None;
}
};
2020-06-24 17:17:11 -05:00
self.global_state
.req_queue
.incoming
.register(id.clone(), (R::METHOD, self.request_received));
2019-05-31 12:50:16 -05:00
Some((id, params))
}
2019-05-31 12:42:53 -05:00
fn finish(&mut self) {
match self.req.take() {
None => (),
Some(req) => {
log::error!("unknown request: {:?}", req);
let resp = Response::new_err(
2019-05-31 12:42:53 -05:00
req.id,
ErrorCode::MethodNotFound as i32,
"unknown request".to_string(),
);
self.msg_sender.send(resp.into()).unwrap();
}
2018-08-31 04:04:33 -05:00
}
}
2018-08-12 14:08:14 -05:00
}
fn result_to_task<R>(id: RequestId, result: Result<R::Result>) -> Task
2019-05-31 12:30:14 -05:00
where
2020-05-10 12:24:02 -05:00
R: lsp_types::request::Request + 'static,
2019-10-24 01:52:32 -05:00
R::Params: DeserializeOwned + 'static,
2019-05-31 12:30:14 -05:00
R::Result: Serialize + 'static,
{
let response = match result {
Ok(resp) => Response::new_ok(id, &resp),
2019-05-31 12:30:14 -05:00
Err(e) => match e.downcast::<LspError>() {
2020-06-24 17:35:22 -05:00
Ok(lsp_error) => Response::new_err(id, lsp_error.code, lsp_error.message),
2019-05-31 12:30:14 -05:00
Err(e) => {
if is_canceled(&*e) {
Response::new_err(
id,
ErrorCode::ContentModified as i32,
"content modified".to_string(),
)
2019-05-31 12:30:14 -05:00
} else {
Response::new_err(id, ErrorCode::InternalError as i32, e.to_string())
2019-05-31 12:30:14 -05:00
}
}
},
};
Task::Respond(response)
}
2018-08-12 14:08:14 -05:00
fn update_file_notifications_on_threadpool(
pool: &ThreadPool,
2020-06-03 04:16:08 -05:00
world: GlobalStateSnapshot,
2020-01-29 04:15:08 -06:00
task_sender: Sender<Task>,
2018-08-30 08:27:09 -05:00
subscriptions: Vec<FileId>,
2018-08-12 14:08:14 -05:00
) {
2019-08-21 09:30:58 -05:00
log::trace!("updating notifications for {:?}", subscriptions);
2020-04-02 05:50:34 -05:00
if world.config.publish_diagnostics {
pool.execute(move || {
for file_id in subscriptions {
2019-08-22 06:44:16 -05:00
match handlers::publish_diagnostics(&world, file_id) {
Err(e) => {
if !is_canceled(&*e) {
2019-08-22 06:44:16 -05:00
log::error!("failed to compute diagnostics: {:?}", e);
}
}
Ok(task) => {
task_sender.send(Task::Diagnostic(task)).unwrap();
2018-10-25 08:03:49 -05:00
}
2018-08-30 08:27:09 -05:00
}
2018-08-12 14:08:14 -05:00
}
2020-04-02 05:50:34 -05:00
})
}
2018-08-12 14:08:14 -05:00
}
2018-09-03 15:32:42 -05:00
#[cfg(test)]
mod tests {
use lsp_types::{Position, Range, TextDocumentContentChangeEvent};
2020-06-11 04:04:09 -05:00
use super::*;
2020-06-11 04:04:09 -05:00
#[test]
fn test_apply_document_changes() {
macro_rules! c {
[$($sl:expr, $sc:expr; $el:expr, $ec:expr => $text:expr),+] => {
vec![$(TextDocumentContentChangeEvent {
range: Some(Range {
start: Position { line: $sl, character: $sc },
end: Position { line: $el, character: $ec },
}),
range_length: None,
text: String::from($text),
}),+]
};
}
let mut text = String::new();
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, vec![]);
assert_eq!(text, "");
2020-06-11 04:04:09 -05:00
apply_document_changes(
&mut text,
vec![TextDocumentContentChangeEvent {
range: None,
range_length: None,
text: String::from("the"),
}],
);
assert_eq!(text, "the");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 3; 0, 3 => " quick"]);
assert_eq!(text, "the quick");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 0; 0, 4 => "", 0, 5; 0, 5 => " foxes"]);
assert_eq!(text, "quick foxes");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 11; 0, 11 => "\ndream"]);
assert_eq!(text, "quick foxes\ndream");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![1, 0; 1, 0 => "have "]);
assert_eq!(text, "quick foxes\nhave dream");
2020-06-11 04:04:09 -05:00
apply_document_changes(
&mut text,
c![0, 0; 0, 0 => "the ", 1, 4; 1, 4 => " quiet", 1, 16; 1, 16 => "s\n"],
);
assert_eq!(text, "the quick foxes\nhave quiet dreams\n");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 15; 0, 15 => "\n", 2, 17; 2, 17 => "\n"]);
assert_eq!(text, "the quick foxes\n\nhave quiet dreams\n\n");
2020-06-11 04:04:09 -05:00
apply_document_changes(
&mut text,
c![1, 0; 1, 0 => "DREAM", 2, 0; 2, 0 => "they ", 3, 0; 3, 0 => "DON'T THEY?"],
);
assert_eq!(text, "the quick foxes\nDREAM\nthey have quiet dreams\nDON'T THEY?\n");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 10; 1, 5 => "", 2, 0; 2, 12 => ""]);
assert_eq!(text, "the quick \nthey have quiet dreams\n");
2020-05-05 11:22:01 -05:00
text = String::from("❤️");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 0; 0, 0 => "a"]);
2020-05-05 11:22:01 -05:00
assert_eq!(text, "a❤");
text = String::from("a\nb");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 1; 1, 0 => "\nțc", 0, 1; 1, 1 => "d"]);
2020-05-05 11:22:01 -05:00
assert_eq!(text, "adcb");
text = String::from("a\nb");
2020-06-11 04:04:09 -05:00
apply_document_changes(&mut text, c![0, 1; 1, 0 => "ț\nc", 0, 2; 0, 2 => "c"]);
2020-05-05 11:22:01 -05:00
assert_eq!(text, "ațc\ncb");
}
}