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
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::io;
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2013-06-25 19:02:03 -05:00
|
|
|
#[cfg(not(target_os = "win32"))] use core::os;
|
|
|
|
#[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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
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-25 18:38:32 -05:00
|
|
|
warn!(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-25 18:38:32 -05:00
|
|
|
warn!(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();
|
|
|
|
let s = expand(*self.ti.strings.find_equiv(&("op")).unwrap(), [], &mut vars);
|
|
|
|
if s.is_ok() {
|
|
|
|
self.out.write(s.unwrap());
|
|
|
|
} else {
|
|
|
|
warn!(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
|
|
|
}
|
|
|
|
}
|