From 8d569d49d2508cd7b50dd3d00d5509d4128bf645 Mon Sep 17 00:00:00 2001 From: Roberto Vidal Date: Wed, 17 Apr 2019 00:32:33 +0200 Subject: Breaks read loop on 'exit' --- crates/gen_lsp_server/src/lib.rs | 2 +- crates/gen_lsp_server/src/stdio.rs | 18 +++++++++++++++--- crates/ra_lsp_server/src/main.rs | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) (limited to 'crates') diff --git a/crates/gen_lsp_server/src/lib.rs b/crates/gen_lsp_server/src/lib.rs index 86b72f663..edbdda6c8 100644 --- a/crates/gen_lsp_server/src/lib.rs +++ b/crates/gen_lsp_server/src/lib.rs @@ -22,7 +22,7 @@ //! sender, //! main_loop, //! )?; -//! io_threads.exit()?; +//! io_threads.join()?; //! Ok(()) //! } //! diff --git a/crates/gen_lsp_server/src/stdio.rs b/crates/gen_lsp_server/src/stdio.rs index c5fe5b83a..5edfbc39c 100644 --- a/crates/gen_lsp_server/src/stdio.rs +++ b/crates/gen_lsp_server/src/stdio.rs @@ -5,6 +5,7 @@ use std::{ use crossbeam_channel::{bounded, Receiver, Sender}; use failure::bail; +use lsp_types::notification::Exit; use crate::{RawMessage, Result}; @@ -21,9 +22,18 @@ pub fn stdio_transport() -> (Receiver, Sender, Threads) let stdin = stdin(); let mut stdin = stdin.lock(); while let Some(msg) = RawMessage::read(&mut stdin)? { + let is_exit = match &msg { + RawMessage::Notification(n) => n.is::(), + _ => false, + }; + if let Err(_) = reader_sender.send(msg) { break; } + + if is_exit { + break; + } } Ok(()) }); @@ -37,9 +47,11 @@ pub struct Threads { } impl Threads { - pub fn exit(self) -> Result<()> { - // We can't rely on stdin being closed - drop(self.reader); + pub fn join(self) -> Result<()> { + match self.reader.join() { + Ok(r) => r?, + Err(_) => bail!("reader panicked"), + } match self.writer.join() { Ok(r) => r, Err(_) => bail!("writer panicked"), diff --git a/crates/ra_lsp_server/src/main.rs b/crates/ra_lsp_server/src/main.rs index 6b1274a3b..b0b70df5c 100644 --- a/crates/ra_lsp_server/src/main.rs +++ b/crates/ra_lsp_server/src/main.rs @@ -54,7 +54,7 @@ fn main_inner() -> Result<()> { ra_lsp_server::main_loop(workspace_roots, opts, r, s) })?; log::info!("shutting down IO..."); - threads.exit()?; + threads.join()?; log::info!("... IO is down"); Ok(()) } -- cgit v1.2.3