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
use std::collections::HashSet;
use std::cell::Cell;
use dbus::{Connection, BusType, NameFlag, ConnectionItem, Message, MessageItem};
use dbus::obj::{ObjectPath, Argument, Method, Interface};
use super::{Notification,NotificationHint};
use util::*;
static DBUS_ERROR_FAILED: &'static str = "org.freedesktop.DBus.Error.Failed";
pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");
#[derive(Debug,Default)]
pub struct NotificationServer {
pub counter: Cell<u32>,
pub stop: Cell<bool>
}
impl NotificationServer {
fn count_up(&self) {
self.counter.set( self.counter.get() + 1);
}
pub fn new() -> NotificationServer {
NotificationServer::default()
}
pub fn start<F>(&mut self, closure: F) where F: Fn(&Notification) {
let connection = Connection::get_private(BusType::Session).unwrap();
connection.release_name("org.freedesktop.Notifications").unwrap();
connection.register_name("org.freedesktop.Notifications", NameFlag::ReplaceExisting as u32).expect("Was not able to register name.");
let mut objpath = ObjectPath::new(&connection, "/org/freedesktop/Notifications", false);
connection.register_object_path( "/org/freedesktop/Notifications").expect("could not register object path");
let server_interface = Interface::new(
vec![
Method::new("Notify",
vec![ Argument::new("app_name", "s"),
Argument::new("replaces_id", "u"),
Argument::new("app_icon", "s"),
Argument::new("summary", "s"),
Argument::new("body", "s"),
Argument::new("actions", "as"),
Argument::new("hints", "a{sv}"),
Argument::new("timeout", "i")
],
vec![Argument::new("arg_0", "u")],
Box::new(|msg| {
let hint_items = msg.get_items().get(6).unwrap().clone();
let hint_items:&Vec<MessageItem> = hint_items.inner().unwrap();
let hints = hint_items.iter().map(|item|item.into()).collect::<HashSet<NotificationHint>>();
let action_items = msg.get_items().get(5).unwrap().clone();
let action_items:&Vec<MessageItem> = action_items.inner().unwrap();
let actions:Vec<String> = action_items.iter().map(|action|action.inner::<&String>().unwrap().to_owned()).collect();
let notification = Notification{
appname: unwrap_message_str(msg.get_items().get(0).unwrap()),
summary: unwrap_message_string(msg.get_items().get(3)),
body: unwrap_message_string(msg.get_items().get(4)),
icon: unwrap_message_string(msg.get_items().get(2)),
timeout: msg.get_items().get(7).unwrap().inner().unwrap(),
subtitle: None,
hints: hints,
actions: actions,
id: Some(self.counter.get())
};
closure(¬ification);
self.count_up();
Ok(vec!(MessageItem::Int32(42)))
})
),
Method::new("CloseNotification",
vec![Argument::new("id", "u")],
vec![],
Box::new(|msg| {
println!("{:?}", msg);
Ok( vec![])}
)
),
Method::new("Stop",
vec![],
vec![],
Box::new(|_msg| {
self.stop.set(true);
Ok( vec![])}
)
),
Method::new("GetCapabilities",
vec![],
vec![Argument::new("caps", "{s}")],
Box::new(|_msg| Ok( vec![
MessageItem::new_array( vec![ "body".into(), ]).unwrap()
]))
),
Method::new("GetServerInformation",
vec![],
vec![
Argument::new("name", "s"),
Argument::new("vendor", "s"),
Argument::new("version", "s"),
Argument::new("spec_version", "s"),
],
Box::new(|_msg| Ok( vec![
"notify-rust daemon".into(), "notify-rust".into(), VERSION.into(), "1.1".into()
]))
)
],
vec![],
vec![]
);
objpath.insert_interface("org.freedesktop.Notifications", server_interface);
for n in connection.iter(10) {
match n {
ConnectionItem::MethodCall(mut m) =>
if objpath.handle_message(&mut m).is_none() {
connection.send(Message::new_error(&m, DBUS_ERROR_FAILED, "Object path not found").unwrap()).unwrap();
}
,
ConnectionItem::Signal(_m) => { },
_ => (),
}
if self.stop.get() {
println!("stopping server");
break;
}
}
}
}