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 super::*;
use nom::*;
#[derive(Clone, Default, Debug, PartialEq)]
pub struct RxStatusEventLog {
pub recv_status: ReceiverStatusFlags,
pub time_status: u8,
pub week: u16,
pub ms: i32,
pub word: u32,
pub bit: u32,
pub event: u32,
pub description: String,
}
impl RxStatusEventLog {
pub fn new(
recv_status: ReceiverStatusFlags,
time_status: u8,
week: u16,
ms: i32,
raw: Vec<u8>,
) -> Option<Self> {
let mut log = match parse_rxstatusevent(&raw) {
Ok(conv) => conv.1,
_ => return None,
};
log.recv_status = recv_status;
log.time_status = time_status;
log.week = week;
log.ms = ms;
Some(log)
}
}
named!(parse_rxstatusevent(&[u8]) -> RxStatusEventLog,
do_parse!(
word: le_u32 >>
bit: le_u32 >>
event: le_u32 >>
description: take!(32) >>
(RxStatusEventLog {
recv_status: ReceiverStatusFlags::empty(),
time_status: 0,
week: 0,
ms: 0,
word,
bit,
event,
description: String::from_utf8_lossy(description)
.trim_right_matches('\u{0}').to_owned(),
}
)
)
);