mirror of https://github.com/sgoudham/neovide.git
progress toward splitting main into bridge
parent
b3647d69c4
commit
35a675c8a4
@ -0,0 +1,27 @@
|
|||||||
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
|
use rmpv::Value;
|
||||||
|
use nvim_rs::{Neovim, Handler, compat::tokio::Compat};
|
||||||
|
use async_trait::async_trait;
|
||||||
|
use tokio::process::ChildStdin;
|
||||||
|
|
||||||
|
use crate::error_handling::ResultPanicExplanation;
|
||||||
|
use crate::editor::Editor;
|
||||||
|
use super::events::parse_neovim_event;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct NeovimHandler(pub Arc<Mutex<Editor>>);
|
||||||
|
|
||||||
|
#[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 {
|
||||||
|
let mut editor = self.0.lock().unwrap();
|
||||||
|
editor.handle_redraw_event(event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,89 @@
|
|||||||
|
mod events;
|
||||||
|
mod handler;
|
||||||
|
mod keybindings;
|
||||||
|
mod ui_commands;
|
||||||
|
|
||||||
|
use std::sync::{Arc, Mutex};
|
||||||
|
use std::process::Stdio;
|
||||||
|
|
||||||
|
use rmpv::Value;
|
||||||
|
use nvim_rs::{create::tokio as create, UiAttachOptions};
|
||||||
|
use tokio::runtime::Runtime;
|
||||||
|
use tokio::process::Command;
|
||||||
|
use tokio::sync::mpsc::UnboundedReceiver;
|
||||||
|
|
||||||
|
pub use events::*;
|
||||||
|
pub use keybindings::*;
|
||||||
|
pub use ui_commands::UiCommand;
|
||||||
|
use crate::editor::Editor;
|
||||||
|
use crate::error_handling::ResultPanicExplanation;
|
||||||
|
use handler::NeovimHandler;
|
||||||
|
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
fn set_windows_creation_flags(cmd: &mut Command) {
|
||||||
|
cmd.creation_flags(0x08000000); // CREATE_NO_WINDOW
|
||||||
|
}
|
||||||
|
|
||||||
|
fn create_nvim_command() -> Command {
|
||||||
|
let mut cmd = Command::new("nvim");
|
||||||
|
|
||||||
|
cmd.arg("--embed")
|
||||||
|
.args(std::env::args().skip(1))
|
||||||
|
.stderr(Stdio::inherit());
|
||||||
|
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
set_windows_creation_flags(&mut cmd);
|
||||||
|
|
||||||
|
cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn start_process(editor: Arc<Mutex<Editor>>, mut receiver: UnboundedReceiver<UiCommand>, grid_dimensions: (u64, u64)) {
|
||||||
|
let (width, height) = grid_dimensions;
|
||||||
|
let (mut nvim, io_handler, _) = create::new_child_cmd(&mut create_nvim_command(), NeovimHandler(editor.clone())).await
|
||||||
|
.unwrap_or_explained_panic("Could not create nvim process", "Could not locate or start the neovim process");
|
||||||
|
|
||||||
|
tokio::spawn(async move {
|
||||||
|
match io_handler.await {
|
||||||
|
Err(join_error) => eprintln!("Error joining IO loop: '{}'", join_error),
|
||||||
|
Ok(Err(error)) => eprintln!("Error: '{}'", error),
|
||||||
|
Ok(Ok(())) => {}
|
||||||
|
};
|
||||||
|
std::process::exit(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
nvim.set_var("neovide", Value::Boolean(true)).await
|
||||||
|
.unwrap_or_explained_panic("Could not communicate.", "Could not communicate with neovim process");
|
||||||
|
let mut options = UiAttachOptions::new();
|
||||||
|
options.set_linegrid_external(true);
|
||||||
|
options.set_rgb(true);
|
||||||
|
nvim.ui_attach(width as i64, height as i64, &options).await
|
||||||
|
.unwrap_or_explained_panic("Could not attach.", "Could not attach ui to neovim process");
|
||||||
|
|
||||||
|
let nvim = Arc::new(nvim);
|
||||||
|
loop {
|
||||||
|
let mut commands = Vec::new();
|
||||||
|
let mut resize_command = None;
|
||||||
|
while let Ok(ui_command) = receiver.try_recv() {
|
||||||
|
if let UiCommand::Resize { .. } = ui_command {
|
||||||
|
resize_command = Some(ui_command);
|
||||||
|
} else {
|
||||||
|
commands.push(ui_command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if let Some(resize_command) = resize_command {
|
||||||
|
commands.push(resize_command);
|
||||||
|
}
|
||||||
|
|
||||||
|
for ui_command in commands.into_iter() {
|
||||||
|
ui_command.execute(&nvim).await;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn start_nvim(editor: Arc<Mutex<Editor>>, receiver: UnboundedReceiver<UiCommand>, grid_dimensions: (u64, u64)) {
|
||||||
|
let rt = Runtime::new().unwrap();
|
||||||
|
|
||||||
|
rt.spawn(async move {
|
||||||
|
start_process(editor, receiver, grid_dimensions).await;
|
||||||
|
});
|
||||||
|
}
|
@ -1,122 +1,30 @@
|
|||||||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||||
|
|
||||||
|
mod bridge;
|
||||||
mod editor;
|
mod editor;
|
||||||
mod events;
|
|
||||||
mod window;
|
mod window;
|
||||||
mod keybindings;
|
|
||||||
mod renderer;
|
mod renderer;
|
||||||
mod error_handling;
|
mod error_handling;
|
||||||
mod ui_commands;
|
|
||||||
|
|
||||||
#[macro_use] extern crate derive_new;
|
#[macro_use] extern crate derive_new;
|
||||||
#[macro_use] extern crate rust_embed;
|
#[macro_use] extern crate rust_embed;
|
||||||
|
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use std::process::Stdio;
|
|
||||||
|
|
||||||
use async_trait::async_trait;
|
|
||||||
use rmpv::Value;
|
|
||||||
use nvim_rs::{create::tokio as create, Neovim, UiAttachOptions, Handler, compat::tokio::Compat};
|
|
||||||
use tokio::process::{ChildStdin, Command};
|
|
||||||
use tokio::task::spawn_blocking;
|
|
||||||
use tokio::runtime::Runtime;
|
use tokio::runtime::Runtime;
|
||||||
use tokio::sync::mpsc::{unbounded_channel, UnboundedSender, UnboundedReceiver};
|
use tokio::sync::mpsc::unbounded_channel;
|
||||||
|
|
||||||
use window::ui_loop;
|
use window::ui_loop;
|
||||||
use editor::Editor;
|
use editor::Editor;
|
||||||
use events::parse_neovim_event;
|
use bridge::{start_nvim, UiCommand};
|
||||||
use error_handling::ResultPanicExplanation;
|
|
||||||
use ui_commands::UiCommand;
|
|
||||||
|
|
||||||
const INITIAL_WIDTH: u64 = 100;
|
const INITIAL_WIDTH: u64 = 100;
|
||||||
const INITIAL_HEIGHT: u64 = 50;
|
const INITIAL_HEIGHT: u64 = 50;
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
fn set_windows_creation_flags(cmd: &mut Command) {
|
|
||||||
use std::os::windows::process::CommandExt;
|
|
||||||
cmd.creation_flags(0x08000000); // CREATE_NO_WINDOW
|
|
||||||
}
|
|
||||||
|
|
||||||
fn create_nvim_command() -> Command {
|
|
||||||
let mut cmd = Command::new("nvim");
|
|
||||||
|
|
||||||
cmd.arg("--embed")
|
|
||||||
.args(std::env::args().skip(1))
|
|
||||||
.stderr(Stdio::inherit());
|
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
set_windows_creation_flags(&mut cmd);
|
|
||||||
|
|
||||||
cmd
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
struct NeovimHandler(Arc<Mutex<Editor>>);
|
|
||||||
|
|
||||||
#[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 {
|
|
||||||
let mut editor = self.0.lock().unwrap();
|
|
||||||
editor.handle_redraw_event(event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn start_nvim(editor: Arc<Mutex<Editor>>, mut receiver: UnboundedReceiver<UiCommand>) {
|
|
||||||
let (mut nvim, io_handler, _) = create::new_child_cmd(&mut create_nvim_command(), NeovimHandler(editor.clone())).await
|
|
||||||
.unwrap_or_explained_panic("Could not create nvim process", "Could not locate or start the neovim process");
|
|
||||||
|
|
||||||
tokio::spawn(async move {
|
|
||||||
match io_handler.await {
|
|
||||||
Err(join_error) => eprintln!("Error joining IO loop: '{}'", join_error),
|
|
||||||
Ok(Err(error)) => eprintln!("Error: '{}'", error),
|
|
||||||
Ok(Ok(())) => {}
|
|
||||||
};
|
|
||||||
std::process::exit(0);
|
|
||||||
});
|
|
||||||
|
|
||||||
let mut options = UiAttachOptions::new();
|
|
||||||
options.set_linegrid_external(true);
|
|
||||||
options.set_rgb(true);
|
|
||||||
nvim.set_var("neovide", Value::Boolean(true)).await
|
|
||||||
.unwrap_or_explained_panic("Could not communicate.", "Could not communicate with neovim process");
|
|
||||||
nvim.ui_attach(INITIAL_WIDTH as i64, INITIAL_HEIGHT as i64, &options).await
|
|
||||||
.unwrap_or_explained_panic("Could not attach.", "Could not attach ui to neovim process");
|
|
||||||
|
|
||||||
let nvim = Arc::new(nvim);
|
|
||||||
loop {
|
|
||||||
let mut commands = Vec::new();
|
|
||||||
let mut resize_command = None;
|
|
||||||
while let Ok(ui_command) = receiver.try_recv() {
|
|
||||||
if let UiCommand::Resize { .. } = ui_command {
|
|
||||||
resize_command = Some(ui_command);
|
|
||||||
} else {
|
|
||||||
commands.push(ui_command);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if let Some(resize_command) = resize_command {
|
|
||||||
commands.push(resize_command);
|
|
||||||
}
|
|
||||||
|
|
||||||
for ui_command in commands.into_iter() {
|
|
||||||
ui_command.execute(&nvim).await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
|
|
||||||
let editor = Arc::new(Mutex::new(Editor::new(INITIAL_WIDTH, INITIAL_HEIGHT)));
|
let editor = Arc::new(Mutex::new(Editor::new(INITIAL_WIDTH, INITIAL_HEIGHT)));
|
||||||
let (sender, receiver) = unbounded_channel::<UiCommand>();
|
let (sender, receiver) = unbounded_channel::<UiCommand>();
|
||||||
let editor_clone = editor.clone();
|
let editor_clone = editor.clone();
|
||||||
rt.spawn(async move {
|
start_nvim(editor_clone, receiver, (INITIAL_WIDTH, INITIAL_HEIGHT));
|
||||||
start_nvim(editor_clone, receiver).await;
|
|
||||||
});
|
|
||||||
ui_loop(editor, sender, (INITIAL_WIDTH, INITIAL_HEIGHT));
|
ui_loop(editor, sender, (INITIAL_WIDTH, INITIAL_HEIGHT));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue