From 9cdeb1291e84f922ecd3ce2218ed2c116ae13e17 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 25 Jun 2020 14:13:17 +0200 Subject: Better event naming --- crates/rust-analyzer/src/main_loop.rs | 46 +++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 3b3b83209..a7a7d2eb7 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs @@ -7,7 +7,7 @@ use std::{ }; use crossbeam_channel::{never, select, unbounded, RecvError, Sender}; -use lsp_server::{Connection, ErrorCode, Message, Notification, Request, RequestId, Response}; +use lsp_server::{Connection, ErrorCode, Notification, Request, RequestId, Response}; use lsp_types::{request::Request as _, NumberOrString}; use ra_db::VfsPath; use ra_ide::{Canceled, FileId}; @@ -128,7 +128,7 @@ pub fn main_loop(config: Config, connection: Connection) -> Result<()> { log::trace!("selecting"); let event = select! { recv(&connection.receiver) -> msg => match msg { - Ok(msg) => Event::Msg(msg), + Ok(msg) => Event::Lsp(msg), Err(RecvError) => return Err("client exited without shutdown".into()), }, recv(task_receiver) -> task => Event::Task(task.unwrap()), @@ -137,11 +137,11 @@ pub fn main_loop(config: Config, connection: Connection) -> Result<()> { Err(RecvError) => return Err("vfs died".into()), }, recv(global_state.flycheck.as_ref().map_or(&never(), |it| &it.1)) -> task => match task { - Ok(task) => Event::CheckWatcher(task), + Ok(task) => Event::Flycheck(task), Err(RecvError) => return Err("check watcher died".into()), }, }; - if let Event::Msg(Message::Request(req)) = &event { + if let Event::Lsp(lsp_server::Message::Request(req)) = &event { if connection.handle_shutdown(&req)? { break; }; @@ -173,10 +173,10 @@ enum Task { } enum Event { - Msg(Message), + Lsp(lsp_server::Message), Task(Task), Vfs(vfs::loader::Message), - CheckWatcher(flycheck::Message), + Flycheck(flycheck::Message), } impl fmt::Debug for Event { @@ -186,7 +186,7 @@ impl fmt::Debug for Event { }; match self { - Event::Msg(Message::Notification(not)) => { + Event::Lsp(lsp_server::Message::Notification(not)) => { if notification_is::(not) || notification_is::(not) { @@ -203,10 +203,10 @@ impl fmt::Debug for Event { _ => (), } match self { - Event::Msg(it) => fmt::Debug::fmt(it, f), + 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::CheckWatcher(it) => fmt::Debug::fmt(it, f), + Event::Flycheck(it) => fmt::Debug::fmt(it, f), } } } @@ -269,17 +269,17 @@ fn loop_turn( ) } }, - Event::CheckWatcher(task) => { + Event::Flycheck(task) => { on_check_task(task, global_state, task_sender, &connection.sender)? } - Event::Msg(msg) => match msg { - Message::Request(req) => { + Event::Lsp(msg) => match msg { + lsp_server::Message::Request(req) => { on_request(global_state, pool, task_sender, &connection.sender, loop_start, req)? } - Message::Notification(not) => { + lsp_server::Message::Notification(not) => { on_notification(&connection.sender, global_state, not)?; } - Message::Response(resp) => { + lsp_server::Message::Response(resp) => { let handler = global_state.req_queue.outgoing.complete(resp.id.clone()); handler(global_state, resp) } @@ -329,7 +329,7 @@ fn loop_turn( Ok(()) } -fn on_task(task: Task, msg_sender: &Sender, global_state: &mut GlobalState) { +fn on_task(task: Task, msg_sender: &Sender, global_state: &mut GlobalState) { match task { Task::Respond(response) => { if let Some((method, start)) = @@ -353,7 +353,7 @@ fn on_request( global_state: &mut GlobalState, pool: &ThreadPool, task_sender: &Sender, - msg_sender: &Sender, + msg_sender: &Sender, request_received: Instant, req: Request, ) -> Result<()> { @@ -415,7 +415,7 @@ fn on_request( } fn on_notification( - msg_sender: &Sender, + msg_sender: &Sender, global_state: &mut GlobalState, not: Notification, ) -> Result<()> { @@ -553,7 +553,7 @@ fn on_check_task( task: flycheck::Message, global_state: &mut GlobalState, task_sender: &Sender, - msg_sender: &Sender, + msg_sender: &Sender, ) -> Result<()> { match task { flycheck::Message::ClearDiagnostics => { @@ -598,7 +598,11 @@ fn on_check_task( Ok(()) } -fn on_diagnostic_task(task: DiagnosticTask, msg_sender: &Sender, state: &mut GlobalState) { +fn on_diagnostic_task( + task: DiagnosticTask, + msg_sender: &Sender, + state: &mut GlobalState, +) { let subscriptions = state.diagnostics.handle_task(task); for file_id in subscriptions { @@ -623,7 +627,7 @@ fn percentage(done: usize, total: usize) -> f64 { fn report_progress( global_state: &mut GlobalState, - sender: &Sender, + sender: &Sender, title: &str, state: Progress, message: Option, @@ -672,7 +676,7 @@ struct PoolDispatcher<'a> { req: Option, pool: &'a ThreadPool, global_state: &'a mut GlobalState, - msg_sender: &'a Sender, + msg_sender: &'a Sender, task_sender: &'a Sender, request_received: Instant, } -- cgit v1.2.3