use std::convert::Infallible; use std::error::Error as StdError; use std::fmt::{self, Display}; use std::io; use std::result::Result as StdResult; use crate::consts::{QOI_MAGIC, QOI_PIXELS_MAX}; #[derive(Debug)] pub enum Error { InvalidChannels { channels: u8 }, EmptyImage { width: u32, height: u32 }, ImageTooLarge { width: u32, height: u32 }, InvalidImageLength { size: usize, width: u32, height: u32 }, InputBufferTooSmall { size: usize, required: usize }, OutputBufferTooSmall { size: usize, required: usize }, InvalidMagic { magic: u32 }, UnexpectedBufferEnd, InvalidColorSpace { colorspace: u8 }, InvalidPadding, IoError(io::Error), } pub type Result = StdResult; impl Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { Self::InvalidChannels { channels } => { write!(f, "invalid number of channels: {}", channels) } Self::EmptyImage { width, height } => { write!(f, "image contains no pixels: {}x{}", width, height) } Self::ImageTooLarge { width, height } => { let mp = QOI_PIXELS_MAX / 1_000_000; write!(f, "image is too large: {}x{} (max={}Mp)", width, height, mp) } Self::InvalidImageLength { size, width, height } => { write!(f, "invalid image length: {} for {}x{}", size, width, height) } Self::InputBufferTooSmall { size, required } => { write!(f, "input buffer size too small: {} (minimum required: {})", size, required) } Self::OutputBufferTooSmall { size, required } => { write!(f, "output buffer size too small: {} (minimum required: {})", size, required) } Self::InvalidMagic { magic } => { write!(f, "invalid magic: expected {:?}, got {:?}", QOI_MAGIC, magic) } Self::UnexpectedBufferEnd => { write!(f, "unexpected input buffer end while decoding") } Self::InvalidColorSpace { colorspace } => { write!(f, "invalid color space: {} (expected 0 or 1)", colorspace) } Self::InvalidPadding => { write!(f, "invalid padding (stream end marker)") } Self::IoError(ref err) => { write!(f, "i/o error: {}", err) } } } } impl StdError for Error {} impl From for Error { fn from(_: Infallible) -> Self { unreachable!() } } impl From for Error { fn from(err: io::Error) -> Self { Self::IoError(err) } }