qoi/src/error.rs

90 lines
2.5 KiB
Rust
Raw Normal View History

2022-01-03 14:14:01 +00:00
use core::convert::Infallible;
use core::fmt::{self, Display};
2022-01-03 18:12:06 +00:00
use crate::consts::QOI_MAGIC;
2022-01-03 18:12:06 +00:00
/// Errors that can occur during encoding or decoding.
2022-01-01 21:03:47 +00:00
#[derive(Debug)]
pub enum Error {
2022-01-03 18:12:06 +00:00
InvalidMagic {
magic: u32,
},
2022-01-03 14:14:01 +00:00
InvalidChannels {
channels: u8,
},
2022-01-03 18:12:06 +00:00
InvalidColorSpace {
colorspace: u8,
2022-01-03 14:14:01 +00:00
},
2022-01-03 18:12:06 +00:00
InvalidImageDimensions {
2022-01-03 14:14:01 +00:00
width: u32,
height: u32,
},
InvalidImageLength {
size: usize,
width: u32,
height: u32,
},
OutputBufferTooSmall {
size: usize,
required: usize,
},
UnexpectedBufferEnd,
InvalidPadding,
2022-01-03 14:14:01 +00:00
#[cfg(feature = "std")]
IoError(std::io::Error),
}
2022-01-03 18:12:06 +00:00
/// Alias for `Result` with the error type `qoi_fast::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 {
2022-01-03 18:12:06 +00:00
Self::InvalidMagic { magic } => {
write!(f, "invalid magic: expected {:?}, got {:?}", QOI_MAGIC, magic.to_be_bytes())
}
Self::InvalidChannels { channels } => {
write!(f, "invalid number of channels: {}", channels)
}
2022-01-03 18:12:06 +00:00
Self::InvalidColorSpace { colorspace } => {
write!(f, "invalid color space: {} (expected 0 or 1)", colorspace)
}
2022-01-03 18:12:06 +00:00
Self::InvalidImageDimensions { width, height } => {
write!(f, "invalid image dimensions: {}x{}", width, height)
}
Self::InvalidImageLength { size, width, height } => {
2022-01-03 18:12:06 +00:00
write!(f, "invalid image length: {} bytes for {}x{}", size, width, height)
}
Self::OutputBufferTooSmall { size, required } => {
2022-01-03 18:12:06 +00:00
write!(f, "output buffer size too small: {} (required: {})", size, required)
}
Self::UnexpectedBufferEnd => {
write!(f, "unexpected input buffer end while decoding")
}
Self::InvalidPadding => {
2022-01-03 18:12:06 +00:00
write!(f, "invalid padding (stream end marker mismatch)")
}
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)
}
}