use pest::Span;
use serde::{de, ser};
use std::fmt::{self, Display};
use crate::de::Rule;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone, Debug, PartialEq)]
pub struct Location {
pub line: usize,
pub column: usize,
}
impl From<&Span<'_>> for Location {
fn from(s: &Span<'_>) -> Self {
let (line, column) = s.start_pos().line_col();
Self { line, column }
}
}
#[derive(Clone, Debug, PartialEq)]
pub enum Error {
Message {
msg: String,
location: Option<Location>,
},
}
impl From<pest::error::Error<Rule>> for Error {
fn from(err: pest::error::Error<Rule>) -> Self {
let (line, column) = match err.line_col {
pest::error::LineColLocation::Pos((l, c)) => (l, c),
pest::error::LineColLocation::Span((l, c), (_, _)) => (l, c),
};
Error::Message {
msg: err.to_string(),
location: Some(Location { line, column }),
}
}
}
impl ser::Error for Error {
fn custom<T: Display>(msg: T) -> Self {
Error::Message {
msg: msg.to_string(),
location: None,
}
}
}
impl de::Error for Error {
fn custom<T: Display>(msg: T) -> Self {
Error::Message {
msg: msg.to_string(),
location: None,
}
}
}
impl Display for Error {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::Message { ref msg, .. } => write!(formatter, "{}", msg),
}
}
}
impl std::error::Error for Error {}
pub fn set_location<T>(res: &mut Result<T>, span: &Span<'_>) {
if let Err(ref mut e) = res {
let Error::Message { location, .. } = e;
if location.is_none() {
let (line, column) = span.start_pos().line_col();
*location = Some(Location { line, column });
}
}
}