-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
232 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
pub mod files; | ||
pub mod proxy; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
use std::{convert::Infallible, process::Stdio, str::FromStr}; | ||
|
||
use futures_util::{ | ||
future::{select, Either}, | ||
SinkExt, StreamExt, | ||
}; | ||
use tokio::{ | ||
fs::{self, File}, | ||
io::AsyncWriteExt, | ||
process::Command, | ||
time::{Duration, Instant}, | ||
}; | ||
use url::Url; | ||
use warp::{Filter, Rejection, Reply}; | ||
|
||
use crate::lsp; | ||
|
||
#[derive(Debug, Clone)] | ||
pub struct Context { | ||
pub command: Vec<String>, | ||
pub sync: bool, | ||
pub remap: bool, | ||
pub cwd: Url, | ||
pub timeout: Duration, | ||
} | ||
|
||
pub fn handler(ctx: Context) -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone { | ||
warp::path::end() | ||
.and(warp::ws()) | ||
.and(with_context(ctx)) | ||
.map(|ws: warp::ws::Ws, ctx| ws.on_upgrade(move |socket| on_upgrade(socket, ctx))) | ||
} | ||
|
||
#[tracing::instrument(level = "debug", err, skip(msg))] | ||
async fn maybe_write_text_document(msg: &lsp::Message) -> Result<(), std::io::Error> { | ||
if let lsp::Message::Notification(lsp::Notification::DidSave { params }) = msg { | ||
if let Some(text) = ¶ms.text { | ||
let uri = ¶ms.text_document.uri; | ||
if uri.scheme() == "file" { | ||
if let Ok(path) = uri.to_file_path() { | ||
if let Some(parent) = path.parent() { | ||
tracing::debug!("writing to {:?}", path); | ||
fs::create_dir_all(parent).await?; | ||
let mut file = File::create(&path).await?; | ||
file.write_all(text.as_bytes()).await?; | ||
file.flush().await?; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
Ok(()) | ||
} | ||
|
||
async fn on_upgrade(socket: warp::ws::WebSocket, ctx: Context) { | ||
tracing::info!("connected"); | ||
if let Err(err) = connected(socket, ctx).await { | ||
tracing::error!("connection error: {}", err); | ||
} | ||
tracing::info!("disconnected"); | ||
} | ||
|
||
#[tracing::instrument(level = "debug", skip(ws, ctx), fields(command = ?ctx.command[0], remap = %ctx.remap, sync = %ctx.sync))] | ||
async fn connected( | ||
ws: warp::ws::WebSocket, | ||
ctx: Context, | ||
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> { | ||
tracing::info!("starting {} in {}", ctx.command[0], ctx.cwd); | ||
let mut server = Command::new(&ctx.command[0]) | ||
.args(&ctx.command[1..]) | ||
.stdin(Stdio::piped()) | ||
.stdout(Stdio::piped()) | ||
.kill_on_drop(true) | ||
.spawn()?; | ||
tracing::debug!("running {}", ctx.command[0]); | ||
|
||
let mut server_send = lsp::framed::writer(server.stdin.take().unwrap()); | ||
let mut server_recv = lsp::framed::reader(server.stdout.take().unwrap()); | ||
let (mut client_send, client_recv) = ws.split(); | ||
let mut client_recv = client_recv.filter_map(filter_map_warp_ws_message).boxed(); | ||
|
||
let mut client_msg = client_recv.next(); | ||
let mut server_msg = server_recv.next(); | ||
let timer = tokio::time::sleep(ctx.timeout); | ||
tokio::pin!(timer); | ||
|
||
loop { | ||
match select(select(client_msg, server_msg), timer).await { | ||
// From Client | ||
Either::Left((Either::Left((from_client, p_server_msg)), p_timer)) => { | ||
match from_client { | ||
// Valid LSP message | ||
Some(Ok(Message::Message(mut msg))) => { | ||
if ctx.remap { | ||
lsp::ext::remap_relative_uri(&mut msg, &ctx.cwd)?; | ||
tracing::debug!("remapped relative URI from client"); | ||
} | ||
if ctx.sync { | ||
maybe_write_text_document(&msg).await?; | ||
} | ||
let text = serde_json::to_string(&msg)?; | ||
tracing::debug!("-> {}", text); | ||
server_send.send(text).await?; | ||
} | ||
|
||
// Invalid JSON body | ||
Some(Ok(Message::Invalid(text))) => { | ||
tracing::warn!("-> {}", text); | ||
// Just forward it to the server as is. | ||
server_send.send(text).await?; | ||
} | ||
|
||
// Close message | ||
Some(Ok(Message::Close)) => { | ||
// The connection will terminate when None is received. | ||
tracing::info!("received Close message"); | ||
} | ||
|
||
// WebSocket Error | ||
Some(Err(err)) => { | ||
tracing::error!("websocket error: {}", err); | ||
} | ||
|
||
// Connection closed | ||
None => { | ||
tracing::info!("connection closed"); | ||
break; | ||
} | ||
} | ||
|
||
client_msg = client_recv.next(); | ||
server_msg = p_server_msg; | ||
timer = p_timer; | ||
timer.as_mut().reset(Instant::now() + ctx.timeout); | ||
} | ||
|
||
// From Server | ||
Either::Left((Either::Right((from_server, p_client_msg)), p_timer)) => { | ||
match from_server { | ||
// Serialized LSP Message | ||
Some(Ok(text)) => { | ||
if ctx.remap { | ||
if let Ok(mut msg) = lsp::Message::from_str(&text) { | ||
lsp::ext::remap_relative_uri(&mut msg, &ctx.cwd)?; | ||
tracing::debug!("remapped relative URI from server"); | ||
let text = serde_json::to_string(&msg)?; | ||
tracing::debug!("<- {}", text); | ||
client_send.send(warp::ws::Message::text(text)).await?; | ||
} else { | ||
tracing::warn!("<- {}", text); | ||
client_send.send(warp::ws::Message::text(text)).await?; | ||
} | ||
} else { | ||
tracing::debug!("<- {}", text); | ||
client_send.send(warp::ws::Message::text(text)).await?; | ||
} | ||
} | ||
|
||
// Codec Error | ||
Some(Err(err)) => { | ||
tracing::error!("{}", err); | ||
} | ||
|
||
// Server exited | ||
None => { | ||
tracing::error!("server process exited unexpectedly"); | ||
client_send.send(warp::ws::Message::close()).await?; | ||
break; | ||
} | ||
} | ||
|
||
client_msg = p_client_msg; | ||
server_msg = server_recv.next(); | ||
timer = p_timer; | ||
timer.as_mut().reset(Instant::now() + ctx.timeout); | ||
} | ||
|
||
Either::Right(_) => { | ||
tracing::info!("inactivity timeout reached, closing"); | ||
client_send.send(warp::ws::Message::close()).await?; | ||
break; | ||
} | ||
} | ||
} | ||
|
||
Ok(()) | ||
} | ||
|
||
fn with_context(context: Context) -> impl Filter<Extract = (Context,), Error = Infallible> + Clone { | ||
warp::any().map(move || context.clone()) | ||
} | ||
|
||
// Type to describe a message from the client conveniently. | ||
enum Message { | ||
// Valid LSP message | ||
Message(lsp::Message), | ||
// Invalid JSON | ||
Invalid(String), | ||
// Close message | ||
Close, | ||
} | ||
|
||
// Parse the message and ignore anything we don't care. | ||
async fn filter_map_warp_ws_message( | ||
wsm: Result<warp::ws::Message, warp::Error>, | ||
) -> Option<Result<Message, warp::Error>> { | ||
match wsm { | ||
Ok(msg) => { | ||
if msg.is_close() { | ||
Some(Ok(Message::Close)) | ||
} else if msg.is_text() { | ||
let text = msg.to_str().expect("text"); | ||
match lsp::Message::from_str(text) { | ||
Ok(msg) => Some(Ok(Message::Message(msg))), | ||
Err(_) => Some(Ok(Message::Invalid(text.to_owned()))), | ||
} | ||
} else { | ||
// Ignore any other message types | ||
None | ||
} | ||
} | ||
|
||
Err(err) => Some(Err(err)), | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.