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
/*
    Appellation: interface <events>
    Contributors: FL03 <jo3mccain@icloud.com>
    Description:
        ... Summary ...
*/
use super::Eventful;
use crate::Timestamp;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
pub struct Event {
    pub message: String,
    pub timestamp: Timestamp,
}

impl Event {
    pub fn new(message: String, timestamp: Timestamp) -> Self {
        Self { message, timestamp }
    }
}

impl Eventful for Event {
    fn message(&self) -> String {
        self.message.clone()
    }
    fn timestamp(&self) -> i64 {
        self.clone().timestamp.into()
    }
}

impl<T: ToString> std::convert::From<&T> for Event {
    fn from(data: &T) -> Self {
        Self::new(data.to_string(), Timestamp::default())
    }
}

impl Default for Event {
    fn default() -> Self {
        Self::from(&String::new())
    }
}

impl std::fmt::Display for Event {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", serde_json::to_string_pretty(&self).unwrap())
    }
}