1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-03-25 03:59:00 +00:00
bat/src/errors.rs

59 lines
1.4 KiB
Rust
Raw Normal View History

2020-03-21 19:35:04 +01:00
use error_chain::error_chain;
error_chain! {
foreign_links {
2020-03-30 09:43:13 -07:00
Clap(clap::Error);
Io(std::io::Error);
SyntectError(syntect::LoadingError);
ParseIntError(std::num::ParseIntError);
GlobParsingError(globset::Error);
2020-03-21 19:35:04 +01:00
}
}
2020-03-21 19:51:59 +01:00
pub fn default_error_handler(error: &Error) {
2020-03-21 19:35:04 +01:00
match error {
Error(ErrorKind::Io(ref io_error), _)
2020-03-30 09:43:13 -07:00
if io_error.kind() == std::io::ErrorKind::BrokenPipe =>
2020-03-21 19:35:04 +01:00
{
2020-03-30 09:43:13 -07:00
std::process::exit(0);
2020-03-21 19:35:04 +01:00
}
_ => {
use ansi_term::Colour::Red;
eprintln!("{}: {}", Red.paint("[bat error]"), error);
}
};
}
2020-03-30 09:43:13 -07:00
// Mock out a type for clap::Error if we aren't pulling in a dependency on clap.
//
// This can be removed after migrating away from error_chain to some modern
// derive-based error library such as thiserror, in favor of:
//
// #[derive(Error)]
// pub enum Error {
// #[cfg(feature = "application")]
// Clap(clap::Error),
// ...
// }
//
#[cfg(not(feature = "application"))]
mod clap {
use std::fmt::{self, Debug, Display};
pub struct Error(());
impl Display for Error {
fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result {
unreachable!()
}
}
impl Debug for Error {
fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result {
unreachable!()
}
}
impl std::error::Error for Error {}
}