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
use std::{convert::TryInto, ops::Deref};
use static_assertions::assert_impl_all;
use zvariant::ObjectPath;
use crate::{
utils::block_on, Error, Interface, InterfaceDeref, InterfaceDerefMut, Result, SignalContext,
};
/// Wrapper over an interface, along with its corresponding `SignalContext`
/// instance. A reference to the underlying interface may be obtained via
/// [`InterfaceRef::get`] and [`InterfaceRef::get_mut`].
pub struct InterfaceRef<I> {
azync: crate::InterfaceRef<I>,
}
impl<I> InterfaceRef<I>
where
I: 'static,
{
/// Get a reference to the underlying interface.
pub fn get(&self) -> InterfaceDeref<'_, I> {
block_on(self.azync.get())
}
/// Get a reference to the underlying interface.
///
/// **WARNINGS:** Since the `ObjectServer` will not be able to access the interface in question
/// until the return value of this method is dropped, it is highly recommended that the scope
/// of the interface returned is restricted.
///
/// # Errors
///
/// If the interface at this instance's path is not valid, `Error::InterfaceNotFound` error is
/// returned.
///
/// # Examples
///
/// ```no_run
/// # use std::error::Error;
/// # use async_io::block_on;
/// # use zbus::{blocking::Connection, dbus_interface};
///
/// struct MyIface(u32);
///
/// #[dbus_interface(name = "org.myiface.MyIface")]
/// impl MyIface {
/// #[dbus_interface(property)]
/// fn count(&self) -> u32 {
/// self.0
/// }
/// }
/// // Setup connection and object_server etc here and then in another part of the code:
/// #
/// # let connection = Connection::session()?;
/// #
/// # let path = "/org/zbus/path";
/// # connection.object_server().at(path, MyIface(22))?;
/// let object_server = connection.object_server();
/// let iface_ref = object_server.interface::<_, MyIface>(path)?;
/// let mut iface = iface_ref.get_mut();
/// iface.0 = 42;
/// block_on(iface.count_changed(iface_ref.signal_context()))?;
/// #
/// # Ok::<_, Box<dyn Error + Send + Sync>>(())
/// ```
pub fn get_mut(&self) -> InterfaceDerefMut<'_, I> {
block_on(self.azync.get_mut())
}
pub fn signal_context(&self) -> &SignalContext<'static> {
self.azync.signal_context()
}
}
/// A blocking wrapper of [`crate::ObjectServer`].
///
/// # Example
///
/// This example exposes the `org.myiface.Example.Quit` method on the `/org/zbus/path`
/// path.
///
/// ```no_run
/// # use std::error::Error;
/// use zbus::{blocking::Connection, dbus_interface};
/// use event_listener::Event;
///
/// struct Example {
/// // Interfaces are owned by the ObjectServer. They can have
/// // `&mut self` methods.
/// quit_event: Event,
/// }
///
/// impl Example {
/// fn new(quit_event: Event) -> Self {
/// Self { quit_event }
/// }
/// }
///
/// #[dbus_interface(name = "org.myiface.Example")]
/// impl Example {
/// // This will be the "Quit" D-Bus method.
/// fn quit(&mut self) {
/// self.quit_event.notify(1);
/// }
///
/// // See `dbus_interface` documentation to learn
/// // how to expose properties & signals as well.
/// }
///
/// let connection = Connection::session()?;
///
/// let quit_event = Event::new();
/// let quit_listener = quit_event.listen();
/// let interface = Example::new(quit_event);
/// connection
/// .object_server()
/// .at("/org/zbus/path", interface)?;
///
/// quit_listener.wait();
/// # Ok::<_, Box<dyn Error + Send + Sync>>(())
/// ```
#[derive(Debug)]
pub struct ObjectServer {
azync: crate::ObjectServer,
}
assert_impl_all!(ObjectServer: Send, Sync, Unpin);
impl ObjectServer {
/// Creates a new D-Bus `ObjectServer`.
pub(crate) fn new(conn: &crate::Connection) -> Self {
Self {
azync: crate::ObjectServer::new(conn),
}
}
/// Register a D-Bus [`Interface`] at a given path. (see the example above)
///
/// Typically you'd want your interfaces to be registered immediately after the associated
/// connection is established and therefore use [`zbus::blocking::ConnectionBuilder::serve_at`]
/// instead. However, there are situations where you'd need to register interfaces dynamically
/// and that's where this method becomes useful.
///
/// If the interface already exists at this path, returns false.
///
/// [`Interface`]: trait.Interface.html
pub fn at<'p, P, I>(&self, path: P, iface: I) -> Result<bool>
where
I: Interface,
P: TryInto<ObjectPath<'p>>,
P::Error: Into<Error>,
{
block_on(self.azync.at(path, iface))
}
/// Unregister a D-Bus [`Interface`] at a given path.
///
/// If there are no more interfaces left at that path, destroys the object as well.
/// Returns whether the object was destroyed.
///
/// [`Interface`]: trait.Interface.html
pub fn remove<'p, I, P>(&self, path: P) -> Result<bool>
where
I: Interface,
P: TryInto<ObjectPath<'p>>,
P::Error: Into<Error>,
{
block_on(self.azync.remove::<I, P>(path))
}
/// Get the interface at the given path.
///
/// # Errors
///
/// If the interface is not registered at the given path, `Error::InterfaceNotFound` error is
/// returned.
///
/// # Examples
///
/// The typical use of this is to emit signals outside of a dispatched handler:
///
/// ```no_run
/// # use std::error::Error;
/// # use zbus::block_on;
/// # use zbus::{
/// # SignalContext,
/// # blocking::Connection,
/// # dbus_interface,
/// # };
/// #
/// struct MyIface;
/// #[dbus_interface(name = "org.myiface.MyIface")]
/// impl MyIface {
/// #[dbus_interface(signal)]
/// async fn emit_signal(ctxt: &SignalContext<'_>) -> zbus::Result<()>;
/// }
///
/// # let connection = Connection::session()?;
/// #
/// # let path = "/org/zbus/path";
/// # connection.object_server().at(path, MyIface)?;
/// let iface_ref = connection
/// .object_server()
/// .interface::<_, MyIface>(path)?;
/// block_on(MyIface::emit_signal(iface_ref.signal_context()))?;
/// #
/// #
/// # Ok::<_, Box<dyn Error + Send + Sync>>(())
/// ```
pub fn interface<'p, P, I>(&self, path: P) -> Result<InterfaceRef<I>>
where
I: Interface,
P: TryInto<ObjectPath<'p>>,
P::Error: Into<Error>,
{
Ok(InterfaceRef {
azync: block_on(self.azync.interface(path))?,
})
}
/// Get a reference to the underlying async ObjectServer.
pub fn inner(&self) -> &crate::ObjectServer {
&self.azync
}
/// Get the underlying async ObjectServer, consuming `self`.
pub fn into_inner(self) -> crate::ObjectServer {
self.azync
}
}
impl Deref for ObjectServer {
type Target = crate::ObjectServer;
fn deref(&self) -> &Self::Target {
self.inner()
}
}
impl From<crate::ObjectServer> for ObjectServer {
fn from(azync: crate::ObjectServer) -> Self {
Self { azync }
}
}