aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/cargo_check.rs
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2019-12-25 18:08:44 +0000
committerEmil Lauridsen <[email protected]>2019-12-25 18:08:44 +0000
commit178c23f50549298aad0dc0f098f8ed510a57f9d6 (patch)
treecd6a937505d5f14aec9c960ee7ac21a943f24118 /crates/ra_lsp_server/src/cargo_check.rs
parent500fe46e6c0df7827d56c7cd07741533422e7743 (diff)
Re-implement status display using LSP 3.15 progress event
Diffstat (limited to 'crates/ra_lsp_server/src/cargo_check.rs')
-rw-r--r--crates/ra_lsp_server/src/cargo_check.rs53
1 files changed, 44 insertions, 9 deletions
diff --git a/crates/ra_lsp_server/src/cargo_check.rs b/crates/ra_lsp_server/src/cargo_check.rs
index 5a6a209eb..dd8c5d407 100644
--- a/crates/ra_lsp_server/src/cargo_check.rs
+++ b/crates/ra_lsp_server/src/cargo_check.rs
@@ -9,7 +9,8 @@ use cargo_metadata::{
9use crossbeam_channel::{select, unbounded, Receiver, RecvError, Sender, TryRecvError}; 9use crossbeam_channel::{select, unbounded, Receiver, RecvError, Sender, TryRecvError};
10use lsp_types::{ 10use lsp_types::{
11 Diagnostic, DiagnosticRelatedInformation, DiagnosticSeverity, DiagnosticTag, Location, 11 Diagnostic, DiagnosticRelatedInformation, DiagnosticSeverity, DiagnosticTag, Location,
12 NumberOrString, Position, Range, Url, 12 NumberOrString, Position, Range, Url, WorkDoneProgress, WorkDoneProgressBegin,
13 WorkDoneProgressEnd, WorkDoneProgressReport,
13}; 14};
14use parking_lot::RwLock; 15use parking_lot::RwLock;
15use std::{ 16use std::{
@@ -132,6 +133,7 @@ impl CheckWatcherSharedState {
132#[derive(Debug)] 133#[derive(Debug)]
133pub enum CheckTask { 134pub enum CheckTask {
134 Update(Url), 135 Update(Url),
136 Status(WorkDoneProgress),
135} 137}
136 138
137pub enum CheckCommand { 139pub enum CheckCommand {
@@ -204,13 +206,38 @@ impl CheckWatcherState {
204 } 206 }
205 } 207 }
206 208
207 fn handle_message(&mut self, msg: cargo_metadata::Message, task_send: &Sender<CheckTask>) { 209 fn handle_message(&mut self, msg: CheckEvent, task_send: &Sender<CheckTask>) {
208 match msg { 210 match msg {
209 Message::CompilerArtifact(_msg) => { 211 CheckEvent::Begin => {
210 // TODO: Status display 212 task_send
213 .send(CheckTask::Status(WorkDoneProgress::Begin(WorkDoneProgressBegin {
214 title: "Running 'cargo check'".to_string(),
215 cancellable: Some(false),
216 message: None,
217 percentage: None,
218 })))
219 .unwrap();
211 } 220 }
212 221
213 Message::CompilerMessage(msg) => { 222 CheckEvent::End => {
223 task_send
224 .send(CheckTask::Status(WorkDoneProgress::End(WorkDoneProgressEnd {
225 message: None,
226 })))
227 .unwrap();
228 }
229
230 CheckEvent::Msg(Message::CompilerArtifact(msg)) => {
231 task_send
232 .send(CheckTask::Status(WorkDoneProgress::Report(WorkDoneProgressReport {
233 cancellable: Some(false),
234 message: Some(msg.target.name),
235 percentage: None,
236 })))
237 .unwrap();
238 }
239
240 CheckEvent::Msg(Message::CompilerMessage(msg)) => {
214 let map_result = 241 let map_result =
215 match map_rust_diagnostic_to_lsp(&msg.message, &self.workspace_root) { 242 match map_rust_diagnostic_to_lsp(&msg.message, &self.workspace_root) {
216 Some(map_result) => map_result, 243 Some(map_result) => map_result,
@@ -232,8 +259,8 @@ impl CheckWatcherState {
232 task_send.send(CheckTask::Update(location.uri)).unwrap(); 259 task_send.send(CheckTask::Update(location.uri)).unwrap();
233 } 260 }
234 261
235 Message::BuildScriptExecuted(_msg) => {} 262 CheckEvent::Msg(Message::BuildScriptExecuted(_msg)) => {}
236 Message::Unknown => {} 263 CheckEvent::Msg(Message::Unknown) => {}
237 } 264 }
238 } 265 }
239} 266}
@@ -244,10 +271,16 @@ impl CheckWatcherState {
244/// have to wrap sub-processes output handling in a thread and pass messages 271/// have to wrap sub-processes output handling in a thread and pass messages
245/// back over a channel. 272/// back over a channel.
246struct WatchThread { 273struct WatchThread {
247 message_recv: Receiver<cargo_metadata::Message>, 274 message_recv: Receiver<CheckEvent>,
248 cancel_send: Sender<()>, 275 cancel_send: Sender<()>,
249} 276}
250 277
278enum CheckEvent {
279 Begin,
280 Msg(cargo_metadata::Message),
281 End,
282}
283
251impl WatchThread { 284impl WatchThread {
252 fn new( 285 fn new(
253 check_command: Option<&String>, 286 check_command: Option<&String>,
@@ -273,6 +306,7 @@ impl WatchThread {
273 .spawn() 306 .spawn()
274 .expect("couldn't launch cargo"); 307 .expect("couldn't launch cargo");
275 308
309 message_send.send(CheckEvent::Begin).unwrap();
276 for message in cargo_metadata::parse_messages(command.stdout.take().unwrap()) { 310 for message in cargo_metadata::parse_messages(command.stdout.take().unwrap()) {
277 match cancel_recv.try_recv() { 311 match cancel_recv.try_recv() {
278 Ok(()) | Err(TryRecvError::Disconnected) => { 312 Ok(()) | Err(TryRecvError::Disconnected) => {
@@ -281,8 +315,9 @@ impl WatchThread {
281 Err(TryRecvError::Empty) => (), 315 Err(TryRecvError::Empty) => (),
282 } 316 }
283 317
284 message_send.send(message.unwrap()).unwrap(); 318 message_send.send(CheckEvent::Msg(message.unwrap())).unwrap();
285 } 319 }
320 message_send.send(CheckEvent::End).unwrap();
286 }); 321 });
287 WatchThread { message_recv, cancel_send } 322 WatchThread { message_recv, cancel_send }
288 } 323 }