2021-11-25 14:05:12 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
use deno_core::anyhow::anyhow;
|
|
|
|
use deno_core::error::AnyError;
|
|
|
|
use deno_core::serde_json::Value;
|
|
|
|
use std::cell::RefCell;
|
|
|
|
use tokio::sync::mpsc::channel;
|
|
|
|
use tokio::sync::mpsc::unbounded_channel;
|
|
|
|
use tokio::sync::mpsc::Receiver;
|
|
|
|
use tokio::sync::mpsc::Sender;
|
|
|
|
use tokio::sync::mpsc::UnboundedReceiver;
|
|
|
|
use tokio::sync::mpsc::UnboundedSender;
|
|
|
|
|
2021-12-15 13:23:43 -05:00
|
|
|
use crate::lsp::ReplCompletionItem;
|
|
|
|
|
2021-11-25 14:05:12 -05:00
|
|
|
/// Rustyline uses synchronous methods in its interfaces, but we need to call
|
|
|
|
/// async methods. To get around this, we communicate with async code by using
|
|
|
|
/// a channel and blocking on the result.
|
|
|
|
pub fn rustyline_channel(
|
|
|
|
) -> (RustylineSyncMessageSender, RustylineSyncMessageHandler) {
|
|
|
|
let (message_tx, message_rx) = channel(1);
|
|
|
|
let (response_tx, response_rx) = unbounded_channel();
|
|
|
|
|
|
|
|
(
|
|
|
|
RustylineSyncMessageSender {
|
|
|
|
message_tx,
|
|
|
|
response_rx: RefCell::new(response_rx),
|
|
|
|
},
|
|
|
|
RustylineSyncMessageHandler {
|
|
|
|
response_tx,
|
|
|
|
message_rx,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-15 13:23:43 -05:00
|
|
|
pub enum RustylineSyncMessage {
|
|
|
|
PostMessage {
|
|
|
|
method: String,
|
|
|
|
params: Option<Value>,
|
|
|
|
},
|
|
|
|
LspCompletions {
|
|
|
|
line_text: String,
|
|
|
|
position: usize,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum RustylineSyncResponse {
|
|
|
|
PostMessage(Result<Value, AnyError>),
|
|
|
|
LspCompletions(Vec<ReplCompletionItem>),
|
|
|
|
}
|
2021-11-25 14:05:12 -05:00
|
|
|
|
|
|
|
pub struct RustylineSyncMessageSender {
|
|
|
|
message_tx: Sender<RustylineSyncMessage>,
|
|
|
|
response_rx: RefCell<UnboundedReceiver<RustylineSyncResponse>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RustylineSyncMessageSender {
|
|
|
|
pub fn post_message(
|
|
|
|
&self,
|
|
|
|
method: &str,
|
|
|
|
params: Option<Value>,
|
|
|
|
) -> Result<Value, AnyError> {
|
|
|
|
if let Err(err) =
|
2021-12-15 13:23:43 -05:00
|
|
|
self
|
|
|
|
.message_tx
|
|
|
|
.blocking_send(RustylineSyncMessage::PostMessage {
|
|
|
|
method: method.to_string(),
|
|
|
|
params,
|
|
|
|
})
|
2021-11-25 14:05:12 -05:00
|
|
|
{
|
|
|
|
Err(anyhow!("{}", err))
|
|
|
|
} else {
|
2021-12-15 13:23:43 -05:00
|
|
|
match self.response_rx.borrow_mut().blocking_recv().unwrap() {
|
|
|
|
RustylineSyncResponse::PostMessage(result) => result,
|
|
|
|
RustylineSyncResponse::LspCompletions(_) => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lsp_completions(
|
|
|
|
&self,
|
|
|
|
line_text: &str,
|
|
|
|
position: usize,
|
|
|
|
) -> Vec<ReplCompletionItem> {
|
|
|
|
if self
|
|
|
|
.message_tx
|
|
|
|
.blocking_send(RustylineSyncMessage::LspCompletions {
|
|
|
|
line_text: line_text.to_string(),
|
|
|
|
position,
|
|
|
|
})
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
Vec::new()
|
|
|
|
} else {
|
|
|
|
match self.response_rx.borrow_mut().blocking_recv().unwrap() {
|
|
|
|
RustylineSyncResponse::LspCompletions(result) => result,
|
|
|
|
RustylineSyncResponse::PostMessage(_) => unreachable!(),
|
|
|
|
}
|
2021-11-25 14:05:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct RustylineSyncMessageHandler {
|
|
|
|
message_rx: Receiver<RustylineSyncMessage>,
|
|
|
|
response_tx: UnboundedSender<RustylineSyncResponse>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RustylineSyncMessageHandler {
|
|
|
|
pub async fn recv(&mut self) -> Option<RustylineSyncMessage> {
|
|
|
|
self.message_rx.recv().await
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn send(&self, response: RustylineSyncResponse) -> Result<(), AnyError> {
|
|
|
|
self
|
|
|
|
.response_tx
|
|
|
|
.send(response)
|
|
|
|
.map_err(|err| anyhow!("{}", err))
|
|
|
|
}
|
|
|
|
}
|