use std::io;
use std::result;
use std::fmt;
use std::borrow::Cow;
use std::error;
use num_traits::ToPrimitive;
#[derive(Debug)]
pub enum Error {
InvalidFormat(Cow<'static, str>),
UnexpectedEndOfFile(Option<Cow<'static, str>>),
Io(io::Error)
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::InvalidFormat(ref s) => write!(f, "invalid image format: {}", s),
Error::UnexpectedEndOfFile(None) => write!(f, "unexpected end of file"),
Error::UnexpectedEndOfFile(Some(ref s)) => write!(f, "unexpected end of file: {}", s),
Error::Io(ref e) => write!(f, "I/O error: {}", e)
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match *self {
Error::InvalidFormat(_) => "invalid image format",
Error::UnexpectedEndOfFile(_) => "unexpected end of file",
Error::Io(_) => "i/o error"
}
}
fn cause(&self) -> Option<&error::Error> {
match *self {
Error::Io(ref e) => Some(e),
_ => None
}
}
}
impl From<io::Error> for Error {
#[inline]
fn from(e: io::Error) -> Error {
Error::Io(e)
}
}
pub type Result<T> = result::Result<T, Error>;
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub struct Dimensions {
pub width: u32,
pub height: u32
}
impl<T: ToPrimitive, U: ToPrimitive> From<(T, U)> for Dimensions {
fn from((w, h): (T, U)) -> Dimensions {
Dimensions {
width: w.to_u32().unwrap(),
height: h.to_u32().unwrap()
}
}
}