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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
use std::{fmt, ptr};
use super::{ffi, Error, libc, init_dbus};
use crate::strings::{BusName, Path, Interface, Member, ErrorName};
use std::ffi::CStr;
use super::arg::{Append, AppendAll, IterAppend, ReadAll, Get, Iter, Arg, RefArg, TypeMismatchError};
#[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Hash)]
pub enum MessageType {
MethodCall = 1,
MethodReturn = 2,
Error = 3,
Signal = 4,
}
impl<'a> TryFrom<&'a str> for MessageType {
type Error = ();
fn try_from(value: &'a str) -> Result<Self, <crate::message::MessageType as TryFrom<&'a str>>::Error> {
match value {
"error" => Ok(MessageType::Error),
"method_call" => Ok(MessageType::MethodCall),
"method_return" => Ok(MessageType::MethodReturn),
"signal" => Ok(MessageType::Signal),
_ => Err(())
}
}
}
mod signalargs;
pub use self::signalargs::SignalArgs;
mod matchrule;
pub use self::matchrule::MatchRule;
use std::convert::TryFrom;
mod parser;
pub use self::parser::Error as MatchRuleParserError;
pub struct Message {
msg: *mut ffi::DBusMessage,
}
unsafe impl Send for Message {}
impl Message {
pub fn new_method_call<'d, 'p, 'i, 'm, D, P, I, M>(destination: D, path: P, iface: I, method: M) -> Result<Message, String>
where D: Into<BusName<'d>>, P: Into<Path<'p>>, I: Into<Interface<'i>>, M: Into<Member<'m>> {
init_dbus();
let (d, p, i, m) = (destination.into(), path.into(), iface.into(), method.into());
let ptr = unsafe {
ffi::dbus_message_new_method_call(d.as_ptr(), p.as_ptr(), i.as_ptr(), m.as_ptr())
};
if ptr.is_null() { Err("D-Bus error: dbus_message_new_method_call failed".into()) }
else { Ok(Message { msg: ptr}) }
}
pub fn method_call(destination: &BusName, path: &Path, iface: &Interface, name: &Member) -> Message {
init_dbus();
let ptr = unsafe {
ffi::dbus_message_new_method_call(destination.as_ptr(), path.as_ptr(),
iface.as_ptr(), name.as_ptr())
};
if ptr.is_null() { panic!("D-Bus error: dbus_message_new_method_call failed") }
Message { msg: ptr}
}
pub fn duplicate(&self) -> Result<Self, String> {
let ptr = unsafe {
ffi::dbus_message_copy(self.msg)
};
if ptr.is_null() {
Err("D-Bus error: dbus_message_copy failed".into())
} else {
Ok(Message { msg: ptr })
}
}
pub fn call_with_args<'d, 'p, 'i, 'm, A, D, P, I, M>(destination: D, path: P, iface: I, method: M, args: A) -> Message
where D: Into<BusName<'d>>, P: Into<Path<'p>>, I: Into<Interface<'i>>, M: Into<Member<'m>>, A: AppendAll {
let mut msg = Message::method_call(&destination.into(), &path.into(), &iface.into(), &method.into());
msg.append_all(args);
msg
}
pub fn new_signal<P, I, M>(path: P, iface: I, name: M) -> Result<Message, String>
where P: Into<String>, I: Into<String>, M: Into<String> {
init_dbus();
let p = Path::new(path)?;
let i = Interface::new(iface)?;
let m = Member::new(name)?;
let ptr = unsafe {
ffi::dbus_message_new_signal(p.as_ptr(), i.as_ptr(), m.as_ptr())
};
if ptr.is_null() { Err("D-Bus error: dbus_message_new_signal failed".into()) }
else { Ok(Message { msg: ptr}) }
}
pub fn signal(path: &Path, iface: &Interface, name: &Member) -> Message {
init_dbus();
let ptr = unsafe {
ffi::dbus_message_new_signal(path.as_ptr(), iface.as_ptr(), name.as_ptr())
};
if ptr.is_null() { panic!("D-Bus error: dbus_message_new_signal failed") }
Message { msg: ptr}
}
pub fn new_method_return(m: &Message) -> Option<Message> {
let ptr = unsafe { ffi::dbus_message_new_method_return(m.msg) };
if ptr.is_null() { None } else { Some(Message { msg: ptr} ) }
}
pub fn method_return(&self) -> Message {
let ptr = unsafe { ffi::dbus_message_new_method_return(self.msg) };
if ptr.is_null() { panic!("D-Bus error: dbus_message_new_method_return failed") }
Message {msg: ptr}
}
pub fn return_with_args<A: AppendAll>(&self, args: A) -> Message {
let mut m = self.method_return();
m.append_all(args);
m
}
pub fn error(&self, error_name: &ErrorName, error_message: &CStr) -> Message {
let ptr = unsafe { ffi::dbus_message_new_error(self.msg, error_name.as_ptr(), error_message.as_ptr()) };
if ptr.is_null() { panic!("D-Bus error: dbus_message_new_error failed") }
Message { msg: ptr}
}
pub fn get_items(&self) -> Vec<crate::arg::messageitem::MessageItem> {
let mut i = self.iter_init();
let mut v = vec!();
while let Some(z) = crate::arg::messageitem::MessageItem::get(&mut i) { v.push(z); i.next(); }
v
}
pub fn get_serial(&self) -> Option<u32> {
let x = unsafe { ffi::dbus_message_get_serial(self.msg) };
if x == 0 { None } else { Some(x) }
}
pub fn get_reply_serial(&self) -> Option<u32> {
let s = unsafe { ffi::dbus_message_get_reply_serial(self.msg) };
if s == 0 { None } else { Some(s) }
}
pub fn get_no_reply(&self) -> bool { unsafe { ffi::dbus_message_get_no_reply(self.msg) != 0 } }
pub fn set_no_reply(&mut self, v: bool) {
unsafe { ffi::dbus_message_set_no_reply(self.msg, if v { 1 } else { 0 }) }
}
pub fn get_auto_start(&self) -> bool { unsafe { ffi::dbus_message_get_auto_start(self.msg) != 0 } }
pub fn set_auto_start(&mut self, v: bool) {
unsafe { ffi::dbus_message_set_auto_start(self.msg, if v { 1 } else { 0 }) }
}
pub fn append_items(&mut self, v: &[crate::arg::messageitem::MessageItem]) {
let mut ia = IterAppend::new(self);
for a in v { a.append_by_ref(&mut ia); }
}
pub fn append1<A: Append>(mut self, a: A) -> Self {
{
let mut m = IterAppend::new(&mut self);
m.append(a);
}
self
}
pub fn append2<A1: Append, A2: Append>(mut self, a1: A1, a2: A2) -> Self {
{
let mut m = IterAppend::new(&mut self);
m.append(a1); m.append(a2);
}
self
}
pub fn append3<A1: Append, A2: Append, A3: Append>(mut self, a1: A1, a2: A2, a3: A3) -> Self {
{
let mut m = IterAppend::new(&mut self);
m.append(a1); m.append(a2); m.append(a3);
}
self
}
pub fn append_ref<A: RefArg>(mut self, r: &[A]) -> Self {
{
let mut m = IterAppend::new(&mut self);
for rr in r {
rr.append(&mut m);
}
}
self
}
pub fn append_all<A: AppendAll>(&mut self, a: A) {
let mut m = IterAppend::new(self);
a.append(&mut m);
}
pub fn get1<'a, G1: Get<'a>>(&'a self) -> Option<G1> {
let mut i = Iter::new(&self);
i.get()
}
pub fn get2<'a, G1: Get<'a>, G2: Get<'a>>(&'a self) -> (Option<G1>, Option<G2>) {
let mut i = Iter::new(&self);
let g1 = i.get();
if !i.next() { return (g1, None); }
(g1, i.get())
}
pub fn get3<'a, G1: Get<'a>, G2: Get<'a>, G3: Get<'a>>(&'a self) -> (Option<G1>, Option<G2>, Option<G3>) {
let mut i = Iter::new(&self);
let g1 = i.get();
if !i.next() { return (g1, None, None) }
let g2 = i.get();
if !i.next() { return (g1, g2, None) }
(g1, g2, i.get())
}
pub fn get4<'a, G1: Get<'a>, G2: Get<'a>, G3: Get<'a>, G4: Get<'a>>(&'a self) -> (Option<G1>, Option<G2>, Option<G3>, Option<G4>) {
let mut i = Iter::new(&self);
let g1 = i.get();
if !i.next() { return (g1, None, None, None) }
let g2 = i.get();
if !i.next() { return (g1, g2, None, None) }
let g3 = i.get();
if !i.next() { return (g1, g2, g3, None) }
(g1, g2, g3, i.get())
}
pub fn get5<'a, G1: Get<'a>, G2: Get<'a>, G3: Get<'a>, G4: Get<'a>, G5: Get<'a>>(&'a self) -> (Option<G1>, Option<G2>, Option<G3>, Option<G4>, Option<G5>) {
let mut i = Iter::new(&self);
let g1 = i.get();
if !i.next() { return (g1, None, None, None, None) }
let g2 = i.get();
if !i.next() { return (g1, g2, None, None, None) }
let g3 = i.get();
if !i.next() { return (g1, g2, g3, None, None) }
let g4 = i.get();
if !i.next() { return (g1, g2, g3, g4, None) }
(g1, g2, g3, g4, i.get())
}
pub fn read1<'a, G1: Arg + Get<'a>>(&'a self) -> Result<G1, TypeMismatchError> {
let mut i = Iter::new(&self);
i.read()
}
pub fn read2<'a, G1: Arg + Get<'a>, G2: Arg + Get<'a>>(&'a self) -> Result<(G1, G2), TypeMismatchError> {
let mut i = Iter::new(&self);
Ok((i.read()?, i.read()?))
}
pub fn read3<'a, G1: Arg + Get<'a>, G2: Arg + Get<'a>, G3: Arg + Get<'a>>(&'a self) ->
Result<(G1, G2, G3), TypeMismatchError> {
let mut i = Iter::new(&self);
Ok((i.read()?, i.read()?, i.read()?))
}
pub fn read4<'a, G1: Arg + Get<'a>, G2: Arg + Get<'a>, G3: Arg + Get<'a>, G4: Arg + Get<'a>>(&'a self) ->
Result<(G1, G2, G3, G4), TypeMismatchError> {
let mut i = Iter::new(&self);
Ok((i.read()?, i.read()?, i.read()?, i.read()?))
}
pub fn read5<'a, G1: Arg + Get<'a>, G2: Arg + Get<'a>, G3: Arg + Get<'a>, G4: Arg + Get<'a>, G5: Arg + Get<'a>>(&'a self) ->
Result<(G1, G2, G3, G4, G5), TypeMismatchError> {
let mut i = Iter::new(&self);
Ok((i.read()?, i.read()?, i.read()?, i.read()?, i.read()?))
}
pub fn read_all<R: ReadAll>(&self) -> Result<R, Error> {
self.set_error_from_msg()?;
Ok(R::read(&mut self.iter_init())?)
}
pub fn iter_init(&self) -> Iter { Iter::new(&self) }
pub fn msg_type(&self) -> MessageType {
match unsafe { ffi::dbus_message_get_type(self.msg) } {
1 => MessageType::MethodCall,
2 => MessageType::MethodReturn,
3 => MessageType::Error,
4 => MessageType::Signal,
x => panic!("Invalid message type {}", x),
}
}
fn msg_internal_str<'a>(&'a self, c: *const libc::c_char) -> Option<&'a str> {
if c.is_null() { return None };
let cc = unsafe { CStr::from_ptr(c) };
std::str::from_utf8(cc.to_bytes_with_nul()).ok()
}
pub fn sender(&self) -> Option<BusName> {
self.msg_internal_str(unsafe { ffi::dbus_message_get_sender(self.msg) })
.map(|s| unsafe { BusName::from_slice_unchecked(s) })
}
pub fn path(&self) -> Option<Path> {
self.msg_internal_str(unsafe { ffi::dbus_message_get_path(self.msg) })
.map(|s| unsafe { Path::from_slice_unchecked(s) })
}
pub fn destination(&self) -> Option<BusName> {
self.msg_internal_str(unsafe { ffi::dbus_message_get_destination(self.msg) })
.map(|s| unsafe { BusName::from_slice_unchecked(s) })
}
pub fn set_destination(&mut self, dest: Option<BusName>) {
let c_dest = dest.as_ref().map(|d| d.as_cstr().as_ptr()).unwrap_or(ptr::null());
assert!(unsafe { ffi::dbus_message_set_destination(self.msg, c_dest) } != 0);
}
pub fn interface(&self) -> Option<Interface> {
self.msg_internal_str(unsafe { ffi::dbus_message_get_interface(self.msg) })
.map(|s| unsafe { Interface::from_slice_unchecked(s) })
}
pub fn member(&self) -> Option<Member> {
self.msg_internal_str(unsafe { ffi::dbus_message_get_member(self.msg) })
.map(|s| unsafe { Member::from_slice_unchecked(s) })
}
pub fn as_result(&mut self) -> Result<&mut Message, Error> {
self.set_error_from_msg().map(|_| self)
}
pub (crate) fn set_error_from_msg(&self) -> Result<(), Error> {
let mut e = Error::empty();
if unsafe { ffi::dbus_set_error_from_message(e.get_mut(), self.msg) } != 0 { Err(e) }
else { Ok(()) }
}
pub (crate) fn ptr(&self) -> *mut ffi::DBusMessage { self.msg }
pub (crate) fn from_ptr(ptr: *mut ffi::DBusMessage, add_ref: bool) -> Message {
if add_ref {
unsafe { ffi::dbus_message_ref(ptr) };
}
Message { msg: ptr }
}
pub fn set_serial(&mut self, val: u32) {
unsafe { ffi::dbus_message_set_serial(self.msg, val) };
}
pub fn marshal<E, F: FnMut(&[u8]) -> Result<(), E>>(&self, mut f: F) -> Result<(), E> {
let mut len = 0;
let mut data = ptr::null_mut();
if unsafe { ffi::dbus_message_marshal(self.msg, &mut data, &mut len) } == 0 {
panic!("out of memory");
}
let s = unsafe { std::slice::from_raw_parts(data as *mut u8 as *const u8, len as usize) };
let r = f(s);
unsafe { ffi::dbus_free(data as *mut _) };
r
}
pub fn demarshal(data: &[u8]) -> Result<Self, Error> {
let mut e = Error::empty();
let p = unsafe { ffi::dbus_message_demarshal(data.as_ptr() as *const _, data.len() as _, e.get_mut()) };
if p == ptr::null_mut() {
Err(e)
} else {
Ok(Self::from_ptr(p, false))
}
}
pub fn demarshal_bytes_needed(data: &[u8]) -> Result<usize, ()> {
const MIN_HEADER: usize = 16;
if data.len() < MIN_HEADER { return Ok(MIN_HEADER); }
let x = unsafe { ffi::dbus_message_demarshal_bytes_needed(data.as_ptr() as *const _, data.len() as _) };
if x < MIN_HEADER as _ { Err(()) } else { Ok(x as usize) }
}
}
impl Drop for Message {
fn drop(&mut self) {
unsafe {
ffi::dbus_message_unref(self.msg);
}
}
}
impl fmt::Debug for Message {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
let mut x = f.debug_struct("Message");
x.field("Type", &self.msg_type());
if let Some(ref path) = self.path() { x.field("Path", &&**path); }
if let Some(ref iface) = self.interface() { x.field("Interface", &&**iface); }
if let Some(ref member) = self.member() { x.field("Member", &&**member); }
if let Some(ref sender) = self.sender() { x.field("Sender", &&**sender); }
if let Some(ref dest) = self.destination() { x.field("Destination", &&**dest); }
if let Some(ref serial) = self.get_serial() { x.field("Serial", serial); }
if let Some(ref rs) = self.get_reply_serial() { x.field("ReplySerial", rs); }
let mut args = vec!();
let mut iter = self.iter_init();
while let Some(a) = iter.get_refarg() {
args.push(a);
iter.next();
}
let args2: &[_] = &args;
x.field("Args", &args2);
x.finish()
}
}
#[cfg(test)]
mod test {
use crate::{Message};
use crate::strings::BusName;
#[test]
fn set_valid_destination() {
let mut m = Message::new_method_call("org.test.rust", "/", "org.test.rust", "Test").unwrap();
let d = Some(BusName::new(":1.14").unwrap());
m.set_destination(d);
assert!(!m.get_no_reply());
m.set_no_reply(true);
assert!(m.get_no_reply());
}
#[test]
fn marshal() {
let mut m = Message::new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "Hello").unwrap();
m.set_serial(1);
let r = m.marshal(|d| {
let m2 = Message::demarshal(d).unwrap();
assert_eq!(&*m2.path().unwrap(), "/org/freedesktop/DBus");
Err(45)
});
assert_eq!(45, r.unwrap_err());
}
}