use std::error;
use std::result;
use std::fmt;
use std::string::FromUtf8Error;
use std::io;
#[derive(Debug, PartialEq)]
enum ErrorType {
Default,
Process,
Utf8,
Protocol,
InvalidWord,
}
pub type Result<T> = result::Result<T, Error>;
#[derive(Debug, PartialEq)]
pub struct Error {
msg: String,
variant: ErrorType
}
impl Error {
pub fn new<S: Into<String>>(msg: S) -> Error {
Error {
msg: msg.into(),
variant: ErrorType::Default,
}
}
pub fn process<S: Into<String>>(msg: S) -> Error {
Error {
msg: msg.into(),
variant: ErrorType::Process
}
}
pub fn utf8<S: Into<String>>(msg: S) -> Error {
Error {
msg: msg.into(),
variant: ErrorType::Utf8,
}
}
pub fn protocol<S: Into<String>>(msg: S) -> Error {
Error {
msg: msg.into(),
variant: ErrorType::Protocol,
}
}
pub fn invalid_word<S: Into<String>>(msg: S) -> Error {
Error {
msg: msg.into(),
variant: ErrorType::InvalidWord,
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
&self.msg
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.msg)
}
}
impl From<FromUtf8Error> for Error {
fn from(err: FromUtf8Error) -> Error {
Error::utf8(format!("error decoding ispell output to utf8: {}", err))
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error::process(format!("error while reading/writing to ispell: {}", err))
}
}