1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
25 #include "gdbusutils.h"
26 #include "gdbusconnection.h"
27 #include "gdbusmessage.h"
28 #include "gdbusmethodinvocation.h"
29 #include "gdbusintrospection.h"
30 #include "gdbuserror.h"
31 #include "gdbusprivate.h"
35 #include "gunixfdlist.h"
41 * SECTION:gdbusmethodinvocation
42 * @short_description: Object for handling remote calls
45 * Instances of the #GDBusMethodInvocation class are used when
46 * handling D-Bus method calls. It provides a way to asynchronously
47 * return results and errors.
49 * The normal way to obtain a #GDBusMethodInvocation object is to receive
50 * it as an argument to the handle_method_call() function in a
51 * #GDBusInterfaceVTable that was passed to g_dbus_connection_register_object().
54 typedef struct _GDBusMethodInvocationClass GDBusMethodInvocationClass
;
57 * GDBusMethodInvocationClass:
59 * Class structure for #GDBusMethodInvocation.
63 struct _GDBusMethodInvocationClass
66 GObjectClass parent_class
;
70 * GDBusMethodInvocation:
72 * The #GDBusMethodInvocation structure contains only private data and
73 * should only be accessed using the provided API.
77 struct _GDBusMethodInvocation
80 GObject parent_instance
;
82 /* construct-only properties */
85 gchar
*interface_name
;
87 GDBusMethodInfo
*method_info
;
88 GDBusPropertyInfo
*property_info
;
89 GDBusConnection
*connection
;
90 GDBusMessage
*message
;
95 G_DEFINE_TYPE (GDBusMethodInvocation
, g_dbus_method_invocation
, G_TYPE_OBJECT
)
98 g_dbus_method_invocation_finalize (GObject
*object
)
100 GDBusMethodInvocation
*invocation
= G_DBUS_METHOD_INVOCATION (object
);
102 g_free (invocation
->sender
);
103 g_free (invocation
->object_path
);
104 g_free (invocation
->interface_name
);
105 g_free (invocation
->method_name
);
106 if (invocation
->method_info
)
107 g_dbus_method_info_unref (invocation
->method_info
);
108 if (invocation
->property_info
)
109 g_dbus_property_info_unref (invocation
->property_info
);
110 g_object_unref (invocation
->connection
);
111 g_object_unref (invocation
->message
);
112 g_variant_unref (invocation
->parameters
);
114 G_OBJECT_CLASS (g_dbus_method_invocation_parent_class
)->finalize (object
);
118 g_dbus_method_invocation_class_init (GDBusMethodInvocationClass
*klass
)
120 GObjectClass
*gobject_class
= G_OBJECT_CLASS (klass
);
122 gobject_class
->finalize
= g_dbus_method_invocation_finalize
;
126 g_dbus_method_invocation_init (GDBusMethodInvocation
*invocation
)
131 * g_dbus_method_invocation_get_sender:
132 * @invocation: A #GDBusMethodInvocation.
134 * Gets the bus name that invoked the method.
136 * Returns: A string. Do not free, it is owned by @invocation.
141 g_dbus_method_invocation_get_sender (GDBusMethodInvocation
*invocation
)
143 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
144 return invocation
->sender
;
148 * g_dbus_method_invocation_get_object_path:
149 * @invocation: A #GDBusMethodInvocation.
151 * Gets the object path the method was invoked on.
153 * Returns: A string. Do not free, it is owned by @invocation.
158 g_dbus_method_invocation_get_object_path (GDBusMethodInvocation
*invocation
)
160 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
161 return invocation
->object_path
;
165 * g_dbus_method_invocation_get_interface_name:
166 * @invocation: A #GDBusMethodInvocation.
168 * Gets the name of the D-Bus interface the method was invoked on.
170 * If this method call is a property Get, Set or GetAll call that has
171 * been redirected to the method call handler then
172 * "org.freedesktop.DBus.Properties" will be returned. See
173 * #GDBusInterfaceVTable for more information.
175 * Returns: A string. Do not free, it is owned by @invocation.
180 g_dbus_method_invocation_get_interface_name (GDBusMethodInvocation
*invocation
)
182 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
183 return invocation
->interface_name
;
187 * g_dbus_method_invocation_get_method_info:
188 * @invocation: A #GDBusMethodInvocation.
190 * Gets information about the method call, if any.
192 * If this method invocation is a property Get, Set or GetAll call that
193 * has been redirected to the method call handler then %NULL will be
194 * returned. See g_dbus_method_invocation_get_property_info() and
195 * #GDBusInterfaceVTable for more information.
197 * Returns: A #GDBusMethodInfo or %NULL. Do not free, it is owned by @invocation.
201 const GDBusMethodInfo
*
202 g_dbus_method_invocation_get_method_info (GDBusMethodInvocation
*invocation
)
204 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
205 return invocation
->method_info
;
209 * g_dbus_method_invocation_get_property_info:
210 * @invocation: A #GDBusMethodInvocation
212 * Gets information about the property that this method call is for, if
215 * This will only be set in the case of an invocation in response to a
216 * property Get or Set call that has been directed to the method call
217 * handler for an object on account of its property_get() or
218 * property_set() vtable pointers being unset.
220 * See #GDBusInterfaceVTable for more information.
222 * If the call was GetAll, %NULL will be returned.
224 * Returns: (transfer none): a #GDBusPropertyInfo or %NULL
228 const GDBusPropertyInfo
*
229 g_dbus_method_invocation_get_property_info (GDBusMethodInvocation
*invocation
)
231 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
232 return invocation
->property_info
;
236 * g_dbus_method_invocation_get_method_name:
237 * @invocation: A #GDBusMethodInvocation.
239 * Gets the name of the method that was invoked.
241 * Returns: A string. Do not free, it is owned by @invocation.
246 g_dbus_method_invocation_get_method_name (GDBusMethodInvocation
*invocation
)
248 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
249 return invocation
->method_name
;
253 * g_dbus_method_invocation_get_connection:
254 * @invocation: A #GDBusMethodInvocation.
256 * Gets the #GDBusConnection the method was invoked on.
258 * Returns: (transfer none):A #GDBusConnection. Do not free, it is owned by @invocation.
263 g_dbus_method_invocation_get_connection (GDBusMethodInvocation
*invocation
)
265 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
266 return invocation
->connection
;
270 * g_dbus_method_invocation_get_message:
271 * @invocation: A #GDBusMethodInvocation.
273 * Gets the #GDBusMessage for the method invocation. This is useful if
274 * you need to use low-level protocol features, such as UNIX file
275 * descriptor passing, that cannot be properly expressed in the
278 * See this [server][gdbus-server] and [client][gdbus-unix-fd-client]
279 * for an example of how to use this low-level API to send and receive
280 * UNIX file descriptors.
282 * Returns: (transfer none): #GDBusMessage. Do not free, it is owned by @invocation.
287 g_dbus_method_invocation_get_message (GDBusMethodInvocation
*invocation
)
289 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
290 return invocation
->message
;
294 * g_dbus_method_invocation_get_parameters:
295 * @invocation: A #GDBusMethodInvocation.
297 * Gets the parameters of the method invocation. If there are no input
298 * parameters then this will return a GVariant with 0 children rather than NULL.
300 * Returns: (transfer none): A #GVariant tuple. Do not unref this because it is owned by @invocation.
305 g_dbus_method_invocation_get_parameters (GDBusMethodInvocation
*invocation
)
307 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
308 return invocation
->parameters
;
312 * g_dbus_method_invocation_get_user_data: (skip)
313 * @invocation: A #GDBusMethodInvocation.
315 * Gets the @user_data #gpointer passed to g_dbus_connection_register_object().
317 * Returns: A #gpointer.
322 g_dbus_method_invocation_get_user_data (GDBusMethodInvocation
*invocation
)
324 g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
), NULL
);
325 return invocation
->user_data
;
329 * _g_dbus_method_invocation_new:
330 * @sender: (nullable): The bus name that invoked the method or %NULL if @connection is not a bus connection.
331 * @object_path: The object path the method was invoked on.
332 * @interface_name: The name of the D-Bus interface the method was invoked on.
333 * @method_name: The name of the method that was invoked.
334 * @method_info: (nullable): Information about the method call or %NULL.
335 * @property_info: (nullable): Information about the property or %NULL.
336 * @connection: The #GDBusConnection the method was invoked on.
337 * @message: The D-Bus message as a #GDBusMessage.
338 * @parameters: The parameters as a #GVariant tuple.
339 * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
341 * Creates a new #GDBusMethodInvocation object.
343 * Returns: A #GDBusMethodInvocation. Free with g_object_unref().
347 GDBusMethodInvocation
*
348 _g_dbus_method_invocation_new (const gchar
*sender
,
349 const gchar
*object_path
,
350 const gchar
*interface_name
,
351 const gchar
*method_name
,
352 const GDBusMethodInfo
*method_info
,
353 const GDBusPropertyInfo
*property_info
,
354 GDBusConnection
*connection
,
355 GDBusMessage
*message
,
356 GVariant
*parameters
,
359 GDBusMethodInvocation
*invocation
;
361 g_return_val_if_fail (sender
== NULL
|| g_dbus_is_name (sender
), NULL
);
362 g_return_val_if_fail (g_variant_is_object_path (object_path
), NULL
);
363 g_return_val_if_fail (interface_name
== NULL
|| g_dbus_is_interface_name (interface_name
), NULL
);
364 g_return_val_if_fail (g_dbus_is_member_name (method_name
), NULL
);
365 g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection
), NULL
);
366 g_return_val_if_fail (G_IS_DBUS_MESSAGE (message
), NULL
);
367 g_return_val_if_fail (g_variant_is_of_type (parameters
, G_VARIANT_TYPE_TUPLE
), NULL
);
369 invocation
= G_DBUS_METHOD_INVOCATION (g_object_new (G_TYPE_DBUS_METHOD_INVOCATION
, NULL
));
370 invocation
->sender
= g_strdup (sender
);
371 invocation
->object_path
= g_strdup (object_path
);
372 invocation
->interface_name
= g_strdup (interface_name
);
373 invocation
->method_name
= g_strdup (method_name
);
375 invocation
->method_info
= g_dbus_method_info_ref ((GDBusMethodInfo
*)method_info
);
377 invocation
->property_info
= g_dbus_property_info_ref ((GDBusPropertyInfo
*)property_info
);
378 invocation
->connection
= g_object_ref (connection
);
379 invocation
->message
= g_object_ref (message
);
380 invocation
->parameters
= g_variant_ref (parameters
);
381 invocation
->user_data
= user_data
;
386 /* ---------------------------------------------------------------------------------------------------- */
389 g_dbus_method_invocation_return_value_internal (GDBusMethodInvocation
*invocation
,
390 GVariant
*parameters
,
391 GUnixFDList
*fd_list
)
396 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
397 g_return_if_fail ((parameters
== NULL
) || g_variant_is_of_type (parameters
, G_VARIANT_TYPE_TUPLE
));
399 if (g_dbus_message_get_flags (invocation
->message
) & G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED
)
401 if (parameters
!= NULL
)
403 g_variant_ref_sink (parameters
);
404 g_variant_unref (parameters
);
409 if (parameters
== NULL
)
410 parameters
= g_variant_new_tuple (NULL
, 0);
412 /* if we have introspection data, check that the signature of @parameters is correct */
413 if (invocation
->method_info
!= NULL
)
417 type
= _g_dbus_compute_complete_signature (invocation
->method_info
->out_args
);
419 if (!g_variant_is_of_type (parameters
, type
))
421 gchar
*type_string
= g_variant_type_dup_string (type
);
423 g_warning ("Type of return value is incorrect: expected '%s', got '%s''",
424 type_string
, g_variant_get_type_string (parameters
));
425 g_variant_type_free (type
);
426 g_free (type_string
);
429 g_variant_type_free (type
);
432 /* property_info is only non-NULL if set that way from
433 * GDBusConnection, so this must be the case of async property
434 * handling on either 'Get', 'Set' or 'GetAll'.
436 if (invocation
->property_info
!= NULL
)
438 if (g_str_equal (invocation
->method_name
, "Get"))
442 if (!g_variant_is_of_type (parameters
, G_VARIANT_TYPE ("(v)")))
444 g_warning ("Type of return value for property 'Get' call should be '(v)' but got '%s'",
445 g_variant_get_type_string (parameters
));
449 /* Go deeper and make sure that the value inside of the
450 * variant matches the property type.
452 g_variant_get (parameters
, "(v)", &nested
);
453 if (!g_str_equal (g_variant_get_type_string (nested
), invocation
->property_info
->signature
))
455 g_warning ("Value returned from property 'Get' call for '%s' should be '%s' but is '%s'",
456 invocation
->property_info
->name
, invocation
->property_info
->signature
,
457 g_variant_get_type_string (nested
));
458 g_variant_unref (nested
);
461 g_variant_unref (nested
);
464 else if (g_str_equal (invocation
->method_name
, "GetAll"))
466 if (!g_variant_is_of_type (parameters
, G_VARIANT_TYPE ("(a{sv})")))
468 g_warning ("Type of return value for property 'GetAll' call should be '(a{sv})' but got '%s'",
469 g_variant_get_type_string (parameters
));
473 /* Could iterate the list of properties and make sure that all
474 * of them are actually on the interface and with the correct
475 * types, but let's not do that for now...
479 else if (g_str_equal (invocation
->method_name
, "Set"))
481 if (!g_variant_is_of_type (parameters
, G_VARIANT_TYPE_UNIT
))
483 g_warning ("Type of return value for property 'Set' call should be '()' but got '%s'",
484 g_variant_get_type_string (parameters
));
490 g_assert_not_reached ();
493 if (G_UNLIKELY (_g_dbus_debug_return ()))
495 _g_dbus_debug_print_lock ();
496 g_print ("========================================================================\n"
497 "GDBus-debug:Return:\n"
498 " >>>> METHOD RETURN\n"
499 " in response to %s.%s()\n"
502 " reply-serial %d\n",
503 invocation
->interface_name
, invocation
->method_name
,
504 invocation
->object_path
,
506 g_dbus_message_get_serial (invocation
->message
));
507 _g_dbus_debug_print_unlock ();
510 reply
= g_dbus_message_new_method_reply (invocation
->message
);
511 g_dbus_message_set_body (reply
, parameters
);
515 g_dbus_message_set_unix_fd_list (reply
, fd_list
);
519 if (!g_dbus_connection_send_message (g_dbus_method_invocation_get_connection (invocation
), reply
, G_DBUS_SEND_MESSAGE_FLAGS_NONE
, NULL
, &error
))
521 if (!g_error_matches (error
, G_IO_ERROR
, G_IO_ERROR_CLOSED
))
522 g_warning ("Error sending message: %s", error
->message
);
523 g_error_free (error
);
525 g_object_unref (reply
);
528 g_object_unref (invocation
);
532 * g_dbus_method_invocation_return_value:
533 * @invocation: (transfer full): A #GDBusMethodInvocation.
534 * @parameters: (nullable): A #GVariant tuple with out parameters for the method or %NULL if not passing any parameters.
536 * Finishes handling a D-Bus method call by returning @parameters.
537 * If the @parameters GVariant is floating, it is consumed.
539 * It is an error if @parameters is not of the right format: it must be a tuple
540 * containing the out-parameters of the D-Bus method. Even if the method has a
541 * single out-parameter, it must be contained in a tuple. If the method has no
542 * out-parameters, @parameters may be %NULL or an empty tuple.
544 * |[<!-- language="C" -->
545 * GDBusMethodInvocation *invocation = some_invocation;
546 * g_autofree gchar *result_string = NULL;
547 * g_autoptr (GError) error = NULL;
549 * result_string = calculate_result (&error);
552 * g_dbus_method_invocation_return_gerror (invocation, error);
554 * g_dbus_method_invocation_return_value (invocation,
555 * g_variant_new ("(s)", result_string));
557 * // Do not free @invocation here; returning a value does that
560 * This method will take ownership of @invocation. See
561 * #GDBusInterfaceVTable for more information about the ownership of
564 * Since 2.48, if the method call requested for a reply not to be sent
565 * then this call will sink @parameters and free @invocation, but
566 * otherwise do nothing (as per the recommendations of the D-Bus
572 g_dbus_method_invocation_return_value (GDBusMethodInvocation
*invocation
,
573 GVariant
*parameters
)
575 g_dbus_method_invocation_return_value_internal (invocation
, parameters
, NULL
);
580 * g_dbus_method_invocation_return_value_with_unix_fd_list:
581 * @invocation: (transfer full): A #GDBusMethodInvocation.
582 * @parameters: (nullable): A #GVariant tuple with out parameters for the method or %NULL if not passing any parameters.
583 * @fd_list: (nullable): A #GUnixFDList or %NULL.
585 * Like g_dbus_method_invocation_return_value() but also takes a #GUnixFDList.
587 * This method is only available on UNIX.
589 * This method will take ownership of @invocation. See
590 * #GDBusInterfaceVTable for more information about the ownership of
596 g_dbus_method_invocation_return_value_with_unix_fd_list (GDBusMethodInvocation
*invocation
,
597 GVariant
*parameters
,
598 GUnixFDList
*fd_list
)
600 g_dbus_method_invocation_return_value_internal (invocation
, parameters
, fd_list
);
604 /* ---------------------------------------------------------------------------------------------------- */
607 * g_dbus_method_invocation_return_error:
608 * @invocation: (transfer full): A #GDBusMethodInvocation.
609 * @domain: A #GQuark for the #GError error domain.
610 * @code: The error code.
611 * @format: printf()-style format.
612 * @...: Parameters for @format.
614 * Finishes handling a D-Bus method call by returning an error.
616 * See g_dbus_error_encode_gerror() for details about what error name
617 * will be returned on the wire. In a nutshell, if the given error is
618 * registered using g_dbus_error_register_error() the name given
619 * during registration is used. Otherwise, a name of the form
620 * `org.gtk.GDBus.UnmappedGError.Quark...` is used. This provides
621 * transparent mapping of #GError between applications using GDBus.
623 * If you are writing an application intended to be portable,
624 * always register errors with g_dbus_error_register_error()
625 * or use g_dbus_method_invocation_return_dbus_error().
627 * This method will take ownership of @invocation. See
628 * #GDBusInterfaceVTable for more information about the ownership of
631 * Since 2.48, if the method call requested for a reply not to be sent
632 * then this call will free @invocation but otherwise do nothing (as per
633 * the recommendations of the D-Bus specification).
638 g_dbus_method_invocation_return_error (GDBusMethodInvocation
*invocation
,
646 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
647 g_return_if_fail (format
!= NULL
);
649 va_start (var_args
, format
);
650 g_dbus_method_invocation_return_error_valist (invocation
,
659 * g_dbus_method_invocation_return_error_valist:
660 * @invocation: (transfer full): A #GDBusMethodInvocation.
661 * @domain: A #GQuark for the #GError error domain.
662 * @code: The error code.
663 * @format: printf()-style format.
664 * @var_args: #va_list of parameters for @format.
666 * Like g_dbus_method_invocation_return_error() but intended for
669 * This method will take ownership of @invocation. See
670 * #GDBusInterfaceVTable for more information about the ownership of
676 g_dbus_method_invocation_return_error_valist (GDBusMethodInvocation
*invocation
,
682 gchar
*literal_message
;
684 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
685 g_return_if_fail (format
!= NULL
);
687 literal_message
= g_strdup_vprintf (format
, var_args
);
688 g_dbus_method_invocation_return_error_literal (invocation
,
692 g_free (literal_message
);
696 * g_dbus_method_invocation_return_error_literal:
697 * @invocation: (transfer full): A #GDBusMethodInvocation.
698 * @domain: A #GQuark for the #GError error domain.
699 * @code: The error code.
700 * @message: The error message.
702 * Like g_dbus_method_invocation_return_error() but without printf()-style formatting.
704 * This method will take ownership of @invocation. See
705 * #GDBusInterfaceVTable for more information about the ownership of
711 g_dbus_method_invocation_return_error_literal (GDBusMethodInvocation
*invocation
,
714 const gchar
*message
)
718 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
719 g_return_if_fail (message
!= NULL
);
721 error
= g_error_new_literal (domain
, code
, message
);
722 g_dbus_method_invocation_return_gerror (invocation
, error
);
723 g_error_free (error
);
727 * g_dbus_method_invocation_return_gerror:
728 * @invocation: (transfer full): A #GDBusMethodInvocation.
731 * Like g_dbus_method_invocation_return_error() but takes a #GError
732 * instead of the error domain, error code and message.
734 * This method will take ownership of @invocation. See
735 * #GDBusInterfaceVTable for more information about the ownership of
741 g_dbus_method_invocation_return_gerror (GDBusMethodInvocation
*invocation
,
744 gchar
*dbus_error_name
;
746 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
747 g_return_if_fail (error
!= NULL
);
749 dbus_error_name
= g_dbus_error_encode_gerror (error
);
751 g_dbus_method_invocation_return_dbus_error (invocation
,
754 g_free (dbus_error_name
);
758 * g_dbus_method_invocation_take_error: (skip)
759 * @invocation: (transfer full): A #GDBusMethodInvocation.
760 * @error: (transfer full): A #GError.
762 * Like g_dbus_method_invocation_return_gerror() but takes ownership
763 * of @error so the caller does not need to free it.
765 * This method will take ownership of @invocation. See
766 * #GDBusInterfaceVTable for more information about the ownership of
772 g_dbus_method_invocation_take_error (GDBusMethodInvocation
*invocation
,
775 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
776 g_return_if_fail (error
!= NULL
);
777 g_dbus_method_invocation_return_gerror (invocation
, error
);
778 g_error_free (error
);
782 * g_dbus_method_invocation_return_dbus_error:
783 * @invocation: (transfer full): A #GDBusMethodInvocation.
784 * @error_name: A valid D-Bus error name.
785 * @error_message: A valid D-Bus error message.
787 * Finishes handling a D-Bus method call by returning an error.
789 * This method will take ownership of @invocation. See
790 * #GDBusInterfaceVTable for more information about the ownership of
796 g_dbus_method_invocation_return_dbus_error (GDBusMethodInvocation
*invocation
,
797 const gchar
*error_name
,
798 const gchar
*error_message
)
802 g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation
));
803 g_return_if_fail (error_name
!= NULL
&& g_dbus_is_name (error_name
));
804 g_return_if_fail (error_message
!= NULL
);
806 if (g_dbus_message_get_flags (invocation
->message
) & G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED
)
809 if (G_UNLIKELY (_g_dbus_debug_return ()))
811 _g_dbus_debug_print_lock ();
812 g_print ("========================================================================\n"
813 "GDBus-debug:Return:\n"
814 " >>>> METHOD ERROR %s\n"
816 " in response to %s.%s()\n"
819 " reply-serial %d\n",
822 invocation
->interface_name
, invocation
->method_name
,
823 invocation
->object_path
,
825 g_dbus_message_get_serial (invocation
->message
));
826 _g_dbus_debug_print_unlock ();
829 reply
= g_dbus_message_new_method_error_literal (invocation
->message
,
832 g_dbus_connection_send_message (g_dbus_method_invocation_get_connection (invocation
), reply
, G_DBUS_SEND_MESSAGE_FLAGS_NONE
, NULL
, NULL
);
833 g_object_unref (reply
);
836 g_object_unref (invocation
);