mod input_handler; pub use lsp_types::request::*; pub use lsp_types::*; use anyhow::{anyhow, Context, Result}; use collections::HashMap; use futures::{channel::oneshot, io::BufWriter, select, AsyncRead, AsyncWrite, Future, FutureExt}; use gpui::{AppContext, AsyncAppContext, BackgroundExecutor, Task}; use parking_lot::{Mutex, RwLock}; use postage::{barrier, prelude::Stream}; use serde::{de::DeserializeOwned, Deserialize, Serialize}; use serde_json::{json, value::RawValue, Value}; use smol::{ channel, io::{AsyncBufReadExt, AsyncWriteExt, BufReader}, process::{self, Child}, }; #[cfg(target_os = "windows")] use smol::process::windows::CommandExt; use std::{ ffi::OsString, fmt, io::Write, ops::DerefMut, path::PathBuf, pin::Pin, sync::{ atomic::{AtomicI32, Ordering::SeqCst}, Arc, Weak, }, task::Poll, time::{Duration, Instant}, }; use std::{path::Path, process::Stdio}; use util::{ResultExt, TryFutureExt}; const JSON_RPC_VERSION: &str = "2.0"; const CONTENT_LEN_HEADER: &str = "Content-Length: "; const LSP_REQUEST_TIMEOUT: Duration = Duration::from_secs(60 * 2); const SERVER_SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(5); type NotificationHandler = Box, Value, AsyncAppContext)>; type ResponseHandler = Box)>; type IoHandler = Box; /// Kind of language server stdio given to an IO handler. #[derive(Debug, Clone, Copy)] pub enum IoKind { StdOut, StdIn, StdErr, } /// Represents a launchable language server. This can either be a standalone binary or the path /// to a runtime with arguments to instruct it to launch the actual language server file. #[derive(Debug, Clone, Deserialize)] pub struct LanguageServerBinary { pub path: PathBuf, pub arguments: Vec, pub env: Option>, } /// A running language server process. pub struct LanguageServer { server_id: LanguageServerId, next_id: AtomicI32, outbound_tx: channel::Sender, name: Arc, capabilities: RwLock, code_action_kinds: Option>, notification_handlers: Arc>>, response_handlers: Arc>>>, io_handlers: Arc>>, executor: BackgroundExecutor, #[allow(clippy::type_complexity)] io_tasks: Mutex>, Task>)>>, output_done_rx: Mutex>, root_path: PathBuf, working_dir: PathBuf, server: Arc>>, } /// Identifies a running language server. #[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)] #[repr(transparent)] pub struct LanguageServerId(pub usize); /// Handle to a language server RPC activity subscription. pub enum Subscription { Notification { method: &'static str, notification_handlers: Option>>>, }, Io { id: i32, io_handlers: Option>>>, }, } /// Language server protocol RPC request message ID. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#requestMessage) #[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize)] #[serde(untagged)] pub enum RequestId { Int(i32), Str(String), } /// Language server protocol RPC request message. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#requestMessage) #[derive(Serialize, Deserialize)] pub struct Request<'a, T> { jsonrpc: &'static str, id: RequestId, method: &'a str, params: T, } /// Language server protocol RPC request response message before it is deserialized into a concrete type. #[derive(Serialize, Deserialize)] struct AnyResponse<'a> { jsonrpc: &'a str, id: RequestId, #[serde(default)] error: Option, #[serde(borrow)] result: Option<&'a RawValue>, } /// Language server protocol RPC request response message. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#responseMessage) #[derive(Serialize)] struct Response { jsonrpc: &'static str, id: RequestId, #[serde(flatten)] value: LspResult, } #[derive(Serialize)] #[serde(rename_all = "snake_case")] enum LspResult { #[serde(rename = "result")] Ok(Option), Error(Option), } /// Language server protocol RPC notification message. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#notificationMessage) #[derive(Serialize, Deserialize)] struct Notification<'a, T> { jsonrpc: &'static str, #[serde(borrow)] method: &'a str, params: T, } /// Language server RPC notification message before it is deserialized into a concrete type. #[derive(Debug, Clone, Deserialize)] struct AnyNotification { #[serde(default)] id: Option, method: String, #[serde(default)] params: Option, } #[derive(Debug, Serialize, Deserialize)] struct Error { message: String, } pub trait LspRequestFuture: Future { fn id(&self) -> i32; } struct LspRequest { id: i32, request: F, } impl LspRequest { pub fn new(id: i32, request: F) -> Self { Self { id, request } } } impl Future for LspRequest { type Output = F::Output; fn poll(self: Pin<&mut Self>, cx: &mut std::task::Context<'_>) -> Poll { // SAFETY: This is standard pin projection, we're pinned so our fields must be pinned. let inner = unsafe { Pin::new_unchecked(&mut self.get_unchecked_mut().request) }; inner.poll(cx) } } impl LspRequestFuture for LspRequest { fn id(&self) -> i32 { self.id } } /// Combined capabilities of the server and the adapter. pub struct AdapterServerCapabilities { // Reported capabilities by the server pub server_capabilities: ServerCapabilities, // List of code actions supported by the LspAdapter matching the server pub code_action_kinds: Option>, } /// Experimental: Informs the end user about the state of the server /// /// [Rust Analyzer Specification](https://github.com/rust-lang/rust-analyzer/blob/master/docs/dev/lsp-extensions.md#server-status) #[derive(Debug)] pub enum ServerStatus {} /// Other(String) variant to handle unknown values due to this still being experimental #[derive(Debug, PartialEq, Deserialize, Serialize, Clone)] #[serde(rename_all = "camelCase")] pub enum ServerHealthStatus { Ok, Warning, Error, Other(String), } #[derive(Debug, PartialEq, Deserialize, Serialize, Clone)] #[serde(rename_all = "camelCase")] pub struct ServerStatusParams { pub health: ServerHealthStatus, pub message: Option, } impl lsp_types::notification::Notification for ServerStatus { type Params = ServerStatusParams; const METHOD: &'static str = "experimental/serverStatus"; } impl LanguageServer { /// Starts a language server process. pub fn new( stderr_capture: Arc>>, server_id: LanguageServerId, binary: LanguageServerBinary, root_path: &Path, code_action_kinds: Option>, cx: AsyncAppContext, ) -> Result { let working_dir = if root_path.is_dir() { root_path } else { root_path.parent().unwrap_or_else(|| Path::new("/")) }; log::info!( "starting language server. binary path: {:?}, working directory: {:?}, args: {:?}", binary.path, working_dir, &binary.arguments ); let mut command = process::Command::new(&binary.path); command .current_dir(working_dir) .args(&binary.arguments) .envs(binary.env.unwrap_or_default()) .stdin(Stdio::piped()) .stdout(Stdio::piped()) .stderr(Stdio::piped()) .kill_on_drop(true); #[cfg(windows)] command.creation_flags(windows::Win32::System::Threading::CREATE_NO_WINDOW.0); let mut server = command.spawn().with_context(|| { format!( "failed to spawn command. path: {:?}, working directory: {:?}, args: {:?}", binary.path, working_dir, &binary.arguments ) })?; let stdin = server.stdin.take().unwrap(); let stdout = server.stdout.take().unwrap(); let stderr = server.stderr.take().unwrap(); let mut server = Self::new_internal( server_id, stdin, stdout, Some(stderr), stderr_capture, Some(server), root_path, working_dir, code_action_kinds, cx, move |notification| { log::info!( "Language server with id {} sent unhandled notification {}:\n{}", server_id, notification.method, serde_json::to_string_pretty(¬ification.params).unwrap(), ); }, ); if let Some(name) = binary.path.file_name() { server.name = name.to_string_lossy().into(); } Ok(server) } #[allow(clippy::too_many_arguments)] fn new_internal( server_id: LanguageServerId, stdin: Stdin, stdout: Stdout, stderr: Option, stderr_capture: Arc>>, server: Option, root_path: &Path, working_dir: &Path, code_action_kinds: Option>, cx: AsyncAppContext, on_unhandled_notification: F, ) -> Self where Stdin: AsyncWrite + Unpin + Send + 'static, Stdout: AsyncRead + Unpin + Send + 'static, Stderr: AsyncRead + Unpin + Send + 'static, F: FnMut(AnyNotification) + 'static + Send + Sync + Clone, { let (outbound_tx, outbound_rx) = channel::unbounded::(); let (output_done_tx, output_done_rx) = barrier::channel(); let notification_handlers = Arc::new(Mutex::new(HashMap::<_, NotificationHandler>::default())); let response_handlers = Arc::new(Mutex::new(Some(HashMap::<_, ResponseHandler>::default()))); let io_handlers = Arc::new(Mutex::new(HashMap::default())); let stdout_input_task = cx.spawn({ let on_unhandled_notification = on_unhandled_notification.clone(); let notification_handlers = notification_handlers.clone(); let response_handlers = response_handlers.clone(); let io_handlers = io_handlers.clone(); move |cx| { Self::handle_input( stdout, on_unhandled_notification, notification_handlers, response_handlers, io_handlers, cx, ) .log_err() } }); let stderr_input_task = stderr .map(|stderr| { let io_handlers = io_handlers.clone(); let stderr_captures = stderr_capture.clone(); cx.spawn(|_| Self::handle_stderr(stderr, io_handlers, stderr_captures).log_err()) }) .unwrap_or_else(|| Task::Ready(Some(None))); let input_task = cx.spawn(|_| async move { let (stdout, stderr) = futures::join!(stdout_input_task, stderr_input_task); stdout.or(stderr) }); let output_task = cx.background_executor().spawn({ Self::handle_output( stdin, outbound_rx, output_done_tx, response_handlers.clone(), io_handlers.clone(), ) .log_err() }); Self { server_id, notification_handlers, response_handlers, io_handlers, name: Arc::default(), capabilities: Default::default(), code_action_kinds, next_id: Default::default(), outbound_tx, executor: cx.background_executor().clone(), io_tasks: Mutex::new(Some((input_task, output_task))), output_done_rx: Mutex::new(Some(output_done_rx)), root_path: root_path.to_path_buf(), working_dir: working_dir.to_path_buf(), server: Arc::new(Mutex::new(server)), } } /// List of code action kinds this language server reports being able to emit. pub fn code_action_kinds(&self) -> Option> { self.code_action_kinds.clone() } async fn handle_input( stdout: Stdout, mut on_unhandled_notification: F, notification_handlers: Arc>>, response_handlers: Arc>>>, io_handlers: Arc>>, cx: AsyncAppContext, ) -> anyhow::Result<()> where Stdout: AsyncRead + Unpin + Send + 'static, F: FnMut(AnyNotification) + 'static + Send, { use smol::stream::StreamExt; let stdout = BufReader::new(stdout); let _clear_response_handlers = util::defer({ let response_handlers = response_handlers.clone(); move || { response_handlers.lock().take(); } }); let mut input_handler = input_handler::LspStdoutHandler::new( stdout, response_handlers, io_handlers, cx.background_executor().clone(), ); while let Some(msg) = input_handler.notifications_channel.next().await { { let mut notification_handlers = notification_handlers.lock(); if let Some(handler) = notification_handlers.get_mut(msg.method.as_str()) { handler(msg.id, msg.params.unwrap_or(Value::Null), cx.clone()); } else { drop(notification_handlers); on_unhandled_notification(msg); } } // Don't starve the main thread when receiving lots of notifications at once. smol::future::yield_now().await; } input_handler.loop_handle.await } async fn handle_stderr( stderr: Stderr, io_handlers: Arc>>, stderr_capture: Arc>>, ) -> anyhow::Result<()> where Stderr: AsyncRead + Unpin + Send + 'static, { let mut stderr = BufReader::new(stderr); let mut buffer = Vec::new(); loop { buffer.clear(); let bytes_read = stderr.read_until(b'\n', &mut buffer).await?; if bytes_read == 0 { return Ok(()); } if let Ok(message) = std::str::from_utf8(&buffer) { log::trace!("incoming stderr message:{message}"); for handler in io_handlers.lock().values_mut() { handler(IoKind::StdErr, message); } if let Some(stderr) = stderr_capture.lock().as_mut() { stderr.push_str(message); } } // Don't starve the main thread when receiving lots of messages at once. smol::future::yield_now().await; } } async fn handle_output( stdin: Stdin, outbound_rx: channel::Receiver, output_done_tx: barrier::Sender, response_handlers: Arc>>>, io_handlers: Arc>>, ) -> anyhow::Result<()> where Stdin: AsyncWrite + Unpin + Send + 'static, { let mut stdin = BufWriter::new(stdin); let _clear_response_handlers = util::defer({ let response_handlers = response_handlers.clone(); move || { response_handlers.lock().take(); } }); let mut content_len_buffer = Vec::new(); while let Ok(message) = outbound_rx.recv().await { log::trace!("outgoing message:{}", message); for handler in io_handlers.lock().values_mut() { handler(IoKind::StdIn, &message); } content_len_buffer.clear(); write!(content_len_buffer, "{}", message.len()).unwrap(); stdin.write_all(CONTENT_LEN_HEADER.as_bytes()).await?; stdin.write_all(&content_len_buffer).await?; stdin.write_all("\r\n\r\n".as_bytes()).await?; stdin.write_all(message.as_bytes()).await?; stdin.flush().await?; } drop(output_done_tx); Ok(()) } /// Initializes a language server by sending the `Initialize` request. /// Note that `options` is used directly to construct [`InitializeParams`], which is why it is owned. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initialize) pub fn initialize( mut self, options: Option, cx: &AppContext, ) -> Task>> { let root_uri = Url::from_file_path(&self.working_dir).unwrap(); #[allow(deprecated)] let params = InitializeParams { process_id: None, root_path: None, root_uri: Some(root_uri.clone()), initialization_options: options, capabilities: ClientCapabilities { workspace: Some(WorkspaceClientCapabilities { configuration: Some(true), did_change_watched_files: Some(DidChangeWatchedFilesClientCapabilities { dynamic_registration: Some(true), relative_pattern_support: Some(true), }), did_change_configuration: Some(DynamicRegistrationClientCapabilities { dynamic_registration: Some(true), }), workspace_folders: Some(true), symbol: Some(WorkspaceSymbolClientCapabilities { resolve_support: None, ..WorkspaceSymbolClientCapabilities::default() }), inlay_hint: Some(InlayHintWorkspaceClientCapabilities { refresh_support: Some(true), }), diagnostic: Some(DiagnosticWorkspaceClientCapabilities { refresh_support: None, }), workspace_edit: Some(WorkspaceEditClientCapabilities { resource_operations: Some(vec![ ResourceOperationKind::Create, ResourceOperationKind::Rename, ResourceOperationKind::Delete, ]), document_changes: Some(true), snippet_edit_support: Some(true), ..WorkspaceEditClientCapabilities::default() }), ..Default::default() }), text_document: Some(TextDocumentClientCapabilities { definition: Some(GotoCapability { link_support: Some(true), dynamic_registration: None, }), code_action: Some(CodeActionClientCapabilities { code_action_literal_support: Some(CodeActionLiteralSupport { code_action_kind: CodeActionKindLiteralSupport { value_set: vec![ CodeActionKind::REFACTOR.as_str().into(), CodeActionKind::QUICKFIX.as_str().into(), CodeActionKind::SOURCE.as_str().into(), ], }, }), data_support: Some(true), resolve_support: Some(CodeActionCapabilityResolveSupport { properties: vec![ "kind".to_string(), "diagnostics".to_string(), "isPreferred".to_string(), "disabled".to_string(), "edit".to_string(), "command".to_string(), ], }), ..Default::default() }), completion: Some(CompletionClientCapabilities { completion_item: Some(CompletionItemCapability { snippet_support: Some(true), resolve_support: Some(CompletionItemCapabilityResolveSupport { properties: vec![ "documentation".to_string(), "additionalTextEdits".to_string(), ], }), insert_replace_support: Some(true), label_details_support: Some(true), ..Default::default() }), completion_list: Some(CompletionListCapability { item_defaults: Some(vec![ "commitCharacters".to_owned(), "editRange".to_owned(), "insertTextMode".to_owned(), "data".to_owned(), ]), }), context_support: Some(true), ..Default::default() }), rename: Some(RenameClientCapabilities { prepare_support: Some(true), ..Default::default() }), hover: Some(HoverClientCapabilities { content_format: Some(vec![MarkupKind::Markdown]), dynamic_registration: None, }), inlay_hint: Some(InlayHintClientCapabilities { resolve_support: Some(InlayHintResolveClientCapabilities { properties: vec![ "textEdits".to_string(), "tooltip".to_string(), "label.tooltip".to_string(), "label.location".to_string(), "label.command".to_string(), ], }), dynamic_registration: Some(false), }), publish_diagnostics: Some(PublishDiagnosticsClientCapabilities { related_information: Some(true), ..Default::default() }), formatting: Some(DynamicRegistrationClientCapabilities { dynamic_registration: Some(true), }), range_formatting: Some(DynamicRegistrationClientCapabilities { dynamic_registration: Some(true), }), on_type_formatting: Some(DynamicRegistrationClientCapabilities { dynamic_registration: Some(true), }), signature_help: Some(SignatureHelpClientCapabilities { signature_information: Some(SignatureInformationSettings { documentation_format: Some(vec![ MarkupKind::Markdown, MarkupKind::PlainText, ]), parameter_information: Some(ParameterInformationSettings { label_offset_support: Some(true), }), active_parameter_support: Some(true), }), ..SignatureHelpClientCapabilities::default() }), synchronization: Some(TextDocumentSyncClientCapabilities { did_save: Some(true), ..TextDocumentSyncClientCapabilities::default() }), ..TextDocumentClientCapabilities::default() }), experimental: Some(json!({ "serverStatusNotification": true, })), window: Some(WindowClientCapabilities { work_done_progress: Some(true), ..Default::default() }), general: None, }, trace: None, workspace_folders: Some(vec![WorkspaceFolder { uri: root_uri, name: Default::default(), }]), client_info: release_channel::ReleaseChannel::try_global(cx).map(|release_channel| { ClientInfo { name: release_channel.display_name().to_string(), version: Some(release_channel::AppVersion::global(cx).to_string()), } }), locale: None, ..Default::default() }; cx.spawn(|_| async move { let response = self.request::(params).await?; if let Some(info) = response.server_info { self.name = info.name.into(); } self.capabilities = RwLock::new(response.capabilities); self.notify::(InitializedParams {})?; Ok(Arc::new(self)) }) } /// Sends a shutdown request to the language server process and prepares the [`LanguageServer`] to be dropped. pub fn shutdown(&self) -> Option>> { if let Some(tasks) = self.io_tasks.lock().take() { let response_handlers = self.response_handlers.clone(); let next_id = AtomicI32::new(self.next_id.load(SeqCst)); let outbound_tx = self.outbound_tx.clone(); let executor = self.executor.clone(); let mut output_done = self.output_done_rx.lock().take().unwrap(); let shutdown_request = Self::request_internal::( &next_id, &response_handlers, &outbound_tx, &executor, (), ); let exit = Self::notify_internal::(&outbound_tx, ()); outbound_tx.close(); let server = self.server.clone(); let name = self.name.clone(); let mut timer = self.executor.timer(SERVER_SHUTDOWN_TIMEOUT).fuse(); Some( async move { log::debug!("language server shutdown started"); select! { request_result = shutdown_request.fuse() => { request_result?; } _ = timer => { log::info!("timeout waiting for language server {name} to shutdown"); }, } response_handlers.lock().take(); exit?; output_done.recv().await; server.lock().take().map(|mut child| child.kill()); log::debug!("language server shutdown finished"); drop(tasks); anyhow::Ok(()) } .log_err(), ) } else { None } } /// Register a handler to handle incoming LSP notifications. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#notificationMessage) #[must_use] pub fn on_notification(&self, f: F) -> Subscription where T: notification::Notification, F: 'static + Send + FnMut(T::Params, AsyncAppContext), { self.on_custom_notification(T::METHOD, f) } /// Register a handler to handle incoming LSP requests. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#requestMessage) #[must_use] pub fn on_request(&self, f: F) -> Subscription where T: request::Request, T::Params: 'static + Send, F: 'static + FnMut(T::Params, AsyncAppContext) -> Fut + Send, Fut: 'static + Future>, { self.on_custom_request(T::METHOD, f) } /// Registers a handler to inspect all language server process stdio. #[must_use] pub fn on_io(&self, f: F) -> Subscription where F: 'static + Send + FnMut(IoKind, &str), { let id = self.next_id.fetch_add(1, SeqCst); self.io_handlers.lock().insert(id, Box::new(f)); Subscription::Io { id, io_handlers: Some(Arc::downgrade(&self.io_handlers)), } } /// Removes a request handler registers via [`Self::on_request`]. pub fn remove_request_handler(&self) { self.notification_handlers.lock().remove(T::METHOD); } /// Removes a notification handler registers via [`Self::on_notification`]. pub fn remove_notification_handler(&self) { self.notification_handlers.lock().remove(T::METHOD); } /// Checks if a notification handler has been registered via [`Self::on_notification`]. pub fn has_notification_handler(&self) -> bool { self.notification_handlers.lock().contains_key(T::METHOD) } #[must_use] fn on_custom_notification(&self, method: &'static str, mut f: F) -> Subscription where F: 'static + FnMut(Params, AsyncAppContext) + Send, Params: DeserializeOwned, { let prev_handler = self.notification_handlers.lock().insert( method, Box::new(move |_, params, cx| { if let Some(params) = serde_json::from_value(params).log_err() { f(params, cx); } }), ); assert!( prev_handler.is_none(), "registered multiple handlers for the same LSP method" ); Subscription::Notification { method, notification_handlers: Some(self.notification_handlers.clone()), } } #[must_use] fn on_custom_request(&self, method: &'static str, mut f: F) -> Subscription where F: 'static + FnMut(Params, AsyncAppContext) -> Fut + Send, Fut: 'static + Future>, Params: DeserializeOwned + Send + 'static, Res: Serialize, { let outbound_tx = self.outbound_tx.clone(); let prev_handler = self.notification_handlers.lock().insert( method, Box::new(move |id, params, cx| { if let Some(id) = id { match serde_json::from_value(params) { Ok(params) => { let response = f(params, cx.clone()); cx.foreground_executor() .spawn({ let outbound_tx = outbound_tx.clone(); async move { let response = match response.await { Ok(result) => Response { jsonrpc: JSON_RPC_VERSION, id, value: LspResult::Ok(Some(result)), }, Err(error) => Response { jsonrpc: JSON_RPC_VERSION, id, value: LspResult::Error(Some(Error { message: error.to_string(), })), }, }; if let Some(response) = serde_json::to_string(&response).log_err() { outbound_tx.try_send(response).ok(); } } }) .detach(); } Err(error) => { log::error!("error deserializing {} request: {:?}", method, error); let response = AnyResponse { jsonrpc: JSON_RPC_VERSION, id, result: None, error: Some(Error { message: error.to_string(), }), }; if let Some(response) = serde_json::to_string(&response).log_err() { outbound_tx.try_send(response).ok(); } } } } }), ); assert!( prev_handler.is_none(), "registered multiple handlers for the same LSP method" ); Subscription::Notification { method, notification_handlers: Some(self.notification_handlers.clone()), } } /// Get the name of the running language server. pub fn name(&self) -> &str { &self.name } /// Get the reported capabilities of the running language server. pub fn capabilities(&self) -> ServerCapabilities { self.capabilities.read().clone() } /// Get the reported capabilities of the running language server and /// what we know on the client/adapter-side of its capabilities. pub fn adapter_server_capabilities(&self) -> AdapterServerCapabilities { AdapterServerCapabilities { server_capabilities: self.capabilities(), code_action_kinds: self.code_action_kinds(), } } pub fn update_capabilities(&self, update: impl FnOnce(&mut ServerCapabilities)) { update(self.capabilities.write().deref_mut()); } /// Get the id of the running language server. pub fn server_id(&self) -> LanguageServerId { self.server_id } /// Get the root path of the project the language server is running against. pub fn root_path(&self) -> &PathBuf { &self.root_path } /// Sends a RPC request to the language server. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#requestMessage) pub fn request( &self, params: T::Params, ) -> impl LspRequestFuture> where T::Result: 'static + Send, { Self::request_internal::( &self.next_id, &self.response_handlers, &self.outbound_tx, &self.executor, params, ) } fn request_internal( next_id: &AtomicI32, response_handlers: &Mutex>>, outbound_tx: &channel::Sender, executor: &BackgroundExecutor, params: T::Params, ) -> impl LspRequestFuture> where T::Result: 'static + Send, { let id = next_id.fetch_add(1, SeqCst); let message = serde_json::to_string(&Request { jsonrpc: JSON_RPC_VERSION, id: RequestId::Int(id), method: T::METHOD, params, }) .unwrap(); let (tx, rx) = oneshot::channel(); let handle_response = response_handlers .lock() .as_mut() .ok_or_else(|| anyhow!("server shut down")) .map(|handlers| { let executor = executor.clone(); handlers.insert( RequestId::Int(id), Box::new(move |result| { executor .spawn(async move { let response = match result { Ok(response) => match serde_json::from_str(&response) { Ok(deserialized) => Ok(deserialized), Err(error) => { log::error!("failed to deserialize response from language server: {}. response from language server: {:?}", error, response); Err(error).context("failed to deserialize response") } } Err(error) => Err(anyhow!("{}", error.message)), }; _ = tx.send(response); }) .detach(); }), ); }); let send = outbound_tx .try_send(message) .context("failed to write to language server's stdin"); let outbound_tx = outbound_tx.downgrade(); let mut timeout = executor.timer(LSP_REQUEST_TIMEOUT).fuse(); let started = Instant::now(); LspRequest::new(id, async move { handle_response?; send?; let cancel_on_drop = util::defer(move || { if let Some(outbound_tx) = outbound_tx.upgrade() { Self::notify_internal::( &outbound_tx, CancelParams { id: NumberOrString::Number(id), }, ) .log_err(); } }); let method = T::METHOD; select! { response = rx.fuse() => { let elapsed = started.elapsed(); log::trace!("Took {elapsed:?} to receive response to {method:?} id {id}"); cancel_on_drop.abort(); response? } _ = timeout => { log::error!("Cancelled LSP request task for {method:?} id {id} which took over {LSP_REQUEST_TIMEOUT:?}"); anyhow::bail!("LSP request timeout"); } } }) } /// Sends a RPC notification to the language server. /// /// [LSP Specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#notificationMessage) pub fn notify(&self, params: T::Params) -> Result<()> { Self::notify_internal::(&self.outbound_tx, params) } fn notify_internal( outbound_tx: &channel::Sender, params: T::Params, ) -> Result<()> { let message = serde_json::to_string(&Notification { jsonrpc: JSON_RPC_VERSION, method: T::METHOD, params, }) .unwrap(); outbound_tx.try_send(message)?; Ok(()) } } impl Drop for LanguageServer { fn drop(&mut self) { if let Some(shutdown) = self.shutdown() { self.executor.spawn(shutdown).detach(); } } } impl Subscription { /// Detaching a subscription handle prevents it from unsubscribing on drop. pub fn detach(&mut self) { match self { Subscription::Notification { notification_handlers, .. } => *notification_handlers = None, Subscription::Io { io_handlers, .. } => *io_handlers = None, } } } impl fmt::Display for LanguageServerId { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { self.0.fmt(f) } } impl fmt::Debug for LanguageServer { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("LanguageServer") .field("id", &self.server_id.0) .field("name", &self.name) .finish_non_exhaustive() } } impl Drop for Subscription { fn drop(&mut self) { match self { Subscription::Notification { method, notification_handlers, } => { if let Some(handlers) = notification_handlers { handlers.lock().remove(method); } } Subscription::Io { id, io_handlers } => { if let Some(io_handlers) = io_handlers.as_ref().and_then(|h| h.upgrade()) { io_handlers.lock().remove(id); } } } } } /// Mock language server for use in tests. #[cfg(any(test, feature = "test-support"))] #[derive(Clone)] pub struct FakeLanguageServer { pub binary: LanguageServerBinary, pub server: Arc, notifications_rx: channel::Receiver<(String, String)>, } #[cfg(any(test, feature = "test-support"))] impl FakeLanguageServer { /// Construct a fake language server. pub fn new( server_id: LanguageServerId, binary: LanguageServerBinary, name: String, capabilities: ServerCapabilities, cx: AsyncAppContext, ) -> (LanguageServer, FakeLanguageServer) { let (stdin_writer, stdin_reader) = async_pipe::pipe(); let (stdout_writer, stdout_reader) = async_pipe::pipe(); let (notifications_tx, notifications_rx) = channel::unbounded(); let mut server = LanguageServer::new_internal( server_id, stdin_writer, stdout_reader, None::, Arc::new(Mutex::new(None)), None, Path::new("/"), Path::new("/"), None, cx.clone(), |_| {}, ); server.name = name.as_str().into(); let fake = FakeLanguageServer { binary, server: Arc::new({ let mut server = LanguageServer::new_internal( server_id, stdout_writer, stdin_reader, None::, Arc::new(Mutex::new(None)), None, Path::new("/"), Path::new("/"), None, cx, move |msg| { notifications_tx .try_send(( msg.method.to_string(), msg.params.unwrap_or(Value::Null).to_string(), )) .ok(); }, ); server.name = name.as_str().into(); server }), notifications_rx, }; fake.handle_request::({ let capabilities = capabilities; move |_, _| { let capabilities = capabilities.clone(); let name = name.clone(); async move { Ok(InitializeResult { capabilities, server_info: Some(ServerInfo { name, ..Default::default() }), }) } } }); (server, fake) } } #[cfg(any(test, feature = "test-support"))] impl LanguageServer { pub fn full_capabilities() -> ServerCapabilities { ServerCapabilities { document_highlight_provider: Some(OneOf::Left(true)), code_action_provider: Some(CodeActionProviderCapability::Simple(true)), document_formatting_provider: Some(OneOf::Left(true)), document_range_formatting_provider: Some(OneOf::Left(true)), definition_provider: Some(OneOf::Left(true)), implementation_provider: Some(ImplementationProviderCapability::Simple(true)), type_definition_provider: Some(TypeDefinitionProviderCapability::Simple(true)), ..Default::default() } } } #[cfg(any(test, feature = "test-support"))] impl FakeLanguageServer { /// See [`LanguageServer::notify`]. pub fn notify(&self, params: T::Params) { self.server.notify::(params).ok(); } /// See [`LanguageServer::request`]. pub async fn request(&self, params: T::Params) -> Result where T: request::Request, T::Result: 'static + Send, { self.server.executor.start_waiting(); self.server.request::(params).await } /// Attempts [`Self::try_receive_notification`], unwrapping if it has not received the specified type yet. pub async fn receive_notification(&mut self) -> T::Params { self.server.executor.start_waiting(); self.try_receive_notification::().await.unwrap() } /// Consumes the notification channel until it finds a notification for the specified type. pub async fn try_receive_notification( &mut self, ) -> Option { use futures::StreamExt as _; loop { let (method, params) = self.notifications_rx.next().await?; if method == T::METHOD { return Some(serde_json::from_str::(¶ms).unwrap()); } else { log::info!("skipping message in fake language server {:?}", params); } } } /// Registers a handler for a specific kind of request. Removes any existing handler for specified request type. pub fn handle_request( &self, mut handler: F, ) -> futures::channel::mpsc::UnboundedReceiver<()> where T: 'static + request::Request, T::Params: 'static + Send, F: 'static + Send + FnMut(T::Params, gpui::AsyncAppContext) -> Fut, Fut: 'static + Send + Future>, { let (responded_tx, responded_rx) = futures::channel::mpsc::unbounded(); self.server.remove_request_handler::(); self.server .on_request::(move |params, cx| { let result = handler(params, cx.clone()); let responded_tx = responded_tx.clone(); let executor = cx.background_executor().clone(); async move { executor.simulate_random_delay().await; let result = result.await; responded_tx.unbounded_send(()).ok(); result } }) .detach(); responded_rx } /// Registers a handler for a specific kind of notification. Removes any existing handler for specified notification type. pub fn handle_notification( &self, mut handler: F, ) -> futures::channel::mpsc::UnboundedReceiver<()> where T: 'static + notification::Notification, T::Params: 'static + Send, F: 'static + Send + FnMut(T::Params, gpui::AsyncAppContext), { let (handled_tx, handled_rx) = futures::channel::mpsc::unbounded(); self.server.remove_notification_handler::(); self.server .on_notification::(move |params, cx| { handler(params, cx.clone()); handled_tx.unbounded_send(()).ok(); }) .detach(); handled_rx } /// Removes any existing handler for specified notification type. pub fn remove_request_handler(&mut self) where T: 'static + request::Request, { self.server.remove_request_handler::(); } /// Simulate that the server has started work and notifies about its progress with the specified token. pub async fn start_progress(&self, token: impl Into) { self.start_progress_with(token, Default::default()).await } pub async fn start_progress_with( &self, token: impl Into, progress: WorkDoneProgressBegin, ) { let token = token.into(); self.request::(WorkDoneProgressCreateParams { token: NumberOrString::String(token.clone()), }) .await .unwrap(); self.notify::(ProgressParams { token: NumberOrString::String(token), value: ProgressParamsValue::WorkDone(WorkDoneProgress::Begin(progress)), }); } /// Simulate that the server has completed work and notifies about that with the specified token. pub fn end_progress(&self, token: impl Into) { self.notify::(ProgressParams { token: NumberOrString::String(token.into()), value: ProgressParamsValue::WorkDone(WorkDoneProgress::End(Default::default())), }); } } #[cfg(test)] mod tests { use super::*; use gpui::{SemanticVersion, TestAppContext}; use std::str::FromStr; #[ctor::ctor] fn init_logger() { if std::env::var("RUST_LOG").is_ok() { env_logger::init(); } } #[gpui::test] async fn test_fake(cx: &mut TestAppContext) { cx.update(|cx| { release_channel::init(SemanticVersion::default(), cx); }); let (server, mut fake) = FakeLanguageServer::new( LanguageServerId(0), LanguageServerBinary { path: "path/to/language-server".into(), arguments: vec![], env: None, }, "the-lsp".to_string(), Default::default(), cx.to_async(), ); let (message_tx, message_rx) = channel::unbounded(); let (diagnostics_tx, diagnostics_rx) = channel::unbounded(); server .on_notification::(move |params, _| { message_tx.try_send(params).unwrap() }) .detach(); server .on_notification::(move |params, _| { diagnostics_tx.try_send(params).unwrap() }) .detach(); let server = cx.update(|cx| server.initialize(None, cx)).await.unwrap(); server .notify::(DidOpenTextDocumentParams { text_document: TextDocumentItem::new( Url::from_str("file://a/b").unwrap(), "rust".to_string(), 0, "".to_string(), ), }) .unwrap(); assert_eq!( fake.receive_notification::() .await .text_document .uri .as_str(), "file://a/b" ); fake.notify::(ShowMessageParams { typ: MessageType::ERROR, message: "ok".to_string(), }); fake.notify::(PublishDiagnosticsParams { uri: Url::from_str("file://b/c").unwrap(), version: Some(5), diagnostics: vec![], }); assert_eq!(message_rx.recv().await.unwrap().message, "ok"); assert_eq!( diagnostics_rx.recv().await.unwrap().uri.as_str(), "file://b/c" ); fake.handle_request::(|_, _| async move { Ok(()) }); drop(server); fake.receive_notification::().await; } #[gpui::test] fn test_deserialize_string_digit_id() { let json = r#"{"jsonrpc":"2.0","id":"2","method":"workspace/configuration","params":{"items":[{"scopeUri":"file:///Users/mph/Devel/personal/hello-scala/","section":"metals"}]}}"#; let notification = serde_json::from_str::(json) .expect("message with string id should be parsed"); let expected_id = RequestId::Str("2".to_string()); assert_eq!(notification.id, Some(expected_id)); } #[gpui::test] fn test_deserialize_string_id() { let json = r#"{"jsonrpc":"2.0","id":"anythingAtAll","method":"workspace/configuration","params":{"items":[{"scopeUri":"file:///Users/mph/Devel/personal/hello-scala/","section":"metals"}]}}"#; let notification = serde_json::from_str::(json) .expect("message with string id should be parsed"); let expected_id = RequestId::Str("anythingAtAll".to_string()); assert_eq!(notification.id, Some(expected_id)); } #[gpui::test] fn test_deserialize_int_id() { let json = r#"{"jsonrpc":"2.0","id":2,"method":"workspace/configuration","params":{"items":[{"scopeUri":"file:///Users/mph/Devel/personal/hello-scala/","section":"metals"}]}}"#; let notification = serde_json::from_str::(json) .expect("message with string id should be parsed"); let expected_id = RequestId::Int(2); assert_eq!(notification.id, Some(expected_id)); } #[test] fn test_serialize_has_no_nulls() { // Ensure we're not setting both result and error variants. (ticket #10595) let no_tag = Response:: { jsonrpc: "", id: RequestId::Int(0), value: LspResult::Ok(None), }; assert_eq!( serde_json::to_string(&no_tag).unwrap(), "{\"jsonrpc\":\"\",\"id\":0,\"result\":null}" ); let no_tag = Response:: { jsonrpc: "", id: RequestId::Int(0), value: LspResult::Error(None), }; assert_eq!( serde_json::to_string(&no_tag).unwrap(), "{\"jsonrpc\":\"\",\"id\":0,\"error\":null}" ); } }