0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/colors.rs

134 lines
3.5 KiB
Rust
Raw Normal View History

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
2020-09-05 20:34:02 -04:00
// allow(dead_code) because denort does not use this.
#![allow(dead_code)]
2019-02-07 20:07:20 -05:00
use regex::Regex;
use std::env;
use std::fmt;
2020-02-24 19:30:17 -05:00
use std::io::Write;
2020-10-12 07:25:25 -04:00
use termcolor::Color::{Ansi256, Black, Blue, Cyan, Green, Red, White, Yellow};
2020-02-24 19:30:17 -05:00
use termcolor::{Ansi, ColorSpec, WriteColor};
#[cfg(windows)]
use termcolor::{BufferWriter, ColorChoice};
2019-02-07 20:07:20 -05:00
lazy_static! {
2020-02-24 19:30:17 -05:00
// STRIP_ANSI_RE and strip_ansi_codes are lifted from the "console" crate.
// Copyright 2017 Armin Ronacher <armin.ronacher@active-4.com>. MIT License.
static ref STRIP_ANSI_RE: Regex = Regex::new(
r"[\x1b\x9b][\[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]"
).unwrap();
static ref NO_COLOR: bool = {
env::var_os("NO_COLOR").is_some()
};
2019-02-07 20:07:20 -05:00
}
/// Helper function to strip ansi codes.
2020-10-12 07:25:25 -04:00
#[cfg(test)]
pub fn strip_ansi_codes(s: &str) -> std::borrow::Cow<str> {
2019-02-07 20:07:20 -05:00
STRIP_ANSI_RE.replace_all(s, "")
}
pub fn use_color() -> bool {
2019-02-08 11:14:33 -05:00
!(*NO_COLOR)
2019-02-07 20:07:20 -05:00
}
2020-02-24 19:30:17 -05:00
#[cfg(windows)]
pub fn enable_ansi() {
BufferWriter::stdout(ColorChoice::AlwaysAnsi);
}
fn style(s: &str, colorspec: ColorSpec) -> impl fmt::Display {
if !use_color() {
return String::from(s);
}
2020-02-24 19:30:17 -05:00
let mut v = Vec::new();
let mut ansi_writer = Ansi::new(&mut v);
ansi_writer.set_color(&colorspec).unwrap();
2020-02-24 19:30:17 -05:00
ansi_writer.write_all(s.as_bytes()).unwrap();
ansi_writer.reset().unwrap();
String::from_utf8_lossy(&v).into_owned()
}
pub fn red_bold(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
style_spec.set_fg(Some(Red)).set_bold(true);
style(&s, style_spec)
2019-02-07 20:07:20 -05:00
}
pub fn green_bold(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
2020-09-08 06:04:02 -04:00
style_spec.set_fg(Some(Green)).set_bold(true);
style(&s, style_spec)
}
pub fn italic_bold(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
style_spec.set_bold(true).set_italic(true);
style(&s, style_spec)
2019-02-07 20:07:20 -05:00
}
pub fn white_on_red(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
style_spec.set_bg(Some(Red)).set_fg(Some(White));
style(&s, style_spec)
}
pub fn black_on_green(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
style_spec.set_bg(Some(Green)).set_fg(Some(Black));
style(&s, style_spec)
}
pub fn yellow(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
2020-09-08 06:04:02 -04:00
style_spec.set_fg(Some(Yellow));
2020-02-24 19:30:17 -05:00
style(&s, style_spec)
2019-02-07 20:07:20 -05:00
}
pub fn cyan(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
2020-09-08 06:04:02 -04:00
style_spec.set_fg(Some(Cyan));
2020-02-24 19:30:17 -05:00
style(&s, style_spec)
2019-02-07 20:07:20 -05:00
}
pub fn red(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
style_spec.set_fg(Some(Red));
style(&s, style_spec)
}
pub fn green(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
2020-09-08 06:04:02 -04:00
style_spec.set_fg(Some(Green));
2020-02-24 19:30:17 -05:00
style(&s, style_spec)
}
pub fn bold(s: &str) -> impl fmt::Display {
2020-02-24 19:30:17 -05:00
let mut style_spec = ColorSpec::new();
style_spec.set_bold(true);
style(&s, style_spec)
2019-02-07 20:07:20 -05:00
}
pub fn gray(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
style_spec.set_fg(Some(Ansi256(8)));
style(&s, style_spec)
}
pub fn italic_bold_gray(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
style_spec
.set_fg(Some(Ansi256(8)))
.set_bold(true)
.set_italic(true);
style(&s, style_spec)
}
pub fn intense_blue(s: &str) -> impl fmt::Display {
let mut style_spec = ColorSpec::new();
style_spec.set_fg(Some(Blue)).set_intense(true);
style(&s, style_spec)
}