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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
use crate::value::{Value, ValueOption, ValueOptionOwned};
use crate::{EResult, Error};
use crate::{ItemStatus, IEID, OID};
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use std::hash::{Hash, Hasher};
use std::str::FromStr;
pub const RAW_STATE_TOPIC: &str = "RAW/";
pub const LOCAL_STATE_TOPIC: &str = "ST/LOC/";
pub const REMOTE_STATE_TOPIC: &str = "ST/REM/";
pub const ANY_STATE_TOPIC: &str = "ST/+/";
pub const REMOTE_ARCHIVE_STATE_TOPIC: &str = "ST/RAR/";
pub const REPLICATION_STATE_TOPIC: &str = "RPL/ST/";
pub const REPLICATION_INVENTORY_TOPIC: &str = "RPL/INVENTORY/";
pub const REPLICATION_NODE_STATE_TOPIC: &str = "RPL/NODE/";
pub const LOG_INPUT_TOPIC: &str = "LOG/IN/";
pub const LOG_EVENT_TOPIC: &str = "LOG/EV/";
pub const SERVICE_STATUS_TOPIC: &str = "SVC/ST";
pub const AAA_ACL_TOPIC: &str = "AAA/ACL/";
pub const AAA_KEY_TOPIC: &str = "AAA/KEY/";
pub const AAA_USER_TOPIC: &str = "AAA/USER/";
#[derive(Debug, Copy, Clone)]
#[repr(i8)]
pub enum NodeStatus {
Online = 1,
Offline = 0,
Removed = -1,
}
impl NodeStatus {
fn as_str(&self) -> &str {
match self {
NodeStatus::Online => "online",
NodeStatus::Offline => "offline",
NodeStatus::Removed => "removed",
}
}
}
impl FromStr for NodeStatus {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"online" => Ok(NodeStatus::Online),
"offline" => Ok(NodeStatus::Offline),
"removed" => Ok(NodeStatus::Removed),
_ => Err(Error::invalid_data(format!("Invalid node status: {}", s))),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct NodeStateEvent {
pub status: NodeStatus,
}
impl Serialize for NodeStatus {
#[inline]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de> Deserialize<'de> for NodeStatus {
#[inline]
fn deserialize<D>(deserializer: D) -> Result<NodeStatus, D::Error>
where
D: Deserializer<'de>,
{
let s: String = Deserialize::deserialize(deserializer)?;
s.parse().map_err(serde::de::Error::custom)
}
}
#[derive(Debug, Clone, Serialize, Eq, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct RawStateEvent<'a> {
pub status: ItemStatus,
#[serde(default, skip_serializing_if = "ValueOption::is_none")]
pub value: ValueOption<'a>,
#[serde(default)]
pub force: bool,
}
impl<'a> RawStateEvent<'a> {
#[inline]
pub fn new(status: ItemStatus, value: &'a Value) -> Self {
Self {
status,
value: ValueOption::Value(value),
force: false,
}
}
#[inline]
pub fn new0(status: ItemStatus) -> Self {
Self {
status,
value: ValueOption::No,
force: false,
}
}
pub fn force(mut self) -> Self {
self.force = true;
self
}
}
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct RawStateEventOwned {
pub status: ItemStatus,
#[serde(default, skip_serializing_if = "ValueOptionOwned::is_none")]
pub value: ValueOptionOwned,
#[serde(default)]
pub force: bool,
}
impl RawStateEventOwned {
#[inline]
pub fn new(status: ItemStatus, value: Value) -> Self {
Self {
status,
value: ValueOptionOwned::Value(value),
force: false,
}
}
#[inline]
pub fn new0(status: ItemStatus) -> Self {
Self {
status,
value: ValueOptionOwned::No,
force: false,
}
}
pub fn force(mut self) -> Self {
self.force = true;
self
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ReplicationStateEvent {
pub status: ItemStatus,
pub value: Value,
pub act: Option<usize>,
pub ieid: IEID,
pub t: f64,
pub node: Option<String>,
}
impl TryFrom<ReplicationInventoryItem> for ReplicationStateEvent {
type Error = Error;
fn try_from(item: ReplicationInventoryItem) -> EResult<Self> {
let v: Option<Value> = item.value.into();
Ok(Self {
status: item.status.unwrap_or_default(),
value: v.unwrap_or_default(),
act: item.act,
ieid: item
.ieid
.ok_or_else(|| Error::invalid_data(format!("IEID missing ({})", item.oid)))?,
t: item
.t
.ok_or_else(|| Error::invalid_data(format!("Set time missing ({})", item.oid)))?,
node: None,
})
}
}
#[allow(clippy::similar_names)]
impl ReplicationStateEvent {
#[inline]
pub fn new(
status: ItemStatus,
value: Value,
act: Option<usize>,
ieid: IEID,
t: f64,
node: &str,
) -> Self {
Self {
status,
value,
act,
ieid,
t,
node: Some(node.to_owned()),
}
}
}
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(deny_unknown_fields)]
pub struct ReplicationInventoryItem {
pub oid: OID,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<ItemStatus>,
#[serde(default, skip_serializing_if = "ValueOptionOwned::is_none")]
pub value: ValueOptionOwned,
#[serde(skip_serializing_if = "Option::is_none")]
pub act: Option<usize>,
pub ieid: Option<IEID>,
pub t: Option<f64>,
pub meta: Option<Value>,
pub enabled: bool,
}
impl Hash for ReplicationInventoryItem {
fn hash<H: Hasher>(&self, state: &mut H) {
self.oid.hash(state);
}
}
impl Eq for ReplicationInventoryItem {}
impl PartialEq for ReplicationInventoryItem {
fn eq(&self, other: &Self) -> bool {
self.oid == other.oid
}
}