revert between 56095 -> 55830 in arch
[AROS.git] / rom / dbus / include / dbus-connection.h
blob090f0ad82a69bec2524d533cc401555043d03131
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-connection.h DBusConnection object
4 * Copyright (C) 2002, 2003 Red Hat Inc.
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.
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.
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
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
27 #ifndef DBUS_CONNECTION_H
28 #define DBUS_CONNECTION_H
30 #include <dbus/dbus-errors.h>
31 #include <dbus/dbus-memory.h>
32 #include <dbus/dbus-message.h>
33 #include <dbus/dbus-shared.h>
35 DBUS_BEGIN_DECLS;
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;
44 typedef enum
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()).
51 DBUS_WATCH_HANGUP = 1 << 3 /**< As in POLLHUP (can't watch for it, but
52 * can be present in current state). */
53 } DBusWatchFlags;
55 typedef enum
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;
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);
82 typedef void (* DBusPendingCallNotifyFunction) (DBusPendingCall *pending,
83 void *user_data);
86 typedef DBusHandlerResult (* DBusHandleMessageFunction) (DBusConnection *connection,
87 DBusMessage *message,
88 void *user_data);
90 DBusConnection* dbus_connection_open (const char *address,
91 DBusError *error);
92 DBusConnection* dbus_connection_ref (DBusConnection *connection);
93 void dbus_connection_unref (DBusConnection *connection);
94 void dbus_connection_disconnect (DBusConnection *connection);
95 dbus_bool_t dbus_connection_get_is_connected (DBusConnection *connection);
96 dbus_bool_t dbus_connection_get_is_authenticated (DBusConnection *connection);
97 void dbus_connection_set_exit_on_disconnect (DBusConnection *connection,
98 dbus_bool_t exit_on_disconnect);
99 void dbus_connection_flush (DBusConnection *connection);
100 DBusMessage* dbus_connection_borrow_message (DBusConnection *connection);
101 void dbus_connection_return_message (DBusConnection *connection,
102 DBusMessage *message);
103 void dbus_connection_steal_borrowed_message (DBusConnection *connection,
104 DBusMessage *message);
105 DBusMessage* dbus_connection_pop_message (DBusConnection *connection);
106 DBusDispatchStatus dbus_connection_get_dispatch_status (DBusConnection *connection);
107 DBusDispatchStatus dbus_connection_dispatch (DBusConnection *connection);
108 dbus_bool_t dbus_connection_send (DBusConnection *connection,
109 DBusMessage *message,
110 dbus_uint32_t *client_serial);
111 dbus_bool_t dbus_connection_send_with_reply (DBusConnection *connection,
112 DBusMessage *message,
113 DBusPendingCall **pending_return,
114 int timeout_milliseconds);
115 DBusMessage * dbus_connection_send_with_reply_and_block (DBusConnection *connection,
116 DBusMessage *message,
117 int timeout_milliseconds,
118 DBusError *error);
119 dbus_bool_t dbus_connection_set_watch_functions (DBusConnection *connection,
120 DBusAddWatchFunction add_function,
121 DBusRemoveWatchFunction remove_function,
122 DBusWatchToggledFunction toggled_function,
123 void *data,
124 DBusFreeFunction free_data_function);
125 dbus_bool_t dbus_connection_set_timeout_functions (DBusConnection *connection,
126 DBusAddTimeoutFunction add_function,
127 DBusRemoveTimeoutFunction remove_function,
128 DBusTimeoutToggledFunction toggled_function,
129 void *data,
130 DBusFreeFunction free_data_function);
131 void dbus_connection_set_wakeup_main_function (DBusConnection *connection,
132 DBusWakeupMainFunction wakeup_main_function,
133 void *data,
134 DBusFreeFunction free_data_function);
135 void dbus_connection_set_dispatch_status_function (DBusConnection *connection,
136 DBusDispatchStatusFunction function,
137 void *data,
138 DBusFreeFunction free_data_function);
139 dbus_bool_t dbus_connection_get_unix_user (DBusConnection *connection,
140 unsigned long *uid);
141 dbus_bool_t dbus_connection_get_unix_process_id (DBusConnection *connection,
142 unsigned long *pid);
143 void dbus_connection_set_unix_user_function (DBusConnection *connection,
144 DBusAllowUnixUserFunction function,
145 void *data,
146 DBusFreeFunction free_data_function);
149 int dbus_watch_get_fd (DBusWatch *watch);
150 unsigned int dbus_watch_get_flags (DBusWatch *watch);
151 void* dbus_watch_get_data (DBusWatch *watch);
152 void dbus_watch_set_data (DBusWatch *watch,
153 void *data,
154 DBusFreeFunction free_data_function);
155 dbus_bool_t dbus_watch_handle (DBusWatch *watch,
156 unsigned int flags);
157 dbus_bool_t dbus_watch_get_enabled (DBusWatch *watch);
159 int dbus_timeout_get_interval (DBusTimeout *timeout);
160 void* dbus_timeout_get_data (DBusTimeout *timeout);
161 void dbus_timeout_set_data (DBusTimeout *timeout,
162 void *data,
163 DBusFreeFunction free_data_function);
164 dbus_bool_t dbus_timeout_handle (DBusTimeout *timeout);
165 dbus_bool_t dbus_timeout_get_enabled (DBusTimeout *timeout);
167 /* Filters */
169 dbus_bool_t dbus_connection_add_filter (DBusConnection *connection,
170 DBusHandleMessageFunction function,
171 void *user_data,
172 DBusFreeFunction free_data_function);
173 void dbus_connection_remove_filter (DBusConnection *connection,
174 DBusHandleMessageFunction function,
175 void *user_data);
178 /* Other */
179 dbus_bool_t dbus_connection_allocate_data_slot (dbus_int32_t *slot_p);
180 void dbus_connection_free_data_slot (dbus_int32_t *slot_p);
181 dbus_bool_t dbus_connection_set_data (DBusConnection *connection,
182 dbus_int32_t slot,
183 void *data,
184 DBusFreeFunction free_data_func);
185 void* dbus_connection_get_data (DBusConnection *connection,
186 dbus_int32_t slot);
188 void dbus_connection_set_change_sigpipe (dbus_bool_t will_modify_sigpipe);
190 void dbus_connection_set_max_message_size (DBusConnection *connection,
191 long size);
192 long dbus_connection_get_max_message_size (DBusConnection *connection);
193 void dbus_connection_set_max_received_size (DBusConnection *connection,
194 long size);
195 long dbus_connection_get_max_received_size (DBusConnection *connection);
196 long dbus_connection_get_outgoing_size (DBusConnection *connection);
198 DBusPreallocatedSend* dbus_connection_preallocate_send (DBusConnection *connection);
199 void dbus_connection_free_preallocated_send (DBusConnection *connection,
200 DBusPreallocatedSend *preallocated);
201 void dbus_connection_send_preallocated (DBusConnection *connection,
202 DBusPreallocatedSend *preallocated,
203 DBusMessage *message,
204 dbus_uint32_t *client_serial);
207 /* Object tree functionality */
209 typedef void (* DBusObjectPathUnregisterFunction) (DBusConnection *connection,
210 void *user_data);
211 typedef DBusHandlerResult (* DBusObjectPathMessageFunction) (DBusConnection *connection,
212 DBusMessage *message,
213 void *user_data);
216 * Virtual table that must be implemented to handle a portion of the
217 * object path hierarchy.
219 struct DBusObjectPathVTable
221 DBusObjectPathUnregisterFunction unregister_function; /**< Function to unregister this handler */
222 DBusObjectPathMessageFunction message_function; /**< Function to handle messages */
224 void (* dbus_internal_pad1) (void *); /**< Reserved for future expansion */
225 void (* dbus_internal_pad2) (void *); /**< Reserved for future expansion */
226 void (* dbus_internal_pad3) (void *); /**< Reserved for future expansion */
227 void (* dbus_internal_pad4) (void *); /**< Reserved for future expansion */
230 dbus_bool_t dbus_connection_register_object_path (DBusConnection *connection,
231 const char *path,
232 const DBusObjectPathVTable *vtable,
233 void *user_data);
234 dbus_bool_t dbus_connection_register_fallback (DBusConnection *connection,
235 const char *path,
236 const DBusObjectPathVTable *vtable,
237 void *user_data);
238 dbus_bool_t dbus_connection_unregister_object_path (DBusConnection *connection,
239 const char *path);
241 dbus_bool_t dbus_connection_list_registered (DBusConnection *connection,
242 const char *parent_path,
243 char ***child_entries);
245 dbus_bool_t dbus_connection_get_unix_fd (DBusConnection *connection,
246 int *fd);
248 DBUS_END_DECLS;
250 #endif /* DBUS_CONNECTION_H */