str0m-proto 0.4.0

Internal crate for str0m. Not intended for direct use.
Documentation
use std::error::Error;
use std::fmt;
use std::io;

use crate::crypto::dtls::DtlsImplError;

/// Errors that can arise in DTLS.
#[derive(Debug)]
pub enum CryptoError {
    /// Some error from OpenSSL layer (used for DTLS).
    #[cfg(feature = "openssl")]
    OpenSsl(openssl::error::ErrorStack),

    /// Error from DTLS implementation layer.
    DtlsImpl(DtlsImplError),

    /// Other IO errors.
    Io(io::Error),

    /// Other errors.
    Other(String),
}

impl fmt::Display for CryptoError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            #[cfg(feature = "openssl")]
            CryptoError::OpenSsl(err) => write!(f, "{}", err),
            CryptoError::Io(err) => write!(f, "{}", err),
            CryptoError::DtlsImpl(err) => write!(f, "{}", err),
            CryptoError::Other(err) => write!(f, "{}", err),
        }
    }
}

impl Error for CryptoError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            #[cfg(feature = "openssl")]
            CryptoError::OpenSsl(err) => Some(err),
            CryptoError::Io(err) => Some(err),
            CryptoError::DtlsImpl(err) => Some(err),
            CryptoError::Other(_) => None,
        }
    }
}

#[cfg(feature = "openssl")]
impl From<openssl::error::ErrorStack> for CryptoError {
    fn from(err: openssl::error::ErrorStack) -> Self {
        CryptoError::OpenSsl(err)
    }
}

impl From<io::Error> for CryptoError {
    fn from(err: io::Error) -> Self {
        CryptoError::Io(err)
    }
}

impl From<DtlsImplError> for CryptoError {
    fn from(err: DtlsImplError) -> Self {
        CryptoError::DtlsImpl(err)
    }
}

/// Errors that can arise in DTLS.
#[derive(Debug)]
pub enum DtlsError {
    /// Error arising in the crypto
    CryptoError(CryptoError),

    /// Other IO errors.
    Io(io::Error),
}

impl fmt::Display for DtlsError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            DtlsError::CryptoError(err) => write!(f, "{}", err),
            DtlsError::Io(err) => write!(f, "{}", err),
        }
    }
}

impl Error for DtlsError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            DtlsError::CryptoError(err) => Some(err),
            DtlsError::Io(err) => Some(err),
        }
    }
}

impl From<io::Error> for DtlsError {
    fn from(err: io::Error) -> Self {
        DtlsError::Io(err)
    }
}

impl From<CryptoError> for DtlsError {
    fn from(err: CryptoError) -> Self {
        DtlsError::CryptoError(err)
    }
}