atspi

Crates.ioatspi
lib.rsatspi
version0.22.0
sourcesrc
created_at2022-10-03 17:37:19.344575
updated_at2024-05-24 18:27:36.592759
descriptionPure-Rust, zbus-based AT-SPI2 protocol implementation.
homepagehttps://github.com/odilia-app/atspi
repositoryhttps://github.com/odilia-app/atspi
max_upload_size
id679200
size64,705
Tait Hoyem (TTWNO)

documentation

README

AT-SPI for Rust

crates.io badge docs.rs badge CI badge Code coverage badge

Higher level, asynchronous, pure Rust AT-SPI2 protocol implementation using zbus.

Part of the Odilia screen reader project.

Design

  • Fully documented, with #[deny(missing_docs)]
  • Or at least, it will be by 1.0
  • Fully safe, with #[deny(unsafe_code)]
  • Fantastic code style with #[deny(clippy:all, clippy::pedantic, clippy::cargo)]

This crate makes use of the zbus crate for dbus communication. We use the asynchronous zbus API, so to use atspi, you will need to run an async executer like tokio or async-std. The async-io and tokio features are exposed and will be passed through to zbus.

D-Bus type validation

Atspi is used to send and receive data to and from applications. Sender and recipient need to agree on the shape of the data type for fruitful communication. Our best bet is to keep our types in sync with the protocol descriptions.

We employ zbus-lockstep to match types against those defined in the AT-SPI2 protocol descriptions.

Not all types can be validated (easily) with zbus_lockstep because types may not exist in the protocol descriptions, for example because they are deprecated (but still in use) or we have chosen a different representation.

A (partial) review of type validation may be found here

License

The atspi library is licensed as Apache 2.0 or MIT.

Commit count: 1465

cargo fmt