2020-12-02 12:30:47 +00:00
|
|
|
use std::io;
|
|
|
|
|
2022-07-21 15:34:53 +00:00
|
|
|
use err_derive::Error;
|
2020-12-02 12:30:47 +00:00
|
|
|
use log::error;
|
|
|
|
|
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum Error {
|
|
|
|
#[error(display = "IO error: {}", _0)]
|
|
|
|
Io(#[error(source)] io::Error),
|
|
|
|
|
|
|
|
#[error(display = "Messagepack encode error: {}", _0)]
|
|
|
|
RMPEncode(#[error(source)] rmp_serde::encode::Error),
|
|
|
|
#[error(display = "Messagepack decode error: {}", _0)]
|
|
|
|
RMPDecode(#[error(source)] rmp_serde::decode::Error),
|
|
|
|
|
|
|
|
#[error(display = "Tokio join error: {}", _0)]
|
|
|
|
TokioJoin(#[error(source)] tokio::task::JoinError),
|
|
|
|
|
|
|
|
#[error(display = "oneshot receive error: {}", _0)]
|
|
|
|
OneshotRecv(#[error(source)] tokio::sync::oneshot::error::RecvError),
|
|
|
|
|
|
|
|
#[error(display = "Handshake error: {}", _0)]
|
|
|
|
Handshake(#[error(source)] kuska_handshake::async_std::Error),
|
|
|
|
|
2021-10-12 15:59:46 +00:00
|
|
|
#[error(display = "UTF8 error: {}", _0)]
|
|
|
|
UTF8(#[error(source)] std::string::FromUtf8Error),
|
|
|
|
|
2022-06-20 21:40:31 +00:00
|
|
|
#[error(display = "Framing protocol error")]
|
|
|
|
Framing,
|
|
|
|
|
2022-09-01 10:15:50 +00:00
|
|
|
#[error(display = "Remote error ({:?}): {}", _0, _1)]
|
|
|
|
Remote(io::ErrorKind, String),
|
|
|
|
|
2022-07-22 11:01:52 +00:00
|
|
|
#[error(display = "Request ID collision")]
|
|
|
|
IdCollision,
|
|
|
|
|
2020-12-02 12:30:47 +00:00
|
|
|
#[error(display = "{}", _0)]
|
|
|
|
Message(String),
|
|
|
|
|
2021-10-12 15:59:46 +00:00
|
|
|
#[error(display = "No handler / shutting down")]
|
|
|
|
NoHandler,
|
|
|
|
|
2021-10-13 15:12:13 +00:00
|
|
|
#[error(display = "Connection closed")]
|
|
|
|
ConnectionClosed,
|
|
|
|
|
2022-02-21 12:45:41 +00:00
|
|
|
#[error(display = "Version mismatch: {}", _0)]
|
|
|
|
VersionMismatch(String),
|
2021-10-12 15:59:46 +00:00
|
|
|
}
|
|
|
|
|
2020-12-02 12:30:47 +00:00
|
|
|
impl<T> From<tokio::sync::watch::error::SendError<T>> for Error {
|
|
|
|
fn from(_e: tokio::sync::watch::error::SendError<T>) -> Error {
|
2021-10-12 11:18:24 +00:00
|
|
|
Error::Message("Watch send error".into())
|
2020-12-02 12:30:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> From<tokio::sync::mpsc::error::SendError<T>> for Error {
|
|
|
|
fn from(_e: tokio::sync::mpsc::error::SendError<T>) -> Error {
|
2021-10-12 11:18:24 +00:00
|
|
|
Error::Message("MPSC send error".into())
|
2020-12-02 12:30:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 19:12:24 +00:00
|
|
|
/// Ths trait adds a `.log_err()` method on `Result<(), E>` types,
|
|
|
|
/// which dismisses the error by logging it to stderr.
|
2020-12-02 12:30:47 +00:00
|
|
|
pub trait LogError {
|
|
|
|
fn log_err(self, msg: &'static str);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<E> LogError for Result<(), E>
|
|
|
|
where
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
|
|
|
fn log_err(self, msg: &'static str) {
|
|
|
|
if let Err(e) = self {
|
|
|
|
error!("Error: {}: {}", msg, Into::<Error>::into(e));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-10-13 15:12:13 +00:00
|
|
|
|
|
|
|
impl<E, T> LogError for Result<T, E>
|
|
|
|
where
|
|
|
|
T: LogError,
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
|
|
|
fn log_err(self, msg: &'static str) {
|
|
|
|
match self {
|
|
|
|
Err(e) => error!("Error: {}: {}", msg, Into::<Error>::into(e)),
|
|
|
|
Ok(x) => x.log_err(msg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-01 09:34:53 +00:00
|
|
|
|
|
|
|
// ---- Helpers for serializing I/O Errors
|
|
|
|
|
|
|
|
pub(crate) fn u8_to_io_errorkind(v: u8) -> std::io::ErrorKind {
|
|
|
|
use std::io::ErrorKind;
|
|
|
|
match v {
|
|
|
|
101 => ErrorKind::ConnectionAborted,
|
|
|
|
102 => ErrorKind::BrokenPipe,
|
|
|
|
103 => ErrorKind::WouldBlock,
|
|
|
|
104 => ErrorKind::InvalidInput,
|
|
|
|
105 => ErrorKind::InvalidData,
|
|
|
|
106 => ErrorKind::TimedOut,
|
|
|
|
107 => ErrorKind::Interrupted,
|
|
|
|
108 => ErrorKind::UnexpectedEof,
|
|
|
|
109 => ErrorKind::OutOfMemory,
|
|
|
|
110 => ErrorKind::ConnectionReset,
|
|
|
|
_ => ErrorKind::Other,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn io_errorkind_to_u8(kind: std::io::ErrorKind) -> u8 {
|
|
|
|
use std::io::ErrorKind;
|
|
|
|
match kind {
|
|
|
|
ErrorKind::ConnectionAborted => 101,
|
|
|
|
ErrorKind::BrokenPipe => 102,
|
|
|
|
ErrorKind::WouldBlock => 103,
|
|
|
|
ErrorKind::InvalidInput => 104,
|
|
|
|
ErrorKind::InvalidData => 105,
|
|
|
|
ErrorKind::TimedOut => 106,
|
|
|
|
ErrorKind::Interrupted => 107,
|
|
|
|
ErrorKind::UnexpectedEof => 108,
|
|
|
|
ErrorKind::OutOfMemory => 109,
|
|
|
|
ErrorKind::ConnectionReset => 110,
|
|
|
|
_ => 100,
|
|
|
|
}
|
|
|
|
}
|