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
use async_rustbus::rustbus_core;
use rustbus_core::message_builder::MarshalledMessage;
use rustbus_core::path::ObjectPath;
use rustbus_core::signature;
use rustbus_core::standard_messages;
use std::collections::HashMap;
use crate::BluezOptions;
#[derive(Debug)]
pub enum PropError {
InterfaceNotFound,
PropertyNotFound,
InvalidValue,
PermissionDenied,
}
impl PropError {
fn to_str(&self) -> &'static str {
match self {
PropError::InvalidValue => "InvalidValue",
PropError::PropertyNotFound => "PropertyNotFound",
PropError::PermissionDenied => "PermissionDenied",
PropError::InterfaceNotFound => "InterfaceNotFound",
}
}
}
pub trait Properties {
const GET_ALL_ITEM: signature::Type = signature::Type::Container(signature::Container::Variant);
fn get_all_type() -> signature::Type {
signature::Type::Container(signature::Container::Dict(
signature::Base::String,
Box::new(Self::GET_ALL_ITEM),
))
}
const INTERFACES: &'static [(&'static str, &'static [&'static str])];
fn properties_call(&mut self, msg: &MarshalledMessage) -> MarshalledMessage {
match msg.dynheader.member.as_ref().unwrap().as_ref() {
"Get" => self.get(msg),
"Set" => self.set(msg),
"GetAll" => self.get_all(msg),
_ => standard_messages::unknown_method(&msg.dynheader),
}
}
fn get_all_inner(
&mut self,
path: &ObjectPath,
interface: &str,
) -> Result<HashMap<&'static str, BluezOptions<'static, 'static>>, PropError> {
let props = Self::INTERFACES
.iter()
.find(|i| interface == i.0)
.ok_or(PropError::InterfaceNotFound)
.map(|i| i.1)?;
let mut prop_map = HashMap::new();
for prop in props {
let val = self.get_inner(path, interface, prop).unwrap();
prop_map.insert(*prop, val);
}
Ok(prop_map)
}
fn get_all(&mut self, msg: &MarshalledMessage) -> MarshalledMessage {
let interface = match msg.body.parser().get() {
Ok(i) => i,
Err(_) => return msg.dynheader.make_error_response("InvalidArgs", None),
};
let path = ObjectPath::from_str(msg.dynheader.object.as_ref().unwrap()).unwrap();
match self.get_all_inner(path, interface) {
Ok(map) => {
let mut res = msg.dynheader.make_response();
res.body.push_param(map).unwrap();
res
}
Err(e) => {
return msg
.dynheader
.make_error_response(e.to_str().to_string(), None)
}
}
}
fn get(&mut self, msg: &MarshalledMessage) -> MarshalledMessage {
let (interface, prop) = match msg.body.parser().get2() {
Ok(out) => out,
Err(_) => return msg.dynheader.make_error_response("InvalidArgs", None),
};
let path = ObjectPath::from_str(msg.dynheader.object.as_ref().unwrap()).unwrap();
match self.get_inner(path, interface, prop) {
Ok(var) => {
let mut reply = msg.dynheader.make_response();
reply.body.push_param(var).unwrap();
reply
}
Err(e) => msg
.dynheader
.make_error_response(e.to_str().to_string(), None),
}
}
fn get_inner(
&mut self,
path: &ObjectPath,
interface: &str,
prop: &str,
) -> Result<BluezOptions<'static, 'static>, PropError>;
fn set_inner(
&mut self,
path: &ObjectPath,
interface: &str,
prop: &str,
val: BluezOptions,
) -> Result<(), PropError>;
fn set(&mut self, msg: &MarshalledMessage) -> MarshalledMessage {
let (interface, prop, var): (&str, &str, BluezOptions) = match msg.body.parser().get3() {
Ok(vals) => vals,
Err(err) => {
return msg
.dynheader
.make_error_response("InvalidParameters", Some(format!("{:?}", err)))
}
};
let path = ObjectPath::from_str(msg.dynheader.object.as_ref().unwrap()).unwrap();
match self.set_inner(path, interface, prop, var) {
Ok(_) => msg.dynheader.make_response(),
Err(e) => msg
.dynheader
.make_error_response(e.to_str().to_string(), None),
}
}
fn get_all_interfaces(
&mut self,
path: &ObjectPath,
) -> HashMap<&'static str, HashMap<&'static str, BluezOptions<'static, 'static>>> {
let mut ret = HashMap::new();
for (interface, _) in Self::INTERFACES {
let prop_map = self.get_all_inner(path, interface).unwrap();
ret.insert(*interface, prop_map);
}
ret
}
}