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
use crate::{
    extract::{transmute_field, Extract},
    Event, StateChange, TryExtract,
};

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/// ArcDPS log error.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct ErrorEvent {
    /// Error message.
    pub message: String,
}

impl ErrorEvent {
    pub const MAX_LEN: usize = 32;
}

impl Extract for ErrorEvent {
    #[inline]
    unsafe fn extract(event: &Event) -> Self {
        let bytes = transmute_field!(event.time as [u8; ErrorEvent::MAX_LEN]);

        Self {
            message: String::from_utf8_lossy(&bytes)
                .trim_end_matches('\0')
                .into(),
        }
    }
}

impl TryExtract for ErrorEvent {
    #[inline]
    fn can_extract(event: &Event) -> bool {
        event.get_statechange() == StateChange::Error
    }
}