Struct gio::DBusMethodInvocation [−][src]
pub struct DBusMethodInvocation(_);
Expand description
Instances of the DBusMethodInvocation
class are used when
handling D-Bus method calls. It provides a way to asynchronously
return results and errors.
The normal way to obtain a DBusMethodInvocation
object is to receive
it as an argument to the handle_method_call()
function in a
GDBusInterfaceVTable
that was passed to g_dbus_connection_register_object()
.
Implements
Implementations
Finishes handling a D-Bus method call by returning an error.
See g_dbus_error_encode_gerror()
for details about what error name
will be returned on the wire. In a nutshell, if the given error is
registered using g_dbus_error_register_error()
the name given
during registration is used. Otherwise, a name of the form
org.gtk.GDBus.UnmappedGError.Quark...
is used. This provides
transparent mapping of glib::Error
between applications using GDBus.
If you are writing an application intended to be portable,
always register errors with g_dbus_error_register_error()
or use return_dbus_error()
.
This method will take ownership of self
. See
GDBusInterfaceVTable
for more information about the ownership of
self
.
Since 2.48, if the method call requested for a reply not to be sent
then this call will free self
but otherwise do nothing (as per
the recommendations of the D-Bus specification).
domain
A GQuark
for the glib::Error
error domain.
code
The error code.
format
printf()
-style format.
Like g_dbus_method_invocation_return_error()
but takes a glib::Error
instead of the error domain, error code and message.
This method will take ownership of self
. See
GDBusInterfaceVTable
for more information about the ownership of
self
.
error
A glib::Error
.
Gets the DBusConnection
the method was invoked on.
Returns
A DBusConnection
. Do not free, it is owned by self
.
Gets the name of the D-Bus interface the method was invoked on.
If this method call is a property Get, Set or GetAll call that has
been redirected to the method call handler then
“org.freedesktop.DBus.Properties” will be returned. See
GDBusInterfaceVTable
for more information.
Returns
A string. Do not free, it is owned by self
.
Gets the DBusMessage
for the method invocation. This is useful if
you need to use low-level protocol features, such as UNIX file
descriptor passing, that cannot be properly expressed in the
glib::Variant
API.
See this [server][gdbus-server] and [client][gdbus-unix-fd-client] for an example of how to use this low-level API to send and receive UNIX file descriptors.
Returns
DBusMessage
. Do not free, it is owned by self
.
Gets information about the method call, if any.
If this method invocation is a property Get, Set or GetAll call that
has been redirected to the method call handler then None
will be
returned. See property_info()
and
GDBusInterfaceVTable
for more information.
Returns
A DBusMethodInfo
or None
. Do not free, it is owned by self
.
Gets the parameters of the method invocation. If there are no input parameters then this will return a GVariant with 0 children rather than NULL.
Returns
A glib::Variant
tuple. Do not unref this because it is owned by self
.
Gets information about the property that this method call is for, if any.
This will only be set in the case of an invocation in response to a
property Get or Set call that has been directed to the method call
handler for an object on account of its property_get()
or
property_set()
vtable pointers being unset.
See GDBusInterfaceVTable
for more information.
If the call was GetAll, None
will be returned.
Returns
a DBusPropertyInfo
or None
Finishes handling a D-Bus method call by returning an error.
This method will take ownership of self
. See
GDBusInterfaceVTable
for more information about the ownership of
self
.
error_name
A valid D-Bus error name.
error_message
A valid D-Bus error message.
Finishes handling a D-Bus method call by returning parameters
.
If the parameters
GVariant is floating, it is consumed.
It is an error if parameters
is not of the right format: it must be a tuple
containing the out-parameters of the D-Bus method. Even if the method has a
single out-parameter, it must be contained in a tuple. If the method has no
out-parameters, parameters
may be None
or an empty tuple.
⚠️ The following code is in C ⚠️
GDBusMethodInvocation *invocation = some_invocation;
g_autofree gchar *result_string = NULL;
g_autoptr (GError) error = NULL;
result_string = calculate_result (&error);
if (error != NULL)
g_dbus_method_invocation_return_gerror (invocation, error);
else
g_dbus_method_invocation_return_value (invocation,
g_variant_new ("(s)", result_string));
// Do not free @self here; returning a value does that
This method will take ownership of self
. See
GDBusInterfaceVTable
for more information about the ownership of
self
.
Since 2.48, if the method call requested for a reply not to be sent
then this call will sink parameters
and free self
, but
otherwise do nothing (as per the recommendations of the D-Bus
specification).
parameters
A glib::Variant
tuple with out parameters for the method or None
if not passing any parameters.
pub fn return_value_with_unix_fd_list<P: IsA<UnixFDList>>(
&self,
parameters: Option<&Variant>,
fd_list: Option<&P>
)
This is supported on Unix only.
pub fn return_value_with_unix_fd_list<P: IsA<UnixFDList>>(
&self,
parameters: Option<&Variant>,
fd_list: Option<&P>
)
Like return_value()
but also takes a UnixFDList
.
This method is only available on UNIX.
This method will take ownership of self
. See
GDBusInterfaceVTable
for more information about the ownership of
self
.
parameters
A glib::Variant
tuple with out parameters for the method or None
if not passing any parameters.
fd_list
A UnixFDList
or None
.
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
impl RefUnwindSafe for DBusMethodInvocation
impl !Send for DBusMethodInvocation
impl !Sync for DBusMethodInvocation
impl Unpin for DBusMethodInvocation
impl UnwindSafe for DBusMethodInvocation
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>,