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
use std::{
    error::Error,
    fmt::{Display, Formatter},
    path::Path,
};

mod for_serde;
mod for_std;

pub type TspResult<T> = Result<T, TspError>;

#[derive(Debug, Clone)]
pub struct TspError {
    kind: Box<TspErrorKind>,
}

#[derive(Debug, Clone)]
pub enum TspErrorKind {
    IoError { file: String, message: String },
    EncodeError { message: String },
    DecodeError { message: String },
}

impl Error for TspError {}

impl Display for TspError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        Display::fmt(&self.kind, f)
    }
}

impl Display for TspErrorKind {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self {
            TspErrorKind::IoError { file, message } => write!(f, "IO error: {} {}", file, message),
            TspErrorKind::EncodeError { message } => write!(f, "Encode error: {}", message),
            TspErrorKind::DecodeError { message } => write!(f, "Decode error: {}", message),
        }
    }
}

impl TspError {
    pub fn io_error<S, P>(file: P, message: S) -> Self
    where
        S: Into<String>,
        P: AsRef<Path>,
    {
        Self {
            kind: Box::new(TspErrorKind::IoError {
                file: file.as_ref().to_string_lossy().to_string(),
                message: message.into(),
            }),
        }
    }
}