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
use cyfs_base::*;
use std::str::FromStr;
#[repr(u8)]
#[derive(Clone, Debug, Eq, PartialEq, RawEncode, RawDecode)]
pub enum ZoneRole {
ActiveOOD = 0,
StandbyOOD = 1,
ReservedOOD = 2,
Device = 3,
}
impl ZoneRole {
pub fn is_ood_device(&self) -> bool {
match &self {
Self::Device => false,
_ => true,
}
}
pub fn is_active_ood(&self) -> bool {
match &self {
Self::ActiveOOD => true,
_ => false,
}
}
pub fn as_str(&self) -> &str {
match &self {
Self::ActiveOOD => "active-ood",
Self::StandbyOOD => "standby-ood",
Self::ReservedOOD => "reserved-ood",
Self::Device => "device",
}
}
}
impl std::fmt::Display for ZoneRole {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl FromStr for ZoneRole {
type Err = BuckyError;
fn from_str(value: &str) -> Result<Self, Self::Err> {
let ret = match value {
"active-ood" => Self::ActiveOOD,
"standby-ood" => Self::StandbyOOD,
"reserved-ood" => Self::ReservedOOD,
"device" => Self::Device,
v @ _ => {
let msg = format!("unknown ZoneRole: {}", v);
error!("{}", msg);
return Err(BuckyError::new(BuckyErrorCode::UnSupport, msg));
}
};
Ok(ret)
}
}