Optional autogen.sh flag --enable-kdbus-transport added allowing to compile with...
[platform/upstream/dbus.git] / dbus / dbus-connection.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-connection.h DBusConnection object
3  *
4  * Copyright (C) 2002, 2003  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 #if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION)
24 #error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
25 #endif
26
27 #ifndef DBUS_CONNECTION_H
28 #define DBUS_CONNECTION_H
29
30 #include <dbus/dbus-errors.h>
31 #include <dbus/dbus-memory.h>
32 #include <dbus/dbus-message.h>
33 #include <dbus/dbus-shared.h>
34
35 DBUS_BEGIN_DECLS
36
37 /**
38  * @addtogroup DBusConnection
39  * @{
40  */
41
42 /* documented in dbus-watch.c */
43 typedef struct DBusWatch DBusWatch;
44 /* documented in dbus-timeout.c */
45 typedef struct DBusTimeout DBusTimeout;
46 /** Opaque type representing preallocated resources so a message can be sent without further memory allocation. */
47 typedef struct DBusPreallocatedSend DBusPreallocatedSend;
48 /** Opaque type representing a method call that has not yet received a reply. */
49 typedef struct DBusPendingCall DBusPendingCall;
50 /** Opaque type representing a connection to a remote application and associated incoming/outgoing message queues. */
51 typedef struct DBusConnection DBusConnection;
52 /** Set of functions that must be implemented to handle messages sent to a particular object path. */
53 typedef struct DBusObjectPathVTable DBusObjectPathVTable;
54
55 /**
56  * Indicates the status of a #DBusWatch.
57  */
58 typedef enum
59 {
60   DBUS_WATCH_READABLE = 1 << 0, /**< As in POLLIN */
61   DBUS_WATCH_WRITABLE = 1 << 1, /**< As in POLLOUT */
62   DBUS_WATCH_ERROR    = 1 << 2, /**< As in POLLERR (can't watch for
63                                  *   this, but can be present in
64                                  *   current state passed to
65                                  *   dbus_watch_handle()).
66                                  */
67   DBUS_WATCH_HANGUP   = 1 << 3  /**< As in POLLHUP (can't watch for
68                                  *   it, but can be present in current
69                                  *   state passed to
70                                  *   dbus_watch_handle()).
71                                  */
72   /* Internal to libdbus, there is also _DBUS_WATCH_NVAL in dbus-watch.h */
73 } DBusWatchFlags;
74
75 /**
76  * Indicates the status of incoming data on a #DBusConnection. This determines whether
77  * dbus_connection_dispatch() needs to be called.
78  */
79 typedef enum
80 {
81   DBUS_DISPATCH_DATA_REMAINS,  /**< There is more data to potentially convert to messages. */
82   DBUS_DISPATCH_COMPLETE,      /**< All currently available data has been processed. */
83   DBUS_DISPATCH_NEED_MEMORY    /**< More memory is needed to continue. */
84 } DBusDispatchStatus;
85
86 /** Called when libdbus needs a new watch to be monitored by the main
87  * loop. Returns #FALSE if it lacks enough memory to add the
88  * watch. Set by dbus_connection_set_watch_functions() or
89  * dbus_server_set_watch_functions().
90  */
91 typedef dbus_bool_t (* DBusAddWatchFunction)       (DBusWatch      *watch,
92                                                     void           *data);
93 /** Called when dbus_watch_get_enabled() may return a different value
94  *  than it did before.  Set by dbus_connection_set_watch_functions()
95  *  or dbus_server_set_watch_functions().
96  */
97 typedef void        (* DBusWatchToggledFunction)   (DBusWatch      *watch,
98                                                     void           *data);
99 /** Called when libdbus no longer needs a watch to be monitored by the
100  * main loop. Set by dbus_connection_set_watch_functions() or
101  * dbus_server_set_watch_functions().
102  */
103 typedef void        (* DBusRemoveWatchFunction)    (DBusWatch      *watch,
104                                                     void           *data);
105 /** Called when libdbus needs a new timeout to be monitored by the main
106  * loop. Returns #FALSE if it lacks enough memory to add the
107  * watch. Set by dbus_connection_set_timeout_functions() or
108  * dbus_server_set_timeout_functions().
109  */
110 typedef dbus_bool_t (* DBusAddTimeoutFunction)     (DBusTimeout    *timeout,
111                                                     void           *data);
112 /** Called when dbus_timeout_get_enabled() may return a different
113  * value than it did before.
114  * Set by dbus_connection_set_timeout_functions() or
115  * dbus_server_set_timeout_functions().
116  */
117 typedef void        (* DBusTimeoutToggledFunction) (DBusTimeout    *timeout,
118                                                     void           *data);
119 /** Called when libdbus no longer needs a timeout to be monitored by the
120  * main loop. Set by dbus_connection_set_timeout_functions() or
121  * dbus_server_set_timeout_functions().
122  */
123 typedef void        (* DBusRemoveTimeoutFunction)  (DBusTimeout    *timeout,
124                                                     void           *data);
125 /** Called when the return value of dbus_connection_get_dispatch_status()
126  * may have changed. Set with dbus_connection_set_dispatch_status_function().
127  */
128 typedef void        (* DBusDispatchStatusFunction) (DBusConnection *connection,
129                                                     DBusDispatchStatus new_status,
130                                                     void           *data);
131 /**
132  * Called when the main loop's thread should be notified that there's now work
133  * to do. Set with dbus_connection_set_wakeup_main_function().
134  */
135 typedef void        (* DBusWakeupMainFunction)     (void           *data);
136
137 /**
138  * Called during authentication to check whether the given UNIX user
139  * ID is allowed to connect, if the client tried to auth as a UNIX
140  * user ID. Normally on Windows this would never happen. Set with
141  * dbus_connection_set_unix_user_function().
142  */ 
143 typedef dbus_bool_t (* DBusAllowUnixUserFunction)  (DBusConnection *connection,
144                                                     unsigned long   uid,
145                                                     void           *data);
146
147 /**
148  * Called during authentication to check whether the given Windows user
149  * ID is allowed to connect, if the client tried to auth as a Windows
150  * user ID. Normally on UNIX this would never happen. Set with
151  * dbus_connection_set_windows_user_function().
152  */ 
153 typedef dbus_bool_t (* DBusAllowWindowsUserFunction)  (DBusConnection *connection,
154                                                        const char     *user_sid,
155                                                        void           *data);
156
157
158 /**
159  * Called when a pending call now has a reply available. Set with
160  * dbus_pending_call_set_notify().
161  */
162 typedef void (* DBusPendingCallNotifyFunction) (DBusPendingCall *pending,
163                                                 void            *user_data);
164
165 /**
166  * Called when a message needs to be handled. The result indicates whether or
167  * not more handlers should be run. Set with dbus_connection_add_filter().
168  */
169 typedef DBusHandlerResult (* DBusHandleMessageFunction) (DBusConnection     *connection,
170                                                          DBusMessage        *message,
171                                                          void               *user_data);
172
173 DBUS_EXPORT
174 DBusMessage *      generate_local_error_message                                 (dbus_uint32_t serial,
175                                                                                                  char *error_name,
176                                                                                                  char *error_msg);
177 DBUS_EXPORT
178 DBusConnection*    dbus_connection_open                         (const char                 *address,
179                                                                  DBusError                  *error);
180 DBUS_EXPORT
181 DBusConnection*    dbus_connection_open_private                 (const char                 *address,
182                                                                  DBusError                  *error);
183 DBUS_EXPORT
184 DBusConnection*    dbus_connection_ref                          (DBusConnection             *connection);
185 DBUS_EXPORT
186 void               dbus_connection_unref                        (DBusConnection             *connection);
187 #ifdef ENABLE_KDBUS_TRANSPORT
188 DBUS_EXPORT
189 void               dbus_connection_unref_phantom               (DBusConnection             *connection);
190 #endif
191 DBUS_EXPORT
192 void               dbus_connection_close                        (DBusConnection             *connection);
193 DBUS_EXPORT
194 dbus_bool_t        dbus_connection_get_is_connected             (DBusConnection             *connection);
195 DBUS_EXPORT
196 dbus_bool_t        dbus_connection_get_is_authenticated         (DBusConnection             *connection);
197 #ifdef ENABLE_KDBUS_TRANSPORT
198 DBUS_EXPORT
199 dbus_bool_t        dbus_connection_set_is_authenticated         (DBusConnection             *connection);
200 #endif
201 DBUS_EXPORT
202 dbus_bool_t        dbus_connection_get_is_anonymous             (DBusConnection             *connection);
203 DBUS_EXPORT
204 char*              dbus_connection_get_server_id                (DBusConnection             *connection);
205 DBUS_EXPORT
206 dbus_bool_t        dbus_connection_can_send_type                (DBusConnection             *connection,
207                                                                  int                         type);
208
209 DBUS_EXPORT
210 void               dbus_connection_set_exit_on_disconnect       (DBusConnection             *connection,
211                                                                  dbus_bool_t                 exit_on_disconnect);
212 DBUS_EXPORT
213 void               dbus_connection_flush                        (DBusConnection             *connection);
214 DBUS_EXPORT
215 dbus_bool_t        dbus_connection_read_write_dispatch          (DBusConnection             *connection,
216                                                                  int                         timeout_milliseconds);
217 DBUS_EXPORT
218 dbus_bool_t        dbus_connection_read_write                   (DBusConnection             *connection,
219                                                                  int                         timeout_milliseconds);
220 DBUS_EXPORT
221 DBusMessage*       dbus_connection_borrow_message               (DBusConnection             *connection);
222 DBUS_EXPORT
223 void               dbus_connection_return_message               (DBusConnection             *connection,
224                                                                  DBusMessage                *message);
225 DBUS_EXPORT
226 void               dbus_connection_steal_borrowed_message       (DBusConnection             *connection,
227                                                                  DBusMessage                *message);
228 DBUS_EXPORT
229 DBusMessage*       dbus_connection_pop_message                  (DBusConnection             *connection);
230 DBUS_EXPORT
231 DBusDispatchStatus dbus_connection_get_dispatch_status          (DBusConnection             *connection);
232 DBUS_EXPORT
233 DBusDispatchStatus dbus_connection_dispatch                     (DBusConnection             *connection);
234 DBUS_EXPORT
235 dbus_bool_t        dbus_connection_has_messages_to_send         (DBusConnection *connection);
236 DBUS_EXPORT
237 dbus_bool_t        dbus_connection_send                         (DBusConnection             *connection,
238                                                                  DBusMessage                *message,
239                                                                  dbus_uint32_t              *client_serial);
240 DBUS_EXPORT
241 dbus_bool_t        dbus_connection_send_with_reply              (DBusConnection             *connection,
242                                                                  DBusMessage                *message,
243                                                                  DBusPendingCall           **pending_return,
244                                                                  int                         timeout_milliseconds);
245 DBUS_EXPORT
246 DBusMessage *      dbus_connection_send_with_reply_and_block    (DBusConnection             *connection,
247                                                                  DBusMessage                *message,
248                                                                  int                         timeout_milliseconds,
249                                                                  DBusError                  *error);
250 DBUS_EXPORT
251 dbus_bool_t        dbus_connection_set_watch_functions          (DBusConnection             *connection,
252                                                                  DBusAddWatchFunction        add_function,
253                                                                  DBusRemoveWatchFunction     remove_function,
254                                                                  DBusWatchToggledFunction    toggled_function,
255                                                                  void                       *data,
256                                                                  DBusFreeFunction            free_data_function);
257 DBUS_EXPORT
258 dbus_bool_t        dbus_connection_set_timeout_functions        (DBusConnection             *connection,
259                                                                  DBusAddTimeoutFunction      add_function,
260                                                                  DBusRemoveTimeoutFunction   remove_function,
261                                                                  DBusTimeoutToggledFunction  toggled_function,
262                                                                  void                       *data,
263                                                                  DBusFreeFunction            free_data_function);
264 DBUS_EXPORT
265 void               dbus_connection_set_wakeup_main_function     (DBusConnection             *connection,
266                                                                  DBusWakeupMainFunction      wakeup_main_function,
267                                                                  void                       *data,
268                                                                  DBusFreeFunction            free_data_function);
269 DBUS_EXPORT
270 void               dbus_connection_set_dispatch_status_function (DBusConnection             *connection,
271                                                                  DBusDispatchStatusFunction  function,
272                                                                  void                       *data,
273                                                                  DBusFreeFunction            free_data_function);
274 DBUS_EXPORT
275 dbus_bool_t        dbus_connection_get_unix_user                (DBusConnection             *connection,
276                                                                  unsigned long              *uid);
277 DBUS_EXPORT
278 dbus_bool_t        dbus_connection_get_unix_process_id          (DBusConnection             *connection,
279                                                                  unsigned long              *pid);
280 DBUS_EXPORT
281 dbus_bool_t        dbus_connection_get_adt_audit_session_data   (DBusConnection             *connection,
282                                                                  void                      **data,
283                                                                  dbus_int32_t               *data_size);
284 DBUS_EXPORT
285 void               dbus_connection_set_unix_user_function       (DBusConnection             *connection,
286                                                                  DBusAllowUnixUserFunction   function,
287                                                                  void                       *data,
288                                                                  DBusFreeFunction            free_data_function);
289 DBUS_EXPORT
290 dbus_bool_t        dbus_connection_get_windows_user             (DBusConnection             *connection,
291                                                                  char                      **windows_sid_p); 
292 DBUS_EXPORT
293 void               dbus_connection_set_windows_user_function    (DBusConnection             *connection,
294                                                                  DBusAllowWindowsUserFunction function,
295                                                                  void                       *data,
296                                                                  DBusFreeFunction            free_data_function);
297 DBUS_EXPORT
298 void               dbus_connection_set_allow_anonymous          (DBusConnection             *connection,
299                                                                  dbus_bool_t                 value);
300 DBUS_EXPORT
301 void               dbus_connection_set_route_peer_messages      (DBusConnection             *connection,
302                                                                  dbus_bool_t                 value);
303
304
305 /* Filters */
306
307 DBUS_EXPORT
308 dbus_bool_t dbus_connection_add_filter    (DBusConnection            *connection,
309                                            DBusHandleMessageFunction  function,
310                                            void                      *user_data,
311                                            DBusFreeFunction           free_data_function);
312 DBUS_EXPORT
313 void        dbus_connection_remove_filter (DBusConnection            *connection,
314                                            DBusHandleMessageFunction  function,
315                                            void                      *user_data);
316
317
318 /* Other */
319 DBUS_EXPORT
320 dbus_bool_t dbus_connection_allocate_data_slot (dbus_int32_t     *slot_p);
321 DBUS_EXPORT
322 void        dbus_connection_free_data_slot     (dbus_int32_t     *slot_p);
323 DBUS_EXPORT
324 dbus_bool_t dbus_connection_set_data           (DBusConnection   *connection,
325                                                 dbus_int32_t      slot,
326                                                 void             *data,
327                                                 DBusFreeFunction  free_data_func);
328 DBUS_EXPORT
329 void*       dbus_connection_get_data           (DBusConnection   *connection,
330                                                 dbus_int32_t      slot);
331
332 DBUS_EXPORT
333 void        dbus_connection_set_change_sigpipe (dbus_bool_t       will_modify_sigpipe); 
334
335 DBUS_EXPORT
336 void dbus_connection_set_max_message_size  (DBusConnection *connection,
337                                             long            size);
338 DBUS_EXPORT
339 long dbus_connection_get_max_message_size  (DBusConnection *connection);
340 DBUS_EXPORT
341 void dbus_connection_set_max_received_size (DBusConnection *connection,
342                                             long            size);
343 DBUS_EXPORT
344 long dbus_connection_get_max_received_size (DBusConnection *connection);
345
346 DBUS_EXPORT
347 void dbus_connection_set_max_message_unix_fds (DBusConnection *connection,
348                                                long            n);
349 DBUS_EXPORT
350 long dbus_connection_get_max_message_unix_fds (DBusConnection *connection);
351 DBUS_EXPORT
352 void dbus_connection_set_max_received_unix_fds(DBusConnection *connection,
353                                                long            n);
354 DBUS_EXPORT
355 long dbus_connection_get_max_received_unix_fds(DBusConnection *connection);
356
357 DBUS_EXPORT
358 long dbus_connection_get_outgoing_size     (DBusConnection *connection);
359 DBUS_EXPORT
360 long dbus_connection_get_outgoing_unix_fds (DBusConnection *connection);
361
362 DBUS_EXPORT
363 DBusPreallocatedSend* dbus_connection_preallocate_send       (DBusConnection       *connection);
364 DBUS_EXPORT
365 void                  dbus_connection_free_preallocated_send (DBusConnection       *connection,
366                                                               DBusPreallocatedSend *preallocated);
367 DBUS_EXPORT
368 void                  dbus_connection_send_preallocated      (DBusConnection       *connection,
369                                                               DBusPreallocatedSend *preallocated,
370                                                               DBusMessage          *message,
371                                                               dbus_uint32_t        *client_serial);
372
373
374 /* Object tree functionality */
375
376 /**
377  * Called when a #DBusObjectPathVTable is unregistered (or its connection is freed).
378  * Found in #DBusObjectPathVTable.
379  */
380 typedef void              (* DBusObjectPathUnregisterFunction) (DBusConnection  *connection,
381                                                                 void            *user_data);
382 /**
383  * Called when a message is sent to a registered object path. Found in
384  * #DBusObjectPathVTable which is registered with dbus_connection_register_object_path()
385  * or dbus_connection_register_fallback().
386  */
387 typedef DBusHandlerResult (* DBusObjectPathMessageFunction)    (DBusConnection  *connection,
388                                                                 DBusMessage     *message,
389                                                                 void            *user_data);
390
391 /**
392  * Virtual table that must be implemented to handle a portion of the
393  * object path hierarchy. Attach the vtable to a particular path using
394  * dbus_connection_register_object_path() or
395  * dbus_connection_register_fallback().
396  */
397 struct DBusObjectPathVTable
398 {
399   DBusObjectPathUnregisterFunction   unregister_function; /**< Function to unregister this handler */
400   DBusObjectPathMessageFunction      message_function; /**< Function to handle messages */
401   
402   void (* dbus_internal_pad1) (void *); /**< Reserved for future expansion */
403   void (* dbus_internal_pad2) (void *); /**< Reserved for future expansion */
404   void (* dbus_internal_pad3) (void *); /**< Reserved for future expansion */
405   void (* dbus_internal_pad4) (void *); /**< Reserved for future expansion */
406 };
407
408 DBUS_EXPORT
409 dbus_bool_t dbus_connection_try_register_object_path (DBusConnection              *connection,
410                                                       const char                  *path,
411                                                       const DBusObjectPathVTable  *vtable,
412                                                       void                        *user_data,
413                                                       DBusError                   *error);
414
415 DBUS_EXPORT
416 dbus_bool_t dbus_connection_register_object_path   (DBusConnection              *connection,
417                                                     const char                  *path,
418                                                     const DBusObjectPathVTable  *vtable,
419                                                     void                        *user_data);
420
421 DBUS_EXPORT
422 dbus_bool_t dbus_connection_try_register_fallback (DBusConnection              *connection,
423                                                    const char                  *path,
424                                                    const DBusObjectPathVTable  *vtable,
425                                                    void                        *user_data,
426                                                    DBusError                   *error);
427
428 DBUS_EXPORT
429 dbus_bool_t dbus_connection_register_fallback      (DBusConnection              *connection,
430                                                     const char                  *path,
431                                                     const DBusObjectPathVTable  *vtable,
432                                                     void                        *user_data);
433 DBUS_EXPORT
434 dbus_bool_t dbus_connection_unregister_object_path (DBusConnection              *connection,
435                                                     const char                  *path);
436
437 DBUS_EXPORT
438 dbus_bool_t dbus_connection_get_object_path_data   (DBusConnection              *connection,
439                                                     const char                  *path,
440                                                     void                       **data_p);
441
442 DBUS_EXPORT
443 dbus_bool_t dbus_connection_list_registered        (DBusConnection              *connection,
444                                                     const char                  *parent_path,
445                                                     char                      ***child_entries);
446
447 DBUS_EXPORT
448 dbus_bool_t dbus_connection_get_unix_fd            (DBusConnection              *connection,
449                                                     int                         *fd);
450 DBUS_EXPORT
451 dbus_bool_t dbus_connection_get_socket             (DBusConnection              *connection,
452                                                     int                         *fd);
453
454 /** @} */
455
456
457 /**
458  * @addtogroup DBusWatch
459  * @{
460  */
461
462 #ifndef DBUS_DISABLE_DEPRECATED
463 DBUS_EXPORT
464 DBUS_DEPRECATED int dbus_watch_get_fd      (DBusWatch        *watch);
465 #endif
466
467 DBUS_EXPORT
468 int          dbus_watch_get_unix_fd (DBusWatch        *watch);
469 DBUS_EXPORT
470 int          dbus_watch_get_socket  (DBusWatch        *watch);
471 DBUS_EXPORT
472 unsigned int dbus_watch_get_flags   (DBusWatch        *watch);
473 DBUS_EXPORT
474 void*        dbus_watch_get_data    (DBusWatch        *watch);
475 DBUS_EXPORT
476 void         dbus_watch_set_data    (DBusWatch        *watch,
477                                      void             *data,
478                                      DBusFreeFunction  free_data_function);
479 DBUS_EXPORT
480 dbus_bool_t  dbus_watch_handle      (DBusWatch        *watch,
481                                      unsigned int      flags);
482 DBUS_EXPORT
483 dbus_bool_t  dbus_watch_get_enabled (DBusWatch        *watch);
484
485 /** @} */
486
487 /**
488  * @addtogroup DBusTimeout
489  * @{
490  */
491
492 DBUS_EXPORT
493 int         dbus_timeout_get_interval (DBusTimeout      *timeout);
494 DBUS_EXPORT
495 void*       dbus_timeout_get_data     (DBusTimeout      *timeout);
496 DBUS_EXPORT
497 void        dbus_timeout_set_data     (DBusTimeout      *timeout,
498                                        void             *data,
499                                        DBusFreeFunction  free_data_function);
500 DBUS_EXPORT
501 dbus_bool_t dbus_timeout_handle       (DBusTimeout      *timeout);
502 DBUS_EXPORT
503 dbus_bool_t dbus_timeout_get_enabled  (DBusTimeout      *timeout);
504
505 /** @} */
506
507 DBUS_END_DECLS
508
509 #endif /* DBUS_CONNECTION_H */