mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 20:37:52 +00:00
64770d0a5a
Add a Fixed(u8) constructor to Colour, which represents the 256 colours that some terminals support. This means we can: - stop using black bold to mean grey, which looks weird on terminals that haven't been set up to use it; - support a *lot* more file type colours. I'm a little suspicious of how much string allocation is being done in colours.rs, but that's a problem for another time.
149 lines
5.5 KiB
Rust
149 lines
5.5 KiB
Rust
// Provide standard values for the eight standard colours and custom
|
|
// values for up to 256. There are terminals that can do the full RGB
|
|
// spectrum, but for something as simple as discerning file types this
|
|
// doesn't really seem worth it.
|
|
|
|
// Bear in mind that the first eight (and their bold variants) are
|
|
// user-definable and can look different on different terminals, but
|
|
// the other 256 have their values fixed. Prefer using a fixed grey,
|
|
// such as Fixed(244), to bold black, as bold black looks really weird
|
|
// on some terminals.
|
|
|
|
pub enum Colour {
|
|
Black, Red, Green, Yellow, Blue, Purple, Cyan, White, Fixed(u8),
|
|
}
|
|
|
|
// These are the standard numeric sequences.
|
|
// See http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
|
|
|
|
impl Colour {
|
|
fn foreground_code(&self) -> String {
|
|
match *self {
|
|
Black => "30".to_string(),
|
|
Red => "31".to_string(),
|
|
Green => "32".to_string(),
|
|
Yellow => "33".to_string(),
|
|
Blue => "34".to_string(),
|
|
Purple => "35".to_string(),
|
|
Cyan => "36".to_string(),
|
|
White => "37".to_string(),
|
|
Fixed(num) => format!("38;5;{}", num),
|
|
}
|
|
}
|
|
|
|
fn background_code(&self) -> String {
|
|
match *self {
|
|
Black => "40".to_string(),
|
|
Red => "41".to_string(),
|
|
Green => "42".to_string(),
|
|
Yellow => "44".to_string(),
|
|
Blue => "44".to_string(),
|
|
Purple => "45".to_string(),
|
|
Cyan => "46".to_string(),
|
|
White => "47".to_string(),
|
|
Fixed(num) => format!("48;5;{}", num),
|
|
}
|
|
}
|
|
}
|
|
|
|
// There are only three different styles: plain (no formatting), only
|
|
// a foreground colour, and a catch-all for anything more complicated
|
|
// than that. It's technically possible to write other cases such as
|
|
// "bold foreground", but probably isn't worth writing all the code.
|
|
|
|
pub enum Style {
|
|
Plain,
|
|
Foreground(Colour),
|
|
Style(StyleStruct),
|
|
}
|
|
|
|
// Having a struct inside an enum is currently unfinished in Rust, but
|
|
// should be put in there when that feature is complete.
|
|
|
|
pub struct StyleStruct {
|
|
foreground: Colour,
|
|
background: Option<Colour>,
|
|
bold: bool,
|
|
underline: bool,
|
|
}
|
|
|
|
impl Style {
|
|
pub fn paint(&self, input: &str) -> String {
|
|
match *self {
|
|
Plain => input.to_string(),
|
|
Foreground(c) => c.paint(input),
|
|
Style(s) => match s {
|
|
StyleStruct { foreground, background, bold, underline } => {
|
|
let bg = match background {
|
|
Some(c) => format!("{};", c.background_code()),
|
|
None => "".to_string()
|
|
};
|
|
let bo = if bold { "1;" } else { "" };
|
|
let un = if underline { "4;" } else { "" };
|
|
let painted = format!("\x1B[{}{}{}{}m{}\x1B[0m", bo, un, bg, foreground.foreground_code(), input.to_string());
|
|
return painted.to_string();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Style {
|
|
pub fn bold(&self) -> Style {
|
|
match *self {
|
|
Plain => Style(StyleStruct { foreground: White, background: None, bold: true, underline: false }),
|
|
Foreground(c) => Style(StyleStruct { foreground: c, background: None, bold: true, underline: false }),
|
|
Style(st) => Style(StyleStruct { foreground: st.foreground, background: st.background, bold: true, underline: false }),
|
|
}
|
|
}
|
|
|
|
pub fn underline(&self) -> Style {
|
|
match *self {
|
|
Plain => Style(StyleStruct { foreground: White, background: None, bold: false, underline: true }),
|
|
Foreground(c) => Style(StyleStruct { foreground: c, background: None, bold: false, underline: true }),
|
|
Style(st) => Style(StyleStruct { foreground: st.foreground, background: st.background, bold: false, underline: true }),
|
|
}
|
|
}
|
|
|
|
pub fn on(&self, background: Colour) -> Style {
|
|
match *self {
|
|
Plain => Style(StyleStruct { foreground: White, background: Some(background), bold: false, underline: false }),
|
|
Foreground(c) => Style(StyleStruct { foreground: c, background: Some(background), bold: false, underline: false }),
|
|
Style(st) => Style(StyleStruct { foreground: st.foreground, background: Some(background), bold: false, underline: false }),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Colour {
|
|
// This is a short-cut so you don't have to use Blue.normal() just
|
|
// to turn Blue into a Style. Annoyingly, this means that Blue and
|
|
// Blue.normal() aren't of the same type, but this hasn't been an
|
|
// issue so far.
|
|
|
|
pub fn paint(&self, input: &str) -> String {
|
|
let re = format!("\x1B[{}m{}\x1B[0m", self.foreground_code(), input);
|
|
return re.to_string();
|
|
}
|
|
|
|
pub fn underline(&self) -> Style {
|
|
Style(StyleStruct { foreground: *self, background: None, bold: false, underline: true })
|
|
}
|
|
|
|
pub fn bold(&self) -> Style {
|
|
Style(StyleStruct { foreground: *self, background: None, bold: true, underline: false })
|
|
}
|
|
|
|
pub fn normal(&self) -> Style {
|
|
Style(StyleStruct { foreground: *self, background: None, bold: false, underline: false })
|
|
}
|
|
|
|
pub fn on(&self, background: Colour) -> Style {
|
|
Style(StyleStruct { foreground: *self, background: Some(background), bold: false, underline: false })
|
|
}
|
|
}
|
|
|
|
pub fn strip_formatting(input: &String) -> String {
|
|
let re = regex!("\x1B\\[.+?m");
|
|
re.replace_all(input.as_slice(), "").to_string()
|
|
}
|