use crate::{Parse, RuleResult};
use std::fmt::{self, Debug, Display};
#[cfg(feature = "std")]
use std::collections::BTreeSet;
#[cfg(not(feature = "std"))]
use {alloc::collections::BTreeSet, alloc::vec::Vec};
#[derive(PartialEq, Eq, Debug, Clone)]
pub struct ExpectedSet {
expected: BTreeSet<&'static str>,
}
impl ExpectedSet {
pub fn tokens<'a>(&'a self) -> impl Iterator<Item = &'static str> + 'a {
self.expected.iter().map(|x| *x)
}
}
impl Display for ExpectedSet {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
if self.expected.is_empty() {
write!(fmt, "<unreported>")?;
} else if self.expected.len() == 1 {
write!(fmt, "{}", self.expected.iter().next().unwrap())?;
} else {
let mut errors = self.tokens().collect::<Vec<_>>();
errors.sort();
let mut iter = errors.into_iter();
write!(fmt, "one of {}", iter.next().unwrap())?;
for elem in iter {
write!(fmt, ", {}", elem)?;
}
}
Ok(())
}
}
#[derive(PartialEq, Eq, Debug, Clone)]
pub struct ParseError<L> {
pub location: L,
pub expected: ExpectedSet,
}
impl<L: Display> Display for ParseError<L> {
fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::result::Result<(), ::std::fmt::Error> {
write!(
fmt,
"error at {}: expected {}",
self.location, self.expected
)
}
}
#[cfg(any(feature = "std", feature = "unstable"))]
impl<L: Display + Debug> ::std::error::Error for ParseError<L> {
fn description(&self) -> &str {
"parse error"
}
}
#[doc(hidden)]
pub struct ErrorState {
pub max_err_pos: usize,
pub suppress_fail: usize,
pub reparsing_on_error: bool,
pub expected: ExpectedSet,
}
impl ErrorState {
pub fn new(initial_pos: usize) -> Self {
ErrorState {
max_err_pos: initial_pos,
suppress_fail: 0,
reparsing_on_error: false,
expected: ExpectedSet {
expected: BTreeSet::new(),
},
}
}
pub fn reparse_for_error(&mut self) {
self.suppress_fail = 0;
self.reparsing_on_error = true;
}
#[inline(never)]
pub fn mark_failure_slow_path(&mut self, pos: usize, expected: &'static str) {
if pos == self.max_err_pos {
self.expected.expected.insert(expected);
}
}
#[inline(always)]
pub fn mark_failure(&mut self, pos: usize, expected: &'static str) -> RuleResult<()> {
if self.suppress_fail == 0 {
if self.reparsing_on_error {
self.mark_failure_slow_path(pos, expected);
} else if pos > self.max_err_pos {
self.max_err_pos = pos;
}
}
RuleResult::Failed
}
pub fn into_parse_error<I: Parse + ?Sized>(self, input: &I) -> ParseError<I::PositionRepr> {
ParseError {
location: Parse::position_repr(input, self.max_err_pos.into()),
expected: self.expected,
}
}
}