2022-11-26 23:57:50 +00:00
|
|
|
// Copyright 2020 The Jujutsu Authors
|
2020-12-12 08:00:42 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
use std::collections::HashMap;
|
2021-04-07 06:05:16 +00:00
|
|
|
use std::io;
|
2020-12-12 08:00:42 +00:00
|
|
|
use std::io::{Error, Read, Write};
|
2022-10-07 03:52:01 +00:00
|
|
|
use std::sync::Arc;
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
// Lets the caller label strings and translates the labels to colors
|
2021-06-02 22:50:08 +00:00
|
|
|
pub trait Formatter: Write {
|
2021-04-07 06:05:16 +00:00
|
|
|
fn write_bytes(&mut self, data: &[u8]) -> io::Result<()> {
|
|
|
|
self.write_all(data)
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2021-04-07 06:05:16 +00:00
|
|
|
fn write_str(&mut self, text: &str) -> io::Result<()> {
|
|
|
|
self.write_all(text.as_bytes())
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2021-04-07 06:05:16 +00:00
|
|
|
fn write_from_reader(&mut self, reader: &mut dyn Read) -> io::Result<()> {
|
2020-12-12 08:00:42 +00:00
|
|
|
let mut buffer = vec![];
|
|
|
|
reader.read_to_end(&mut buffer).unwrap();
|
2021-11-10 18:46:10 +00:00
|
|
|
self.write_all(&buffer)
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2022-10-06 11:16:41 +00:00
|
|
|
fn add_label(&mut self, label: &str) -> io::Result<()>;
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2021-04-07 06:05:16 +00:00
|
|
|
fn remove_label(&mut self) -> io::Result<()>;
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
formatter: add a `with_label()` helper
There's a risk of forgetting to call `remove_label()` and I've wanted
to reduce that risk for a long time. I considered creating RAII
adapters that implement `Drop`, but I didn't like that that would
ignore errors (such as `BrokenPipe`) that can happen while emitting an
escape sequence in `remove_label()`. I would ideally have liked
Python's context managers here, but Rust doesn't have that. Instead,
we get to use closures. That works pretty well, except that we can't
return other errors than `io::Error` inside the closures. Even with
that limitation, we can use the new `with_label()` method in all but a
few cases.
We can't define the `with_label()` method directly in the trait
because `&mut self` is not a trait object, so we can't pass it on to
the closure (which expects a trait object). The solution is to use
`impl dyn Formatter` (thanks to @kupiakos for figuring that
out!). That unfortunately means that we can *only* call the function
on trait objects, so if `f` is a concrete formatter type
(e.g. `PlainTextFormatter`), then `f.with_label()` won't
compile. Since we only ever access the formatters as trait objects,
that's not really a problem, however.
2022-10-12 18:53:37 +00:00
|
|
|
impl dyn Formatter + '_ {
|
|
|
|
pub fn with_label(
|
|
|
|
&mut self,
|
|
|
|
label: &str,
|
|
|
|
write_inner: impl FnOnce(&mut dyn Formatter) -> io::Result<()>,
|
|
|
|
) -> io::Result<()> {
|
|
|
|
self.add_label(label)?;
|
|
|
|
// Call `remove_label()` whether or not `write_inner()` fails, but don't let
|
|
|
|
// its error replace the one from `write_inner()`.
|
|
|
|
write_inner(self).and(self.remove_label())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 03:52:01 +00:00
|
|
|
/// Creates `Formatter` instances with preconfigured parameters.
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct FormatterFactory {
|
|
|
|
kind: FormatterFactoryKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
enum FormatterFactoryKind {
|
|
|
|
PlainText,
|
|
|
|
Color {
|
|
|
|
colors: Arc<HashMap<String, String>>,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FormatterFactory {
|
2023-01-04 12:58:24 +00:00
|
|
|
pub fn prepare(config: &config::Config, color: bool) -> Self {
|
2022-10-07 03:52:01 +00:00
|
|
|
let kind = if color {
|
2023-01-04 12:58:24 +00:00
|
|
|
let colors = Arc::new(config_colors(config));
|
2022-10-07 03:52:01 +00:00
|
|
|
FormatterFactoryKind::Color { colors }
|
|
|
|
} else {
|
|
|
|
FormatterFactoryKind::PlainText
|
|
|
|
};
|
|
|
|
FormatterFactory { kind }
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
pub fn new_formatter<'output, W: Write + 'output>(
|
2022-10-07 03:52:01 +00:00
|
|
|
&self,
|
2022-10-07 11:37:51 +00:00
|
|
|
output: W,
|
2022-10-07 03:52:01 +00:00
|
|
|
) -> Box<dyn Formatter + 'output> {
|
|
|
|
match &self.kind {
|
|
|
|
FormatterFactoryKind::PlainText => Box::new(PlainTextFormatter::new(output)),
|
|
|
|
FormatterFactoryKind::Color { colors } => {
|
|
|
|
Box::new(ColorFormatter::new(output, colors.clone()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
pub struct PlainTextFormatter<W> {
|
|
|
|
output: W,
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W> PlainTextFormatter<W> {
|
|
|
|
pub fn new(output: W) -> PlainTextFormatter<W> {
|
2020-12-12 08:00:42 +00:00
|
|
|
Self { output }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W: Write> Write for PlainTextFormatter<W> {
|
2020-12-12 08:00:42 +00:00
|
|
|
fn write(&mut self, data: &[u8]) -> Result<usize, Error> {
|
|
|
|
self.output.write(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn flush(&mut self) -> Result<(), Error> {
|
|
|
|
self.output.flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W: Write> Formatter for PlainTextFormatter<W> {
|
2022-10-06 11:16:41 +00:00
|
|
|
fn add_label(&mut self, _label: &str) -> io::Result<()> {
|
2021-04-07 06:05:16 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2021-04-07 06:05:16 +00:00
|
|
|
fn remove_label(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
pub struct ColorFormatter<W> {
|
|
|
|
output: W,
|
2022-10-07 03:52:01 +00:00
|
|
|
colors: Arc<HashMap<String, String>>,
|
2020-12-12 08:00:42 +00:00
|
|
|
labels: Vec<String>,
|
|
|
|
cached_colors: HashMap<Vec<String>, Vec<u8>>,
|
|
|
|
current_color: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2023-01-04 12:58:24 +00:00
|
|
|
fn config_colors(config: &config::Config) -> HashMap<String, String> {
|
2020-12-12 08:00:42 +00:00
|
|
|
let mut result = HashMap::new();
|
2023-01-04 12:58:24 +00:00
|
|
|
if let Ok(table) = config.get_table("colors") {
|
2020-12-12 08:00:42 +00:00
|
|
|
for (key, value) in table {
|
|
|
|
result.insert(key, value.to_string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W> ColorFormatter<W> {
|
|
|
|
pub fn new(output: W, colors: Arc<HashMap<String, String>>) -> ColorFormatter<W> {
|
2021-06-02 22:50:08 +00:00
|
|
|
ColorFormatter {
|
2020-12-12 08:00:42 +00:00
|
|
|
output,
|
2022-10-07 03:52:01 +00:00
|
|
|
colors,
|
2020-12-12 08:00:42 +00:00
|
|
|
labels: vec![],
|
|
|
|
cached_colors: HashMap::new(),
|
|
|
|
current_color: b"\x1b[0m".to_vec(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn current_color(&mut self) -> Vec<u8> {
|
|
|
|
if let Some(cached) = self.cached_colors.get(&self.labels) {
|
|
|
|
cached.clone()
|
|
|
|
} else {
|
|
|
|
let mut best_match = (-1, "");
|
2022-10-07 03:52:01 +00:00
|
|
|
for (key, value) in self.colors.as_ref() {
|
2020-12-12 08:00:42 +00:00
|
|
|
let mut num_matching = 0;
|
|
|
|
let mut valid = true;
|
|
|
|
for label in key.split_whitespace() {
|
|
|
|
if !self.labels.contains(&label.to_string()) {
|
|
|
|
valid = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
num_matching += 1;
|
|
|
|
}
|
|
|
|
if !valid {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if num_matching >= best_match.0 {
|
|
|
|
best_match = (num_matching, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-14 07:18:38 +00:00
|
|
|
let color = self.color_for_name(best_match.1);
|
2020-12-12 08:00:42 +00:00
|
|
|
self.cached_colors
|
|
|
|
.insert(self.labels.clone(), color.clone());
|
|
|
|
color
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn color_for_name(&self, color_name: &str) -> Vec<u8> {
|
|
|
|
match color_name {
|
|
|
|
"black" => b"\x1b[30m".to_vec(),
|
|
|
|
"red" => b"\x1b[31m".to_vec(),
|
|
|
|
"green" => b"\x1b[32m".to_vec(),
|
|
|
|
"yellow" => b"\x1b[33m".to_vec(),
|
|
|
|
"blue" => b"\x1b[34m".to_vec(),
|
|
|
|
"magenta" => b"\x1b[35m".to_vec(),
|
|
|
|
"cyan" => b"\x1b[36m".to_vec(),
|
|
|
|
"white" => b"\x1b[37m".to_vec(),
|
|
|
|
"bright black" => b"\x1b[1;30m".to_vec(),
|
|
|
|
"bright red" => b"\x1b[1;31m".to_vec(),
|
|
|
|
"bright green" => b"\x1b[1;32m".to_vec(),
|
|
|
|
"bright yellow" => b"\x1b[1;33m".to_vec(),
|
|
|
|
"bright blue" => b"\x1b[1;34m".to_vec(),
|
|
|
|
"bright magenta" => b"\x1b[1;35m".to_vec(),
|
|
|
|
"bright cyan" => b"\x1b[1;36m".to_vec(),
|
|
|
|
"bright white" => b"\x1b[1;37m".to_vec(),
|
|
|
|
_ => b"\x1b[0m".to_vec(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W: Write> Write for ColorFormatter<W> {
|
2020-12-12 08:00:42 +00:00
|
|
|
fn write(&mut self, data: &[u8]) -> Result<usize, Error> {
|
|
|
|
self.output.write(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn flush(&mut self) -> Result<(), Error> {
|
|
|
|
self.output.flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:37:51 +00:00
|
|
|
impl<W: Write> Formatter for ColorFormatter<W> {
|
2022-10-06 11:16:41 +00:00
|
|
|
fn add_label(&mut self, label: &str) -> io::Result<()> {
|
|
|
|
self.labels.push(label.to_owned());
|
2020-12-12 08:00:42 +00:00
|
|
|
let new_color = self.current_color();
|
|
|
|
if new_color != self.current_color {
|
2021-04-07 06:05:16 +00:00
|
|
|
self.output.write_all(&new_color)?;
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
self.current_color = new_color;
|
2021-04-07 06:05:16 +00:00
|
|
|
Ok(())
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2021-04-07 06:05:16 +00:00
|
|
|
fn remove_label(&mut self) -> io::Result<()> {
|
2020-12-12 08:00:42 +00:00
|
|
|
self.labels.pop();
|
|
|
|
let new_color = self.current_color();
|
|
|
|
if new_color != self.current_color {
|
2021-04-07 06:05:16 +00:00
|
|
|
self.output.write_all(&new_color)?;
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
self.current_color = new_color;
|
2021-04-07 06:05:16 +00:00
|
|
|
Ok(())
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
}
|