streamson-lib 6.3.0

Library for processing large JSONs
Documentation
//! Module containing errors

use std::{error::Error, fmt, io, str::Utf8Error};

/// Matcher related errors
#[derive(Debug, PartialEq, Clone)]
pub enum Matcher {
    Parse(String),
}

impl Error for Matcher {}

impl fmt::Display for Matcher {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::Parse(input) => write!(f, "Failed to parse matcher'{}", input),
        }
    }
}

/// Handler related errors
#[derive(Debug, PartialEq, Clone)]
pub struct Handler {
    reason: String,
}

impl Handler {
    pub fn new<T>(reason: T) -> Self
    where
        T: ToString,
    {
        Self {
            reason: reason.to_string(),
        }
    }
}

impl Error for Handler {}

impl fmt::Display for Handler {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Handler failed - {}", self.reason)
    }
}

/// Incorrect input error
#[derive(Debug, PartialEq, Clone)]
pub struct IncorrectInput {
    byte: u8,
    idx: usize,
}

impl IncorrectInput {
    pub fn new(byte: u8, idx: usize) -> Self {
        Self { byte, idx }
    }
}

impl Error for IncorrectInput {}

impl fmt::Display for IncorrectInput {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "Incorrect input (byte '{}' on idx {})",
            self.byte, self.idx
        )
    }
}

/// Path related error
#[derive(Debug, PartialEq, Clone)]
pub struct Path {
    path: String,
}

impl Path {
    pub fn new<T>(path: T) -> Self
    where
        T: ToString,
    {
        Self {
            path: path.to_string(),
        }
    }
}

impl Error for Path {}

impl fmt::Display for Path {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Wrong path '{}'", self.path)
    }
}

/// General error
#[derive(Debug)]
pub enum General {
    Path(Path),
    Handler(Handler),
    Matcher(Matcher),
    Utf8Error(Utf8Error),
    IncorrectInput(IncorrectInput),
    IOError(io::Error),
}

impl Error for General {}
impl fmt::Display for General {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::Path(err) => err.fmt(f),
            Self::Handler(err) => err.fmt(f),
            Self::Matcher(err) => err.fmt(f),
            Self::Utf8Error(err) => err.fmt(f),
            Self::IncorrectInput(err) => err.fmt(f),
            Self::IOError(err) => err.fmt(f),
        }
    }
}

impl From<Handler> for General {
    fn from(handler: Handler) -> Self {
        Self::Handler(handler)
    }
}

impl From<Matcher> for General {
    fn from(matcher: Matcher) -> Self {
        Self::Matcher(matcher)
    }
}

impl From<Utf8Error> for General {
    fn from(utf8: Utf8Error) -> Self {
        Self::Utf8Error(utf8)
    }
}

impl From<IncorrectInput> for General {
    fn from(incorrect_input: IncorrectInput) -> Self {
        Self::IncorrectInput(incorrect_input)
    }
}

impl From<io::Error> for General {
    fn from(io_error: io::Error) -> Self {
        Self::IOError(io_error)
    }
}