use crate::parser;
use std::error;
use std::fmt;
use std::result::Result;
#[allow(missing_docs)]
#[rustversion::attr(since(1.40), non_exhaustive)]
#[derive(Debug, PartialEq)]
pub enum ValidateError {
ParseError(parser::ParseError),
Structural(String),
Mismatch(Mismatch),
MapCut(Mismatch),
MissingRule(String),
Unsupported(String),
ValueError(String),
GenericError,
}
impl ValidateError {
pub(crate) fn is_fatal(&self) -> bool {
match self {
ValidateError::Mismatch(_) => false,
ValidateError::MapCut(_) => false,
_ => true,
}
}
pub(crate) fn erase_mapcut(self) -> ValidateError {
match self {
ValidateError::MapCut(m) => ValidateError::Mismatch(m),
_ => self,
}
}
pub(crate) fn is_mismatch(&self) -> bool {
match self {
ValidateError::Mismatch(_) => true,
_ => false,
}
}
}
#[derive(Debug, PartialEq)]
pub struct Mismatch {
expected: String,
}
#[doc(hidden)]
pub fn mismatch<E: Into<String>>(expected: E) -> ValidateError {
ValidateError::Mismatch(Mismatch {
expected: expected.into(),
})
}
impl fmt::Display for ValidateError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use ValidateError::*;
match self {
ParseError(p) => p.fmt(f),
Structural(msg) => write!(f, "Structural({})", msg),
Mismatch(mismatch) => write!(f, "Mismatch(expected {})", mismatch.expected),
MapCut(mismatch) => write!(f, "Mismatch(expected {})", mismatch.expected),
MissingRule(rule) => write!(f, "MissingRule({})", rule),
Unsupported(msg) => write!(f, "Unsupported {}", msg),
ValueError(msg) => write!(f, "ValueError({})", msg),
GenericError => write!(f, "GenericError"),
}
}
}
impl error::Error for ValidateError {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
None
}
}
pub type ValidateResult = Result<(), ValidateError>;
#[doc(hidden)]
pub trait ErrorMatch {
fn err_mismatch(&self);
fn err_missing_rule(&self);
fn err_generic(&self);
fn err_parse(&self);
}
impl ErrorMatch for ValidateResult {
#[rustversion::attr(since(1.46), track_caller)]
fn err_mismatch(&self) {
match self {
Err(ValidateError::Mismatch(_)) => (),
_ => panic!("expected Mismatch, got {:?}", self),
}
}
#[rustversion::attr(since(1.46), track_caller)]
fn err_missing_rule(&self) {
match self {
Err(ValidateError::MissingRule(_)) => (),
_ => panic!("expected MissingRule, got {:?}", self),
}
}
#[rustversion::attr(since(1.46), track_caller)]
fn err_generic(&self) {
match self {
Err(ValidateError::GenericError) => (),
_ => panic!("expected GenericError, got {:?}", self),
}
}
#[rustversion::attr(since(1.46), track_caller)]
fn err_parse(&self) {
match self {
Err(ValidateError::ParseError(_)) => (),
_ => panic!("expected ParseError, got {:?}", self),
}
}
}