#dbus #ipc #zbus #api-bindings #type-safety

zbus-lockstep

Keep types in lockstep with DBus XML definitions

12 unstable releases (3 breaking)

0.4.4 Mar 18, 2024
0.4.3 Mar 18, 2024
0.4.0 Feb 19, 2024
0.3.1 Oct 2, 2023
0.1.0 Aug 8, 2023

#651 in Filesystem

Download history 175/week @ 2024-02-18 23/week @ 2024-02-25 254/week @ 2024-03-03 127/week @ 2024-03-10 332/week @ 2024-03-17 2/week @ 2024-03-24 48/week @ 2024-03-31 10/week @ 2024-04-07 111/week @ 2024-04-14

190 downloads per month
Used in zbus-lockstep-macros

MIT license

51KB
708 lines

zbus-lockstep

CI Maintenance crates-io api-docs

zbus-lockstep helps keep type definitions in lockstep with DBus XML descriptions, using zbus-xml.

It offers means to match your type's signature - <T as zvariant::Type>::signature() - with a corresponding signature retrieved from a DBus XML file.

This way zbus-lockstep prevents definitions from drifting apart.

Motivation

In the context of IPC over DBus - especially when there are multiple implementations of servers and/or clients - it is necessary for each implementation to send what others expect and that expectations are in accordance with what is sent over the bus.

The XML protocol-descriptions may act as a shared frame of reference or "single source of all truth" for all implementers. Having a single point of reference helps all implementers meet expectations on protocol conformance.

Keeping the types you send over DBus in lockstep with currently valid protocol-descriptions will reduce chances of miscommunication or failure to communicate.

Usage

Add zbus-lockstep to Cargo.toml's dev-dependencies:

[dev-dependencies]
zbus-lockstep = "0.4.4"

Consider the followwing XML description, an interface with a single signal.

<node>
  <interface name="org.example.Node">

    <signal name="RemoveNode">
      <arg name="nodeRemoved" type="(so)"/>
    </signal>

  </interface>
</node>

The type in our implementation might look like this:

#[derive(Type)]
struct Node {
    name: String,
    path: OwnedObjectPath,
}

The derive macro in this example implements the zvariant::Type. This means we can now call <Node as Type::signature(), which will return a zvariant::Signature of the type.

The test below shows how zbus-lockstep may be used given what we know about the type.

    use zbus_lockstep;

    #[test]
    fn test_get_signal_body_type_remove_node() {
        let xml = PathBuf::from("../xml/test_definition_file.xml");
        let iface = "org.example.Node";
        let member = "RemoveNode";

        let signature = get_signal_body_type(xml, iface, member, None).unwrap();
        assert_eq!(signature, Signature::from_str_unchecked("(so)"));
    }

Alongside the functions, macros are provided which - if the path to the definitions is known - can retrieve signatures more succinctly.

#[test]
fn macro_retrieve_signal_body_remove_node() {
std::env::set_var("LOCKSTEP_XML_PATH", "../xml");
use zbus_lockstep;

let sig = signal_body_type_signature!("RemoveNode");
assert_eq!(sig, zvariant::Signature::from_str_unchecked("(so)"));       
}

Note

When using XML descriptions as point of reference, you should ensure that the descriptions in use are always the most recent available.

Automated synchronizing would be preferred.

Acknowledgement

This crate started out as a fork of Tait Hoyem's zbus-xml-match.

LICENSE

MIT

Dependencies

~4.5MB
~85K SLoC