delharc 0.7.0

A library for parsing and extracting files from LHA/LZH archives.
Documentation
use core::fmt;
#[cfg(feature = "std")]
use std::io;
use crate::stub_io::Read;

pub type LhaResult<T, R> = Result<T, LhaError<<R as Read>::Error>>;

/// `delharc` error type.
///
/// With `std` feature enabled `E` is [`std::io::Error`] and
/// `LhaError` can be converted to [`std::io::Error`] using [`From`] or [`Into`].
#[derive(Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum LhaError<E> {
    /// I/O error.
    Io(E),
    /// When parsing LHA header.
    HeaderParse(&'static str),
    /// When decompressing a file.
    Decompress(&'static str),
    /// Checksum mismatch.
    Checksum(&'static str),
}

impl<E: fmt::Display> fmt::Display for LhaError<E> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        use LhaError::*;
        match self {
            Io(e) => e.fmt(f),
            HeaderParse(e) => write!(f, "while parsing LHA header: {}", e),
            Decompress(e) => write!(f, "while decompressing: {}", e),
            Checksum(e) => write!(f, "checksum: {}", e),
        }
    }
}

#[cfg(feature = "std")]
impl<E: std::error::Error + 'static> std::error::Error for LhaError<E> {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        use LhaError::*;
        match self {
            Io(e) => Some(e),
            _ => None
        }
    }
}

#[cfg(feature = "std")]
impl From<LhaError<io::Error>> for io::Error {
    fn from(err: LhaError<io::Error>) -> Self {
        use LhaError::*;
        use io::{Error, ErrorKind};
        match err {
            Io(e) => e,
            HeaderParse(e) => Error::new(ErrorKind::InvalidData, e),
            Decompress(e) => Error::new(ErrorKind::InvalidData, e),
            Checksum(e) => Error::new(ErrorKind::InvalidData, e),
        }
    }
}