mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-10 21:27:01 +01:00
74 lines
2.0 KiB
Rust
74 lines
2.0 KiB
Rust
use std::io::Write;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[non_exhaustive]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
Io(#[from] ::std::io::Error),
|
|
#[error(transparent)]
|
|
Fmt(#[from] ::std::fmt::Error),
|
|
#[error(transparent)]
|
|
SyntectError(#[from] ::syntect::Error),
|
|
#[error(transparent)]
|
|
SyntectLoadingError(#[from] ::syntect::LoadingError),
|
|
#[error(transparent)]
|
|
ParseIntError(#[from] ::std::num::ParseIntError),
|
|
#[error(transparent)]
|
|
GlobParsingError(#[from] ::globset::Error),
|
|
#[error(transparent)]
|
|
SerdeYamlError(#[from] ::serde_yaml::Error),
|
|
#[error("unable to detect syntax for {0}")]
|
|
UndetectedSyntax(String),
|
|
#[error("unknown syntax: '{0}'")]
|
|
UnknownSyntax(String),
|
|
#[error("Unknown style '{0}'")]
|
|
UnknownStyle(String),
|
|
#[error("Use of bat as a pager is disallowed in order to avoid infinite recursion problems")]
|
|
InvalidPagerValueBat,
|
|
#[error("{0}")]
|
|
Msg(String),
|
|
#[cfg(feature = "lessopen")]
|
|
#[error(transparent)]
|
|
VarError(#[from] ::std::env::VarError),
|
|
#[cfg(feature = "lessopen")]
|
|
#[error(transparent)]
|
|
CommandParseError(#[from] ::shell_words::ParseError),
|
|
}
|
|
|
|
impl From<&'static str> for Error {
|
|
fn from(s: &'static str) -> Self {
|
|
Error::Msg(s.to_owned())
|
|
}
|
|
}
|
|
|
|
impl From<String> for Error {
|
|
fn from(s: String) -> Self {
|
|
Error::Msg(s)
|
|
}
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
pub fn default_error_handler(error: &Error, output: &mut dyn Write) {
|
|
use nu_ansi_term::Color::Red;
|
|
|
|
match error {
|
|
Error::Io(ref io_error) if io_error.kind() == ::std::io::ErrorKind::BrokenPipe => {
|
|
::std::process::exit(0);
|
|
}
|
|
Error::SerdeYamlError(_) => {
|
|
writeln!(
|
|
output,
|
|
"{}: Error while parsing metadata.yaml file: {}",
|
|
Red.paint("[bat error]"),
|
|
error
|
|
)
|
|
.ok();
|
|
}
|
|
_ => {
|
|
writeln!(output, "{}: {}", Red.paint("[bat error]"), error).ok();
|
|
}
|
|
};
|
|
}
|