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
use std::any::Any;

use std::fmt::Debug;
use std::{error, fmt};

pub trait TGDatable: Debug {
    fn as_any(&self) -> &dyn Any;
}

#[derive(Debug)]
pub struct TGError {
    key: &'static str,
    message: Option<String>,
    data: Option<Box<dyn TGDatable>>,
    context: Option<Box<dyn std::error::Error>>,
}

pub type TGResult<T> = Result<T, TGError>;

impl TGError {
    pub fn new(key: &'static str) -> Self {
        Self {
            key,
            message: None,
            data: None,
            context: None,
        }
    }

    pub fn set_key(&mut self, key: &'static str) -> &mut Self {
        self.key = key;
        self
    }

    pub fn set_message<S: AsRef<str>>(&mut self, message: S) -> &mut Self {
        self.message = Some(message.as_ref().to_string());
        self
    }

    pub fn set_data(&mut self, data: Box<dyn TGDatable>) -> &mut Self {
        self.data = Some(data);
        self
    }

    pub fn set_context(&mut self, context: Box<dyn std::error::Error>) -> &mut Self {
        self.context = Some(context);
        self
    }

    pub fn key(&self) -> &'static str {
        self.key
    }
    pub fn message(&self) -> &Option<String> {
        &self.message
    }
    pub fn data(&self) -> &Option<Box<dyn TGDatable>> {
        &self.data
    }
    pub fn context(&self) -> &Option<Box<dyn std::error::Error>> {
        &self.context
    }
}

impl fmt::Display for TGError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "[{}]: {}",
            self.key,
            self.message.clone().map_or("".to_string(), |v| v)
        )
    }
}

impl error::Error for TGError {
    fn description(&self) -> &str {
        self.key
    }

    fn cause(&self) -> Option<&dyn error::Error> {
        None
    }
}