|
|
|
use rmpv::Value;
|
|
|
|
use nvim_rs::{Neovim, Handler, compat::tokio::Compat};
|
|
|
|
use async_trait::async_trait;
|
|
|
|
use tokio::process::ChildStdin;
|
|
|
|
use tokio::sync::mpsc::{unbounded_channel, UnboundedSender};
|
|
|
|
|
|
|
|
use crate::error_handling::ResultPanicExplanation;
|
|
|
|
use crate::editor::EDITOR;
|
|
|
|
use super::events::{RedrawEvent, parse_neovim_event};
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct NeovimHandler {
|
|
|
|
sender: UnboundedSender<RedrawEvent>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NeovimHandler {
|
|
|
|
pub fn new() -> NeovimHandler {
|
|
|
|
let (sender, mut receiver) = unbounded_channel::<RedrawEvent>();
|
|
|
|
|
|
|
|
tokio::spawn(async move {
|
|
|
|
while let Some(event) = receiver.recv().await {
|
|
|
|
let mut editor = EDITOR.lock().unwrap();
|
|
|
|
editor.handle_redraw_event(event);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
NeovimHandler {
|
|
|
|
sender
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn handle_redraw_event(&self, event: RedrawEvent) {
|
|
|
|
self.sender.send(event)
|
|
|
|
.unwrap_or_explained_panic(
|
|
|
|
"Could not process neovim event.",
|
|
|
|
"The main thread for Neovide has closed the communication channel preventing a neovim event from being processed.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
impl Handler for NeovimHandler {
|
|
|
|
type Writer = Compat<ChildStdin>;
|
|
|
|
|
|
|
|
async fn handle_notify(&self, event_name: String, arguments: Vec<Value>, _neovim: Neovim<Compat<ChildStdin>>) {
|
|
|
|
let parsed_events = parse_neovim_event(&event_name, &arguments)
|
|
|
|
.unwrap_or_explained_panic("Could not parse event", "Could not parse event from neovim");
|
|
|
|
for event in parsed_events {
|
|
|
|
self.handle_redraw_event(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|