-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[target-spec-miette] move code into another file
Going to add the test library to an optional module.
- Loading branch information
1 parent
c4a1893
commit 3aa74ec
Showing
3 changed files
with
271 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
// Copyright (c) The cargo-guppy Contributors | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
|
||
use miette::{Diagnostic, LabeledSpan, SourceCode, SourceOffset, SourceSpan}; | ||
use std::{error::Error as StdError, fmt}; | ||
use target_spec::errors::{ | ||
CustomTripleCreateError, Error as TargetSpecError, ExpressionParseError, PlainStringParseError, | ||
TripleParseError, | ||
}; | ||
|
||
/// Extension trait that converts errors into a [`miette::Diagnostic`]. | ||
pub trait IntoMietteDiagnostic { | ||
/// The `Diagnostic` type that `self` will be converted to. | ||
type IntoDiagnostic; | ||
|
||
/// Converts the underlying error into [`Self::IntoDiagnostic`]. | ||
/// | ||
/// This can be used to pretty-print errors returned by target-spec. | ||
fn into_diagnostic(self) -> Self::IntoDiagnostic; | ||
} | ||
|
||
impl IntoMietteDiagnostic for TargetSpecError { | ||
type IntoDiagnostic = Box<dyn Diagnostic + Send + Sync + 'static>; | ||
|
||
fn into_diagnostic(self) -> Self::IntoDiagnostic { | ||
match self { | ||
Self::InvalidExpression(error) => Box::new(error.into_diagnostic()), | ||
Self::InvalidTargetSpecString(error) => Box::new(error.into_diagnostic()), | ||
Self::UnknownPlatformTriple(error) => Box::new(error.into_diagnostic()), | ||
#[allow(deprecated)] | ||
Self::CustomTripleCreate(error) => Box::new(error.into_diagnostic()), | ||
Self::CustomPlatformCreate(error) => Box::new(error.into_diagnostic()), | ||
other => Box::<dyn Diagnostic + Send + Sync + 'static>::from(other.to_string()), | ||
} | ||
} | ||
} | ||
|
||
/// A wrapper around [`ExpressionParseError`] that implements [`Diagnostic`]. | ||
#[derive(Clone, PartialEq, Eq)] | ||
pub struct ExpressionParseDiagnostic(ExpressionParseError); | ||
|
||
impl ExpressionParseDiagnostic { | ||
/// Creates a new `ExpressionParseDiagnostic`. | ||
pub fn new(error: ExpressionParseError) -> Self { | ||
Self(error) | ||
} | ||
} | ||
|
||
impl fmt::Debug for ExpressionParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Debug::fmt(&self.0, f) | ||
} | ||
} | ||
|
||
impl fmt::Display for ExpressionParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Display::fmt(&self.0, f) | ||
} | ||
} | ||
|
||
impl StdError for ExpressionParseDiagnostic { | ||
fn source(&self) -> Option<&(dyn StdError + 'static)> { | ||
self.0.source() | ||
} | ||
} | ||
|
||
impl Diagnostic for ExpressionParseDiagnostic { | ||
fn source_code(&self) -> Option<&dyn SourceCode> { | ||
Some(&self.0.input) | ||
} | ||
|
||
fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>> { | ||
let label = LabeledSpan::new_with_span(Some(self.0.kind.to_string()), self.0.span.clone()); | ||
Some(Box::new(std::iter::once(label))) | ||
} | ||
} | ||
|
||
impl IntoMietteDiagnostic for ExpressionParseError { | ||
type IntoDiagnostic = ExpressionParseDiagnostic; | ||
|
||
fn into_diagnostic(self) -> Self::IntoDiagnostic { | ||
ExpressionParseDiagnostic::new(self) | ||
} | ||
} | ||
|
||
/// A wrapper around [`TripleParseError`] that implements [`Diagnostic`]. | ||
#[derive(Clone, PartialEq, Eq)] | ||
pub struct TripleParseDiagnostic { | ||
error: TripleParseError, | ||
// Need to store this separately because &str can't be cast to &dyn SourceCode. | ||
triple_str: String, | ||
} | ||
|
||
impl TripleParseDiagnostic { | ||
/// Creates a new `ExpressionParseDiagnostic`. | ||
pub fn new(error: TripleParseError) -> Self { | ||
let triple_str = error.triple_str().to_owned(); | ||
Self { error, triple_str } | ||
} | ||
} | ||
|
||
impl fmt::Debug for TripleParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Debug::fmt(&self.error, f) | ||
} | ||
} | ||
|
||
impl fmt::Display for TripleParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Display::fmt(&self.error, f) | ||
} | ||
} | ||
|
||
impl StdError for TripleParseDiagnostic { | ||
fn source(&self) -> Option<&(dyn StdError + 'static)> { | ||
self.error.source() | ||
} | ||
} | ||
|
||
impl Diagnostic for TripleParseDiagnostic { | ||
fn source_code(&self) -> Option<&dyn SourceCode> { | ||
Some(&self.triple_str as &dyn SourceCode) | ||
} | ||
|
||
fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>> { | ||
let label = LabeledSpan::new_with_span( | ||
Some( | ||
self.error | ||
.source() | ||
.expect("TripleParseError always returns a source") | ||
.to_string(), | ||
), | ||
(0, self.triple_str.len()), | ||
); | ||
Some(Box::new(std::iter::once(label))) | ||
} | ||
} | ||
|
||
impl IntoMietteDiagnostic for TripleParseError { | ||
type IntoDiagnostic = TripleParseDiagnostic; | ||
|
||
fn into_diagnostic(self) -> Self::IntoDiagnostic { | ||
TripleParseDiagnostic::new(self) | ||
} | ||
} | ||
|
||
/// A wrapper around [`PlainStringParseError`] that implements [`Diagnostic`]. | ||
#[derive(Clone, PartialEq, Eq)] | ||
pub struct PlainStringParseDiagnostic { | ||
error: PlainStringParseError, | ||
// Need to store this separately because &str can't be cast to &dyn SourceCode. | ||
input: String, | ||
} | ||
|
||
impl PlainStringParseDiagnostic { | ||
/// Creates a new `ExpressionParseDiagnostic`. | ||
pub fn new(error: PlainStringParseError) -> Self { | ||
let input = error.input.clone(); | ||
Self { error, input } | ||
} | ||
} | ||
|
||
impl fmt::Debug for PlainStringParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Debug::fmt(&self.error, f) | ||
} | ||
} | ||
|
||
impl fmt::Display for PlainStringParseDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
// The full error message duplicates information produced by the diagnostic, so keep it | ||
// short. | ||
f.write_str("invalid triple identifier") | ||
} | ||
} | ||
|
||
impl StdError for PlainStringParseDiagnostic { | ||
fn source(&self) -> Option<&(dyn StdError + 'static)> { | ||
self.error.source() | ||
} | ||
} | ||
|
||
impl Diagnostic for PlainStringParseDiagnostic { | ||
fn source_code(&self) -> Option<&dyn SourceCode> { | ||
Some(&self.input as &dyn SourceCode) | ||
} | ||
|
||
fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>> { | ||
let label = LabeledSpan::new_with_span( | ||
Some("character must be alphanumeric, -, _ or .".to_owned()), | ||
self.error.span(), | ||
); | ||
Some(Box::new(std::iter::once(label))) | ||
} | ||
} | ||
|
||
impl IntoMietteDiagnostic for PlainStringParseError { | ||
type IntoDiagnostic = PlainStringParseDiagnostic; | ||
|
||
fn into_diagnostic(self) -> Self::IntoDiagnostic { | ||
PlainStringParseDiagnostic::new(self) | ||
} | ||
} | ||
|
||
impl IntoMietteDiagnostic for CustomTripleCreateError { | ||
type IntoDiagnostic = CustomTripleCreateDiagnostic; | ||
|
||
fn into_diagnostic(self) -> Self::IntoDiagnostic { | ||
CustomTripleCreateDiagnostic::new(self) | ||
} | ||
} | ||
|
||
/// A wrapper around [`CustomTripleCreateError`] that implements [`Diagnostic`]. | ||
pub struct CustomTripleCreateDiagnostic(CustomTripleCreateError); | ||
|
||
impl CustomTripleCreateDiagnostic { | ||
/// Creates a new `CustomTripleCreateDiagnostic`. | ||
pub fn new(error: CustomTripleCreateError) -> Self { | ||
Self(error) | ||
} | ||
} | ||
|
||
impl fmt::Debug for CustomTripleCreateDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Debug::fmt(&self.0, f) | ||
} | ||
} | ||
|
||
impl fmt::Display for CustomTripleCreateDiagnostic { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
fmt::Display::fmt(&self.0, f) | ||
} | ||
} | ||
|
||
impl StdError for CustomTripleCreateDiagnostic { | ||
fn source(&self) -> Option<&(dyn StdError + 'static)> { | ||
// Don't show the source in case we return labels below. | ||
if self.0.input().is_some() && self.0.line_and_column().is_some() { | ||
None | ||
} else { | ||
self.0.source() | ||
} | ||
} | ||
} | ||
|
||
impl Diagnostic for CustomTripleCreateDiagnostic { | ||
fn source_code(&self) -> Option<&dyn SourceCode> { | ||
self.0.input_string().map(|input| input as &dyn SourceCode) | ||
} | ||
|
||
fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>> { | ||
// ughhh, clippy warns about `?` here but I don't like it: | ||
// https://github.com/rust-lang/rust-clippy/issues/13804 | ||
let input = self.0.input()?; | ||
let (line, column) = self.0.line_and_column()?; | ||
|
||
let source_offset = SourceOffset::from_location(input, line, column); | ||
// serde_json doesn't return the span of the error, just a single | ||
// offset. | ||
let span = SourceSpan::new(source_offset, 0); | ||
|
||
let label = LabeledSpan::new_with_span(self.0.label(), span); | ||
Some(Box::new(std::iter::once(label))) | ||
} | ||
} |
Oops, something went wrong.