2003-01-28 Anders Carlsson <set EMAIL_ADDRESS environment variable>
[platform/upstream/dbus.git] / dbus / dbus-timeout.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-timeout.c DBusTimeout implementation
3  *
4  * Copyright (C) 2003  CodeFactory AB
5  *
6  * Licensed under the Academic Free License version 1.2
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
24 #include "dbus-internals.h"
25 #include "dbus-timeout.h"
26 #include "dbus-list.h"
27
28 /**
29  * @defgroup DBusTimeoutInternals DBusTimeout implementation details
30  * @ingroup  DBusInternals
31  * @brief implementation details for DBusTimeout
32  * 
33  * @{
34  */
35
36 struct DBusTimeout
37 {
38   int refcount;                                /**< Reference count */
39   int interval;                                /**< Timeout interval in milliseconds. */
40
41   DBusTimeoutHandler handler;                  /**< Timeout handler. */
42   void *handler_data;                          /**< Timeout handler data. */
43   DBusFreeFunction free_handler_data_function; /**< Free the timeout handler data. */
44   
45   void *data;                                  /**< Application data. */
46   DBusFreeFunction free_data_function;         /**< Free the application data. */
47 };
48
49 /**
50  * Creates a new DBusTimeout.
51  * @param interval the timeout interval in milliseconds.
52  * @param handler function to call when the timeout occurs.
53  * @param data data to pass to the handler
54  * @param free_data_function function to be called to free the data.
55  * @returns the new DBusTimeout object,
56  */
57 DBusTimeout*
58 _dbus_timeout_new (int                 interval,
59                    DBusTimeoutHandler  handler,
60                    void               *data,
61                    DBusFreeFunction    free_data_function)
62 {
63   DBusTimeout *timeout;
64
65   timeout = dbus_new0 (DBusTimeout, 1);
66   timeout->refcount = 1;
67   timeout->interval = interval;
68
69   timeout->handler = handler;
70   timeout->handler_data = data;
71   timeout->free_handler_data_function = free_data_function;
72   
73   return timeout;
74 }
75
76 /**
77  * Increments the reference count of a DBusTimeout object.
78  *
79  * @param timeout the timeout object.
80  */
81 void
82 _dbus_timeout_ref (DBusTimeout *timeout)
83 {
84   timeout->refcount += 1;
85 }
86
87 /**
88  * Decrements the reference count of a DBusTimeout object
89  * and finalizes the object if the count reaches zero.
90  *
91  * @param timeout the timeout object.
92  */
93 void
94 _dbus_timeout_unref (DBusTimeout *timeout)
95 {
96   _dbus_assert (timeout != NULL);
97   _dbus_assert (timeout->refcount > 0);
98   
99   timeout->refcount -= 1;
100   if (timeout->refcount == 0)
101     {
102       dbus_timeout_set_data (timeout, NULL, NULL); /* call free_data_function */
103
104       if (timeout->free_handler_data_function)
105         (* timeout->free_handler_data_function) (timeout->handler_data);
106       
107       dbus_free (timeout);
108     }
109 }
110
111 /**
112  * @typedef DBusTimeoutList
113  *
114  * Opaque data type representing a list of timeouts
115  * and a set of DBusAddTimeoutFunction/DBusRemoveTimeoutFunction.
116  * Automatically handles removing/re-adding timeouts
117  * when the DBusAddTimeoutFunction is updated or changed.
118  * Holds a reference count to each timeout.
119  *
120  */
121
122 /**
123  * DBusTimeoutList implementation details. All fields
124  * are private.
125  *
126  */
127 struct DBusTimeoutList
128 {
129   DBusList *timeouts; /**< Timeout objects. */
130
131   DBusAddTimeoutFunction add_timeout_function;       /**< Callback for adding a timeout. */
132   DBusRemoveTimeoutFunction remove_timeout_function; /**< Callback for removing a timeout. */
133   void *timeout_data;                                /**< Data for timeout callbacks */
134   DBusFreeFunction timeout_free_data_function;       /**< Free function for timeout callback data */
135 };
136
137 /**
138  * Creates a new timeout list. Returns #NULL if insufficient
139  * memory exists.
140  *
141  * @returns the new timeout list, or #NULL on failure.
142  */
143 DBusTimeoutList*
144 _dbus_timeout_list_new (void)
145 {
146   DBusTimeoutList *timeout_list;
147
148   timeout_list = dbus_new0 (DBusTimeoutList, 1);
149   if (timeout_list == NULL)
150     return NULL;
151
152   return timeout_list;
153 }
154
155 /**
156  * Frees a DBusTimeoutList.
157  *
158  * @param timeout_list the timeout list.
159  */
160 void
161 _dbus_timeout_list_free (DBusTimeoutList *timeout_list)
162 {
163   /* free timeout_data and remove timeouts as a side effect */
164   _dbus_timeout_list_set_functions (timeout_list,
165                                     NULL, NULL, NULL, NULL);
166
167   _dbus_list_foreach (&timeout_list->timeouts,
168                       (DBusForeachFunction) _dbus_timeout_unref,
169                       NULL);
170   _dbus_list_clear (&timeout_list->timeouts);
171
172   dbus_free (timeout_list);
173 }
174
175 /**
176  * Sets the timeout functions. This function is the "backend"
177  * for dbus_connection_set_timeout_functions().
178  *
179  * @param timeout_list the timeout list
180  * @param add_function the add timeout function.
181  * @param remove_function the remove timeout function.
182  * @param data the data for those functions.
183  * @param free_data_function the function to free the data.
184  *
185  */
186 void
187 _dbus_timeout_list_set_functions (DBusTimeoutList           *timeout_list,
188                                   DBusAddTimeoutFunction     add_function,
189                                   DBusRemoveTimeoutFunction  remove_function,
190                                   void                      *data,
191                                   DBusFreeFunction           free_data_function)
192 {
193   /* Remove all current timeouts from previous timeout handlers */
194
195   if (timeout_list->remove_timeout_function != NULL)
196     {
197       _dbus_list_foreach (&timeout_list->timeouts,
198                           (DBusForeachFunction) timeout_list->remove_timeout_function,
199                           timeout_list->timeout_data);
200     }
201
202   if (timeout_list->timeout_free_data_function != NULL)
203     (* timeout_list->timeout_free_data_function) (timeout_list->timeout_data);
204
205   timeout_list->add_timeout_function = add_function;
206   timeout_list->remove_timeout_function = remove_function;
207   timeout_list->timeout_data = data;
208   timeout_list->timeout_free_data_function = free_data_function;
209
210   /* Re-add all pending timeouts */
211   if (timeout_list->add_timeout_function != NULL)
212     {
213       _dbus_list_foreach (&timeout_list->timeouts,
214                           (DBusForeachFunction) timeout_list->add_timeout_function,
215                           timeout_list->timeout_data);
216     }
217 }
218
219 /**
220  * Adds a new timeout to the timeout list, invoking the
221  * application DBusAddTimeoutFunction if appropriate.
222  *
223  * @param timeout_list the timeout list.
224  * @param timeout the timeout to add.
225  * @returns #TRUE on success, #FALSE If no memory.
226  */
227 dbus_bool_t
228 _dbus_timeout_list_add_timeout (DBusTimeoutList *timeout_list,
229                                 DBusTimeout     *timeout)
230 {
231   if (!_dbus_list_append (&timeout_list->timeouts, timeout))
232     return FALSE;
233
234   _dbus_timeout_ref (timeout);
235
236   if (timeout_list->add_timeout_function != NULL)
237     (* timeout_list->add_timeout_function) (timeout,
238                                             timeout_list->timeout_data);
239
240   return TRUE;
241 }
242
243 /**
244  * Removes a timeout from the watch list, invoking the
245  * application's DBusRemoveTimeoutFunction if appropriate.
246  *
247  * @param timeout_list the timeout list.
248  * @param timeout the timeout to remove.
249  */
250 void
251 _dbus_timeout_list_remove_timeout (DBusTimeoutList *timeout_list,
252                                    DBusTimeout     *timeout)
253 {
254   if (!_dbus_list_remove (&timeout_list->timeouts, timeout))
255     _dbus_assert_not_reached ("Nonexistent timeout was removed");
256
257   if (timeout_list->remove_timeout_function != NULL)
258     (* timeout_list->remove_timeout_function) (timeout,
259                                                timeout_list->timeout_data);
260
261   _dbus_timeout_unref (timeout);
262 }
263
264 /** @} */
265
266 /**
267  * @defgroup DBusTimeout DBusTimeout
268  * @ingroup  DBus
269  * @brief Object representing a timeout
270  *
271  * Types and functions related to DBusTimeout. A timeout
272  * represents a timeout that the main loop needs to monitor,
273  * as in Qt's QTimer or GLib's g_timeout_add().
274  * 
275  * @{
276  */
277
278
279 /**
280  * @typedef DBusTimeout
281  *
282  * Opaque object representing a timeout.
283  */
284
285 /**
286  * Gets the timeout interval.
287  * @param timeout the DBusTimeout object.
288  * @returns the interval in milliseconds.
289  */
290 int
291 dbus_timeout_get_interval (DBusTimeout *timeout)
292 {
293   return timeout->interval;
294 }
295
296 /**
297  * Gets data previously set with dbus_timeout_set_data()
298  * or #NULL if none.
299  *
300  * @param timeout the DBusTimeout object.
301  * @returns previously-set data.
302  */
303 void*
304 dbus_timeout_get_data (DBusTimeout *timeout)
305 {
306   return timeout->data;
307 }
308
309 /**
310  * Sets data which can be retrieved with dbus_timeout_get_data().
311  * Intended for use by the DBusAddTimeoutFunction and
312  * DBusRemoveTimeoutFunction to store their own data.  For example with
313  * Qt you might store the QTimer for this timeout and with GLib
314  * you might store a g_timeout_add result id.
315  *
316  * @param timeout the DBusTimeout object.
317  * @param data the data.
318  * @param free_data_function function to be called to free the data.
319  */
320 void
321 dbus_timeout_set_data (DBusTimeout      *timeout,
322                        void             *data,
323                        DBusFreeFunction  free_data_function)
324 {
325   if (timeout->free_data_function != NULL)
326     (* timeout->free_data_function) (timeout->data);
327
328   timeout->data = data;
329   timeout->free_data_function = free_data_function;
330 }
331
332 /**
333  * Calls the timeout handler for this timeout.
334  * This function should be called when the timeout
335  * occurs.
336  *
337  * @param timeout the DBusTimeout object.
338  */
339 void
340 dbus_timeout_handle (DBusTimeout *timeout)
341 {
342   (* timeout->handler) (timeout->handler_data);
343 }