various: add GLIB_AVAILABLE_IN_ALL everywhere else
[platform/upstream/glib.git] / gio / gdbusconnection.h
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
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 of the License, or (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #ifndef __G_DBUS_CONNECTION_H__
24 #define __G_DBUS_CONNECTION_H__
25
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
28 #endif
29
30 #include <gio/giotypes.h>
31
32 G_BEGIN_DECLS
33
34 #define G_TYPE_DBUS_CONNECTION         (g_dbus_connection_get_type ())
35 #define G_DBUS_CONNECTION(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_CONNECTION, GDBusConnection))
36 #define G_IS_DBUS_CONNECTION(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_CONNECTION))
37
38 GLIB_AVAILABLE_IN_ALL
39 GType            g_dbus_connection_get_type                   (void) G_GNUC_CONST;
40
41 /* ---------------------------------------------------------------------------------------------------- */
42
43 GLIB_AVAILABLE_IN_ALL
44 void              g_bus_get                    (GBusType             bus_type,
45                                                 GCancellable        *cancellable,
46                                                 GAsyncReadyCallback  callback,
47                                                 gpointer             user_data);
48 GLIB_AVAILABLE_IN_ALL
49 GDBusConnection  *g_bus_get_finish             (GAsyncResult        *res,
50                                                 GError             **error);
51 GLIB_AVAILABLE_IN_ALL
52 GDBusConnection  *g_bus_get_sync               (GBusType            bus_type,
53                                                 GCancellable       *cancellable,
54                                                 GError            **error);
55
56 /* ---------------------------------------------------------------------------------------------------- */
57
58 GLIB_AVAILABLE_IN_ALL
59 void             g_dbus_connection_new                        (GIOStream              *stream,
60                                                                const gchar            *guid,
61                                                                GDBusConnectionFlags    flags,
62                                                                GDBusAuthObserver      *observer,
63                                                                GCancellable           *cancellable,
64                                                                GAsyncReadyCallback     callback,
65                                                                gpointer                user_data);
66 GLIB_AVAILABLE_IN_ALL
67 GDBusConnection *g_dbus_connection_new_finish                 (GAsyncResult           *res,
68                                                                GError                **error);
69 GLIB_AVAILABLE_IN_ALL
70 GDBusConnection *g_dbus_connection_new_sync                   (GIOStream              *stream,
71                                                                const gchar            *guid,
72                                                                GDBusConnectionFlags    flags,
73                                                                GDBusAuthObserver      *observer,
74                                                                GCancellable           *cancellable,
75                                                                GError                **error);
76
77 GLIB_AVAILABLE_IN_ALL
78 void             g_dbus_connection_new_for_address            (const gchar            *address,
79                                                                GDBusConnectionFlags    flags,
80                                                                GDBusAuthObserver      *observer,
81                                                                GCancellable           *cancellable,
82                                                                GAsyncReadyCallback     callback,
83                                                                gpointer                user_data);
84 GLIB_AVAILABLE_IN_ALL
85 GDBusConnection *g_dbus_connection_new_for_address_finish     (GAsyncResult           *res,
86                                                                GError                **error);
87 GLIB_AVAILABLE_IN_ALL
88 GDBusConnection *g_dbus_connection_new_for_address_sync       (const gchar            *address,
89                                                                GDBusConnectionFlags    flags,
90                                                                GDBusAuthObserver      *observer,
91                                                                GCancellable           *cancellable,
92                                                                GError                **error);
93
94 /* ---------------------------------------------------------------------------------------------------- */
95
96 GLIB_AVAILABLE_IN_ALL
97 void             g_dbus_connection_start_message_processing   (GDBusConnection    *connection);
98 GLIB_AVAILABLE_IN_ALL
99 gboolean         g_dbus_connection_is_closed                  (GDBusConnection    *connection);
100 GLIB_AVAILABLE_IN_ALL
101 GIOStream       *g_dbus_connection_get_stream                 (GDBusConnection    *connection);
102 GLIB_AVAILABLE_IN_ALL
103 const gchar     *g_dbus_connection_get_guid                   (GDBusConnection    *connection);
104 GLIB_AVAILABLE_IN_ALL
105 const gchar     *g_dbus_connection_get_unique_name            (GDBusConnection    *connection);
106 GLIB_AVAILABLE_IN_ALL
107 GCredentials    *g_dbus_connection_get_peer_credentials       (GDBusConnection    *connection);
108
109 GLIB_AVAILABLE_IN_2_34
110 guint32          g_dbus_connection_get_last_serial            (GDBusConnection    *connection);
111
112 GLIB_AVAILABLE_IN_ALL
113 gboolean         g_dbus_connection_get_exit_on_close          (GDBusConnection    *connection);
114 GLIB_AVAILABLE_IN_ALL
115 void             g_dbus_connection_set_exit_on_close          (GDBusConnection    *connection,
116                                                                gboolean            exit_on_close);
117 GLIB_AVAILABLE_IN_ALL
118 GDBusCapabilityFlags  g_dbus_connection_get_capabilities      (GDBusConnection    *connection);
119
120 /* ---------------------------------------------------------------------------------------------------- */
121
122 GLIB_AVAILABLE_IN_ALL
123 void             g_dbus_connection_close                          (GDBusConnection     *connection,
124                                                                    GCancellable        *cancellable,
125                                                                    GAsyncReadyCallback  callback,
126                                                                    gpointer             user_data);
127 GLIB_AVAILABLE_IN_ALL
128 gboolean         g_dbus_connection_close_finish                   (GDBusConnection     *connection,
129                                                                    GAsyncResult        *res,
130                                                                    GError             **error);
131 GLIB_AVAILABLE_IN_ALL
132 gboolean         g_dbus_connection_close_sync                     (GDBusConnection     *connection,
133                                                                    GCancellable        *cancellable,
134                                                                    GError             **error);
135
136 /* ---------------------------------------------------------------------------------------------------- */
137
138 GLIB_AVAILABLE_IN_ALL
139 void             g_dbus_connection_flush                          (GDBusConnection     *connection,
140                                                                    GCancellable        *cancellable,
141                                                                    GAsyncReadyCallback  callback,
142                                                                    gpointer             user_data);
143 GLIB_AVAILABLE_IN_ALL
144 gboolean         g_dbus_connection_flush_finish                   (GDBusConnection     *connection,
145                                                                    GAsyncResult        *res,
146                                                                    GError             **error);
147 GLIB_AVAILABLE_IN_ALL
148 gboolean         g_dbus_connection_flush_sync                     (GDBusConnection     *connection,
149                                                                    GCancellable        *cancellable,
150                                                                    GError             **error);
151
152 /* ---------------------------------------------------------------------------------------------------- */
153
154 GLIB_AVAILABLE_IN_ALL
155 gboolean         g_dbus_connection_send_message                   (GDBusConnection     *connection,
156                                                                    GDBusMessage        *message,
157                                                                    GDBusSendMessageFlags flags,
158                                                                    volatile guint32    *out_serial,
159                                                                    GError             **error);
160 GLIB_AVAILABLE_IN_ALL
161 void             g_dbus_connection_send_message_with_reply        (GDBusConnection     *connection,
162                                                                    GDBusMessage        *message,
163                                                                    GDBusSendMessageFlags flags,
164                                                                    gint                 timeout_msec,
165                                                                    volatile guint32    *out_serial,
166                                                                    GCancellable        *cancellable,
167                                                                    GAsyncReadyCallback  callback,
168                                                                    gpointer             user_data);
169 GLIB_AVAILABLE_IN_ALL
170 GDBusMessage    *g_dbus_connection_send_message_with_reply_finish (GDBusConnection     *connection,
171                                                                    GAsyncResult        *res,
172                                                                    GError             **error);
173 GLIB_AVAILABLE_IN_ALL
174 GDBusMessage    *g_dbus_connection_send_message_with_reply_sync   (GDBusConnection     *connection,
175                                                                    GDBusMessage        *message,
176                                                                    GDBusSendMessageFlags flags,
177                                                                    gint                 timeout_msec,
178                                                                    volatile guint32    *out_serial,
179                                                                    GCancellable        *cancellable,
180                                                                    GError             **error);
181
182 /* ---------------------------------------------------------------------------------------------------- */
183
184 GLIB_AVAILABLE_IN_ALL
185 gboolean  g_dbus_connection_emit_signal                       (GDBusConnection    *connection,
186                                                                const gchar        *destination_bus_name,
187                                                                const gchar        *object_path,
188                                                                const gchar        *interface_name,
189                                                                const gchar        *signal_name,
190                                                                GVariant           *parameters,
191                                                                GError            **error);
192 GLIB_AVAILABLE_IN_ALL
193 void      g_dbus_connection_call                              (GDBusConnection    *connection,
194                                                                const gchar        *bus_name,
195                                                                const gchar        *object_path,
196                                                                const gchar        *interface_name,
197                                                                const gchar        *method_name,
198                                                                GVariant           *parameters,
199                                                                const GVariantType *reply_type,
200                                                                GDBusCallFlags      flags,
201                                                                gint                timeout_msec,
202                                                                GCancellable       *cancellable,
203                                                                GAsyncReadyCallback callback,
204                                                                gpointer            user_data);
205 GLIB_AVAILABLE_IN_ALL
206 GVariant *g_dbus_connection_call_finish                       (GDBusConnection    *connection,
207                                                                GAsyncResult       *res,
208                                                                GError            **error);
209 GLIB_AVAILABLE_IN_ALL
210 GVariant *g_dbus_connection_call_sync                         (GDBusConnection    *connection,
211                                                                const gchar        *bus_name,
212                                                                const gchar        *object_path,
213                                                                const gchar        *interface_name,
214                                                                const gchar        *method_name,
215                                                                GVariant           *parameters,
216                                                                const GVariantType *reply_type,
217                                                                GDBusCallFlags      flags,
218                                                                gint                timeout_msec,
219                                                                GCancellable       *cancellable,
220                                                                GError            **error);
221 GLIB_AVAILABLE_IN_2_30
222 void      g_dbus_connection_call_with_unix_fd_list            (GDBusConnection    *connection,
223                                                                const gchar        *bus_name,
224                                                                const gchar        *object_path,
225                                                                const gchar        *interface_name,
226                                                                const gchar        *method_name,
227                                                                GVariant           *parameters,
228                                                                const GVariantType *reply_type,
229                                                                GDBusCallFlags      flags,
230                                                                gint                timeout_msec,
231                                                                GUnixFDList        *fd_list,
232                                                                GCancellable       *cancellable,
233                                                                GAsyncReadyCallback callback,
234                                                                gpointer            user_data);
235 GLIB_AVAILABLE_IN_2_30
236 GVariant *g_dbus_connection_call_with_unix_fd_list_finish     (GDBusConnection    *connection,
237                                                                GUnixFDList       **out_fd_list,
238                                                                GAsyncResult       *res,
239                                                                GError            **error);
240 GLIB_AVAILABLE_IN_2_30
241 GVariant *g_dbus_connection_call_with_unix_fd_list_sync       (GDBusConnection    *connection,
242                                                                const gchar        *bus_name,
243                                                                const gchar        *object_path,
244                                                                const gchar        *interface_name,
245                                                                const gchar        *method_name,
246                                                                GVariant           *parameters,
247                                                                const GVariantType *reply_type,
248                                                                GDBusCallFlags      flags,
249                                                                gint                timeout_msec,
250                                                                GUnixFDList        *fd_list,
251                                                                GUnixFDList       **out_fd_list,
252                                                                GCancellable       *cancellable,
253                                                                GError            **error);
254
255 /* ---------------------------------------------------------------------------------------------------- */
256
257
258 /**
259  * GDBusInterfaceMethodCallFunc:
260  * @connection: A #GDBusConnection.
261  * @sender: The unique bus name of the remote caller.
262  * @object_path: The object path that the method was invoked on.
263  * @interface_name: The D-Bus interface name the method was invoked on.
264  * @method_name: The name of the method that was invoked.
265  * @parameters: A #GVariant tuple with parameters.
266  * @invocation: A #GDBusMethodInvocation object that can be used to return a value or error.
267  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
268  *
269  * The type of the @method_call function in #GDBusInterfaceVTable.
270  *
271  * Since: 2.26
272  */
273 typedef void (*GDBusInterfaceMethodCallFunc) (GDBusConnection       *connection,
274                                               const gchar           *sender,
275                                               const gchar           *object_path,
276                                               const gchar           *interface_name,
277                                               const gchar           *method_name,
278                                               GVariant              *parameters,
279                                               GDBusMethodInvocation *invocation,
280                                               gpointer               user_data);
281
282 /**
283  * GDBusInterfaceGetPropertyFunc:
284  * @connection: A #GDBusConnection.
285  * @sender: The unique bus name of the remote caller.
286  * @object_path: The object path that the method was invoked on.
287  * @interface_name: The D-Bus interface name for the property.
288  * @property_name: The name of the property to get the value of.
289  * @error: Return location for error.
290  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
291  *
292  * The type of the @get_property function in #GDBusInterfaceVTable.
293  *
294  * Returns: A #GVariant with the value for @property_name or %NULL if
295  *     @error is set. If the returned #GVariant is floating, it is
296  *     consumed - otherwise its reference count is decreased by one.
297  *
298  * Since: 2.26
299  */
300 typedef GVariant *(*GDBusInterfaceGetPropertyFunc) (GDBusConnection       *connection,
301                                                     const gchar           *sender,
302                                                     const gchar           *object_path,
303                                                     const gchar           *interface_name,
304                                                     const gchar           *property_name,
305                                                     GError               **error,
306                                                     gpointer               user_data);
307
308 /**
309  * GDBusInterfaceSetPropertyFunc:
310  * @connection: A #GDBusConnection.
311  * @sender: The unique bus name of the remote caller.
312  * @object_path: The object path that the method was invoked on.
313  * @interface_name: The D-Bus interface name for the property.
314  * @property_name: The name of the property to get the value of.
315  * @value: The value to set the property to.
316  * @error: Return location for error.
317  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
318  *
319  * The type of the @set_property function in #GDBusInterfaceVTable.
320  *
321  * Returns: %TRUE if the property was set to @value, %FALSE if @error is set.
322  *
323  * Since: 2.26
324  */
325 typedef gboolean  (*GDBusInterfaceSetPropertyFunc) (GDBusConnection       *connection,
326                                                     const gchar           *sender,
327                                                     const gchar           *object_path,
328                                                     const gchar           *interface_name,
329                                                     const gchar           *property_name,
330                                                     GVariant              *value,
331                                                     GError               **error,
332                                                     gpointer               user_data);
333
334 /**
335  * GDBusInterfaceVTable:
336  * @method_call: Function for handling incoming method calls.
337  * @get_property: Function for getting a property.
338  * @set_property: Function for setting a property.
339  *
340  * Virtual table for handling properties and method calls for a D-Bus
341  * interface.
342  *
343  * If you want to handle getting/setting D-Bus properties asynchronously, simply
344  * register an object with the <literal>org.freedesktop.DBus.Properties</literal>
345  * D-Bus interface using g_dbus_connection_register_object().
346  *
347  * Since: 2.26
348  */
349 struct _GDBusInterfaceVTable
350 {
351   GDBusInterfaceMethodCallFunc  method_call;
352   GDBusInterfaceGetPropertyFunc get_property;
353   GDBusInterfaceSetPropertyFunc set_property;
354
355   /*< private >*/
356   /* Padding for future expansion - also remember to update
357    * gdbusconnection.c:_g_dbus_interface_vtable_copy() when
358    * changing this.
359    */
360   gpointer padding[8];
361 };
362
363 GLIB_AVAILABLE_IN_ALL
364 guint            g_dbus_connection_register_object            (GDBusConnection            *connection,
365                                                                const gchar                *object_path,
366                                                                GDBusInterfaceInfo         *interface_info,
367                                                                const GDBusInterfaceVTable *vtable,
368                                                                gpointer                    user_data,
369                                                                GDestroyNotify              user_data_free_func,
370                                                                GError                    **error);
371 GLIB_AVAILABLE_IN_ALL
372 gboolean         g_dbus_connection_unregister_object          (GDBusConnection            *connection,
373                                                                guint                       registration_id);
374
375 /* ---------------------------------------------------------------------------------------------------- */
376
377 /**
378  * GDBusSubtreeEnumerateFunc:
379  * @connection: A #GDBusConnection.
380  * @sender: The unique bus name of the remote caller.
381  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
382  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
383  *
384  * The type of the @enumerate function in #GDBusSubtreeVTable.
385  *
386  * This function is called when generating introspection data and also
387  * when preparing to dispatch incoming messages in the event that the
388  * %G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES flag is not
389  * specified (ie: to verify that the object path is valid).
390  *
391  * Hierarchies are not supported; the items that you return should not
392  * contain the '/' character.
393  *
394  * The return value will be freed with g_strfreev().
395  *
396  * Returns: A newly allocated array of strings for node names that are children of @object_path.
397  *
398  * Since: 2.26
399  */
400 typedef gchar** (*GDBusSubtreeEnumerateFunc) (GDBusConnection       *connection,
401                                               const gchar           *sender,
402                                               const gchar           *object_path,
403                                               gpointer               user_data);
404
405 /**
406  * GDBusSubtreeIntrospectFunc:
407  * @connection: A #GDBusConnection.
408  * @sender: The unique bus name of the remote caller.
409  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
410  * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree.
411  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
412  *
413  * The type of the @introspect function in #GDBusSubtreeVTable.
414  *
415  * Subtrees are flat.  @node, if non-%NULL, is always exactly one
416  * segment of the object path (ie: it never contains a slash).
417  *
418  * This function should return %NULL to indicate that there is no object
419  * at this node.
420  *
421  * If this function returns non-%NULL, the return value is expected to
422  * be a %NULL-terminated array of pointers to #GDBusInterfaceInfo
423  * structures describing the interfaces implemented by @node.  This
424  * array will have g_dbus_interface_info_unref() called on each item
425  * before being freed with g_free().
426  *
427  * The difference between returning %NULL and an array containing zero
428  * items is that the standard DBus interfaces will returned to the
429  * remote introspector in the empty array case, but not in the %NULL
430  * case.
431  *
432  * Returns: A %NULL-terminated array of pointers to #GDBusInterfaceInfo, or %NULL.
433  *
434  * Since: 2.26
435  */
436 typedef GDBusInterfaceInfo ** (*GDBusSubtreeIntrospectFunc) (GDBusConnection       *connection,
437                                                              const gchar           *sender,
438                                                              const gchar           *object_path,
439                                                              const gchar           *node,
440                                                              gpointer               user_data);
441
442 /**
443  * GDBusSubtreeDispatchFunc:
444  * @connection: A #GDBusConnection.
445  * @sender: The unique bus name of the remote caller.
446  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
447  * @interface_name: The D-Bus interface name that the method call or property access is for.
448  * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree.
449  * @out_user_data: Return location for user data to pass to functions in the returned #GDBusInterfaceVTable (never %NULL).
450  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
451  *
452  * The type of the @dispatch function in #GDBusSubtreeVTable.
453  *
454  * Subtrees are flat.  @node, if non-%NULL, is always exactly one
455  * segment of the object path (ie: it never contains a slash).
456  *
457  * Returns: A #GDBusInterfaceVTable or %NULL if you don't want to handle the methods.
458  *
459  * Since: 2.26
460  */
461 typedef const GDBusInterfaceVTable * (*GDBusSubtreeDispatchFunc) (GDBusConnection             *connection,
462                                                                   const gchar                 *sender,
463                                                                   const gchar                 *object_path,
464                                                                   const gchar                 *interface_name,
465                                                                   const gchar                 *node,
466                                                                   gpointer                    *out_user_data,
467                                                                   gpointer                     user_data);
468
469 /**
470  * GDBusSubtreeVTable:
471  * @enumerate: Function for enumerating child nodes.
472  * @introspect: Function for introspecting a child node.
473  * @dispatch: Function for dispatching a remote call on a child node.
474  *
475  * Virtual table for handling subtrees registered with g_dbus_connection_register_subtree().
476  *
477  * Since: 2.26
478  */
479 struct _GDBusSubtreeVTable
480 {
481   GDBusSubtreeEnumerateFunc  enumerate;
482   GDBusSubtreeIntrospectFunc introspect;
483   GDBusSubtreeDispatchFunc   dispatch;
484
485   /*< private >*/
486   /* Padding for future expansion - also remember to update
487    * gdbusconnection.c:_g_dbus_subtree_vtable_copy() when
488    * changing this.
489    */
490   gpointer padding[8];
491 };
492
493 GLIB_AVAILABLE_IN_ALL
494 guint            g_dbus_connection_register_subtree           (GDBusConnection            *connection,
495                                                                const gchar                *object_path,
496                                                                const GDBusSubtreeVTable   *vtable,
497                                                                GDBusSubtreeFlags           flags,
498                                                                gpointer                    user_data,
499                                                                GDestroyNotify              user_data_free_func,
500                                                                GError                    **error);
501 GLIB_AVAILABLE_IN_ALL
502 gboolean         g_dbus_connection_unregister_subtree         (GDBusConnection            *connection,
503                                                                guint                       registration_id);
504
505 /* ---------------------------------------------------------------------------------------------------- */
506
507 /**
508  * GDBusSignalCallback:
509  * @connection: A #GDBusConnection.
510  * @sender_name: The unique bus name of the sender of the signal.
511  * @object_path: The object path that the signal was emitted on.
512  * @interface_name: The name of the interface.
513  * @signal_name: The name of the signal.
514  * @parameters: A #GVariant tuple with parameters for the signal.
515  * @user_data: User data passed when subscribing to the signal.
516  *
517  * Signature for callback function used in g_dbus_connection_signal_subscribe().
518  *
519  * Since: 2.26
520  */
521 typedef void (*GDBusSignalCallback) (GDBusConnection  *connection,
522                                      const gchar      *sender_name,
523                                      const gchar      *object_path,
524                                      const gchar      *interface_name,
525                                      const gchar      *signal_name,
526                                      GVariant         *parameters,
527                                      gpointer          user_data);
528
529 GLIB_AVAILABLE_IN_ALL
530 guint            g_dbus_connection_signal_subscribe           (GDBusConnection     *connection,
531                                                                const gchar         *sender,
532                                                                const gchar         *interface_name,
533                                                                const gchar         *member,
534                                                                const gchar         *object_path,
535                                                                const gchar         *arg0,
536                                                                GDBusSignalFlags     flags,
537                                                                GDBusSignalCallback  callback,
538                                                                gpointer             user_data,
539                                                                GDestroyNotify       user_data_free_func);
540 GLIB_AVAILABLE_IN_ALL
541 void             g_dbus_connection_signal_unsubscribe         (GDBusConnection     *connection,
542                                                                guint                subscription_id);
543
544 /* ---------------------------------------------------------------------------------------------------- */
545
546 /**
547  * GDBusMessageFilterFunction:
548  * @connection: (transfer none): A #GDBusConnection.
549  * @message: (transfer full): A locked #GDBusMessage that the filter function takes ownership of.
550  * @incoming: %TRUE if it is a message received from the other peer, %FALSE if it is
551  * a message to be sent to the other peer.
552  * @user_data: User data passed when adding the filter.
553  *
554  * Signature for function used in g_dbus_connection_add_filter().
555  *
556  * A filter function is passed a #GDBusMessage and expected to return
557  * a #GDBusMessage too. Passive filter functions that don't modify the
558  * message can simply return the @message object:
559  * |[
560  * static GDBusMessage *
561  * passive_filter (GDBusConnection *connection
562  *                 GDBusMessage    *message,
563  *                 gboolean         incoming,
564  *                 gpointer         user_data)
565  * {
566  *   /<!-- -->* inspect @message *<!-- -->/
567  *   return message;
568  * }
569  * ]|
570  * Filter functions that wants to drop a message can simply return %NULL:
571  * |[
572  * static GDBusMessage *
573  * drop_filter (GDBusConnection *connection
574  *              GDBusMessage    *message,
575  *              gboolean         incoming,
576  *              gpointer         user_data)
577  * {
578  *   if (should_drop_message)
579  *     {
580  *       g_object_unref (message);
581  *       message = NULL;
582  *     }
583  *   return message;
584  * }
585  * ]|
586  * Finally, a filter function may modify a message by copying it:
587  * |[
588  * static GDBusMessage *
589  * modifying_filter (GDBusConnection *connection
590  *                   GDBusMessage    *message,
591  *                   gboolean         incoming,
592  *                   gpointer         user_data)
593  * {
594  *   GDBusMessage *copy;
595  *   GError *error;
596  *
597  *   error = NULL;
598  *   copy = g_dbus_message_copy (message, &error);
599  *   /<!-- -->* handle @error being is set *<!-- -->/
600  *   g_object_unref (message);
601  *
602  *   /<!-- -->* modify @copy *<!-- -->/
603  *
604  *   return copy;
605  * }
606  * ]|
607  * If the returned #GDBusMessage is different from @message and cannot
608  * be sent on @connection (it could use features, such as file
609  * descriptors, not compatible with @connection), then a warning is
610  * logged to <emphasis>standard error</emphasis>. Applications can
611  * check this ahead of time using g_dbus_message_to_blob() passing a
612  * #GDBusCapabilityFlags value obtained from @connection.
613  *
614  * Returns: (transfer full) (allow-none): A #GDBusMessage that will be freed with
615  * g_object_unref() or %NULL to drop the message. Passive filter
616  * functions can simply return the passed @message object.
617  *
618  * Since: 2.26
619  */
620 typedef GDBusMessage *(*GDBusMessageFilterFunction) (GDBusConnection *connection,
621                                                      GDBusMessage    *message,
622                                                      gboolean         incoming,
623                                                      gpointer         user_data);
624
625 GLIB_AVAILABLE_IN_ALL
626 guint g_dbus_connection_add_filter (GDBusConnection            *connection,
627                                     GDBusMessageFilterFunction  filter_function,
628                                     gpointer                    user_data,
629                                     GDestroyNotify              user_data_free_func);
630
631 GLIB_AVAILABLE_IN_ALL
632 void  g_dbus_connection_remove_filter (GDBusConnection    *connection,
633                                        guint               filter_id);
634
635 /* ---------------------------------------------------------------------------------------------------- */
636
637
638 G_END_DECLS
639
640 #endif /* __G_DBUS_CONNECTION_H__ */