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
//! # zbus-lockstep
//!
//! Is a collection of helpers for retrieving `DBus` type signatures from XML descriptions.
//! Useful for comparing these with your types' signatures to ensure that they are compatible.
//!
//! It offers functions that retrieve the signature of a method's argument type, of a method's
//! return type, pf a signal's body type or of a property's type from `DBus` XML.
//!
//! These functions require that you provide the file path to the XML file, the interface name,
//! and the interface member wherein the signature resides.
//!
//! Corresponding to each of these functions, macros are provided which do not
//! require you to exactly point out where the signature is found. These will just search
//! by interface member name.
//!
//! The macros assume that the file path to the XML files is either:
//!
//! - `xml` or `XML`, the default path for `DBus` XML files - or is set by the
//! - `LOCKSTEP_XML_PATH`, the env variable that overrides the default.
#![doc(html_root_url = "https://docs.rs/zbus-lockstep/0.4.4")]
#![allow(clippy::missing_errors_doc)]
mod error;
mod macros;
use std::io::Read;
pub use error::LockstepError;
pub use macros::resolve_xml_path;
pub use zbus_xml::{
self,
ArgDirection::{In, Out},
Node,
};
use zvariant::Signature;
use LockstepError::{ArgumentNotFound, InterfaceNotFound, MemberNotFound, PropertyNotFound};
type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
pub enum MsgType {
Method,
Signal,
Property,
}
/// Retrieve a signal's body type signature from `DBus` XML.
///
/// If you provide an argument name, then the signature of that argument is returned.
/// If you do not provide an argument name, then the signature of all arguments is returned.
///
/// # Examples
///
/// ```rust
/// # use std::fs::File;
/// # use std::io::{Seek, SeekFrom, Write};
/// # use tempfile::tempfile;
/// use zvariant::{Signature, Type, OwnedObjectPath};
/// use zbus_lockstep::get_signal_body_type;
///
/// let xml = r#"<?xml version="1.0" encoding="UTF-8"?>
/// <node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
/// <interface name="org.freedesktop.bolt1.Manager">
/// <signal name="DeviceAdded">
/// <arg name="device" type="o"/>
/// </signal>
/// </interface>
/// </node>
/// "#;
///
/// let mut xml_file: File = tempfile().unwrap();
/// xml_file.write_all(xml.as_bytes()).unwrap();
/// xml_file.seek(SeekFrom::Start(0)).unwrap();
///
/// #[derive(Debug, PartialEq, Type)]
/// struct DeviceEvent {
/// device: OwnedObjectPath,
/// }
///
/// let interface_name = "org.freedesktop.bolt1.Manager";
/// let member_name = "DeviceAdded";
///
/// let signature = get_signal_body_type(xml_file, interface_name, member_name, None).unwrap();
///
/// // Single `DBus` type codes, here 'o', are returned as a single character.
/// // Also, signal body types (often) omit the struct or tuple type parentheses.
///
/// assert_eq!(&signature, &DeviceEvent::signature());
/// ```
pub fn get_signal_body_type<'a>(
mut xml: impl Read,
interface_name: &str,
member_name: &str,
arg: Option<&str>,
) -> Result<Signature<'a>> {
let node = Node::from_reader(&mut xml)?;
let interfaces = node.interfaces();
let interface = interfaces
.iter()
.find(|iface| iface.name() == interface_name)
.ok_or(InterfaceNotFound(interface_name.to_owned()))?;
let signals = interface.signals();
let signal = signals
.iter()
.find(|signal| signal.name() == member_name)
.ok_or(MemberNotFound(member_name.to_owned()))?;
let signature = {
if let Some(arg_name) = arg {
let args = signal.args();
let arg = args
.iter()
.find(|arg| arg.name() == Some(arg_name))
.ok_or(ArgumentNotFound(arg_name.to_owned()))?;
arg.ty().to_string()
} else {
signal
.args()
.iter()
.map(|arg| arg.ty().to_string())
.collect::<String>()
}
};
Ok(Signature::from_string_unchecked(signature))
}
/// Retrieve the signature of a property's type from XML.
///
/// # Examples
///
/// ```rust
/// use std::fs::File;
/// use std::io::{Seek, SeekFrom, Write};
/// use tempfile::tempfile;
/// use zvariant::Type;
/// use zbus_lockstep::get_property_type;
///
/// #[derive(Debug, PartialEq, Type)]
/// struct InUse(bool);
///
/// let xml = String::from(r#"
/// <node>
/// <interface name="org.freedesktop.GeoClue2.Manager">
/// <property type="b" name="InUse" access="read"/>
/// </interface>
/// </node>
/// "#);
///
/// let mut xml_file: File = tempfile().unwrap();
/// xml_file.write_all(xml.as_bytes()).unwrap();
/// xml_file.seek(SeekFrom::Start(0)).unwrap();
///
/// let interface_name = "org.freedesktop.GeoClue2.Manager";
/// let property_name = "InUse";
///
/// let signature = get_property_type(xml_file, interface_name, property_name).unwrap();
/// assert_eq!(signature, InUse::signature());
/// ```
pub fn get_property_type<'a>(
mut xml: impl Read,
interface_name: &str,
property_name: &str,
) -> Result<Signature<'a>> {
let node = Node::from_reader(&mut xml)?;
let interfaces = node.interfaces();
let interface = interfaces
.iter()
.find(|iface| iface.name() == interface_name)
.ok_or(InterfaceNotFound(interface_name.to_string()))?;
let properties = interface.properties();
let property = properties
.iter()
.find(|property| property.name() == property_name)
.ok_or(PropertyNotFound(property_name.to_owned()))?;
let signature = property.ty().to_string();
Ok(Signature::from_string_unchecked(signature))
}
/// Retrieve the signature of a method's return type from XML.
///
/// If you provide an argument name, then the signature of that argument is returned.
/// If you do not provide an argument name, then the signature of all arguments is returned.
///
///
/// # Examples
///
/// ```rust
/// use std::fs::File;
/// use std::io::{Seek, SeekFrom, Write};
/// use tempfile::tempfile;
/// use zvariant::Type;
/// use zbus_lockstep::get_method_return_type;
///
/// #[derive(Debug, PartialEq, Type)]
/// #[repr(u32)]
/// enum Role {
/// Invalid,
/// TitleBar,
/// MenuBar,
/// ScrollBar,
/// }
///
/// let xml = String::from(r#"
/// <node>
/// <interface name="org.a11y.atspi.Accessible">
/// <method name="GetRole">
/// <arg name="role" type="u" direction="out"/>
/// </method>
/// </interface>
/// </node>
/// "#);
///
/// let mut xml_file: File = tempfile().unwrap();
/// xml_file.write_all(xml.as_bytes()).unwrap();
/// xml_file.seek(SeekFrom::Start(0)).unwrap();
///
/// let interface_name = "org.a11y.atspi.Accessible";
/// let member_name = "GetRole";
///
/// let signature = get_method_return_type(xml_file, interface_name, member_name, None).unwrap();
/// assert_eq!(signature, Role::signature());
/// ```
pub fn get_method_return_type<'a>(
mut xml: impl Read,
interface_name: &str,
member_name: &str,
arg_name: Option<&str>,
) -> Result<Signature<'a>> {
let node = Node::from_reader(&mut xml)?;
let interfaces = node.interfaces();
let interface = interfaces
.iter()
.find(|iface| iface.name() == interface_name)
.ok_or(InterfaceNotFound(interface_name.to_string()))?;
let methods = interface.methods();
let method = methods
.iter()
.find(|method| method.name() == member_name)
.ok_or(MemberNotFound(member_name.to_string()))?;
let args = method.args();
let signature = {
if arg_name.is_some() {
args.iter()
.find(|arg| arg.name() == arg_name)
.ok_or(ArgumentNotFound(
arg_name.expect("arg_name guarded by 'is_some'").to_string(),
))?
.ty()
.to_string()
} else {
args.iter()
.filter(|arg| arg.direction() == Some(Out))
.map(|arg| arg.ty().to_string())
.collect::<String>()
}
};
Ok(Signature::from_string_unchecked(signature))
}
/// Retrieve the signature of a method's argument type from XML.
///
/// Useful when one or more arguments, used to call a method, outline a useful type.
///
/// If you provide an argument name, then the signature of that argument is returned.
/// If you do not provide an argument name, then the signature of all arguments to the call is
/// returned.
///
/// # Examples
///
/// ```rust
/// use std::fs::File;
/// use std::collections::HashMap;
/// use std::io::{Seek, SeekFrom, Write};
/// use tempfile::tempfile;
/// use zvariant::{Type, Value};
/// use zbus_lockstep::get_method_args_type;
///
/// let xml = r#"<?xml version="1.0" encoding="UTF-8"?>
/// <node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
/// <interface name="org.freedesktop.Notifications">
/// <method name="Notify">
/// <arg type="s" name="app_name" direction="in"/>
/// <arg type="u" name="replaces_id" direction="in"/>
/// <arg type="s" name="app_icon" direction="in"/>
/// <arg type="s" name="summary" direction="in"/>
/// <arg type="s" name="body" direction="in"/>
/// <arg type="as" name="actions" direction="in"/>
/// <arg type="a{sv}" name="hints" direction="in"/>
/// <arg type="i" name="expire_timeout" direction="in"/>
/// <arg type="u" name="id" direction="out"/>
/// </method>
/// </interface>
/// </node>
/// "#;
///
/// #[derive(Debug, PartialEq, Type)]
/// struct Notification<'a> {
/// app_name: String,
/// replaces_id: u32,
/// app_icon: String,
/// summary: String,
/// body: String,
/// actions: Vec<String>,
/// hints: HashMap<String, Value<'a>>,
/// expire_timeout: i32,
/// }
///
/// let mut xml_file = tempfile().unwrap();
/// xml_file.write_all(xml.as_bytes()).unwrap();
/// xml_file.seek(SeekFrom::Start(0)).unwrap();
///
/// let interface_name = "org.freedesktop.Notifications";
/// let member_name = "Notify";
///
/// let signature = get_method_args_type(xml_file, interface_name, member_name, None).unwrap();
/// assert_eq!(&signature, &Notification::signature());
/// ```
pub fn get_method_args_type<'a>(
mut xml: impl Read,
interface_name: &str,
member_name: &str,
arg_name: Option<&str>,
) -> Result<Signature<'a>> {
let node = Node::from_reader(&mut xml)?;
let interfaces = node.interfaces();
let interface = interfaces
.iter()
.find(|iface| iface.name() == interface_name)
.ok_or(InterfaceNotFound(interface_name.to_owned()))?;
let methods = interface.methods();
let method = methods
.iter()
.find(|method| method.name() == member_name)
.ok_or(member_name.to_owned())?;
let args = method.args();
let signature = if arg_name.is_some() {
args.iter()
.find(|arg| arg.name() == arg_name)
.ok_or(ArgumentNotFound(
arg_name.expect("arg_name guarded by is_some").to_string(),
))?
.ty()
.to_string()
} else {
args.iter()
.filter(|arg| arg.direction() == Some(In))
.map(|arg| arg.ty().to_string())
.collect::<String>()
};
Ok(Signature::from_string_unchecked(signature))
}
#[cfg(test)]
mod test {
use std::io::{Seek, SeekFrom, Write};
use tempfile::tempfile;
use zvariant::{OwnedObjectPath, Type};
use crate::get_signal_body_type;
#[test]
fn test_get_signature_of_cache_add_accessible() {
#[derive(Debug, PartialEq, Type)]
struct Accessible {
name: String,
path: OwnedObjectPath,
}
#[derive(Debug, PartialEq, Type)]
struct CacheItem {
obj: Accessible,
application: Accessible,
parent: Accessible,
index_in_parent: i32,
child_count: i32,
interfaces: Vec<String>,
name: String,
role: u32,
description: String,
state_set: Vec<u32>,
}
let xml = r#"<?xml version="1.0" encoding="UTF-8"?>
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<interface name="org.a11y.atspi.Cache">
<signal name="AddAccessible">
<arg name="nodeAdded" type="((so)(so)(so)iiassusau)"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiAccessibleCacheItem"/>
</signal>
</interface>
</node>
"#;
let mut xml_file = tempfile().unwrap();
xml_file.write_all(xml.as_bytes()).unwrap();
xml_file.seek(SeekFrom::Start(0)).unwrap();
let interface_name = "org.a11y.atspi.Cache";
let member_name = "AddAccessible";
let signature = get_signal_body_type(xml_file, interface_name, member_name, None).unwrap();
assert_eq!(signature, CacheItem::signature());
}
}