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
use serde::ser::{Serialize, SerializeStruct, Serializer};
use crate::{
service::HapService,
characteristic::{
HapCharacteristic,
programmable_switch_event::ProgrammableSwitchEventCharacteristic,
programmable_switch_output_state::ProgrammableSwitchOutputStateCharacteristic,
name::NameCharacteristic,
},
HapType,
};
#[derive(Debug, Default)]
pub struct StatefulProgrammableSwitchService {
id: u64,
hap_type: HapType,
hidden: bool,
primary: bool,
linked_services: Vec<u64>,
pub programmable_switch_event: ProgrammableSwitchEventCharacteristic,
pub programmable_switch_output_state: ProgrammableSwitchOutputStateCharacteristic,
pub name: Option<NameCharacteristic>,
}
impl StatefulProgrammableSwitchService {
pub fn new(id: u64, accessory_id: u64) -> Self {
Self {
id,
hap_type: HapType::StatefulProgrammableSwitch,
programmable_switch_event: ProgrammableSwitchEventCharacteristic::new(id + 1 + 0, accessory_id),
programmable_switch_output_state: ProgrammableSwitchOutputStateCharacteristic::new(id + 1 + 1, accessory_id),
name: Some(NameCharacteristic::new(id + 1 + 0 + 2, accessory_id)),
..Default::default()
}
}
}
impl HapService for StatefulProgrammableSwitchService {
fn get_id(&self) -> u64 {
self.id
}
fn get_type(&self) -> HapType {
self.hap_type
}
fn get_hidden(&self) -> bool {
self.hidden
}
fn set_hidden(&mut self, hidden: bool) {
self.hidden = hidden;
}
fn get_primary(&self) -> bool {
self.primary
}
fn set_primary(&mut self, primary: bool) {
self.primary = primary;
}
fn get_linked_services(&self) -> Vec<u64> {
self.linked_services.clone()
}
fn set_linked_services(&mut self, linked_services: Vec<u64>) {
self.linked_services = linked_services;
}
fn get_characteristic(&self, hap_type: HapType) -> Option<&dyn HapCharacteristic> {
for characteristic in self.get_characteristics() {
if characteristic.get_type() == hap_type {
return Some(characteristic);
}
}
None
}
fn get_mut_characteristic(&mut self, hap_type: HapType) -> Option<&mut dyn HapCharacteristic> {
for characteristic in self.get_mut_characteristics() {
if characteristic.get_type() == hap_type {
return Some(characteristic);
}
}
None
}
fn get_characteristics(&self) -> Vec<&dyn HapCharacteristic> {
#[allow(unused_mut)]
let mut characteristics: Vec<&dyn HapCharacteristic> = vec![
&self.programmable_switch_event,
&self.programmable_switch_output_state,
];
if let Some(c) = &self.name {
characteristics.push(c);
}
characteristics
}
fn get_mut_characteristics(&mut self) -> Vec<&mut dyn HapCharacteristic> {
#[allow(unused_mut)]
let mut characteristics: Vec<&mut dyn HapCharacteristic> = vec![
&mut self.programmable_switch_event,
&mut self.programmable_switch_output_state,
];
if let Some(c) = &mut self.name {
characteristics.push(c);
}
characteristics
}
}
impl Serialize for StatefulProgrammableSwitchService {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
let mut state = serializer.serialize_struct("HapService", 5)?;
state.serialize_field("iid", &self.get_id())?;
state.serialize_field("type", &self.get_type())?;
state.serialize_field("hidden", &self.get_hidden())?;
state.serialize_field("primary", &self.get_primary())?;
state.serialize_field("characteristics", &self.get_characteristics())?;
state.end()
}
}