2013-05-30 01:13:35 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! Simple ANSI color library
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-05-28 22:11:41 -05:00
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::io;
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
#[cfg(not(target_os = "win32"))] use std::os;
|
2013-06-25 19:02:03 -05:00
|
|
|
#[cfg(not(target_os = "win32"))] use terminfo::*;
|
|
|
|
#[cfg(not(target_os = "win32"))] use terminfo::searcher::open;
|
|
|
|
#[cfg(not(target_os = "win32"))] use terminfo::parser::compiled::parse;
|
|
|
|
#[cfg(not(target_os = "win32"))] use terminfo::parm::{expand, Number, Variables};
|
2013-05-30 01:13:35 -05:00
|
|
|
|
2012-07-05 17:58:25 -05:00
|
|
|
// FIXME (#2807): Windows support.
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
pub mod color {
|
|
|
|
pub type Color = u16;
|
|
|
|
|
2013-06-30 22:51:13 -05:00
|
|
|
pub static BLACK: Color = 0u16;
|
|
|
|
pub static RED: Color = 1u16;
|
|
|
|
pub static GREEN: Color = 2u16;
|
|
|
|
pub static YELLOW: Color = 3u16;
|
|
|
|
pub static BLUE: Color = 4u16;
|
|
|
|
pub static MAGENTA: Color = 5u16;
|
|
|
|
pub static CYAN: Color = 6u16;
|
|
|
|
pub static WHITE: Color = 7u16;
|
|
|
|
|
|
|
|
pub static BRIGHT_BLACK: Color = 8u16;
|
|
|
|
pub static BRIGHT_RED: Color = 9u16;
|
|
|
|
pub static BRIGHT_GREEN: Color = 10u16;
|
|
|
|
pub static BRIGHT_YELLOW: Color = 11u16;
|
|
|
|
pub static BRIGHT_BLUE: Color = 12u16;
|
|
|
|
pub static BRIGHT_MAGENTA: Color = 13u16;
|
|
|
|
pub static BRIGHT_CYAN: Color = 14u16;
|
|
|
|
pub static BRIGHT_WHITE: Color = 15u16;
|
2013-06-25 18:38:32 -05:00
|
|
|
}
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-05-30 18:14:40 -05:00
|
|
|
#[cfg(not(target_os = "win32"))]
|
2013-05-30 01:13:35 -05:00
|
|
|
pub struct Terminal {
|
2013-06-25 18:38:32 -05:00
|
|
|
num_colors: u16,
|
2013-05-30 01:13:35 -05:00
|
|
|
priv out: @io::Writer,
|
|
|
|
priv ti: ~TermInfo
|
2011-07-11 13:50:02 -05:00
|
|
|
}
|
|
|
|
|
2013-05-30 18:14:40 -05:00
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
pub struct Terminal {
|
2013-06-25 18:38:32 -05:00
|
|
|
num_colors: u16,
|
2013-05-30 18:14:40 -05:00
|
|
|
priv out: @io::Writer,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(target_os = "win32"))]
|
2013-06-03 18:56:35 -05:00
|
|
|
impl Terminal {
|
2013-05-30 01:13:35 -05:00
|
|
|
pub fn new(out: @io::Writer) -> Result<Terminal, ~str> {
|
|
|
|
let term = os::getenv("TERM");
|
|
|
|
if term.is_none() {
|
|
|
|
return Err(~"TERM environment variable undefined");
|
|
|
|
}
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-05-30 01:13:35 -05:00
|
|
|
let entry = open(term.unwrap());
|
|
|
|
if entry.is_err() {
|
2013-06-25 18:38:32 -05:00
|
|
|
return Err(entry.unwrap_err());
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
let ti = parse(entry.unwrap(), false);
|
2013-05-30 01:13:35 -05:00
|
|
|
if ti.is_err() {
|
2013-06-25 18:38:32 -05:00
|
|
|
return Err(ti.unwrap_err());
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
let inf = ti.unwrap();
|
|
|
|
let nc = if inf.strings.find_equiv(&("setaf")).is_some()
|
|
|
|
&& inf.strings.find_equiv(&("setab")).is_some() {
|
|
|
|
inf.numbers.find_equiv(&("colors")).map_consume_default(0, |&n| n)
|
|
|
|
} else { 0 };
|
2011-07-11 13:50:02 -05:00
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
return Ok(Terminal {out: out, ti: inf, num_colors: nc});
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
2013-06-25 18:38:32 -05:00
|
|
|
/// Sets the foreground color to the given color.
|
|
|
|
///
|
|
|
|
/// If the color is a bright color, but the terminal only supports 8 colors,
|
|
|
|
/// the corresponding normal color will be used instead.
|
|
|
|
pub fn fg(&self, color: color::Color) {
|
|
|
|
let color = self.dim_if_necessary(color);
|
|
|
|
if self.num_colors > color {
|
2013-05-30 18:14:40 -05:00
|
|
|
let s = expand(*self.ti.strings.find_equiv(&("setaf")).unwrap(),
|
2013-06-13 20:16:25 -05:00
|
|
|
[Number(color as int)], &mut Variables::new());
|
2013-05-30 18:14:40 -05:00
|
|
|
if s.is_ok() {
|
2013-06-25 18:38:32 -05:00
|
|
|
self.out.write(s.unwrap());
|
2013-05-30 18:14:40 -05:00
|
|
|
} else {
|
2013-06-27 15:37:55 -05:00
|
|
|
warn!("%s", s.unwrap_err());
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
2013-05-30 12:21:41 -05:00
|
|
|
}
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
2013-06-25 18:38:32 -05:00
|
|
|
/// Sets the background color to the given color.
|
|
|
|
///
|
|
|
|
/// If the color is a bright color, but the terminal only supports 8 colors,
|
|
|
|
/// the corresponding normal color will be used instead.
|
|
|
|
pub fn bg(&self, color: color::Color) {
|
|
|
|
let color = self.dim_if_necessary(color);
|
|
|
|
if self.num_colors > color {
|
2013-05-30 18:14:40 -05:00
|
|
|
let s = expand(*self.ti.strings.find_equiv(&("setab")).unwrap(),
|
2013-06-13 20:16:25 -05:00
|
|
|
[Number(color as int)], &mut Variables::new());
|
2013-05-30 18:14:40 -05:00
|
|
|
if s.is_ok() {
|
2013-06-25 18:38:32 -05:00
|
|
|
self.out.write(s.unwrap());
|
2013-05-30 18:14:40 -05:00
|
|
|
} else {
|
2013-06-27 15:37:55 -05:00
|
|
|
warn!("%s", s.unwrap_err());
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
2013-05-30 12:21:41 -05:00
|
|
|
}
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
2013-06-03 18:56:35 -05:00
|
|
|
pub fn reset(&self) {
|
2013-06-25 18:38:32 -05:00
|
|
|
let mut vars = Variables::new();
|
2013-06-27 15:37:55 -05:00
|
|
|
let s = do self.ti.strings.find_equiv(&("op"))
|
2013-06-24 12:30:35 -05:00
|
|
|
.map_consume_default(Err(~"can't find terminfo capability `op`")) |op| {
|
|
|
|
expand(copy *op, [], &mut vars)
|
2013-06-27 15:37:55 -05:00
|
|
|
};
|
2013-06-25 18:38:32 -05:00
|
|
|
if s.is_ok() {
|
|
|
|
self.out.write(s.unwrap());
|
2013-06-28 22:29:04 -05:00
|
|
|
} else if self.num_colors > 0 {
|
2013-06-27 15:37:55 -05:00
|
|
|
warn!("%s", s.unwrap_err());
|
2013-06-28 22:29:04 -05:00
|
|
|
} else {
|
|
|
|
debug!("%s", s.unwrap_err());
|
2013-05-30 12:21:41 -05:00
|
|
|
}
|
2013-05-30 01:13:35 -05:00
|
|
|
}
|
2013-06-25 18:38:32 -05:00
|
|
|
|
|
|
|
priv fn dim_if_necessary(&self, color: color::Color) -> color::Color {
|
|
|
|
if color >= self.num_colors && color >= 8 && color < 16 {
|
|
|
|
color-8
|
|
|
|
} else { color }
|
|
|
|
}
|
2011-07-11 13:50:02 -05:00
|
|
|
}
|
2013-05-30 18:14:40 -05:00
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
2013-06-03 18:56:35 -05:00
|
|
|
impl Terminal {
|
2013-05-30 18:14:40 -05:00
|
|
|
pub fn new(out: @io::Writer) -> Result<Terminal, ~str> {
|
2013-06-25 18:38:32 -05:00
|
|
|
return Ok(Terminal {out: out, num_colors: 0});
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
pub fn fg(&self, _color: color::Color) {
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
|
|
|
|
2013-06-25 18:38:32 -05:00
|
|
|
pub fn bg(&self, _color: color::Color) {
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
|
|
|
|
2013-06-03 18:56:35 -05:00
|
|
|
pub fn reset(&self) {
|
2013-05-30 18:14:40 -05:00
|
|
|
}
|
|
|
|
}
|