Trait gio::prelude::DBusProxyExt [−][src]
pub trait DBusProxyExt: 'static {
Show methods
fn call<P: IsA<Cancellable>, Q: FnOnce(Result<Variant, Error>) + Send + 'static>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
cancellable: Option<&P>,
callback: Q
);
fn call_future(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32
) -> Pin<Box_<dyn Future<Output = Result<Variant, Error>> + 'static>>;
fn call_sync<P: IsA<Cancellable>>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
cancellable: Option<&P>
) -> Result<Variant, Error>;
fn call_with_unix_fd_list<P: IsA<UnixFDList>, Q: IsA<Cancellable>, R: FnOnce(Result<(Variant, UnixFDList), Error>) + Send + 'static>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>,
callback: R
);
fn call_with_unix_fd_list_future<P: IsA<UnixFDList> + Clone + 'static>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>
) -> Pin<Box_<dyn Future<Output = Result<(Variant, UnixFDList), Error>> + 'static>>;
fn call_with_unix_fd_list_sync<P: IsA<UnixFDList>, Q: IsA<Cancellable>>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>
) -> Result<(Variant, UnixFDList), Error>;
fn cached_property(&self, property_name: &str) -> Option<Variant>;
fn cached_property_names(&self) -> Vec<GString>;
fn connection(&self) -> DBusConnection;
fn default_timeout(&self) -> i32;
fn flags(&self) -> DBusProxyFlags;
fn interface_info(&self) -> Option<DBusInterfaceInfo>;
fn interface_name(&self) -> GString;
fn name(&self) -> GString;
fn name_owner(&self) -> Option<GString>;
fn object_path(&self) -> GString;
fn set_cached_property(&self, property_name: &str, value: Option<&Variant>);
fn set_default_timeout(&self, timeout_msec: i32);
fn set_interface_info(&self, info: Option<&DBusInterfaceInfo>);
fn g_connection(&self) -> Option<DBusConnection>;
fn g_default_timeout(&self) -> i32;
fn set_g_default_timeout(&self, g_default_timeout: i32);
fn g_flags(&self) -> DBusProxyFlags;
fn g_interface_info(&self) -> Option<DBusInterfaceInfo>;
fn set_g_interface_info(&self, g_interface_info: Option<&DBusInterfaceInfo>);
fn g_interface_name(&self) -> Option<GString>;
fn g_name(&self) -> Option<GString>;
fn g_name_owner(&self) -> Option<GString>;
fn g_object_path(&self) -> Option<GString>;
fn connect_g_default_timeout_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_g_interface_info_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_g_name_owner_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Expand description
Required methods
Asynchronously invokes the method_name method on self.
If method_name contains any dots, then name is split into interface and
method name parts. This allows using self for invoking methods on
other interfaces.
If the DBusConnection associated with self is closed then
the operation will fail with IOErrorEnum::Closed. If
cancellable is canceled, the operation will fail with
IOErrorEnum::Cancelled. If parameters contains a value not
compatible with the D-Bus protocol, the operation fails with
IOErrorEnum::InvalidArgument.
If the parameters glib::Variant is floating, it is consumed. This allows
convenient ‘inline’ use of [glib::Variant::new()][crate::glib::Variant::new()], e.g.:
⚠️ The following code is in C ⚠️
g_dbus_proxy_call (proxy,
"TwoStrings",
g_variant_new ("(ss)",
"Thing One",
"Thing Two"),
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
(GAsyncReadyCallback) two_strings_done,
&data);
If self has an expected interface (see
property::DBusProxy::g-interface-info) and method_name is referenced by it,
then the return value is checked against the return type.
This is an asynchronous method. When the operation is finished,
callback will be invoked in the
[thread-default main context][g-main-context-push-thread-default]
of the thread you are calling this method from.
You can then call g_dbus_proxy_call_finish() to get the result of
the operation. See call_sync() for the synchronous
version of this method.
If callback is None then the D-Bus method call message will be sent with
the DBusMessageFlags::NO_REPLY_EXPECTED flag set.
method_name
Name of method to invoke.
parameters
A glib::Variant tuple with parameters for the signal or None if not passing parameters.
flags
Flags from the DBusCallFlags enumeration.
timeout_msec
The timeout in milliseconds (with G_MAXINT meaning
“infinite”) or -1 to use the proxy default timeout.
cancellable
A Cancellable or None.
callback
A GAsyncReadyCallback to call when the request is satisfied or None if you don’t
care about the result of the method invocation.
fn call_future(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32
) -> Pin<Box_<dyn Future<Output = Result<Variant, Error>> + 'static>>Synchronously invokes the method_name method on self.
If method_name contains any dots, then name is split into interface and
method name parts. This allows using self for invoking methods on
other interfaces.
If the DBusConnection associated with self is disconnected then
the operation will fail with IOErrorEnum::Closed. If
cancellable is canceled, the operation will fail with
IOErrorEnum::Cancelled. If parameters contains a value not
compatible with the D-Bus protocol, the operation fails with
IOErrorEnum::InvalidArgument.
If the parameters glib::Variant is floating, it is consumed. This allows
convenient ‘inline’ use of [glib::Variant::new()][crate::glib::Variant::new()], e.g.:
⚠️ The following code is in C ⚠️
g_dbus_proxy_call_sync (proxy,
"TwoStrings",
g_variant_new ("(ss)",
"Thing One",
"Thing Two"),
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
&error);
The calling thread is blocked until a reply is received. See
call() for the asynchronous version of this
method.
If self has an expected interface (see
property::DBusProxy::g-interface-info) and method_name is referenced by it,
then the return value is checked against the return type.
method_name
Name of method to invoke.
parameters
A glib::Variant tuple with parameters for the signal
or None if not passing parameters.
flags
Flags from the DBusCallFlags enumeration.
timeout_msec
The timeout in milliseconds (with G_MAXINT meaning
“infinite”) or -1 to use the proxy default timeout.
cancellable
A Cancellable or None.
Returns
None if error is set. Otherwise a glib::Variant tuple with
return values. Free with g_variant_unref().
fn call_with_unix_fd_list<P: IsA<UnixFDList>, Q: IsA<Cancellable>, R: FnOnce(Result<(Variant, UnixFDList), Error>) + Send + 'static>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>,
callback: R
)
fn call_with_unix_fd_list<P: IsA<UnixFDList>, Q: IsA<Cancellable>, R: FnOnce(Result<(Variant, UnixFDList), Error>) + Send + 'static>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>,
callback: R
)Like call() but also takes a UnixFDList object.
This method is only available on UNIX.
method_name
Name of method to invoke.
parameters
A glib::Variant tuple with parameters for the signal or None if not passing parameters.
flags
Flags from the DBusCallFlags enumeration.
timeout_msec
The timeout in milliseconds (with G_MAXINT meaning
“infinite”) or -1 to use the proxy default timeout.
fd_list
A UnixFDList or None.
cancellable
A Cancellable or None.
callback
A GAsyncReadyCallback to call when the request is satisfied or None if you don’t
care about the result of the method invocation.
fn call_with_unix_fd_list_sync<P: IsA<UnixFDList>, Q: IsA<Cancellable>>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>
) -> Result<(Variant, UnixFDList), Error>
fn call_with_unix_fd_list_sync<P: IsA<UnixFDList>, Q: IsA<Cancellable>>(
&self,
method_name: &str,
parameters: Option<&Variant>,
flags: DBusCallFlags,
timeout_msec: i32,
fd_list: Option<&P>,
cancellable: Option<&Q>
) -> Result<(Variant, UnixFDList), Error>Like call_sync() but also takes and returns UnixFDList objects.
This method is only available on UNIX.
method_name
Name of method to invoke.
parameters
A glib::Variant tuple with parameters for the signal
or None if not passing parameters.
flags
Flags from the DBusCallFlags enumeration.
timeout_msec
The timeout in milliseconds (with G_MAXINT meaning
“infinite”) or -1 to use the proxy default timeout.
fd_list
A UnixFDList or None.
cancellable
A Cancellable or None.
Returns
None if error is set. Otherwise a glib::Variant tuple with
return values. Free with g_variant_unref().
out_fd_list
Return location for a UnixFDList or None.
fn cached_property(&self, property_name: &str) -> Option<Variant>
fn cached_property(&self, property_name: &str) -> Option<Variant>Looks up the value for a property from the cache. This call does no blocking IO.
If self has an expected interface (see
property::DBusProxy::g-interface-info) and property_name is referenced by
it, then value is checked against the type of the property.
property_name
Property name.
Returns
A reference to the glib::Variant instance
that holds the value for property_name or None if the value is not in
the cache. The returned reference must be freed with g_variant_unref().
fn cached_property_names(&self) -> Vec<GString>
fn cached_property_names(&self) -> Vec<GString>fn connection(&self) -> DBusConnection
fn connection(&self) -> DBusConnectionfn default_timeout(&self) -> i32
fn default_timeout(&self) -> i32Gets the timeout to use if -1 (specifying default timeout) is
passed as timeout_msec in the call() and
call_sync() functions.
See the property::DBusProxy::g-default-timeout property for more details.
Returns
Timeout to use for self.
fn flags(&self) -> DBusProxyFlags
fn flags(&self) -> DBusProxyFlagsfn interface_info(&self) -> Option<DBusInterfaceInfo>
fn interface_info(&self) -> Option<DBusInterfaceInfo>Returns the DBusInterfaceInfo, if any, specifying the interface
that self conforms to. See the property::DBusProxy::g-interface-info
property for more details.
Returns
A DBusInterfaceInfo or None.
Do not unref the returned object, it is owned by self.
fn interface_name(&self) -> GString
fn interface_name(&self) -> GStringfn name_owner(&self) -> Option<GString>
fn name_owner(&self) -> Option<GString>fn object_path(&self) -> GString
fn object_path(&self) -> GStringfn set_cached_property(&self, property_name: &str, value: Option<&Variant>)
fn set_cached_property(&self, property_name: &str, value: Option<&Variant>)If value is not None, sets the cached value for the property with
name property_name to the value in value.
If value is None, then the cached value is removed from the
property cache.
If self has an expected interface (see
property::DBusProxy::g-interface-info) and property_name is referenced by
it, then value is checked against the type of the property.
If the value glib::Variant is floating, it is consumed. This allows
convenient ‘inline’ use of [glib::Variant::new()][crate::glib::Variant::new()], e.g.
⚠️ The following code is in C ⚠️
g_dbus_proxy_set_cached_property (proxy,
"SomeProperty",
g_variant_new ("(si)",
"A String",
42));
Normally you will not need to use this method since self
is tracking changes using the
org.freedesktop.DBus.Properties.PropertiesChanged
D-Bus signal. However, for performance reasons an object may
decide to not use this signal for some properties and instead
use a proprietary out-of-band mechanism to transmit changes.
As a concrete example, consider an object with a property
ChatroomParticipants which is an array of strings. Instead of
transmitting the same (long) array every time the property changes,
it is more efficient to only transmit the delta using e.g. signals
ChatroomParticipantJoined(String name) and
ChatroomParticipantParted(String name).
property_name
Property name.
value
Value for the property or None to remove it from the cache.
fn set_default_timeout(&self, timeout_msec: i32)
fn set_default_timeout(&self, timeout_msec: i32)Sets the timeout to use if -1 (specifying default timeout) is
passed as timeout_msec in the call() and
call_sync() functions.
See the property::DBusProxy::g-default-timeout property for more details.
timeout_msec
Timeout in milliseconds.
fn set_interface_info(&self, info: Option<&DBusInterfaceInfo>)
fn set_interface_info(&self, info: Option<&DBusInterfaceInfo>)fn g_connection(&self) -> Option<DBusConnection>
fn g_connection(&self) -> Option<DBusConnection>The DBusConnection the proxy is for.
fn g_default_timeout(&self) -> i32
fn g_default_timeout(&self) -> i32The timeout to use if -1 (specifying default timeout) is passed
as timeout_msec in the call() and
call_sync() functions.
This allows applications to set a proxy-wide timeout for all
remote method invocations on the proxy. If this property is -1,
the default timeout (typically 25 seconds) is used. If set to
G_MAXINT, then no timeout is used.
fn set_g_default_timeout(&self, g_default_timeout: i32)
fn set_g_default_timeout(&self, g_default_timeout: i32)The timeout to use if -1 (specifying default timeout) is passed
as timeout_msec in the call() and
call_sync() functions.
This allows applications to set a proxy-wide timeout for all
remote method invocations on the proxy. If this property is -1,
the default timeout (typically 25 seconds) is used. If set to
G_MAXINT, then no timeout is used.
fn g_flags(&self) -> DBusProxyFlags
fn g_flags(&self) -> DBusProxyFlagsFlags from the DBusProxyFlags enumeration.
fn g_interface_info(&self) -> Option<DBusInterfaceInfo>
fn g_interface_info(&self) -> Option<DBusInterfaceInfo>Ensure that interactions with this proxy conform to the given
interface. This is mainly to ensure that malformed data received
from the other peer is ignored. The given DBusInterfaceInfo is
said to be the “expected interface”.
The checks performed are:
-
When completing a method call, if the type signature of the reply message isn’t what’s expected, the reply is discarded and the
glib::Erroris set toIOErrorEnum::InvalidArgument. -
Received signals that have a type signature mismatch are dropped and a warning is logged via
g_warning(). -
Properties received via the initial
GetAll()call or via the::PropertiesChangedsignal (on the org.freedesktop.DBus.Properties interface) or set usingset_cached_property()with a type signature mismatch are ignored and a warning is logged viag_warning().
Note that these checks are never done on methods, signals and
properties that are not referenced in the given
DBusInterfaceInfo, since extending a D-Bus interface on the
service-side is not considered an ABI break.
fn set_g_interface_info(&self, g_interface_info: Option<&DBusInterfaceInfo>)
fn set_g_interface_info(&self, g_interface_info: Option<&DBusInterfaceInfo>)Ensure that interactions with this proxy conform to the given
interface. This is mainly to ensure that malformed data received
from the other peer is ignored. The given DBusInterfaceInfo is
said to be the “expected interface”.
The checks performed are:
-
When completing a method call, if the type signature of the reply message isn’t what’s expected, the reply is discarded and the
glib::Erroris set toIOErrorEnum::InvalidArgument. -
Received signals that have a type signature mismatch are dropped and a warning is logged via
g_warning(). -
Properties received via the initial
GetAll()call or via the::PropertiesChangedsignal (on the org.freedesktop.DBus.Properties interface) or set usingset_cached_property()with a type signature mismatch are ignored and a warning is logged viag_warning().
Note that these checks are never done on methods, signals and
properties that are not referenced in the given
DBusInterfaceInfo, since extending a D-Bus interface on the
service-side is not considered an ABI break.
fn g_interface_name(&self) -> Option<GString>
fn g_interface_name(&self) -> Option<GString>The D-Bus interface name the proxy is for.
fn g_name_owner(&self) -> Option<GString>
fn g_name_owner(&self) -> Option<GString>The unique name that owns property::DBusProxy::g-name or None if no-one
currently owns that name. You may connect to signal::glib::Object::notify signal to
track changes to this property.
fn g_object_path(&self) -> Option<GString>
fn g_object_path(&self) -> Option<GString>The object path the proxy is for.
fn connect_g_default_timeout_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerIdfn connect_g_interface_info_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerIdfn connect_g_name_owner_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId