2014-01-30 19:15:10 -05:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 16:48:01 -08: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.
|
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
//! Terminal formatting library.
|
|
|
|
//!
|
|
|
|
//! This crate provides the `Terminal` trait, which abstracts over an [ANSI
|
2014-05-22 22:50:31 +10:00
|
|
|
//! Terminal][ansi] to provide color printing, among other things. There are two implementations,
|
2014-04-08 11:18:10 -04:00
|
|
|
//! the `TerminfoTerminal`, which uses control characters from a
|
|
|
|
//! [terminfo][ti] database, and `WinConsole`, which uses the [Win32 Console
|
|
|
|
//! API][win].
|
|
|
|
//!
|
2014-12-10 13:54:56 -05:00
|
|
|
//! # Examples
|
2014-04-08 11:18:10 -04:00
|
|
|
//!
|
2014-05-16 18:45:59 -07:00
|
|
|
//! ```no_run
|
2014-04-08 11:18:10 -04:00
|
|
|
//! extern crate term;
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
2014-05-11 20:10:03 -04:00
|
|
|
//! let mut t = term::stdout().unwrap();
|
2014-05-17 11:53:38 -07:00
|
|
|
//!
|
2014-05-11 20:10:03 -04:00
|
|
|
//! t.fg(term::color::GREEN).unwrap();
|
2014-05-17 11:53:38 -07:00
|
|
|
//! (write!(t, "hello, ")).unwrap();
|
|
|
|
//!
|
2014-05-11 20:10:03 -04:00
|
|
|
//! t.fg(term::color::RED).unwrap();
|
2014-05-17 11:53:38 -07:00
|
|
|
//! (writeln!(t, "world!")).unwrap();
|
|
|
|
//!
|
2014-05-11 20:10:03 -04:00
|
|
|
//! t.reset().unwrap();
|
2014-04-08 11:18:10 -04:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! [ansi]: https://en.wikipedia.org/wiki/ANSI_escape_code
|
|
|
|
//! [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx
|
|
|
|
//! [ti]: https://en.wikipedia.org/wiki/Terminfo
|
2011-07-11 11:50:02 -07:00
|
|
|
|
2014-07-01 07:12:04 -07:00
|
|
|
#![crate_name = "term"]
|
2014-12-28 10:18:08 -08:00
|
|
|
#![experimental = "use the crates.io `term` library instead"]
|
2014-03-21 18:05:05 -07:00
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#![crate_type = "dylib"]
|
|
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
|
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
2014-10-09 10:47:22 -07:00
|
|
|
html_root_url = "http://doc.rust-lang.org/nightly/",
|
2014-06-06 09:12:18 -07:00
|
|
|
html_playground_url = "http://play.rust-lang.org/")]
|
2013-05-28 22:11:41 -05:00
|
|
|
|
2014-09-26 17:48:16 +12:00
|
|
|
#![allow(unknown_features)]
|
2014-11-06 00:05:53 -08:00
|
|
|
#![feature(macro_rules, phase, slicing_syntax, globs)]
|
2014-03-27 15:13:45 -07:00
|
|
|
|
2014-10-27 15:37:07 -07:00
|
|
|
#![deny(missing_docs)]
|
2013-05-17 15:28:44 -07:00
|
|
|
|
2014-06-11 18:47:09 -07:00
|
|
|
#[phase(plugin, link)] extern crate log;
|
2014-02-19 19:29:58 -08:00
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
pub use terminfo::TerminfoTerminal;
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub use win::WinConsole;
|
|
|
|
|
|
|
|
use std::io::IoResult;
|
2013-05-30 02:13:35 -04:00
|
|
|
|
2014-01-30 19:15:10 -05:00
|
|
|
pub mod terminfo;
|
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
#[cfg(windows)]
|
|
|
|
mod win;
|
|
|
|
|
2014-06-25 18:18:13 -07:00
|
|
|
/// A hack to work around the fact that `Box<Writer + Send>` does not
|
|
|
|
/// currently implement `Writer`.
|
|
|
|
pub struct WriterWrapper {
|
|
|
|
wrapped: Box<Writer + Send>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Writer for WriterWrapper {
|
|
|
|
#[inline]
|
|
|
|
fn write(&mut self, buf: &[u8]) -> IoResult<()> {
|
|
|
|
self.wrapped.write(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn flush(&mut self) -> IoResult<()> {
|
|
|
|
self.wrapped.flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
/// Return a Terminal wrapping stdout, or None if a terminal couldn't be
|
|
|
|
/// opened.
|
2014-06-25 18:18:13 -07:00
|
|
|
pub fn stdout() -> Option<Box<Terminal<WriterWrapper> + Send>> {
|
2014-10-01 19:01:08 +13:00
|
|
|
TerminfoTerminal::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stdout() as Box<Writer + Send>,
|
|
|
|
})
|
2014-04-08 11:18:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
/// Return a Terminal wrapping stdout, or None if a terminal couldn't be
|
|
|
|
/// opened.
|
2014-06-25 18:18:13 -07:00
|
|
|
pub fn stdout() -> Option<Box<Terminal<WriterWrapper> + Send>> {
|
2014-10-21 10:59:00 +13:00
|
|
|
let ti = TerminfoTerminal::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stdout() as Box<Writer + Send>,
|
|
|
|
});
|
2014-04-08 11:18:10 -04:00
|
|
|
|
|
|
|
match ti {
|
2014-10-21 10:59:00 +13:00
|
|
|
Some(t) => Some(t),
|
2014-04-08 11:18:10 -04:00
|
|
|
None => {
|
2014-10-21 10:59:00 +13:00
|
|
|
WinConsole::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stdout() as Box<Writer + Send>,
|
|
|
|
})
|
2014-04-08 11:18:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
/// Return a Terminal wrapping stderr, or None if a terminal couldn't be
|
|
|
|
/// opened.
|
2014-11-20 19:45:42 -05:00
|
|
|
pub fn stderr() -> Option<Box<Terminal<WriterWrapper> + Send>> {
|
2014-10-01 19:01:08 +13:00
|
|
|
TerminfoTerminal::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stderr() as Box<Writer + Send>,
|
|
|
|
})
|
2014-04-08 11:18:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
/// Return a Terminal wrapping stderr, or None if a terminal couldn't be
|
|
|
|
/// opened.
|
2014-11-26 11:17:23 -08:00
|
|
|
pub fn stderr() -> Option<Box<Terminal<WriterWrapper> + Send>> {
|
2014-10-21 10:59:00 +13:00
|
|
|
let ti = TerminfoTerminal::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stderr() as Box<Writer + Send>,
|
|
|
|
});
|
2014-04-08 11:18:10 -04:00
|
|
|
|
|
|
|
match ti {
|
2014-10-21 10:59:00 +13:00
|
|
|
Some(t) => Some(t),
|
2014-04-08 11:18:10 -04:00
|
|
|
None => {
|
2014-10-21 10:59:00 +13:00
|
|
|
WinConsole::new(WriterWrapper {
|
|
|
|
wrapped: box std::io::stderr() as Box<Writer + Send>,
|
|
|
|
})
|
2014-04-08 11:18:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-11 11:50:02 -07:00
|
|
|
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Terminal color definitions
|
2013-06-25 16:38:32 -07:00
|
|
|
pub mod color {
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Number for a terminal color
|
2013-06-25 16:38:32 -07:00
|
|
|
pub type Color = u16;
|
|
|
|
|
2014-10-06 16:31:39 -07:00
|
|
|
pub const BLACK: Color = 0u16;
|
|
|
|
pub const RED: Color = 1u16;
|
|
|
|
pub const GREEN: Color = 2u16;
|
|
|
|
pub const YELLOW: Color = 3u16;
|
|
|
|
pub const BLUE: Color = 4u16;
|
|
|
|
pub const MAGENTA: Color = 5u16;
|
|
|
|
pub const CYAN: Color = 6u16;
|
|
|
|
pub const WHITE: Color = 7u16;
|
|
|
|
|
|
|
|
pub const BRIGHT_BLACK: Color = 8u16;
|
|
|
|
pub const BRIGHT_RED: Color = 9u16;
|
|
|
|
pub const BRIGHT_GREEN: Color = 10u16;
|
|
|
|
pub const BRIGHT_YELLOW: Color = 11u16;
|
|
|
|
pub const BRIGHT_BLUE: Color = 12u16;
|
|
|
|
pub const BRIGHT_MAGENTA: Color = 13u16;
|
|
|
|
pub const BRIGHT_CYAN: Color = 14u16;
|
|
|
|
pub const BRIGHT_WHITE: Color = 15u16;
|
2013-06-25 16:38:32 -07:00
|
|
|
}
|
2011-07-11 11:50:02 -07:00
|
|
|
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Terminal attributes
|
2013-07-10 14:46:20 -07:00
|
|
|
pub mod attr {
|
2014-11-06 00:05:53 -08:00
|
|
|
pub use self::Attr::*;
|
|
|
|
|
2013-07-10 14:46:20 -07:00
|
|
|
/// Terminal attributes for use with term.attr().
|
2014-03-16 23:15:55 +01:00
|
|
|
///
|
2013-07-10 14:46:20 -07:00
|
|
|
/// Most attributes can only be turned on and must be turned off with term.reset().
|
|
|
|
/// The ones that can be turned off explicitly take a boolean value.
|
|
|
|
/// Color is also represented as an attribute for convenience.
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Copy)]
|
2013-07-10 14:46:20 -07:00
|
|
|
pub enum Attr {
|
|
|
|
/// Bold (or possibly bright) mode
|
|
|
|
Bold,
|
|
|
|
/// Dim mode, also called faint or half-bright. Often not supported
|
|
|
|
Dim,
|
|
|
|
/// Italics mode. Often not supported
|
|
|
|
Italic(bool),
|
|
|
|
/// Underline mode
|
|
|
|
Underline(bool),
|
|
|
|
/// Blink mode
|
|
|
|
Blink,
|
|
|
|
/// Standout mode. Often implemented as Reverse, sometimes coupled with Bold
|
|
|
|
Standout(bool),
|
|
|
|
/// Reverse mode, inverts the foreground and background colors
|
|
|
|
Reverse,
|
|
|
|
/// Secure mode, also called invis mode. Hides the printed text
|
|
|
|
Secure,
|
|
|
|
/// Convenience attribute to set the foreground color
|
|
|
|
ForegroundColor(super::color::Color),
|
|
|
|
/// Convenience attribute to set the background color
|
|
|
|
BackgroundColor(super::color::Color)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
/// A terminal with similar capabilities to an ANSI Terminal
|
|
|
|
/// (foreground/background colors etc).
|
|
|
|
pub trait Terminal<T: Writer>: Writer {
|
2013-06-25 16:38:32 -07: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.
|
2013-07-10 18:26:04 -07:00
|
|
|
///
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Returns `Ok(true)` if the color was set, `Ok(false)` otherwise, and `Err(e)`
|
|
|
|
/// if there was an I/O error.
|
2014-04-08 11:18:10 -04:00
|
|
|
fn fg(&mut self, color: color::Color) -> IoResult<bool>;
|
|
|
|
|
2013-06-25 16:38:32 -07: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.
|
2013-07-10 18:26:04 -07:00
|
|
|
///
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Returns `Ok(true)` if the color was set, `Ok(false)` otherwise, and `Err(e)`
|
|
|
|
/// if there was an I/O error.
|
2014-04-08 11:18:10 -04:00
|
|
|
fn bg(&mut self, color: color::Color) -> IoResult<bool>;
|
2013-07-10 14:46:20 -07:00
|
|
|
|
2014-04-08 11:18:10 -04:00
|
|
|
/// Sets the given terminal attribute, if supported. Returns `Ok(true)`
|
|
|
|
/// if the attribute was supported, `Ok(false)` otherwise, and `Err(e)` if
|
|
|
|
/// there was an I/O error.
|
|
|
|
fn attr(&mut self, attr: attr::Attr) -> IoResult<bool>;
|
2013-07-10 14:46:20 -07:00
|
|
|
|
|
|
|
/// Returns whether the given terminal attribute is supported.
|
2014-04-08 11:18:10 -04:00
|
|
|
fn supports_attr(&self, attr: attr::Attr) -> bool;
|
2013-07-10 14:46:20 -07:00
|
|
|
|
|
|
|
/// Resets all terminal attributes and color to the default.
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Returns `Ok()`.
|
2014-04-08 11:18:10 -04:00
|
|
|
fn reset(&mut self) -> IoResult<()>;
|
2013-05-30 19:14:40 -04:00
|
|
|
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Gets an immutable reference to the stream inside
|
2014-04-08 11:18:10 -04:00
|
|
|
fn get_ref<'a>(&'a self) -> &'a T;
|
2013-11-24 06:53:08 -05:00
|
|
|
|
2014-03-16 23:15:55 +01:00
|
|
|
/// Gets a mutable reference to the stream inside
|
2014-04-08 11:18:10 -04:00
|
|
|
fn get_mut<'a>(&'a mut self) -> &'a mut T;
|
2013-11-24 06:53:08 -05:00
|
|
|
}
|
2014-10-01 19:01:08 +13:00
|
|
|
|
|
|
|
/// A terminal which can be unwrapped.
|
|
|
|
pub trait UnwrappableTerminal<T: Writer>: Terminal<T> {
|
|
|
|
/// Returns the contained stream, destroying the `Terminal`
|
|
|
|
fn unwrap(self) -> T;
|
|
|
|
}
|