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
use async_std::channel::bounded;
use async_std::task::spawn;
use std::num::NonZeroU16;
use super::*;
use crate::properties::{PropError, Properties};
use async_rustbus::RpcConn;
pub struct Service {
chars: Vec<Characteristic>,
includes: Vec<UUID>,
handle: u16,
uuid: UUID,
primary: bool,
}
struct ServData {
handle: u16,
uuid: UUID,
children: usize,
includes: Vec<ObjectPathBuf>,
primary: bool,
}
impl ServData {
fn handle_call(&mut self, call: &MarshalledMessage) -> MarshalledMessage {
let interface = call.dynheader.interface.as_ref().unwrap();
match &**interface {
PROPS_IF => self.properties_call(call),
INTRO_IF => self.handle_intro(call),
_ => unimplemented!(),
}
}
fn handle_intro(&self, call: &MarshalledMessage) -> MarshalledMessage {
let mut s = String::from(introspect::INTROSPECT_FMT_P1);
s.push_str(introspect::PROP_STR);
s.push_str(introspect::SERVICE_STR);
let children = (0..self.children).map(|u| format!("char{:04x}", u));
introspect::child_nodes(children, &mut s);
s.push_str(introspect::INTROSPECT_FMT_P3);
let mut reply = call.dynheader.make_response();
reply.body.push_param(s).unwrap();
reply
}
}
impl Service {
pub fn new(uuid: UUID, primary: bool) -> Self {
Self {
uuid,
primary,
handle: 0,
chars: Vec::new(),
includes: Vec::new(),
}
}
pub fn set_handle(&mut self, handle: Option<NonZeroU16>) {
self.handle = handle.map_or(0, |u| u.into());
}
pub fn add_char(&mut self, mut character: Characteristic) {
match self.find_char_unsorted(character.uuid()) {
Some(c) => std::mem::swap(c, &mut character),
None => self.chars.push(character),
}
}
pub fn includes(&self) -> &[UUID] {
&self.includes
}
pub fn characteristics(&self) -> &[Characteristic] {
&self.chars
}
pub fn add_includes(&mut self, service: UUID) {
if !self.includes.contains(&service) {
self.includes.push(service);
}
}
pub fn remove_includes(&mut self, service: UUID) {
if let Some(idx) = self.includes.iter().position(|u| *u == service) {
self.includes.remove(idx);
}
}
pub fn remove_char(&mut self, uuid: UUID) -> Option<Characteristic> {
let idx = self.chars.iter().position(|s| s.uuid() == uuid)?;
Some(self.chars.remove(idx))
}
pub fn uuid(&self) -> UUID {
self.uuid
}
pub fn drain_chrcs(&mut self) -> std::vec::Drain<Characteristic> {
self.chars.drain(..)
}
pub fn chrc_cnt(&self) -> usize {
self.chars.len()
}
fn find_char_unsorted(&mut self, uuid: UUID) -> Option<&mut Characteristic> {
self.chars.iter_mut().find(|c| c.uuid() == uuid)
}
pub(super) fn start_worker(
self,
conn: &Arc<RpcConn>,
path: &ObjectPath,
children: usize,
filter: Option<Arc<str>>,
) -> Worker {
let path = path.to_owned();
let (sender, recv) = bounded(8);
let conn = conn.clone();
let mut serv_data = ServData {
uuid: self.uuid,
handle: self.handle,
primary: self.primary,
includes: Vec::new(),
children,
};
let handle = spawn(async move {
let call_recv = conn.get_call_recv(&*path).await.unwrap();
let mut msg_fut = recv.recv();
let mut call_fut = call_recv.recv();
loop {
match select(msg_fut, call_fut).await {
Either::Left((msg, call_f)) => {
match msg? {
WorkerMsg::Unregister => break,
WorkerMsg::ObjMgr(sender) => {
sender.send((path.clone(), serv_data.get_all_interfaces(&path)))?;
}
WorkerMsg::GetHandle(sender) => {
sender.send(NonZeroU16::new(self.handle).unwrap())?;
}
WorkerMsg::IncludedPaths(includes) => {
serv_data.includes = includes;
}
_ => unreachable!(),
}
call_fut = call_f;
msg_fut = recv.recv();
}
Either::Right((call, msg_f)) => {
let call = call?;
let res = if is_msg_bluez(&call, filter.as_deref()) {
serv_data.handle_call(&call)
} else {
call.dynheader.make_error_response("PermissionDenied", None)
};
conn.send_msg_wo_rsp(&res).await?;
msg_fut = msg_f;
call_fut = call_recv.recv();
}
}
}
Ok(WorkerJoin::Serv(self))
});
Worker { sender, handle }
}
}
impl Properties for ServData {
const INTERFACES: &'static [(&'static str, &'static [&'static str])] =
&[(BLUEZ_SER_IF, &[UUID_STR, PRY_STR, HANDLE_STR, INC_STR])];
fn get_inner(
&mut self,
_path: &ObjectPath,
interface: &str,
prop: &str,
) -> Result<BluezOptions<'static, 'static>, PropError> {
if !matches!(interface, BLUEZ_SER_IF) {
return Err(PropError::InterfaceNotFound);
}
match prop {
UUID_STR => Ok(BluezOptions::OwnedStr(self.uuid.to_string())),
PRY_STR => Ok(BluezOptions::Bool(self.primary)),
HANDLE_STR => Ok(BluezOptions::U16(self.handle)),
INC_STR => Ok(BluezOptions::OwnedPaths(self.includes.clone())),
_ => Err(PropError::PropertyNotFound),
}
}
fn set_inner(
&mut self,
_path: &ObjectPath,
interface: &str,
prop: &str,
val: BluezOptions,
) -> Result<(), PropError> {
if !matches!(interface, BLUEZ_SER_IF) {
return Err(PropError::InterfaceNotFound);
}
match prop {
UUID_STR => Err(PropError::PermissionDenied),
PRY_STR => Err(PropError::PermissionDenied),
HANDLE_STR => match val {
BluezOptions::U16(handle) => {
self.handle = handle;
Ok(())
}
_ => Err(PropError::InvalidValue),
},
_ => Err(PropError::PropertyNotFound),
}
}
}