#dbus #binding #basic #connection #renamed #bus

已删除 dbus-rs

请勿使用 - 已更名为dbus!

5个版本

使用旧的Rust 2015

0.0.5 2015年2月14日
0.0.4 2015年2月10日
0.0.3 2015年1月14日
0.0.2 2014年12月20日
0.0.1 2014年12月5日

#61 in #renamed

28 每月下载量
用于 systemd-dbus

Apache-2.0/MIT

67KB
1.5K SLoC

为 rust 提供的 DBus 绑定。

当前状态:WIP,但基本功能应该已经启用并工作。

示例

客户端

此示例打开到会话总线的连接,并请求当前所有名称的列表。

let c = Connection::get_private(BusType::Session).unwrap();
let m = Message::new_method_call("org.freedesktop.DBus", "/", "org.freedesktop.DBus", "ListNames").unwrap();
let mut r = c.send_with_reply_and_block(m, 2000).unwrap();
let reply = r.get_items();
println!("{}", reply);

您可以通过运行类似示例来尝试

cargo run --example client

服务器

此示例捕获 com.example.test 总线名称,并监听 /hello 路径上的方法调用。

let c = Connection::get_private(BusType::Session).unwrap();
c.register_name("com.example.test", NameFlag::ReplaceExisting as u32).unwrap();
c.register_object_path("/hello").unwrap();
for n in c.iter(1000) {
    match n {
        ConnectionItem::MethodCall(mut m) => /* Handle incoming method call */,
        _ => {},
    }
}

您可以通过运行类似示例来尝试

cargo run --example server

属性

此示例获取 Policykit 后端的当前版本。

let c = Connection::get_private(BusType::System).unwrap();
let p = Props::new(&c, "org.freedesktop.PolicyKit1", "/org/freedesktop/PolicyKit1/Authority",
    "org.freedesktop.PolicyKit1.Authority", 10000);
let v = p.get("BackendVersion").unwrap();

您可以通过运行此示例来尝试

cargo run --example properties

有关扩展示例,其中还使用了非中断错误处理,请参阅

examples/rtkit.rs

许可证

Apache / MIT 双许可。

无运行时依赖