A pure Rust written asynchronous DBus library.
Add this to your Cargo.toml
:
toml
[dependencies]
dbus-async = "~2.2.0"
You have to specify, which Tokio Runtime should be used.
* For multi-threaded add this to your Cargo.toml
:
rust
[dependencies.tokio]
version = " ~1.9.0"
features = ["rt-multi-thread"]
* For single-threaded add this to your Cargo.toml
:
rust
[dependencies.tokio]
version = "~1.9.0"
features = ["rt"]
```rust use dbusasync::DBus; use dbusmessage_parser::Message; use std::convert::TryInto;
async fn main() { let (dbus, serverhandle) = DBus::session(true) .await .expect("failed to get the DBus object");
// Create a MethodCall.
let msg = Message::method_call(
"org.freedesktop.DBus".try_into().unwrap(),
"/org/freedesktop/DBus".try_into().unwrap(),
"org.freedesktop.DBus.Peer".try_into().unwrap(),
"Ping".try_into().unwrap(),
);
// Send the message and get the return message.
let return_msg = dbus.call(msg).await;
// Print the return message.
println!("{:?}", return_msg);
}
``
If you want to implement a DBus service and do not implement the
dbus_async::Handlertrait
manually then use
dbus-async-derive` crate.
EXTERNAL
](https://dbus.freedesktop.org/doc/dbus-specification.html#auth-mechanisms-external)ANONYMOUS
](https://dbus.freedesktop.org/doc/dbus-specification.html#auth-mechanisms-anonymous)DBUS_COOKIE_SHA1
](https://dbus.freedesktop.org/doc/dbus-specification.html#auth-mechanisms-sha)unix
](https://dbus.freedesktop.org/doc/dbus-specification.html#transports-unix-domain-sockets-addresses)path
abstract
unixexec
](https://dbus.freedesktop.org/doc/dbus-specification.html#transports-exec)
(argv0 is not supported)tcp
](https://dbus.freedesktop.org/doc/dbus-specification.html#transports-tcp-sockets)nonce-tcp
](https://dbus.freedesktop.org/doc/dbus-specification.html#transports-nonce-tcp-sockets)launchd
](https://dbus.freedesktop.org/doc/dbus-specification.html#transports-launchd)autolaunch
](https://dbus.freedesktop.org/doc/dbus-specification.html#meta-transports-autolaunch)org.freedesktop.DBus.Introspectable
](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-introspectable)org.freedesktop.DBus.Peer
](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-peer)org.freedesktop.DBus.ObjectManager
](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager)