use anyhow::Result; use log::warn; use lsp_server::{ErrorCode, Notification, Request, RequestId, Response}; use serde::de::DeserializeOwned; pub struct NotificationDispatcher { not: Option, } impl NotificationDispatcher { pub fn new(not: Notification) -> Self { Self { not: Some(not) } } pub fn on(mut self, handler: F) -> Result where N: lsp_types::notification::Notification, N::Params: DeserializeOwned, F: FnOnce(N::Params) -> Result<()>, { if let Some(not) = self.not { match not.extract::(N::METHOD) { Ok(params) => { handler(params)?; self.not = None; } Err(not) => { self.not = Some(not); } }; } Ok(self) } pub fn default(self) { if let Some(not) = &self.not { warn!("Unknown notification: {}", not.method); } } } pub struct RequestDispatcher { req: Option, } impl RequestDispatcher { pub fn new(req: Request) -> Self { Self { req: Some(req) } } pub fn on(mut self, handler: F) -> Result where R: lsp_types::request::Request, R::Params: DeserializeOwned, F: FnOnce(RequestId, R::Params) -> Result<()>, { if let Some(req) = self.req { match req.extract::(R::METHOD) { Ok((id, params)) => { handler(id, params)?; self.req = None; } Err(req) => { self.req = Some(req); } } } Ok(self) } pub fn default(self) -> Option { self.req.map(|req| { warn!("Unknown request: {}", req.method); Response::new_err( req.id, ErrorCode::MethodNotFound as i32, "method not found".to_string(), ) }) } }