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
extern crate libc;
extern crate nix;
extern crate unicode_width;
extern crate encoding;
extern crate strcursor;
mod enc;
mod error;
mod buffer;
mod history;
mod parser;
mod instr;
mod term;
use std::os::unix::io::{RawFd, AsRawFd};
use encoding::types::EncodingRef;
use encoding::all::{ASCII, UTF_8};
pub use enc::Encoding;
pub use error::Error;
use history::History;
use buffer::Buffer;
use term::{Term, RawMode};
struct EditCtx<'a> {
term: &'a mut Term,
raw: &'a mut RawMode,
history: &'a History,
prompt: &'a str,
enc: EncodingRef
}
fn edit<'a>(ctx: EditCtx<'a>) -> Result<String, Error> {
let mut buffer = Buffer::new();
let mut seq: Vec<u8> = Vec::new();
let mut history_cursor = history::Cursor::new(ctx.history);
loop {
try!(ctx.raw.write(&buffer.get_line(ctx.prompt)));
let byte = try!(try!(ctx.term.read_byte()).ok_or(Error::EndOfFile));
seq.push(byte);
match parser::parse(&seq, ctx.enc) {
parser::Result::Error(len) => {
for _ in (0..len) {
seq.remove(0);
}
},
parser::Result::Incomplete => (),
parser::Result::Success(token, len) => {
match instr::interpret_token(token) {
instr::Instr::Done => {
return Result::Ok(buffer.to_string());
},
instr::Instr::DeleteCharLeftOfCursor => {
buffer.delete_char_left_of_cursor();
},
instr::Instr::DeleteCharRightOfCursor => {
buffer.delete_char_right_of_cursor();
},
instr::Instr::DeleteCharRightOfCursorOrEOF => {
if !buffer.delete_char_right_of_cursor() {
return Err(Error::EndOfFile);
}
},
instr::Instr::MoveCursorLeft => {
buffer.move_left();
},
instr::Instr::MoveCursorRight => {
buffer.move_right();
},
instr::Instr::MoveCursorStart => buffer.move_start(),
instr::Instr::MoveCursorEnd => buffer.move_end(),
instr::Instr::HistoryPrev => {
if history_cursor.incr() {
buffer.swap()
}
history_cursor.get().map(|s| buffer.replace(s));
},
instr::Instr::HistoryNext => {
if history_cursor.decr() {
buffer.swap()
}
history_cursor.get().map(|s| buffer.replace(s));
},
instr::Instr::Noop => (),
instr::Instr::Cancel => return Err(Error::Cancel),
instr::Instr::Clear => try!(ctx.raw.clear()),
instr::Instr::InsertAtCursor(text) => {
buffer.insert_chars_at_cursor(text)
}
};
for _ in (0..len) {
seq.remove(0);
}
}
};
}
}
pub struct Copperline {
term: Term,
history: History
}
impl Copperline {
pub fn new() -> Copperline {
Copperline::new_from_raw_fds(libc::STDIN_FILENO, libc::STDOUT_FILENO)
}
pub fn new_from_io<I: AsRawFd, O: AsRawFd>(i: &I, o: &O) -> Copperline {
Copperline::new_from_raw_fds(i.as_raw_fd(), o.as_raw_fd())
}
pub fn new_from_raw_fds(ifd: RawFd, ofd: RawFd) -> Copperline {
Copperline {
term: Term::new(ifd, ofd),
history: History::new()
}
}
fn read_line_with_enc(&mut self, prompt: &str, enc: EncodingRef) -> Result<String, Error> {
if Term::is_unsupported_term() || !self.term.is_a_tty() {
return Err(Error::UnsupportedTerm);
}
let result = self.term.acquire_raw_mode().and_then(|mut raw| {
edit(EditCtx {
term: &mut self.term,
raw: &mut raw,
history: &self.history,
prompt: prompt,
enc: enc
})
});
println!("");
result
}
pub fn read_line(&mut self, prompt: &str, encoding: Encoding) -> Result<String, Error> {
self.read_line_with_enc(prompt, enc::to_encoding_ref(encoding))
}
pub fn read_line_ascii(&mut self, prompt: &str) -> Result<String, Error> {
self.read_line_with_enc(prompt, ASCII)
}
pub fn read_line_utf8(&mut self, prompt: &str) -> Result<String, Error> {
self.read_line_with_enc(prompt, UTF_8)
}
pub fn get_current_history_length(&self) -> usize {
self.history.len()
}
pub fn add_history(&mut self, line: String) {
self.history.push(line)
}
pub fn get_history_item(&self, idx: usize) -> Option<&String> {
self.history.get(idx)
}
pub fn remove_history_item(&mut self, idx: usize) -> Option<String> {
self.history.remove(idx)
}
pub fn clear_history(&mut self) {
self.history.clear()
}
pub fn clear_screen(&mut self) -> Result<(), Error> {
let mut raw = try!(self.term.acquire_raw_mode());
raw.clear().map_err(Error::ErrNo)
}
}