2023-11-08 20:31:30 +01:00
|
|
|
use crate::{
|
|
|
|
engine::{EngineState, StateWorkingSet},
|
|
|
|
ErrorStyle,
|
|
|
|
};
|
2023-08-27 13:54:15 +02:00
|
|
|
use miette::{
|
|
|
|
LabeledSpan, MietteHandlerOpts, NarratableReportHandler, ReportHandler, RgbColors, Severity,
|
|
|
|
SourceCode,
|
|
|
|
};
|
2021-09-20 23:37:26 +02:00
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
/// This error exists so that we can defer SourceCode handling. It simply
|
|
|
|
/// forwards most methods, except for `.source_code()`, which we provide.
|
|
|
|
#[derive(Error)]
|
|
|
|
#[error("{0}")]
|
2021-12-04 06:02:57 +01:00
|
|
|
pub struct CliError<'src>(
|
|
|
|
pub &'src (dyn miette::Diagnostic + Send + Sync + 'static),
|
|
|
|
pub &'src StateWorkingSet<'src>,
|
2021-09-20 23:37:26 +02:00
|
|
|
);
|
|
|
|
|
2022-05-01 09:33:41 +02:00
|
|
|
pub fn format_error(
|
|
|
|
working_set: &StateWorkingSet,
|
|
|
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
|
|
) -> String {
|
2022-08-11 18:54:54 +02:00
|
|
|
format!("Error: {:?}", CliError(error, working_set))
|
2022-05-01 09:33:41 +02:00
|
|
|
}
|
|
|
|
|
2023-04-08 13:53:43 +02:00
|
|
|
pub fn report_error(
|
|
|
|
working_set: &StateWorkingSet,
|
|
|
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
|
|
) {
|
|
|
|
eprintln!("Error: {:?}", CliError(error, working_set));
|
|
|
|
// reset vt processing, aka ansi because illbehaved externals can break it
|
|
|
|
#[cfg(windows)]
|
|
|
|
{
|
|
|
|
let _ = nu_utils::enable_vt_processing();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn report_error_new(
|
|
|
|
engine_state: &EngineState,
|
|
|
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
|
|
) {
|
|
|
|
let working_set = StateWorkingSet::new(engine_state);
|
|
|
|
|
|
|
|
report_error(&working_set, error);
|
|
|
|
}
|
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
impl std::fmt::Debug for CliError<'_> {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2023-08-27 13:54:15 +02:00
|
|
|
let config = self.1.get_config();
|
|
|
|
|
|
|
|
let ansi_support = &config.use_ansi_coloring;
|
|
|
|
let ansi_support = *ansi_support;
|
|
|
|
|
2023-11-08 20:31:30 +01:00
|
|
|
let error_style = &config.error_style;
|
2023-08-27 13:54:15 +02:00
|
|
|
|
2023-11-08 20:31:30 +01:00
|
|
|
let miette_handler: Box<dyn ReportHandler> = match error_style {
|
|
|
|
ErrorStyle::Plain => Box::new(NarratableReportHandler::new()),
|
|
|
|
ErrorStyle::Fancy => Box::new(
|
2023-08-27 13:54:15 +02:00
|
|
|
MietteHandlerOpts::new()
|
|
|
|
// For better support of terminal themes use the ANSI coloring
|
|
|
|
.rgb_colors(RgbColors::Never)
|
|
|
|
// If ansi support is disabled in the config disable the eye-candy
|
|
|
|
.color(ansi_support)
|
|
|
|
.unicode(ansi_support)
|
|
|
|
.terminal_links(ansi_support)
|
|
|
|
.build(),
|
|
|
|
),
|
|
|
|
};
|
2022-06-26 14:03:38 +02:00
|
|
|
|
2022-07-10 12:45:46 +02:00
|
|
|
// Ignore error to prevent format! panics. This can happen if span points at some
|
|
|
|
// inaccessible location, for example by calling `report_error()` with wrong working set.
|
|
|
|
let _ = miette_handler.debug(self, f);
|
2022-06-26 14:03:38 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
Ok(())
|
2021-08-10 07:08:10 +02:00
|
|
|
}
|
2021-09-20 23:37:26 +02:00
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
impl<'src> miette::Diagnostic for CliError<'src> {
|
|
|
|
fn code<'a>(&'a self) -> Option<Box<dyn std::fmt::Display + 'a>> {
|
|
|
|
self.0.code()
|
2021-09-05 20:44:18 +02:00
|
|
|
}
|
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
fn severity(&self) -> Option<Severity> {
|
|
|
|
self.0.severity()
|
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
fn help<'a>(&'a self) -> Option<Box<dyn std::fmt::Display + 'a>> {
|
|
|
|
self.0.help()
|
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
fn url<'a>(&'a self) -> Option<Box<dyn std::fmt::Display + 'a>> {
|
|
|
|
self.0.url()
|
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
fn labels<'a>(&'a self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + 'a>> {
|
|
|
|
self.0.labels()
|
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
// Finally, we redirect the source_code method to our own source.
|
|
|
|
fn source_code(&self) -> Option<&dyn SourceCode> {
|
2022-02-21 04:31:50 +01:00
|
|
|
if let Some(source_code) = self.0.source_code() {
|
|
|
|
Some(source_code)
|
|
|
|
} else {
|
|
|
|
Some(&self.1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn related<'a>(&'a self) -> Option<Box<dyn Iterator<Item = &'a dyn miette::Diagnostic> + 'a>> {
|
|
|
|
self.0.related()
|
2021-09-20 23:37:26 +02:00
|
|
|
}
|
2021-08-10 07:08:10 +02:00
|
|
|
}
|