2005-04-09 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / dbus / dbus-connection.h
1 /* -*- mode: C; c-file-style: "gnu" -*- */
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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 typedef struct DBusWatch DBusWatch;
38 typedef struct DBusTimeout DBusTimeout;
39 typedef struct DBusPreallocatedSend DBusPreallocatedSend;
40 typedef struct DBusPendingCall DBusPendingCall;
41 typedef struct DBusConnection DBusConnection;
42 typedef struct DBusObjectPathVTable DBusObjectPathVTable;
43
44 typedef enum
45 {
46   DBUS_WATCH_READABLE = 1 << 0, /**< As in POLLIN */
47   DBUS_WATCH_WRITABLE = 1 << 1, /**< As in POLLOUT */
48   DBUS_WATCH_ERROR    = 1 << 2, /**< As in POLLERR (can't watch for this, but
49                                  *   the flag can be passed to dbus_watch_handle()).
50                                  */
51   DBUS_WATCH_HANGUP   = 1 << 3  /**< As in POLLHUP (can't watch for it, but
52                                  *   can be present in current state). */
53 } DBusWatchFlags;
54
55 typedef enum
56 {
57   DBUS_DISPATCH_DATA_REMAINS,  /**< There is more data to potentially convert to messages. */
58   DBUS_DISPATCH_COMPLETE,      /**< All currently available data has been processed. */
59   DBUS_DISPATCH_NEED_MEMORY    /**< More memory is needed to continue. */
60 } DBusDispatchStatus;
61
62 typedef dbus_bool_t (* DBusAddWatchFunction)       (DBusWatch      *watch,
63                                                     void           *data);
64 typedef void        (* DBusWatchToggledFunction)   (DBusWatch      *watch,
65                                                     void           *data);
66 typedef void        (* DBusRemoveWatchFunction)    (DBusWatch      *watch,
67                                                     void           *data);
68 typedef dbus_bool_t (* DBusAddTimeoutFunction)     (DBusTimeout    *timeout,
69                                                     void           *data);
70 typedef void        (* DBusTimeoutToggledFunction) (DBusTimeout    *timeout,
71                                                     void           *data);
72 typedef void        (* DBusRemoveTimeoutFunction)  (DBusTimeout    *timeout,
73                                                     void           *data);
74 typedef void        (* DBusDispatchStatusFunction) (DBusConnection *connection,
75                                                     DBusDispatchStatus new_status,
76                                                     void           *data);
77 typedef void        (* DBusWakeupMainFunction)     (void           *data);
78 typedef dbus_bool_t (* DBusAllowUnixUserFunction)  (DBusConnection *connection,
79                                                     unsigned long   uid,
80                                                     void           *data);
81
82 typedef void (* DBusPendingCallNotifyFunction) (DBusPendingCall *pending,
83                                                 void            *user_data);
84
85
86 typedef DBusHandlerResult (* DBusHandleMessageFunction) (DBusConnection     *connection,
87                                                          DBusMessage        *message,
88                                                          void               *user_data);
89
90 DBusConnection*    dbus_connection_open                         (const char                 *address,
91                                                                  DBusError                  *error);
92 DBusConnection*    dbus_connection_open_private                 (const char                 *address,
93                                                                  DBusError                  *error);
94 DBusConnection*    dbus_connection_ref                          (DBusConnection             *connection);
95 void               dbus_connection_unref                        (DBusConnection             *connection);
96 void               dbus_connection_disconnect                   (DBusConnection             *connection);
97 dbus_bool_t        dbus_connection_get_is_connected             (DBusConnection             *connection);
98 dbus_bool_t        dbus_connection_get_is_authenticated         (DBusConnection             *connection);
99 void               dbus_connection_set_exit_on_disconnect       (DBusConnection             *connection,
100                                                                  dbus_bool_t                 exit_on_disconnect);
101 void               dbus_connection_flush                        (DBusConnection             *connection);
102 dbus_bool_t        dbus_connection_read_write_dispatch          (DBusConnection             *connection,
103                                                                  int                         timeout_milliseconds);
104 DBusMessage*       dbus_connection_borrow_message               (DBusConnection             *connection);
105 void               dbus_connection_return_message               (DBusConnection             *connection,
106                                                                  DBusMessage                *message);
107 void               dbus_connection_steal_borrowed_message       (DBusConnection             *connection,
108                                                                  DBusMessage                *message);
109 DBusMessage*       dbus_connection_pop_message                  (DBusConnection             *connection);
110 DBusDispatchStatus dbus_connection_get_dispatch_status          (DBusConnection             *connection);
111 DBusDispatchStatus dbus_connection_dispatch                     (DBusConnection             *connection);
112 dbus_bool_t        dbus_connection_has_messages_to_send         (DBusConnection *connection);
113 dbus_bool_t        dbus_connection_send                         (DBusConnection             *connection,
114                                                                  DBusMessage                *message,
115                                                                  dbus_uint32_t              *client_serial);
116 dbus_bool_t        dbus_connection_send_with_reply              (DBusConnection             *connection,
117                                                                  DBusMessage                *message,
118                                                                  DBusPendingCall           **pending_return,
119                                                                  int                         timeout_milliseconds);
120 DBusMessage *      dbus_connection_send_with_reply_and_block    (DBusConnection             *connection,
121                                                                  DBusMessage                *message,
122                                                                  int                         timeout_milliseconds,
123                                                                  DBusError                  *error);
124 dbus_bool_t        dbus_connection_set_watch_functions          (DBusConnection             *connection,
125                                                                  DBusAddWatchFunction        add_function,
126                                                                  DBusRemoveWatchFunction     remove_function,
127                                                                  DBusWatchToggledFunction    toggled_function,
128                                                                  void                       *data,
129                                                                  DBusFreeFunction            free_data_function);
130 dbus_bool_t        dbus_connection_set_timeout_functions        (DBusConnection             *connection,
131                                                                  DBusAddTimeoutFunction      add_function,
132                                                                  DBusRemoveTimeoutFunction   remove_function,
133                                                                  DBusTimeoutToggledFunction  toggled_function,
134                                                                  void                       *data,
135                                                                  DBusFreeFunction            free_data_function);
136 void               dbus_connection_set_wakeup_main_function     (DBusConnection             *connection,
137                                                                  DBusWakeupMainFunction      wakeup_main_function,
138                                                                  void                       *data,
139                                                                  DBusFreeFunction            free_data_function);
140 void               dbus_connection_set_dispatch_status_function (DBusConnection             *connection,
141                                                                  DBusDispatchStatusFunction  function,
142                                                                  void                       *data,
143                                                                  DBusFreeFunction            free_data_function);
144 dbus_bool_t        dbus_connection_get_unix_user                (DBusConnection             *connection,
145                                                                  unsigned long              *uid);
146 dbus_bool_t        dbus_connection_get_unix_process_id          (DBusConnection             *connection,
147                                                                  unsigned long              *pid);
148 void               dbus_connection_set_unix_user_function       (DBusConnection             *connection,
149                                                                  DBusAllowUnixUserFunction   function,
150                                                                  void                       *data,
151                                                                  DBusFreeFunction            free_data_function);
152
153
154 int          dbus_watch_get_fd      (DBusWatch        *watch);
155 unsigned int dbus_watch_get_flags   (DBusWatch        *watch);
156 void*        dbus_watch_get_data    (DBusWatch        *watch);
157 void         dbus_watch_set_data    (DBusWatch        *watch,
158                                      void             *data,
159                                      DBusFreeFunction  free_data_function);
160 dbus_bool_t  dbus_watch_handle      (DBusWatch        *watch,
161                                      unsigned int      flags);
162 dbus_bool_t  dbus_watch_get_enabled (DBusWatch        *watch);
163
164 int         dbus_timeout_get_interval (DBusTimeout      *timeout);
165 void*       dbus_timeout_get_data     (DBusTimeout      *timeout);
166 void        dbus_timeout_set_data     (DBusTimeout      *timeout,
167                                        void             *data,
168                                        DBusFreeFunction  free_data_function);
169 dbus_bool_t dbus_timeout_handle       (DBusTimeout      *timeout);
170 dbus_bool_t dbus_timeout_get_enabled  (DBusTimeout      *timeout);
171
172 /* Filters */
173
174 dbus_bool_t dbus_connection_add_filter    (DBusConnection            *connection,
175                                            DBusHandleMessageFunction  function,
176                                            void                      *user_data,
177                                            DBusFreeFunction           free_data_function);
178 void        dbus_connection_remove_filter (DBusConnection            *connection,
179                                            DBusHandleMessageFunction  function,
180                                            void                      *user_data);
181
182
183 /* Other */
184 dbus_bool_t dbus_connection_allocate_data_slot (dbus_int32_t     *slot_p);
185 void        dbus_connection_free_data_slot     (dbus_int32_t     *slot_p);
186 dbus_bool_t dbus_connection_set_data           (DBusConnection   *connection,
187                                                 dbus_int32_t      slot,
188                                                 void             *data,
189                                                 DBusFreeFunction  free_data_func);
190 void*       dbus_connection_get_data           (DBusConnection   *connection,
191                                                 dbus_int32_t      slot);
192
193 void        dbus_connection_set_change_sigpipe (dbus_bool_t       will_modify_sigpipe); 
194
195 void dbus_connection_set_max_message_size  (DBusConnection *connection,
196                                             long            size);
197 long dbus_connection_get_max_message_size  (DBusConnection *connection);
198 void dbus_connection_set_max_received_size (DBusConnection *connection,
199                                             long            size);
200 long dbus_connection_get_max_received_size (DBusConnection *connection);
201 long dbus_connection_get_outgoing_size     (DBusConnection *connection);
202
203 DBusPreallocatedSend* dbus_connection_preallocate_send       (DBusConnection       *connection);
204 void                  dbus_connection_free_preallocated_send (DBusConnection       *connection,
205                                                               DBusPreallocatedSend *preallocated);
206 void                  dbus_connection_send_preallocated      (DBusConnection       *connection,
207                                                               DBusPreallocatedSend *preallocated,
208                                                               DBusMessage          *message,
209                                                               dbus_uint32_t        *client_serial);
210
211
212 /* Object tree functionality */
213
214 typedef void              (* DBusObjectPathUnregisterFunction) (DBusConnection  *connection,
215                                                                 void            *user_data);
216 typedef DBusHandlerResult (* DBusObjectPathMessageFunction)    (DBusConnection  *connection,
217                                                                 DBusMessage     *message,
218                                                                 void            *user_data);
219
220 /**
221  * Virtual table that must be implemented to handle a portion of the
222  * object path hierarchy.
223  */
224 struct DBusObjectPathVTable
225 {
226   DBusObjectPathUnregisterFunction   unregister_function; /**< Function to unregister this handler */
227   DBusObjectPathMessageFunction      message_function; /**< Function to handle messages */
228   
229   void (* dbus_internal_pad1) (void *); /**< Reserved for future expansion */
230   void (* dbus_internal_pad2) (void *); /**< Reserved for future expansion */
231   void (* dbus_internal_pad3) (void *); /**< Reserved for future expansion */
232   void (* dbus_internal_pad4) (void *); /**< Reserved for future expansion */
233 };
234
235 dbus_bool_t dbus_connection_register_object_path   (DBusConnection              *connection,
236                                                     const char                  *path,
237                                                     const DBusObjectPathVTable  *vtable,
238                                                     void                        *user_data);
239 dbus_bool_t dbus_connection_register_fallback      (DBusConnection              *connection,
240                                                     const char                  *path,
241                                                     const DBusObjectPathVTable  *vtable,
242                                                     void                        *user_data);
243 dbus_bool_t dbus_connection_unregister_object_path (DBusConnection              *connection,
244                                                     const char                  *path);
245
246 dbus_bool_t dbus_connection_list_registered        (DBusConnection              *connection,
247                                                     const char                  *parent_path,
248                                                     char                      ***child_entries);
249
250 dbus_bool_t dbus_connection_get_unix_fd            (DBusConnection              *connection,
251                                                     int                         *fd);
252
253 DBUS_END_DECLS
254
255 #endif /* DBUS_CONNECTION_H */