use crate::edit::parser;
use crate::eval;
use serde::{de, ser};
use std::fmt::{self, Display};
use std::io;
use std::str::Utf8Error;
pub type Result<T, E = Error> = std::result::Result<T, E>;
#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
Message(String),
Utf8(Utf8Error),
Io(io::Error),
Eval(eval::Error),
Parse(parser::Error),
}
impl Error {
pub(crate) fn new<T>(msg: T) -> Error
where
T: Display,
{
Error::Message(msg.to_string())
}
}
impl Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::Io(err) => write!(f, "{err}"),
Error::Utf8(err) => write!(f, "{err}"),
Error::Message(msg) => write!(f, "{msg}"),
Error::Eval(err) => write!(f, "eval error: {err}"),
Error::Parse(err) => write!(f, "{err}"),
}
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::Io(err)
}
}
impl From<Utf8Error> for Error {
fn from(err: Utf8Error) -> Self {
Error::Utf8(err)
}
}
impl From<parser::Error> for Error {
fn from(err: parser::Error) -> Self {
Error::Parse(err)
}
}
impl From<eval::Error> for Error {
fn from(err: eval::Error) -> Self {
Error::Eval(err)
}
}
impl std::error::Error for Error {}
impl ser::Error for Error {
fn custom<T: Display>(msg: T) -> Self {
Error::new(msg)
}
}
impl de::Error for Error {
fn custom<T: Display>(msg: T) -> Self {
Error::new(msg)
}
}