2020-06-04 01:05:01 +02:00
|
|
|
use crossterm::{
|
|
|
|
cursor,
|
|
|
|
cursor::position,
|
2020-06-07 14:11:08 +02:00
|
|
|
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
2020-06-05 12:21:27 +02:00
|
|
|
execute, queue, style,
|
2020-06-04 01:05:01 +02:00
|
|
|
terminal::{self, disable_raw_mode, enable_raw_mode},
|
|
|
|
};
|
2020-06-07 14:11:08 +02:00
|
|
|
use futures::{future::FutureExt, select, StreamExt};
|
|
|
|
use std::io::{self, stdout, Write};
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::time::Duration;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-16 11:00:34 +02:00
|
|
|
use anyhow::Error;
|
|
|
|
|
|
|
|
use crate::{keymap, Args};
|
|
|
|
use helix_core::{Buffer, State};
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-05 12:21:27 +02:00
|
|
|
pub struct Editor {
|
2020-06-16 11:00:34 +02:00
|
|
|
state: Option<State>,
|
2020-06-05 12:21:27 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
impl Editor {
|
2020-06-16 11:00:34 +02:00
|
|
|
pub fn new(mut args: Args) -> Result<Self, Error> {
|
|
|
|
let mut editor = Editor { state: None };
|
|
|
|
|
|
|
|
if let Some(file) = args.files.pop() {
|
|
|
|
editor.open(file)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(editor)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open(&mut self, path: PathBuf) -> Result<(), Error> {
|
|
|
|
let buffer = Buffer::load(path)?;
|
|
|
|
let state = State::new(buffer);
|
|
|
|
self.state = Some(state);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn render(&self) {
|
|
|
|
// TODO:
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn print_events(&mut self) {
|
2020-06-07 14:11:08 +02:00
|
|
|
let mut reader = EventStream::new();
|
2020-06-16 11:00:34 +02:00
|
|
|
let keymap = keymap::default();
|
|
|
|
|
|
|
|
self.render();
|
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
loop {
|
|
|
|
// Handle key events
|
2020-06-07 14:11:08 +02:00
|
|
|
let mut event = reader.next().await;
|
|
|
|
match event {
|
2020-06-16 11:00:34 +02:00
|
|
|
// TODO: handle resize events
|
|
|
|
Some(Ok(Event::Key(KeyEvent {
|
|
|
|
code: KeyCode::Char('q'),
|
|
|
|
..
|
|
|
|
}))) => {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Some(Ok(Event::Key(event))) => {
|
|
|
|
// TODO: handle modes and sequences (`gg`)
|
|
|
|
if let Some(command) = keymap.get(&event) {
|
|
|
|
if let Some(state) = &mut self.state {
|
|
|
|
// TODO: handle count other than 1
|
|
|
|
command(state, 1);
|
|
|
|
self.render();
|
2020-06-07 14:11:08 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-04 01:05:01 +02:00
|
|
|
}
|
2020-06-16 11:00:34 +02:00
|
|
|
Some(Ok(_)) => {
|
|
|
|
// unhandled event
|
|
|
|
()
|
|
|
|
}
|
2020-06-07 14:11:08 +02:00
|
|
|
Some(Err(x)) => panic!(x),
|
|
|
|
None => break,
|
2020-06-04 01:05:01 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-16 11:00:34 +02:00
|
|
|
pub fn run(&mut self) -> Result<(), Error> {
|
2020-06-04 01:05:01 +02:00
|
|
|
enable_raw_mode()?;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
let mut stdout = stdout();
|
2020-06-05 12:21:27 +02:00
|
|
|
|
|
|
|
execute!(stdout, terminal::EnterAlternateScreen)?;
|
|
|
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
// Same number of threads as there are CPU cores.
|
|
|
|
let num_threads = num_cpus::get().max(1);
|
|
|
|
|
|
|
|
// A channel that sends the shutdown signal.
|
|
|
|
let (s, r) = piper::chan::<()>(0);
|
|
|
|
let mut threads = Vec::new();
|
|
|
|
|
|
|
|
// Create an executor thread pool.
|
|
|
|
for _ in 0..num_threads {
|
|
|
|
// Spawn an executor thread that waits for the shutdown signal.
|
|
|
|
let r = r.clone();
|
|
|
|
threads.push(thread::spawn(move || smol::run(r.recv())));
|
|
|
|
}
|
|
|
|
|
|
|
|
// No need to `run()`, now we can just block on the main future.
|
2020-06-16 11:00:34 +02:00
|
|
|
smol::block_on(self.print_events());
|
2020-06-05 12:21:27 +02:00
|
|
|
|
|
|
|
// Send a shutdown signal.
|
|
|
|
drop(s);
|
|
|
|
|
2020-06-07 14:11:08 +02:00
|
|
|
execute!(stdout, terminal::LeaveAlternateScreen)?;
|
|
|
|
|
2020-06-05 12:21:27 +02:00
|
|
|
// Wait for threads to finish.
|
|
|
|
for t in threads {
|
|
|
|
t.join().unwrap();
|
2020-05-25 06:02:21 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 11:00:34 +02:00
|
|
|
disable_raw_mode()?;
|
|
|
|
|
|
|
|
Ok(())
|
2020-06-01 10:42:28 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
}
|