mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 11:34:21 +01:00
109 lines
2.9 KiB
Rust
109 lines
2.9 KiB
Rust
use pest::Span;
|
|
use serde::{de, ser};
|
|
use std::fmt::{self, Display};
|
|
|
|
use crate::json::de::Rule;
|
|
|
|
/// Alias for a `Result` with error type `json5::Error`
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
/// One-based line and column at which the error was detected.
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
pub struct Location {
|
|
/// The one-based line number of the error.
|
|
pub line: usize,
|
|
/// The one-based column number of the error.
|
|
pub column: usize,
|
|
}
|
|
|
|
impl From<&Span<'_>> for Location {
|
|
fn from(s: &Span<'_>) -> Self {
|
|
let (line, column) = s.start_pos().line_col();
|
|
Self { line, column }
|
|
}
|
|
}
|
|
|
|
/// A bare bones error type which currently just collapses all the underlying errors in to a single
|
|
/// string... This is fine for displaying to the user, but not very useful otherwise. Work to be
|
|
/// done here.
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
pub enum Error {
|
|
/// Just shove everything in a single variant for now.
|
|
Message {
|
|
/// The error message.
|
|
msg: String,
|
|
/// The location of the error, if applicable.
|
|
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),
|
|
};
|
|
Self::Message {
|
|
msg: err.to_string(),
|
|
location: Some(Location { line, column }),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<std::io::Error> for Error {
|
|
fn from(err: std::io::Error) -> Self {
|
|
Self::Message {
|
|
msg: err.to_string(),
|
|
location: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<std::str::Utf8Error> for Error {
|
|
fn from(err: std::str::Utf8Error) -> Self {
|
|
Self::Message {
|
|
msg: err.to_string(),
|
|
location: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ser::Error for Error {
|
|
fn custom<T: Display>(msg: T) -> Self {
|
|
Self::Message {
|
|
msg: msg.to_string(),
|
|
location: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl de::Error for Error {
|
|
fn custom<T: Display>(msg: T) -> Self {
|
|
Self::Message {
|
|
msg: msg.to_string(),
|
|
location: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Display for Error {
|
|
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
Self::Message { ref msg, .. } => write!(formatter, "{}", msg),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for Error {}
|
|
|
|
/// Adds location information from `span`, if `res` is an 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 });
|
|
}
|
|
}
|
|
}
|