Bug 624484: GDBusSubtreeDispatchFunc clarification
[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 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
26
27 #ifndef __G_DBUS_CONNECTION_H__
28 #define __G_DBUS_CONNECTION_H__
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 GType            g_dbus_connection_get_type                   (void) G_GNUC_CONST;
39
40 /* ---------------------------------------------------------------------------------------------------- */
41
42 void              g_bus_get                    (GBusType             bus_type,
43                                                 GCancellable        *cancellable,
44                                                 GAsyncReadyCallback  callback,
45                                                 gpointer             user_data);
46 GDBusConnection  *g_bus_get_finish             (GAsyncResult        *res,
47                                                 GError             **error);
48 GDBusConnection  *g_bus_get_sync               (GBusType            bus_type,
49                                                 GCancellable       *cancellable,
50                                                 GError            **error);
51
52 /* ---------------------------------------------------------------------------------------------------- */
53
54 void             g_dbus_connection_new                        (GIOStream              *stream,
55                                                                const gchar            *guid,
56                                                                GDBusConnectionFlags    flags,
57                                                                GDBusAuthObserver      *observer,
58                                                                GCancellable           *cancellable,
59                                                                GAsyncReadyCallback     callback,
60                                                                gpointer                user_data);
61 GDBusConnection *g_dbus_connection_new_finish                 (GAsyncResult           *res,
62                                                                GError                **error);
63 GDBusConnection *g_dbus_connection_new_sync                   (GIOStream              *stream,
64                                                                const gchar            *guid,
65                                                                GDBusConnectionFlags    flags,
66                                                                GDBusAuthObserver      *observer,
67                                                                GCancellable           *cancellable,
68                                                                GError                **error);
69
70 void             g_dbus_connection_new_for_address            (const gchar            *address,
71                                                                GDBusConnectionFlags    flags,
72                                                                GDBusAuthObserver      *observer,
73                                                                GCancellable           *cancellable,
74                                                                GAsyncReadyCallback     callback,
75                                                                gpointer                user_data);
76 GDBusConnection *g_dbus_connection_new_for_address_finish     (GAsyncResult           *res,
77                                                                GError                **error);
78 GDBusConnection *g_dbus_connection_new_for_address_sync       (const gchar            *address,
79                                                                GDBusConnectionFlags    flags,
80                                                                GDBusAuthObserver      *observer,
81                                                                GCancellable           *cancellable,
82                                                                GError                **error);
83
84 /* ---------------------------------------------------------------------------------------------------- */
85
86 void             g_dbus_connection_start_message_processing   (GDBusConnection    *connection);
87 gboolean         g_dbus_connection_is_closed                  (GDBusConnection    *connection);
88 GIOStream       *g_dbus_connection_get_stream                 (GDBusConnection    *connection);
89 const gchar     *g_dbus_connection_get_guid                   (GDBusConnection    *connection);
90 const gchar     *g_dbus_connection_get_unique_name            (GDBusConnection    *connection);
91 GCredentials    *g_dbus_connection_get_peer_credentials       (GDBusConnection    *connection);
92 gboolean         g_dbus_connection_get_exit_on_close          (GDBusConnection    *connection);
93 void             g_dbus_connection_set_exit_on_close          (GDBusConnection    *connection,
94                                                                gboolean            exit_on_close);
95 GDBusCapabilityFlags  g_dbus_connection_get_capabilities      (GDBusConnection    *connection);
96
97 /* ---------------------------------------------------------------------------------------------------- */
98
99 void             g_dbus_connection_close                          (GDBusConnection     *connection,
100                                                                    GCancellable        *cancellable,
101                                                                    GAsyncReadyCallback  callback,
102                                                                    gpointer             user_data);
103 gboolean         g_dbus_connection_close_finish                   (GDBusConnection     *connection,
104                                                                    GAsyncResult        *res,
105                                                                    GError             **error);
106 gboolean         g_dbus_connection_close_sync                     (GDBusConnection     *connection,
107                                                                    GCancellable        *cancellable,
108                                                                    GError             **error);
109
110 /* ---------------------------------------------------------------------------------------------------- */
111
112 void             g_dbus_connection_flush                          (GDBusConnection     *connection,
113                                                                    GCancellable        *cancellable,
114                                                                    GAsyncReadyCallback  callback,
115                                                                    gpointer             user_data);
116 gboolean         g_dbus_connection_flush_finish                   (GDBusConnection     *connection,
117                                                                    GAsyncResult        *res,
118                                                                    GError             **error);
119 gboolean         g_dbus_connection_flush_sync                     (GDBusConnection     *connection,
120                                                                    GCancellable        *cancellable,
121                                                                    GError             **error);
122
123 /* ---------------------------------------------------------------------------------------------------- */
124
125 gboolean         g_dbus_connection_send_message                   (GDBusConnection     *connection,
126                                                                    GDBusMessage        *message,
127                                                                    volatile guint32    *out_serial,
128                                                                    GError             **error);
129 void             g_dbus_connection_send_message_with_reply        (GDBusConnection     *connection,
130                                                                    GDBusMessage        *message,
131                                                                    gint                 timeout_msec,
132                                                                    volatile guint32    *out_serial,
133                                                                    GCancellable        *cancellable,
134                                                                    GAsyncReadyCallback  callback,
135                                                                    gpointer             user_data);
136 GDBusMessage    *g_dbus_connection_send_message_with_reply_finish (GDBusConnection     *connection,
137                                                                    GAsyncResult        *res,
138                                                                    GError             **error);
139 GDBusMessage    *g_dbus_connection_send_message_with_reply_sync   (GDBusConnection     *connection,
140                                                                    GDBusMessage        *message,
141                                                                    gint                 timeout_msec,
142                                                                    volatile guint32    *out_serial,
143                                                                    GCancellable        *cancellable,
144                                                                    GError             **error);
145
146 /* ---------------------------------------------------------------------------------------------------- */
147
148 gboolean  g_dbus_connection_emit_signal                       (GDBusConnection    *connection,
149                                                                const gchar        *destination_bus_name,
150                                                                const gchar        *object_path,
151                                                                const gchar        *interface_name,
152                                                                const gchar        *signal_name,
153                                                                GVariant           *parameters,
154                                                                GError            **error);
155 void      g_dbus_connection_call                              (GDBusConnection    *connection,
156                                                                const gchar        *bus_name,
157                                                                const gchar        *object_path,
158                                                                const gchar        *interface_name,
159                                                                const gchar        *method_name,
160                                                                GVariant           *parameters,
161                                                                const GVariantType *reply_type,
162                                                                GDBusCallFlags      flags,
163                                                                gint                timeout_msec,
164                                                                GCancellable       *cancellable,
165                                                                GAsyncReadyCallback callback,
166                                                                gpointer            user_data);
167 GVariant *g_dbus_connection_call_finish                       (GDBusConnection    *connection,
168                                                                GAsyncResult       *res,
169                                                                GError            **error);
170 GVariant *g_dbus_connection_call_sync                         (GDBusConnection    *connection,
171                                                                const gchar        *bus_name,
172                                                                const gchar        *object_path,
173                                                                const gchar        *interface_name,
174                                                                const gchar        *method_name,
175                                                                GVariant           *parameters,
176                                                                const GVariantType *reply_type,
177                                                                GDBusCallFlags      flags,
178                                                                gint                timeout_msec,
179                                                                GCancellable       *cancellable,
180                                                                GError            **error);
181
182 /* ---------------------------------------------------------------------------------------------------- */
183
184
185 /**
186  * GDBusInterfaceMethodCallFunc:
187  * @connection: A #GDBusConnection.
188  * @sender: The unique bus name of the remote caller.
189  * @object_path: The object path that the method was invoked on.
190  * @interface_name: The D-Bus interface name the method was invoked on.
191  * @method_name: The name of the method that was invoked.
192  * @parameters: A #GVariant tuple with parameters.
193  * @invocation: A #GDBusMethodInvocation object that can be used to return a value or error.
194  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
195  *
196  * The type of the @method_call function in #GDBusInterfaceVTable.
197  *
198  * Since: 2.26
199  */
200 typedef void (*GDBusInterfaceMethodCallFunc) (GDBusConnection       *connection,
201                                               const gchar           *sender,
202                                               const gchar           *object_path,
203                                               const gchar           *interface_name,
204                                               const gchar           *method_name,
205                                               GVariant              *parameters,
206                                               GDBusMethodInvocation *invocation,
207                                               gpointer               user_data);
208
209 /**
210  * GDBusInterfaceGetPropertyFunc:
211  * @connection: A #GDBusConnection.
212  * @sender: The unique bus name of the remote caller.
213  * @object_path: The object path that the method was invoked on.
214  * @interface_name: The D-Bus interface name for the property.
215  * @property_name: The name of the property to get the value of.
216  * @error: Return location for error.
217  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
218  *
219  * The type of the @get_property function in #GDBusInterfaceVTable.
220  *
221  * Returns: A newly-allocated #GVariant with the value for @property_name or %NULL if @error is set.
222  *
223  * Since: 2.26
224  */
225 typedef GVariant *(*GDBusInterfaceGetPropertyFunc) (GDBusConnection       *connection,
226                                                     const gchar           *sender,
227                                                     const gchar           *object_path,
228                                                     const gchar           *interface_name,
229                                                     const gchar           *property_name,
230                                                     GError               **error,
231                                                     gpointer               user_data);
232
233 /**
234  * GDBusInterfaceSetPropertyFunc:
235  * @connection: A #GDBusConnection.
236  * @sender: The unique bus name of the remote caller.
237  * @object_path: The object path that the method was invoked on.
238  * @interface_name: The D-Bus interface name for the property.
239  * @property_name: The name of the property to get the value of.
240  * @value: The value to set the property to.
241  * @error: Return location for error.
242  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object().
243  *
244  * The type of the @set_property function in #GDBusInterfaceVTable.
245  *
246  * Returns: %TRUE if the property was set to @value, %FALSE if @error is set.
247  *
248  * Since: 2.26
249  */
250 typedef gboolean  (*GDBusInterfaceSetPropertyFunc) (GDBusConnection       *connection,
251                                                     const gchar           *sender,
252                                                     const gchar           *object_path,
253                                                     const gchar           *interface_name,
254                                                     const gchar           *property_name,
255                                                     GVariant              *value,
256                                                     GError               **error,
257                                                     gpointer               user_data);
258
259 /**
260  * GDBusInterfaceVTable:
261  * @method_call: Function for handling incoming method calls.
262  * @get_property: Function for getting a property.
263  * @set_property: Function for setting a property.
264  *
265  * Virtual table for handling properties and method calls for a D-Bus
266  * interface.
267  *
268  * If you want to handle getting/setting D-Bus properties asynchronously, simply
269  * register an object with the <literal>org.freedesktop.DBus.Properties</literal>
270  * D-Bus interface using g_dbus_connection_register_object().
271  *
272  * Since: 2.26
273  */
274 struct _GDBusInterfaceVTable
275 {
276   GDBusInterfaceMethodCallFunc  method_call;
277   GDBusInterfaceGetPropertyFunc get_property;
278   GDBusInterfaceSetPropertyFunc set_property;
279
280   /*< private >*/
281   /* Padding for future expansion - also remember to update
282    * gdbusconnection.c:_g_dbus_interface_vtable_copy() when
283    * changing this.
284    */
285   gpointer padding[8];
286 };
287
288 guint            g_dbus_connection_register_object            (GDBusConnection            *connection,
289                                                                const gchar                *object_path,
290                                                                const GDBusInterfaceInfo   *interface_info,
291                                                                const GDBusInterfaceVTable *vtable,
292                                                                gpointer                    user_data,
293                                                                GDestroyNotify              user_data_free_func,
294                                                                GError                    **error);
295 gboolean         g_dbus_connection_unregister_object          (GDBusConnection            *connection,
296                                                                guint                       registration_id);
297
298 /* ---------------------------------------------------------------------------------------------------- */
299
300 /**
301  * GDBusSubtreeEnumerateFunc:
302  * @connection: A #GDBusConnection.
303  * @sender: The unique bus name of the remote caller.
304  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
305  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
306  *
307  * The type of the @enumerate function in #GDBusSubtreeVTable.
308  *
309  * This function is called when generating introspection data and also
310  * when preparing to dispatch incoming messages in the event that the
311  * %G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES flag is not
312  * specified (ie: to verify that the object path is valid).
313  *
314  * Hierarchies are not supported; the items that you return should not
315  * contain the '/' character.
316  *
317  * The return value will be freed with g_strfreev().
318  *
319  * Returns: A newly allocated array of strings for node names that are children of @object_path.
320  *
321  * Since: 2.26
322  */
323 typedef gchar** (*GDBusSubtreeEnumerateFunc) (GDBusConnection       *connection,
324                                               const gchar           *sender,
325                                               const gchar           *object_path,
326                                               gpointer               user_data);
327
328 /**
329  * GDBusSubtreeIntrospectFunc:
330  * @connection: A #GDBusConnection.
331  * @sender: The unique bus name of the remote caller.
332  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
333  * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree.
334  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
335  *
336  * The type of the @introspect function in #GDBusSubtreeVTable.
337  *
338  * Subtrees are flat.  @node, if non-%NULL, is always exactly one
339  * segment of the object path (ie: it never contains a slash).
340  *
341  * This function should return %NULL to indicate that there is no object
342  * at this node.
343  *
344  * If this function returns non-%NULL, the return value is expected to
345  * be a %NULL-terminated array of pointers to #GDBusInterfaceInfo
346  * structures describing the interfaces implemented by @node.  This
347  * array will have g_dbus_interface_info_unref() called on each item
348  * before being freed with g_free().
349  *
350  * The difference between returning %NULL and an array containing zero
351  * items is that the standard DBus interfaces will returned to the
352  * remote introspector in the empty array case, but not in the %NULL
353  * case.
354  *
355  * Returns: A %NULL-terminated array of pointers to #GDBusInterfaceInfo, or %NULL.
356  *
357  * Since: 2.26
358  */
359 typedef GDBusInterfaceInfo ** (*GDBusSubtreeIntrospectFunc) (GDBusConnection       *connection,
360                                                              const gchar           *sender,
361                                                              const gchar           *object_path,
362                                                              const gchar           *node,
363                                                              gpointer               user_data);
364
365 /**
366  * GDBusSubtreeDispatchFunc:
367  * @connection: A #GDBusConnection.
368  * @sender: The unique bus name of the remote caller.
369  * @object_path: The object path that was registered with g_dbus_connection_register_subtree().
370  * @interface_name: The D-Bus interface name that the method call or property access is for.
371  * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree.
372  * @out_user_data: Return location for user data to pass to functions in the returned #GDBusInterfaceVTable (never %NULL).
373  * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree().
374  *
375  * The type of the @dispatch function in #GDBusSubtreeVTable.
376  *
377  * Subtrees are flat.  @node, if non-%NULL, is always exactly one
378  * segment of the object path (ie: it never contains a slash).
379  *
380  * Returns: A #GDBusInterfaceVTable or %NULL if you don't want to handle the methods.
381  *
382  * Since: 2.26
383  */
384 typedef const GDBusInterfaceVTable * (*GDBusSubtreeDispatchFunc) (GDBusConnection             *connection,
385                                                                   const gchar                 *sender,
386                                                                   const gchar                 *object_path,
387                                                                   const gchar                 *interface_name,
388                                                                   const gchar                 *node,
389                                                                   gpointer                    *out_user_data,
390                                                                   gpointer                     user_data);
391
392 /**
393  * GDBusSubtreeVTable:
394  * @enumerate: Function for enumerating child nodes.
395  * @introspect: Function for introspecting a child node.
396  * @dispatch: Function for dispatching a remote call on a child node.
397  *
398  * Virtual table for handling subtrees registered with g_dbus_connection_register_subtree().
399  *
400  * Since: 2.26
401  */
402 struct _GDBusSubtreeVTable
403 {
404   GDBusSubtreeEnumerateFunc  enumerate;
405   GDBusSubtreeIntrospectFunc introspect;
406   GDBusSubtreeDispatchFunc   dispatch;
407
408   /*< private >*/
409   /* Padding for future expansion - also remember to update
410    * gdbusconnection.c:_g_dbus_subtree_vtable_copy() when
411    * changing this.
412    */
413   gpointer padding[8];
414 };
415
416 guint            g_dbus_connection_register_subtree           (GDBusConnection            *connection,
417                                                                const gchar                *object_path,
418                                                                const GDBusSubtreeVTable   *vtable,
419                                                                GDBusSubtreeFlags           flags,
420                                                                gpointer                    user_data,
421                                                                GDestroyNotify              user_data_free_func,
422                                                                GError                    **error);
423 gboolean         g_dbus_connection_unregister_subtree         (GDBusConnection            *connection,
424                                                                guint                       registration_id);
425
426 /* ---------------------------------------------------------------------------------------------------- */
427
428 /**
429  * GDBusSignalCallback:
430  * @connection: A #GDBusConnection.
431  * @sender_name: The unique bus name of the sender of the signal.
432  * @object_path: The object path that the signal was emitted on.
433  * @interface_name: The name of the interface.
434  * @signal_name: The name of the signal.
435  * @parameters: A #GVariant tuple with parameters for the signal.
436  * @user_data: User data passed when subscribing to the signal.
437  *
438  * Signature for callback function used in g_dbus_connection_signal_subscribe().
439  *
440  * Since: 2.26
441  */
442 typedef void (*GDBusSignalCallback) (GDBusConnection  *connection,
443                                      const gchar      *sender_name,
444                                      const gchar      *object_path,
445                                      const gchar      *interface_name,
446                                      const gchar      *signal_name,
447                                      GVariant         *parameters,
448                                      gpointer          user_data);
449
450 guint            g_dbus_connection_signal_subscribe           (GDBusConnection     *connection,
451                                                                const gchar         *sender,
452                                                                const gchar         *interface_name,
453                                                                const gchar         *member,
454                                                                const gchar         *object_path,
455                                                                const gchar         *arg0,
456                                                                GDBusSignalCallback  callback,
457                                                                gpointer             user_data,
458                                                                GDestroyNotify       user_data_free_func);
459 void             g_dbus_connection_signal_unsubscribe         (GDBusConnection     *connection,
460                                                                guint                subscription_id);
461
462 /* ---------------------------------------------------------------------------------------------------- */
463
464 /**
465  * GDBusMessageFilterFunction:
466  * @connection: A #GDBusConnection.
467  * @message: A #GDBusMessage.
468  * @incoming: %TRUE if it is a message received from the other peer, %FALSE if it is
469  * a message to be sent to the other peer.
470  * @user_data: User data passed when adding the filter.
471  *
472  * Signature for function used in g_dbus_connection_add_filter().
473  *
474  * Returns: %TRUE if the filter handled @message, %FALSE to let other
475  * handlers run.
476  *
477  * Since: 2.26
478  */
479 typedef gboolean (*GDBusMessageFilterFunction) (GDBusConnection *connection,
480                                                 GDBusMessage    *message,
481                                                 gboolean         incoming,
482                                                 gpointer         user_data);
483
484 guint g_dbus_connection_add_filter (GDBusConnection            *connection,
485                                     GDBusMessageFilterFunction  filter_function,
486                                     gpointer                    user_data,
487                                     GDestroyNotify              user_data_free_func);
488
489 void  g_dbus_connection_remove_filter (GDBusConnection    *connection,
490                                        guint               filter_id);
491
492 /* ---------------------------------------------------------------------------------------------------- */
493
494
495 G_END_DECLS
496
497 #endif /* __G_DBUS_CONNECTION_H__ */