// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Terminal formatting library. //! //! This crate provides the `Terminal` trait, which abstracts over an [ANSI //! Termina][ansi] to provide color printing, among other things. There are two implementations, //! the `TerminfoTerminal`, which uses control characters from a //! [terminfo][ti] database, and `WinConsole`, which uses the [Win32 Console //! API][win]. //! //! ## Example //! //! ```no_run //! extern crate term; //! //! fn main() { //! let mut t = term::stdout().unwrap(); //! t.fg(term::color::GREEN).unwrap(); //! println!("hello, "); //! t.fg(term::color::RED).unwrap(); //! println!("world!"); //! t.reset().unwrap(); //! } //! ``` //! //! [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 #![crate_id = "term#0.11.0-pre"] #![comment = "Simple ANSI color library"] #![license = "MIT/ASL2"] #![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", html_root_url = "http://static.rust-lang.org/doc/master")] #![feature(macro_rules, phase)] #![deny(missing_doc)] #[phase(syntax, link)] extern crate log; extern crate collections; pub use terminfo::TerminfoTerminal; #[cfg(windows)] pub use win::WinConsole; use std::io::IoResult; pub mod terminfo; #[cfg(windows)] mod win; #[cfg(not(windows))] /// Return a Terminal wrapping stdout, or None if a terminal couldn't be /// opened. pub fn stdout() -> Option>:Send>> { let ti: Option>> = Terminal::new(box std::io::stdout() as Box); ti.map(|t| box t as Box:Send>:Send>) } #[cfg(windows)] /// Return a Terminal wrapping stdout, or None if a terminal couldn't be /// opened. pub fn stdout() -> Option:Send>:Send>> { let ti: Option>> = Terminal::new(box std::io::stdout() as Box); match ti { Some(t) => Some(box t as Box:Send>:Send>), None => { let wc: Option>> = Terminal::new(box std::io::stdout() as Box); wc.map(|w| box w as Box:Send>:Send>) } } } #[cfg(not(windows))] /// Return a Terminal wrapping stderr, or None if a terminal couldn't be /// opened. pub fn stderr() -> Option:Send>:Send>:Send> { let ti: Option>> = Terminal::new(box std::io::stderr() as Box); ti.map(|t| box t as Box:Send>:Send>) } #[cfg(windows)] /// Return a Terminal wrapping stderr, or None if a terminal couldn't be /// opened. pub fn stderr() -> Option:Send>:Send>> { let ti: Option>> = Terminal::new(box std::io::stderr() as Box); match ti { Some(t) => Some(box t as Box:Send>:Send>), None => { let wc: Option>> = Terminal::new(box std::io::stderr() as Box); wc.map(|w| box w as Box:Send>:Send>) } } } /// Terminal color definitions pub mod color { /// Number for a terminal 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; } /// Terminal attributes pub mod attr { /// Terminal attributes for use with term.attr(). /// /// 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. 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) } } /// A terminal with similar capabilities to an ANSI Terminal /// (foreground/background colors etc). pub trait Terminal: Writer { /// Returns `None` whenever the terminal cannot be created for some /// reason. fn new(out: T) -> Option; /// 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. /// /// Returns `Ok(true)` if the color was set, `Ok(false)` otherwise, and `Err(e)` /// if there was an I/O error. fn fg(&mut self, color: color::Color) -> IoResult; /// 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. /// /// Returns `Ok(true)` if the color was set, `Ok(false)` otherwise, and `Err(e)` /// if there was an I/O error. fn bg(&mut self, color: color::Color) -> IoResult; /// 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; /// Returns whether the given terminal attribute is supported. fn supports_attr(&self, attr: attr::Attr) -> bool; /// Resets all terminal attributes and color to the default. /// Returns `Ok()`. fn reset(&mut self) -> IoResult<()>; /// Returns the contained stream, destroying the `Terminal` fn unwrap(self) -> T; /// Gets an immutable reference to the stream inside fn get_ref<'a>(&'a self) -> &'a T; /// Gets a mutable reference to the stream inside fn get_mut<'a>(&'a mut self) -> &'a mut T; }