helix-mods/helix-term/src/editor.rs

183 lines
5.1 KiB
Rust
Raw Normal View History

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-16 22:46:27 +02:00
execute, queue,
2020-06-23 19:10:09 +02:00
style::{Color, Print, SetForegroundColor},
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;
use anyhow::Error;
use crate::{keymap, Args};
2020-06-24 20:59:35 +02:00
use helix_core::{state::coords_at_pos, Buffer, State};
2020-06-23 19:10:09 +02:00
pub struct BufferComponent<'a> {
2020-06-19 02:14:29 +02:00
x: u16,
y: u16,
2020-06-23 19:10:09 +02:00
contents: Vec<&'a str>,
2020-06-19 02:14:29 +02:00
}
2020-06-23 19:10:09 +02:00
impl BufferComponent<'_> {
2020-06-19 02:14:29 +02:00
pub fn render(&self) {
2020-06-23 19:10:09 +02:00
let mut line_count = 0;
for line in &self.contents {
execute!(
stdout(),
SetForegroundColor(Color::DarkCyan),
cursor::MoveTo(self.x, self.y + line_count),
Print((line_count + 1).to_string())
);
execute!(
stdout(),
SetForegroundColor(Color::Reset),
cursor::MoveTo(self.x + 2, self.y + line_count),
Print(line)
2020-06-24 20:59:35 +02:00
);
2020-06-23 19:10:09 +02:00
line_count += 1;
}
2020-06-19 02:14:29 +02:00
}
}
2020-06-05 12:21:27 +02:00
pub struct Editor {
state: Option<State>,
2020-06-23 19:10:09 +02:00
first_line: u16,
2020-06-19 02:14:29 +02:00
size: (u16, u16),
2020-06-05 12:21:27 +02:00
}
2020-06-04 01:05:01 +02:00
impl Editor {
pub fn new(mut args: Args) -> Result<Self, Error> {
2020-06-19 02:14:29 +02:00
let mut editor = Editor {
state: None,
2020-06-23 19:10:09 +02:00
first_line: 0,
2020-06-19 02:14:29 +02:00
size: terminal::size().unwrap(),
};
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(())
}
2020-06-19 02:14:29 +02:00
fn render(&mut self) {
// TODO:
2020-06-19 02:14:29 +02:00
2020-06-16 22:46:27 +02:00
match &self.state {
2020-06-19 02:14:29 +02:00
Some(s) => {
2020-06-23 19:10:09 +02:00
let view = BufferComponent {
x: 0,
y: self.first_line,
contents: s
.file()
.lines_at(self.first_line as usize)
.take(self.size.1 as usize)
.map(|x| x.as_str().unwrap())
.collect::<Vec<&str>>(),
};
view.render();
2020-06-19 02:14:29 +02:00
}
2020-06-16 22:46:27 +02:00
None => (),
}
}
pub async fn print_events(&mut self) {
2020-06-07 14:11:08 +02:00
let mut reader = EventStream::new();
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 {
// 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-24 20:59:35 +02:00
// render the cursor
let pos = self.state.as_ref().unwrap().selection.primary().head;
let coords = coords_at_pos(
&self.state.as_ref().unwrap().doc.contents.slice(..),
pos,
);
execute!(
stdout(),
cursor::MoveTo((coords.1 + 2) as u16, coords.0 as u16)
);
2020-06-07 14:11:08 +02:00
}
}
2020-06-04 01:05:01 +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
}
}
}
pub fn run(&mut self) -> Result<(), Error> {
2020-06-04 01:05:01 +02:00
enable_raw_mode()?;
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.
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();
}
disable_raw_mode()?;
Ok(())
2020-06-01 10:42:28 +02:00
}
}