qoi/src/error.rs

103 lines
2.9 KiB
Rust
Raw Normal View History

2022-01-03 14:14:01 +00:00
use core::convert::Infallible;
use core::fmt::{self, Display};
use crate::consts::{QOI_MAGIC, QOI_PIXELS_MAX};
2022-01-01 21:03:47 +00:00
#[derive(Debug)]
pub enum Error {
2022-01-03 14:14:01 +00:00
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,
2022-01-03 14:14:01 +00:00
InvalidColorSpace {
colorspace: u8,
},
InvalidPadding,
2022-01-03 14:14:01 +00:00
#[cfg(feature = "std")]
IoError(std::io::Error),
}
2022-01-03 14:14:01 +00:00
pub type Result<T> = core::result::Result<T, Error>;
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)")
}
2022-01-03 14:14:01 +00:00
#[cfg(feature = "std")]
2022-01-01 21:03:47 +00:00
Self::IoError(ref err) => {
write!(f, "i/o error: {}", err)
}
}
}
}
2022-01-03 14:14:01 +00:00
#[cfg(feature = "std")]
impl std::error::Error for Error {}
2021-12-31 10:33:45 +00:00
impl From<Infallible> for Error {
fn from(_: Infallible) -> Self {
unreachable!()
}
}
2022-01-01 21:03:47 +00:00
2022-01-03 14:14:01 +00:00
#[cfg(feature = "std")]
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Self {
2022-01-01 21:03:47 +00:00
Self::IoError(err)
}
}