monoio_client/client/
errors.rsuse std::fmt;
use super::hooks::HookError;
#[derive(Debug)]
pub enum ReuseError<E> {
Message(String),
StaticMessage(&'static str),
Backend(E),
}
impl<E> From<E> for ReuseError<E> {
fn from(e: E) -> Self {
Self::Backend(e)
}
}
impl<E: fmt::Display> fmt::Display for ReuseError<E> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Message(msg) => {
write!(f, "Error occurred while recycling an connection: {}", msg)
}
Self::StaticMessage(msg) => {
write!(f, "Error occurred while recycling an connection: {}", msg)
}
Self::Backend(e) => write!(f, "Error occurred while recycling an connection: {}", e),
}
}
}
impl<E: std::error::Error + 'static> std::error::Error for ReuseError<E> {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Message(_) => None,
Self::StaticMessage(_) => None,
Self::Backend(e) => Some(e),
}
}
}
#[derive(Clone, Copy, Debug)]
pub enum TimeoutType {
Wait,
Connect,
Reuse,
}
#[derive(Debug)]
pub enum ClientError<E> {
Timeout(TimeoutType),
Backend(E),
Closed,
PostCreateHook(HookError<E>),
}
impl<E> From<E> for ClientError<E> {
fn from(e: E) -> Self {
Self::Backend(e)
}
}
impl<E: fmt::Display> fmt::Display for ClientError<E> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Timeout(tt) => match tt {
TimeoutType::Wait => write!(
f,
"Timeout occurred while waiting for a slot to become available"
),
TimeoutType::Connect => {
write!(f, "Timeout occurred while creating a new connection")
}
TimeoutType::Reuse => write!(f, "Timeout occurred while recycling an connection"),
},
Self::Backend(e) => write!(f, "Error occurred while creating a new connection: {}", e),
Self::Closed => write!(f, "Client has been closed"),
Self::PostCreateHook(e) => writeln!(f, "`post_create` hook failed: {}", e),
}
}
}
impl<E: std::error::Error + 'static> std::error::Error for ClientError<E> {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Timeout(_) | Self::Closed => None,
Self::Backend(e) => Some(e),
Self::PostCreateHook(e) => Some(e),
}
}
}