jj/src/ui.rs

348 lines
11 KiB
Rust
Raw Normal View History

// Copyright 2020 The Jujutsu Authors
//
// 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::io::{Stderr, Stdout, Write};
use std::process::{Child, ChildStdin, Stdio};
use std::str::FromStr;
use std::{fmt, io, mem};
use crossterm::tty::IsTty;
use crate::config::CommandNameAndArgs;
use crate::formatter::{Formatter, FormatterFactory, LabeledWriter};
2022-10-19 00:44:10 +00:00
pub struct Ui {
color: bool,
pager_cmd: CommandNameAndArgs,
2022-11-01 00:31:30 +00:00
paginate: PaginationChoice,
progress_indicator: bool,
formatter_factory: FormatterFactory,
output: UiOutput,
}
fn progress_indicator_setting(config: &config::Config) -> bool {
config.get_bool("ui.progress-indicator").unwrap_or(true)
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ColorChoice {
Always,
Never,
Auto,
}
impl Default for ColorChoice {
fn default() -> Self {
ColorChoice::Auto
}
}
impl FromStr for ColorChoice {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"always" => Ok(ColorChoice::Always),
"never" => Ok(ColorChoice::Never),
"auto" => Ok(ColorChoice::Auto),
_ => Err("must be one of always, never, or auto"),
}
}
}
impl fmt::Display for ColorChoice {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match self {
ColorChoice::Always => "always",
ColorChoice::Never => "never",
ColorChoice::Auto => "auto",
};
write!(f, "{s}")
}
}
fn color_setting(config: &config::Config) -> ColorChoice {
config
.get_string("ui.color")
.ok()
.and_then(|s| s.parse().ok())
.unwrap_or_default()
}
fn use_color(choice: ColorChoice) -> bool {
match choice {
ColorChoice::Always => true,
ColorChoice::Never => false,
ColorChoice::Auto => io::stdout().is_tty(),
}
}
2022-11-01 00:31:30 +00:00
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum PaginationChoice {
No,
Auto,
}
impl Default for PaginationChoice {
fn default() -> Self {
PaginationChoice::Auto
}
}
fn pager_setting(config: &config::Config) -> CommandNameAndArgs {
config
.get("ui.pager")
.unwrap_or_else(|_| "less -FRX".into())
}
2022-10-19 00:44:10 +00:00
impl Ui {
pub fn with_config(config: &config::Config) -> Result<Ui, config::ConfigError> {
let color = use_color(color_setting(config));
// Sanitize ANSI escape codes if we're printing to a terminal. Doesn't affect
// ANSI escape codes that originate from the formatter itself.
let sanitize = io::stdout().is_tty();
let formatter_factory = FormatterFactory::prepare(config, color, sanitize)?;
let progress_indicator = progress_indicator_setting(config);
Ok(Ui {
color,
formatter_factory,
pager_cmd: pager_setting(config),
2022-11-01 00:31:30 +00:00
paginate: PaginationChoice::Auto,
progress_indicator,
output: UiOutput::new_terminal(),
})
}
pub fn reset(&mut self, config: &config::Config) -> Result<(), config::ConfigError> {
self.color = use_color(color_setting(config));
self.pager_cmd = pager_setting(config);
self.progress_indicator = progress_indicator_setting(config);
let sanitize = io::stdout().is_tty();
self.formatter_factory = FormatterFactory::prepare(config, self.color, sanitize)?;
Ok(())
}
2022-11-01 00:31:30 +00:00
/// Sets the pagination value.
pub fn set_pagination(&mut self, choice: PaginationChoice) {
self.paginate = choice;
}
/// Switches the output to use the pager, if allowed.
pub fn request_pager(&mut self) {
2022-11-01 00:31:30 +00:00
if self.paginate == PaginationChoice::No {
return;
}
match self.output {
UiOutput::Terminal { .. } if io::stdout().is_tty() => {
match UiOutput::new_paged(&self.pager_cmd) {
Ok(new_output) => {
self.output = new_output;
}
Err(e) => {
writeln!(
self.warning(),
"Failed to spawn pager '{cmd}': {e}",
cmd = self.pager_cmd,
)
.ok();
}
}
}
UiOutput::Terminal { .. } | UiOutput::Paged { .. } => {}
}
}
pub fn color(&self) -> bool {
self.color
}
pub fn new_formatter<'output, W: Write + 'output>(
&self,
output: W,
) -> Box<dyn Formatter + 'output> {
self.formatter_factory.new_formatter(output)
}
/// Creates a formatter for the locked stdout stream.
///
/// Labels added to the returned formatter should be removed by caller.
/// Otherwise the last color would persist.
pub fn stdout_formatter<'a>(&'a self) -> Box<dyn Formatter + 'a> {
match &self.output {
UiOutput::Terminal { stdout, .. } => self.new_formatter(stdout.lock()),
UiOutput::Paged { child_stdin, .. } => self.new_formatter(child_stdin),
}
2022-04-07 06:25:01 +00:00
}
/// Creates a formatter for the locked stderr stream.
pub fn stderr_formatter<'a>(&'a self) -> Box<dyn Formatter + 'a> {
match &self.output {
UiOutput::Terminal { stderr, .. } => self.new_formatter(stderr.lock()),
UiOutput::Paged { child_stdin, .. } => self.new_formatter(child_stdin),
}
}
/// Whether continuous feedback should be displayed for long-running
/// operations
pub fn use_progress_indicator(&self) -> bool {
self.progress_indicator && io::stdout().is_tty()
}
pub fn write(&mut self, text: &str) -> io::Result<()> {
let data = text.as_bytes();
match &mut self.output {
UiOutput::Terminal { stdout, .. } => stdout.write_all(data),
UiOutput::Paged { child_stdin, .. } => child_stdin.write_all(data),
}
}
pub fn write_stderr(&mut self, text: &str) -> io::Result<()> {
let data = text.as_bytes();
match &mut self.output {
UiOutput::Terminal { stderr, .. } => stderr.write_all(data),
UiOutput::Paged { child_stdin, .. } => child_stdin.write_all(data),
}
}
pub fn write_fmt(&mut self, fmt: fmt::Arguments<'_>) -> io::Result<()> {
match &mut self.output {
UiOutput::Terminal { stdout, .. } => stdout.write_fmt(fmt),
UiOutput::Paged { child_stdin, .. } => child_stdin.write_fmt(fmt),
}
}
pub fn hint(&self) -> LabeledWriter<Box<dyn Formatter + '_>, &'static str> {
LabeledWriter::new(self.stderr_formatter(), "hint")
}
pub fn warning(&self) -> LabeledWriter<Box<dyn Formatter + '_>, &'static str> {
LabeledWriter::new(self.stderr_formatter(), "warning")
}
pub fn error(&self) -> LabeledWriter<Box<dyn Formatter + '_>, &'static str> {
LabeledWriter::new(self.stderr_formatter(), "error")
}
2022-10-23 20:20:02 +00:00
pub fn flush(&mut self) -> io::Result<()> {
match &mut self.output {
UiOutput::Terminal { stdout, .. } => stdout.flush(),
UiOutput::Paged { child_stdin, .. } => child_stdin.flush(),
}
}
/// Waits for the pager exits. Returns true if the pager exits successfully
/// or the output isn't paged.
pub fn finalize_pager(&mut self) -> bool {
if let UiOutput::Paged {
mut child,
child_stdin,
} = mem::replace(&mut self.output, UiOutput::new_terminal())
{
drop(child_stdin);
match child.wait() {
Ok(status) => status.success(),
Err(e) => {
// It's possible (though unlikely) that this write fails, but
// this function gets called so late that there's not much we
// can do about it.
writeln!(self.error(), "Failed to wait on pager: {e}").ok();
false
}
}
} else {
true
2022-10-23 20:20:02 +00:00
}
}
2022-10-23 20:50:03 +00:00
pub fn prompt(&mut self, prompt: &str) -> io::Result<String> {
if !io::stdout().is_tty() {
return Err(io::Error::new(
io::ErrorKind::Unsupported,
"Cannot prompt for input since the output is not connected to a terminal",
));
}
write!(self, "{prompt}: ")?;
self.flush()?;
let mut buf = String::new();
io::stdin().read_line(&mut buf)?;
Ok(buf)
}
pub fn prompt_password(&mut self, prompt: &str) -> io::Result<String> {
if !io::stdout().is_tty() {
return Err(io::Error::new(
io::ErrorKind::Unsupported,
"Cannot prompt for input since the output is not connected to a terminal",
));
}
rpassword::prompt_password(format!("{prompt}: "))
}
2022-10-23 20:50:03 +00:00
pub fn size(&self) -> Option<(u16, u16)> {
crossterm::terminal::size().ok()
}
/// Construct a guard object which writes `data` when dropped. Useful for
/// restoring terminal state.
pub fn output_guard(&self, text: String) -> OutputGuard {
OutputGuard {
text,
output: match self.output {
UiOutput::Terminal { .. } => io::stdout(),
// TODO we don't actually need to write in this case, so it
// might be better to no-op
UiOutput::Paged { .. } => io::stdout(),
},
}
}
}
enum UiOutput {
Terminal {
stdout: Stdout,
stderr: Stderr,
},
Paged {
child: Child,
child_stdin: ChildStdin,
},
}
impl UiOutput {
fn new_terminal() -> UiOutput {
UiOutput::Terminal {
stdout: io::stdout(),
stderr: io::stderr(),
}
}
fn new_paged(pager_cmd: &CommandNameAndArgs) -> io::Result<UiOutput> {
let mut child = pager_cmd.to_command().stdin(Stdio::piped()).spawn()?;
let child_stdin = child.stdin.take().unwrap();
Ok(UiOutput::Paged { child, child_stdin })
}
}
pub struct OutputGuard {
text: String,
output: Stdout,
}
impl Drop for OutputGuard {
fn drop(&mut self) {
_ = self.output.write_all(self.text.as_bytes());
}
}