use std::fmt;
use tokio::io;
use blather::Params;
#[derive(Debug)]
pub enum Error {
Blather(String),
IO(String),
ServerError(Params),
BadState(String),
Disconnected,
BadInput(String),
BadParams(String),
InvalidCredentials(String),
MissingData(String),
Parse(String),
Figment(String)
}
impl Error {
pub fn invalid_cred(e: &str) -> Self {
Self::InvalidCredentials(e.to_string())
}
pub fn miss_data<S: ToString>(e: S) -> Self {
Self::MissingData(e.to_string())
}
pub fn bad_state<S: ToString>(e: S) -> Self {
Self::BadState(e.to_string())
}
pub fn parse<S: ToString>(e: S) -> Self {
Self::Parse(e.to_string())
}
}
impl std::error::Error for Error {}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Blather(s) => write!(f, "Msg buffer error; {}", s),
Error::IO(s) => write!(f, "I/O error; {}", s),
Error::ServerError(p) => write!(f, "Server replied: {}", p),
Error::BadState(s) => {
write!(f, "Encountred an unexpected/bad state: {}", s)
}
Error::Disconnected => write!(f, "Disconnected"),
Error::BadInput(s) => write!(f, "Bad input; {}", s),
Error::BadParams(s) => write!(f, "Bad parameters; {}", s),
Error::InvalidCredentials(s) => write!(f, "Invalid credentials; {}", s),
Error::MissingData(s) => write!(f, "Missing data; {}", s),
Error::Parse(s) => write!(f, "Parsing failed; {}", s),
Error::Figment(s) => write!(f, "Figment error; {}", s)
}
}
}
impl From<blather::Error> for Error {
fn from(err: blather::Error) -> Self {
Error::Blather(err.to_string())
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::IO(err.to_string())
}
}
impl From<figment::Error> for Error {
fn from(err: figment::Error) -> Self {
Error::Figment(err.to_string())
}
}