1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#![feature(try_blocks)]
#![feature(io_error_other)]
use std::{
io::{self, stdout, Stdout, Write},
pin::Pin,
task::{Context, Poll},
};
use futures::prelude::*;
use crossterm::{
cursor,
event::{Event, EventStream, KeyCode, KeyEvent, KeyModifiers},
terminal::{self, disable_raw_mode, Clear, ClearType::*},
QueueableCommand,
};
use thingbuf::mpsc::{errors::TrySendError, Receiver, Sender};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum ReadlineError {
#[error("io: {0}")]
IO(#[from] io::Error),
#[error("end of file")]
Eof,
#[error("caught CTRL-C")]
Interrupted,
#[error("line writers closed")]
Closed,
}
#[derive(Default)]
struct LineState {
line: String,
line_cursor_pos: usize,
prompt: String,
last_line_length: usize,
last_line_completed: bool,
term_size: (u16, u16),
}
impl LineState {
fn new(prompt: String, term_size: (u16, u16)) -> Self {
Self {
prompt,
last_line_completed: true,
term_size,
..Default::default()
}
}
fn line_height(&self, pos: u16) -> u16 {
pos / self.term_size.0
}
fn move_to_beginning(&self, term: &mut impl Write, from: u16) -> io::Result<()> {
let move_up = self.line_height(from.saturating_sub(1));
term.queue(cursor::MoveToColumn(1))?
.queue(cursor::MoveUp(move_up))?;
Ok(())
}
fn move_from_beginning(&self, term: &mut impl Write, to: u16) -> io::Result<()> {
let line_height = self.line_height(to.saturating_sub(1));
let line_remaining_len = to % self.term_size.0;
term.queue(cursor::MoveDown(line_height))?
.queue(cursor::MoveRight(line_remaining_len))?;
Ok(())
}
fn clear(&self, term: &mut impl Write) -> io::Result<()> {
self.move_to_beginning(term, (self.prompt.len() + self.line_cursor_pos) as u16)?;
term.queue(Clear(FromCursorDown))?;
Ok(())
}
fn clear_and_render(&self, term: &mut impl Write) -> io::Result<()> {
self.clear(term)?;
self.render(term)?;
Ok(())
}
fn render(&self, term: &mut impl Write) -> io::Result<()> {
write!(term, "{}{}", self.prompt, self.line)?;
self.move_to_beginning(term, (self.prompt.len() + self.line.len()) as u16)?;
self.move_from_beginning(term, self.prompt.len() as u16 + self.line_cursor_pos as u16)?;
Ok(())
}
fn print_data(&mut self, data: &[u8], term: &mut impl Write) -> Result<(), ReadlineError> {
self.clear(term)?;
if !self.last_line_completed {
term.queue(cursor::MoveUp(1))?
.queue(cursor::MoveToColumn(1))?
.queue(cursor::MoveRight(self.last_line_length as u16))?;
}
term.write_all(data)?;
self.last_line_completed = data.ends_with(b"\n");
if !self.last_line_completed {
self.last_line_length += data.len();
writeln!(term)?;
} else {
self.last_line_length = 0;
}
term.queue(cursor::MoveToColumn(1))?;
self.render(term)?;
Ok(())
}
fn print(&mut self, string: &str, term: &mut impl Write) -> Result<(), ReadlineError> {
self.print_data(string.as_bytes(), term)?;
Ok(())
}
fn handle_event(
&mut self,
event: Event,
term: &mut impl Write,
) -> Result<Option<String>, ReadlineError> {
match event {
Event::Key(KeyEvent {
code,
modifiers: KeyModifiers::NONE,
})
| Event::Key(KeyEvent {
code,
modifiers: KeyModifiers::SHIFT,
}) => match code {
KeyCode::Enter => {
self.clear(term)?;
let line = std::mem::take(&mut self.line);
self.line_cursor_pos = 0;
self.render(term)?;
return Ok(Some(line));
}
KeyCode::Backspace => {
if self.line_cursor_pos != 0 {
self.clear(term)?;
self.line_cursor_pos = self.line_cursor_pos.saturating_sub(1);
if self.line_cursor_pos == self.line.len() {
let _ = self.line.pop();
} else {
self.line.remove(self.line_cursor_pos);
}
self.render(term)?;
}
}
KeyCode::Left => {
if self.line_cursor_pos > 0 {
self.line_cursor_pos = self.line_cursor_pos.saturating_sub(1);
term.queue(cursor::MoveLeft(1))?;
}
}
KeyCode::Right => {
let new_pos = self.line_cursor_pos + 1;
if new_pos <= self.line.len() {
term.queue(cursor::MoveRight(1))?;
self.line_cursor_pos = new_pos;
}
}
KeyCode::Char(c) => {
self.clear(term)?;
self.line_cursor_pos += 1;
if self.line_cursor_pos == self.line.len() {
self.line.push(c);
} else {
self.line.insert(self.line_cursor_pos - 1, c);
}
self.render(term)?;
}
_ => {}
},
Event::Key(KeyEvent {
code,
modifiers: KeyModifiers::CONTROL,
}) => match code {
KeyCode::Char('d') => {
writeln!(term)?;
self.clear(term)?;
return Err(ReadlineError::Eof);
}
KeyCode::Char('c') => {
self.print(&format!("{}{}", self.prompt, self.line), term)?;
self.line.clear();
self.line_cursor_pos = 0;
self.clear_and_render(term)?;
return Err(ReadlineError::Interrupted);
}
KeyCode::Char('l') => {
term.queue(Clear(All))?.queue(cursor::MoveToColumn(0))?;
self.clear_and_render(term)?;
}
KeyCode::Char('u') => {
self.clear(term)?;
self.line.drain(0..self.line_cursor_pos);
self.line_cursor_pos = 0;
term.queue(cursor::MoveDown(self.line_height(
((self.prompt.len() + self.line.len()) - self.line_cursor_pos) as u16,
)))?;
self.render(term)?;
}
KeyCode::Left => {
self.clear(term)?;
self.line_cursor_pos = if let Some((new_pos, _)) = self.line
[0..self.line_cursor_pos]
.char_indices()
.rev()
.skip_while(|(_, c)| *c == ' ')
.find(|(_, c)| *c == ' ')
{
new_pos + 1
} else {
0
};
self.render(term)?;
}
KeyCode::Right => {
self.clear(term)?;
self.line_cursor_pos = if let Some((new_pos, _)) = self.line
[self.line_cursor_pos..self.line.len()]
.char_indices()
.skip_while(|(_, c)| *c == ' ')
.find(|(_, c)| *c == ' ')
{
self.line_cursor_pos + new_pos
} else {
self.line.len()
};
self.render(term)?;
}
_ => {}
},
Event::Resize(x, y) => {
self.term_size = (x, y);
self.clear_and_render(term)?;
}
_ => {}
}
Ok(None)
}
}
#[derive(Clone)]
pub struct SharedWriter {
sender: Sender<Vec<u8>>,
}
impl AsyncWrite for SharedWriter {
fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<io::Result<usize>> {
let fut = self.sender.send_ref();
futures::pin_mut!(fut);
let mut send_buf = futures::ready!(fut.poll_unpin(cx))
.map_err(|_| io::Error::other("thingbuf receiver has closed"))?;
send_buf.extend_from_slice(buf);
Poll::Ready(Ok(buf.len()))
}
fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
Poll::Ready(Ok(()))
}
fn poll_close(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
Poll::Ready(Ok(()))
}
}
impl io::Write for SharedWriter {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
match self.sender.try_send_ref() {
Ok(mut send_buf) => {
send_buf.extend_from_slice(buf);
Ok(buf.len())
}
Err(TrySendError::Full(_)) => Err(io::ErrorKind::WouldBlock.into()),
_ => Err(io::Error::other("thingbuf receiver has closed")),
}
}
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}
pub struct Readline {
raw_term: Stdout,
event_stream: EventStream,
line_receiver: Receiver<Vec<u8>>,
line: LineState,
}
impl Readline {
pub fn new(prompt: String) -> Result<(Self, SharedWriter), ReadlineError> {
let (sender, line_receiver) = thingbuf::mpsc::channel(100);
terminal::enable_raw_mode()?;
let mut readline = Readline {
raw_term: stdout(),
event_stream: EventStream::new(),
line_receiver,
line: LineState::new(prompt, terminal::size()?),
};
readline.line.render(&mut readline.raw_term)?;
readline.raw_term.queue(terminal::EnableLineWrap)?;
readline.raw_term.flush()?;
Ok((readline, SharedWriter { sender }))
}
pub fn flush(&mut self) -> io::Result<()> {
self.raw_term.flush()
}
pub async fn readline(&mut self) -> Option<Result<String, ReadlineError>> {
let res: Result<String, ReadlineError> = try {
futures::select! {
event = self.event_stream.next().fuse() => match event {
Some(Ok(event)) => {
match self.line.handle_event(event, &mut self.raw_term) {
Ok(Some(line)) => Result::<_, ReadlineError>::Ok(line)?,
Err(e) => Err(e)?,
Ok(None) => { self.raw_term.flush()?; return None },
}
}
Some(Err(e)) => Err(e)?,
None => return None,
},
result = self.line_receiver.recv_ref().fuse() => match result {
Some(buf) => {
self.line.print_data(&buf, &mut self.raw_term)?;
self.raw_term.flush()?;
return None
},
None => Err(ReadlineError::Closed)?,
}
}
};
Some(res)
}
}
impl Drop for Readline {
fn drop(&mut self) {
let _ = disable_raw_mode();
}
}