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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
use std::collections::HashMap;
use std::env;
use std::fs::File;
use std::io::prelude::*;
use std::io;
use std::io::BufReader;
use std::path::Path;
use Attr;
use color;
use Terminal;
use Result;
use self::searcher::get_dbpath_for_term;
use self::parser::compiled::parse;
use self::parm::{expand, Param, Variables};
use self::Error::*;
fn is_ansi(name: &str) -> bool {
static ANSI_TERM_PREFIX: &'static [&'static str] = &[
"Eterm", "ansi", "eterm", "iterm", "konsole", "linux", "mrxvt", "msyscon", "rxvt",
"screen", "tmux", "xterm",
];
match ANSI_TERM_PREFIX.binary_search(&name) {
Ok(_) => true,
Err(0) => false,
Err(idx) => name.starts_with(ANSI_TERM_PREFIX[idx - 1]),
}
}
#[derive(Debug, Clone)]
pub struct TermInfo {
pub names: Vec<String>,
pub bools: HashMap<&'static str, bool>,
pub numbers: HashMap<&'static str, u32>,
pub strings: HashMap<&'static str, Vec<u8>>,
}
impl TermInfo {
pub fn from_env() -> Result<TermInfo> {
let term_var = env::var("TERM").ok();
let term_name = term_var.as_ref().map(|s| &**s).or_else(|| {
env::var("MSYSCON").ok().and_then(|s| {
if s == "mintty.exe" {
Some("msyscon")
} else {
None
}
})
});
if let Some(term_name) = term_name {
return TermInfo::from_name(term_name);
} else {
return Err(::Error::TermUnset);
}
}
pub fn from_name(name: &str) -> Result<TermInfo> {
if let Some(path) = get_dbpath_for_term(name) {
match TermInfo::from_path(&path) {
Ok(term) => return Ok(term),
Err(::Error::Io(_)) => {}
Err(e) => return Err(e),
}
}
if is_ansi(name) {
let mut strings = HashMap::new();
strings.insert("sgr0", b"\x1B[0m".to_vec());
strings.insert("bold", b"\x1B[1m".to_vec());
strings.insert("setaf", b"\x1B[3%p1%dm".to_vec());
strings.insert("setab", b"\x1B[4%p1%dm".to_vec());
let mut numbers = HashMap::new();
numbers.insert("colors", 8);
Ok(TermInfo {
names: vec![name.to_owned()],
bools: HashMap::new(),
numbers: numbers,
strings: strings,
})
} else {
Err(::Error::TerminfoEntryNotFound)
}
}
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<TermInfo> {
Self::_from_path(path.as_ref())
}
fn _from_path(path: &Path) -> Result<TermInfo> {
let file = File::open(path).map_err(::Error::Io)?;
let mut reader = BufReader::new(file);
parse(&mut reader, false)
}
pub fn apply_cap(&self, cmd: &str, params: &[Param], out: &mut io::Write) -> Result<()> {
match self.strings.get(cmd) {
Some(cmd) => match expand(cmd, params, &mut Variables::new()) {
Ok(s) => {
out.write_all(&s)?;
Ok(())
}
Err(e) => Err(e.into()),
},
None => Err(::Error::NotSupported),
}
}
pub fn reset(&self, out: &mut io::Write) -> Result<()> {
let cmd = match [
("sgr0", &[] as &[Param]),
("sgr", &[Param::Number(0)]),
("op", &[]),
].iter()
.filter_map(|&(cap, params)| self.strings.get(cap).map(|c| (c, params)))
.next()
{
Some((op, params)) => match expand(op, params, &mut Variables::new()) {
Ok(cmd) => cmd,
Err(e) => return Err(e.into()),
},
None => return Err(::Error::NotSupported),
};
out.write_all(&cmd)?;
Ok(())
}
}
#[derive(Debug, Eq, PartialEq)]
pub enum Error {
BadMagic(u16),
NotUtf8(::std::str::Utf8Error),
ShortNames,
TooManyBools,
TooManyNumbers,
TooManyStrings,
InvalidLength,
NamesMissingNull,
StringsMissingNull,
}
impl ::std::fmt::Display for Error {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
use std::error::Error;
match *self {
NotUtf8(e) => write!(f, "{}", e),
BadMagic(v) => write!(f, "bad magic number {:x} in terminfo header", v),
_ => f.write_str(self.description()),
}
}
}
impl ::std::convert::From<::std::string::FromUtf8Error> for Error {
fn from(v: ::std::string::FromUtf8Error) -> Self {
NotUtf8(v.utf8_error())
}
}
impl ::std::error::Error for Error {
fn description(&self) -> &str {
match *self {
BadMagic(..) => "incorrect magic number at start of file",
ShortNames => "no names exposed, need at least one",
TooManyBools => "more boolean properties than libterm knows about",
TooManyNumbers => "more number properties than libterm knows about",
TooManyStrings => "more string properties than libterm knows about",
InvalidLength => "invalid length field value, must be >= -1",
NotUtf8(ref e) => e.description(),
NamesMissingNull => "names table missing NUL terminator",
StringsMissingNull => "string table missing NUL terminator",
}
}
fn cause(&self) -> Option<&::std::error::Error> {
match *self {
NotUtf8(ref e) => Some(e),
_ => None,
}
}
}
pub mod searcher;
pub mod parser {
pub mod compiled;
mod names;
}
pub mod parm;
fn cap_for_attr(attr: Attr) -> &'static str {
match attr {
Attr::Bold => "bold",
Attr::Dim => "dim",
Attr::Italic(true) => "sitm",
Attr::Italic(false) => "ritm",
Attr::Underline(true) => "smul",
Attr::Underline(false) => "rmul",
Attr::Blink => "blink",
Attr::Standout(true) => "smso",
Attr::Standout(false) => "rmso",
Attr::Reverse => "rev",
Attr::Secure => "invis",
Attr::ForegroundColor(_) => "setaf",
Attr::BackgroundColor(_) => "setab",
}
}
#[derive(Clone, Debug)]
pub struct TerminfoTerminal<T> {
num_colors: u32,
out: T,
ti: TermInfo,
}
impl<T: Write> Terminal for TerminfoTerminal<T> {
type Output = T;
fn fg(&mut self, color: color::Color) -> Result<()> {
let color = self.dim_if_necessary(color);
if self.num_colors > color {
return self.ti
.apply_cap("setaf", &[Param::Number(color as i32)], &mut self.out);
}
Err(::Error::ColorOutOfRange)
}
fn bg(&mut self, color: color::Color) -> Result<()> {
let color = self.dim_if_necessary(color);
if self.num_colors > color {
return self.ti
.apply_cap("setab", &[Param::Number(color as i32)], &mut self.out);
}
Err(::Error::ColorOutOfRange)
}
fn attr(&mut self, attr: Attr) -> Result<()> {
match attr {
Attr::ForegroundColor(c) => self.fg(c),
Attr::BackgroundColor(c) => self.bg(c),
_ => self.ti.apply_cap(cap_for_attr(attr), &[], &mut self.out),
}
}
fn supports_attr(&self, attr: Attr) -> bool {
match attr {
Attr::ForegroundColor(_) | Attr::BackgroundColor(_) => self.num_colors > 0,
_ => {
let cap = cap_for_attr(attr);
self.ti.strings.get(cap).is_some()
}
}
}
fn reset(&mut self) -> Result<()> {
self.ti.reset(&mut self.out)
}
fn supports_reset(&self) -> bool {
["sgr0", "sgr", "op"]
.iter()
.any(|&cap| self.ti.strings.get(cap).is_some())
}
fn supports_color(&self) -> bool {
self.num_colors > 0 && self.supports_reset()
}
fn cursor_up(&mut self) -> Result<()> {
self.ti.apply_cap("cuu1", &[], &mut self.out)
}
fn delete_line(&mut self) -> Result<()> {
self.ti.apply_cap("el", &[], &mut self.out)
}
fn carriage_return(&mut self) -> Result<()> {
self.ti.apply_cap("cr", &[], &mut self.out)
}
fn get_ref(&self) -> &T {
&self.out
}
fn get_mut(&mut self) -> &mut T {
&mut self.out
}
fn into_inner(self) -> T
where
Self: Sized,
{
self.out
}
}
impl<T: Write> TerminfoTerminal<T> {
pub fn new_with_terminfo(out: T, terminfo: TermInfo) -> TerminfoTerminal<T> {
let nc = if terminfo.strings.contains_key("setaf") && terminfo.strings.contains_key("setab")
{
terminfo.numbers.get("colors").map_or(0, |&n| n)
} else {
0
};
TerminfoTerminal {
out: out,
ti: terminfo,
num_colors: nc as u32,
}
}
pub fn new(out: T) -> Option<TerminfoTerminal<T>> {
TermInfo::from_env()
.map(move |ti| TerminfoTerminal::new_with_terminfo(out, ti))
.ok()
}
fn dim_if_necessary(&self, color: color::Color) -> color::Color {
if color >= self.num_colors && color >= 8 && color < 16 {
color - 8
} else {
color
}
}
}
impl<T: Write> Write for TerminfoTerminal<T> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.out.write(buf)
}
fn flush(&mut self) -> io::Result<()> {
self.out.flush()
}
}