1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
use std::{
    error::Error,
    fmt::{self, Debug, Display, Formatter},
    io,
    sync::mpsc::{RecvError, SendError},
};

pub type SshResult<I> = Result<I, SshError>;

pub struct SshError {
    inner: SshErrorKind,
}

impl SshError {
    pub fn kind(&self) -> &SshErrorKind {
        &self.inner
    }
}

impl Debug for SshError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match &self.inner {
            SshErrorKind::IoError(ie) => {
                write!(f, r"IoError: {{ Kind({:?}), Message({}) }}", ie.kind(), ie)
            }
            _ => {
                write!(
                    f,
                    r"Error: {{ Kind({:?}), Message({}) }}",
                    self.inner, self.inner
                )
            }
        }
    }
}

impl Display for SshError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match &self.inner {
            SshErrorKind::IoError(ie) => {
                write!(f, r"IoError: {{ Kind({:?}) }}", ie.kind())
            }
            _ => {
                write!(f, r"Error: {{ Kind({:?}) }}", self.inner)
            }
        }
    }
}

#[derive(Debug)]
pub enum SshErrorKind {
    IoError(io::Error),
    SshError(String),
    SendError(String),
    RecvError(String),
    Timeout,
}

impl fmt::Display for SshErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self {
            SshErrorKind::SshError(e) => write!(f, "{}", e),
            SshErrorKind::IoError(v) => write!(f, "{}", v),
            SshErrorKind::SendError(e) => write!(f, "{}", e),
            SshErrorKind::RecvError(e) => write!(f, "{}", e),
            SshErrorKind::Timeout => write!(f, "time out."),
        }
    }
}

impl Error for SshError {}

impl From<SshErrorKind> for SshError {
    fn from(kind: SshErrorKind) -> SshError {
        SshError { inner: kind }
    }
}

impl From<&str> for SshError {
    fn from(kind: &str) -> SshError {
        SshError {
            inner: SshErrorKind::SshError(kind.to_string()),
        }
    }
}

impl From<String> for SshError {
    fn from(kind: String) -> SshError {
        SshError {
            inner: SshErrorKind::SshError(kind),
        }
    }
}

impl From<io::Error> for SshError {
    fn from(kind: io::Error) -> Self {
        SshError {
            inner: SshErrorKind::IoError(io::Error::from(kind.kind())),
        }
    }
}

impl<T> From<SendError<T>> for SshError {
    fn from(e: SendError<T>) -> Self {
        Self {
            inner: SshErrorKind::SendError(e.to_string()),
        }
    }
}

impl From<RecvError> for SshError {
    fn from(e: RecvError) -> Self {
        Self {
            inner: SshErrorKind::RecvError(e.to_string()),
        }
    }
}