Struct gio::DBusProxy [−][src]
pub struct DBusProxy(_);
Expand description
DBusProxy
is a base class used for proxies to access a D-Bus
interface on a remote object. A DBusProxy
can be constructed for
both well-known and unique names.
By default, DBusProxy
will cache all properties (and listen to
changes) of the remote object, and proxy all signals that get
emitted. This behaviour can be changed by passing suitable
DBusProxyFlags
when the proxy is created. If the proxy is for a
well-known name, the property cache is flushed when the name owner
vanishes and reloaded when a name owner appears.
The unique name owner of the proxy’s name is tracked and can be read from
property::DBusProxy::g-name-owner
. Connect to the signal::glib::Object::notify
signal to
get notified of changes. Additionally, only signals and property
changes emitted from the current name owner are considered and
calls are always sent to the current name owner. This avoids a
number of race conditions when the name is lost by one owner and
claimed by another. However, if no name owner currently exists,
then calls will be sent to the well-known name which may result in
the message bus launching an owner (unless
DBusProxyFlags::DO_NOT_AUTO_START
is set).
The generic signal::DBusProxy::g-properties-changed
and
signal::DBusProxy::g-signal
signals are not very convenient to work with.
Therefore, the recommended way of working with proxies is to subclass
DBusProxy
, and have more natural properties and signals in your derived
class. This [example][gdbus-example-gdbus-codegen] shows how this can
easily be done using the [gdbus-codegen][gdbus-codegen] tool.
A DBusProxy
instance can be used from multiple threads but note
that all signals (e.g. signal::DBusProxy::g-signal
, signal::DBusProxy::g-properties-changed
and signal::glib::Object::notify
) are emitted in the
[thread-default main context][g-main-context-push-thread-default]
of the thread where the instance was constructed.
An example using a proxy for a well-known name can be found in gdbus-example-watch-proxy.c
Implements
Implementations
pub fn for_bus_sync<P: IsA<Cancellable>>(
bus_type: BusType,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: &str,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>
) -> Result<DBusProxy, Error>
pub fn for_bus_sync<P: IsA<Cancellable>>(
bus_type: BusType,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: &str,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>
) -> Result<DBusProxy, Error>
Like new_sync()
but takes a BusType
instead of a DBusConnection
.
DBusProxy
is used in this [example][gdbus-wellknown-proxy].
bus_type
A BusType
.
flags
Flags used when constructing the proxy.
info
A DBusInterfaceInfo
specifying the minimal interface
that proxy
conforms to or None
.
name
A bus name (well-known or unique).
object_path
An object path.
interface_name
A D-Bus interface name.
cancellable
A Cancellable
or None
.
Returns
A DBusProxy
or None
if error is set.
Free with g_object_unref()
.
pub fn new_sync<P: IsA<Cancellable>>(
connection: &DBusConnection,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: Option<&str>,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>
) -> Result<DBusProxy, Error>
pub fn new_sync<P: IsA<Cancellable>>(
connection: &DBusConnection,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: Option<&str>,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>
) -> Result<DBusProxy, Error>
Creates a proxy for accessing interface_name
on the remote object
at object_path
owned by name
at connection
and synchronously
loads D-Bus properties unless the
DBusProxyFlags::DO_NOT_LOAD_PROPERTIES
flag is used.
If the DBusProxyFlags::DO_NOT_CONNECT_SIGNALS
flag is not set, also sets up
match rules for signals. Connect to the signal::DBusProxy::g-signal
signal
to handle signals from the remote object.
If both DBusProxyFlags::DO_NOT_LOAD_PROPERTIES
and
DBusProxyFlags::DO_NOT_CONNECT_SIGNALS
are set, this constructor is
guaranteed to return immediately without blocking.
If name
is a well-known name and the
DBusProxyFlags::DO_NOT_AUTO_START
and DBusProxyFlags::DO_NOT_AUTO_START_AT_CONSTRUCTION
flags aren’t set and no name owner currently exists, the message bus
will be requested to launch a name owner for the name.
This is a synchronous failable constructor. See new()
and g_dbus_proxy_new_finish()
for the asynchronous version.
DBusProxy
is used in this [example][gdbus-wellknown-proxy].
connection
flags
Flags used when constructing the proxy.
info
A DBusInterfaceInfo
specifying the minimal interface that proxy
conforms to or None
.
name
A bus name (well-known or unique) or None
if connection
is not a message bus connection.
object_path
An object path.
interface_name
A D-Bus interface name.
cancellable
A Cancellable
or None
.
Returns
A DBusProxy
or None
if error is set.
Free with g_object_unref()
.
pub fn new<P: IsA<Cancellable>, Q: FnOnce(Result<DBusProxy, Error>) + Send + 'static>(
connection: &DBusConnection,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: Option<&str>,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>,
callback: Q
)
pub fn new<P: IsA<Cancellable>, Q: FnOnce(Result<DBusProxy, Error>) + Send + 'static>(
connection: &DBusConnection,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: Option<&str>,
object_path: &str,
interface_name: &str,
cancellable: Option<&P>,
callback: Q
)
Creates a proxy for accessing interface_name
on the remote object
at object_path
owned by name
at connection
and asynchronously
loads D-Bus properties unless the
DBusProxyFlags::DO_NOT_LOAD_PROPERTIES
flag is used. Connect to
the signal::DBusProxy::g-properties-changed
signal to get notified about
property changes.
If the DBusProxyFlags::DO_NOT_CONNECT_SIGNALS
flag is not set, also sets up
match rules for signals. Connect to the signal::DBusProxy::g-signal
signal
to handle signals from the remote object.
If both DBusProxyFlags::DO_NOT_LOAD_PROPERTIES
and
DBusProxyFlags::DO_NOT_CONNECT_SIGNALS
are set, this constructor is
guaranteed to complete immediately without blocking.
If name
is a well-known name and the
DBusProxyFlags::DO_NOT_AUTO_START
and DBusProxyFlags::DO_NOT_AUTO_START_AT_CONSTRUCTION
flags aren’t set and no name owner currently exists, the message bus
will be requested to launch a name owner for the name.
This is a failable asynchronous constructor - when the proxy is
ready, callback
will be invoked and you can use
g_dbus_proxy_new_finish()
to get the result.
See new_sync()
and for a synchronous version of this constructor.
DBusProxy
is used in this [example][gdbus-wellknown-proxy].
connection
flags
Flags used when constructing the proxy.
info
A DBusInterfaceInfo
specifying the minimal interface that proxy
conforms to or None
.
name
A bus name (well-known or unique) or None
if connection
is not a message bus connection.
object_path
An object path.
interface_name
A D-Bus interface name.
cancellable
A Cancellable
or None
.
callback
Callback function to invoke when the proxy is ready.
pub fn new_future(
connection: &DBusConnection,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: Option<&str>,
object_path: &str,
interface_name: &str
) -> Pin<Box_<dyn Future<Output = Result<DBusProxy, Error>> + 'static>>
Like new()
but takes a BusType
instead of a DBusConnection
.
DBusProxy
is used in this [example][gdbus-wellknown-proxy].
bus_type
A BusType
.
flags
Flags used when constructing the proxy.
info
A DBusInterfaceInfo
specifying the minimal interface that proxy
conforms to or None
.
name
A bus name (well-known or unique).
object_path
An object path.
interface_name
A D-Bus interface name.
cancellable
A Cancellable
or None
.
callback
Callback function to invoke when the proxy is ready.
pub fn for_bus_future(
bus_type: BusType,
flags: DBusProxyFlags,
info: Option<&DBusInterfaceInfo>,
name: &str,
object_path: &str,
interface_name: &str
) -> Pin<Box_<dyn Future<Output = Result<DBusProxy, Error>> + 'static>>
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Upcasts an object to a superclass or interface T
. Read more
Upcasts an object to a reference of its superclass or interface T
. Read more
Tries to downcast to a subclass or interface implementor T
. Read more
Tries to downcast to a reference of its subclass or interface implementor T
. Read more
Tries to cast to an object of type T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while downcast
and upcast
will do many checks at compile-time already. Read more
Tries to cast to reference to an object of type T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while downcast
and upcast
will do many checks at compile-time already. Read more
Casts to T
unconditionally. Read more
Casts to &T
unconditionally. Read more
Returns true
if the object is an instance of (can be cast to) T
.
pub fn set_properties_from_value(
&self,
property_values: &[(&str, Value)]
) -> Result<(), BoolError>
pub fn set_property<'a, N, V>(
&self,
property_name: N,
value: V
) -> Result<(), BoolError> where
V: ToValue,
N: Into<&'a str>,
pub fn set_property_from_value<'a, N>(
&self,
property_name: N,
value: &Value
) -> Result<(), BoolError> where
N: Into<&'a str>,
Safety Read more
Safety Read more
Safety Read more
Safety Read more
pub fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec) + Send + Sync,
pub fn connect_notify_local<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec),
pub unsafe fn connect_notify_unsafe<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
pub fn has_property<'a, N>(&self, property_name: N, type_: Option<Type>) -> bool where
N: Into<&'a str>,
pub fn find_property<'a, N>(&self, property_name: N) -> Option<ParamSpec> where
N: Into<&'a str>,
pub fn connect<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
Same as connect
but takes a SignalId
instead of a signal name.
pub fn connect_local<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
Same as connect_local
but takes a SignalId
instead of a signal name.
pub unsafe fn connect_unsafe<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
Same as connect_unsafe
but takes a SignalId
instead of a signal name.
Emit signal by signal id.
Emit signal with details by signal id.
Emit signal by it’s name.
pub fn bind_property<'a, O, N, M>(
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
O: ObjectType,
N: Into<&'a str>,
M: Into<&'a str>,
Same as emit
but takes Value
for the arguments.
Same as emit_by_name
but takes Value
for the arguments.
Returns a SendValue
clone of self
.
impl<'a, T, C> FromValueOptional<'a> for T where
C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError>,
T: FromValue<'a, Checker = C>,