First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* expirelist.c List of items that expire
4 * Copyright (C) 2003 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
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
24 #include "expirelist.h"
27 #include <dbus/dbus-internals.h>
28 #include <dbus/dbus-mainloop.h>
29 #include <dbus/dbus-timeout.h>
31 #include "dbus-internals.h"
32 #include "dbus-mainloop.h"
33 #include "dbus-timeout.h"
34 #endif //__SYMBIAN32__
36 static dbus_bool_t expire_timeout_handler (void *data);
39 call_timeout_callback (DBusTimeout *timeout,
42 /* can return FALSE on OOM but we just let it fire again later */
43 dbus_timeout_handle (timeout);
47 bus_expire_list_new (DBusLoop *loop,
49 BusExpireFunc expire_func,
54 list = dbus_new0 (BusExpireList, 1);
58 list->expire_func = expire_func;
61 list->expire_after = expire_after;
63 list->timeout = _dbus_timeout_new (100, /* irrelevant */
64 expire_timeout_handler,
66 if (list->timeout == NULL)
69 _dbus_timeout_set_enabled (list->timeout, FALSE);
71 if (!_dbus_loop_add_timeout (list->loop,
73 call_timeout_callback, NULL, NULL))
80 _dbus_timeout_unref (list->timeout);
88 bus_expire_list_free (BusExpireList *list)
90 _dbus_assert (list->items == NULL);
92 _dbus_loop_remove_timeout (list->loop, list->timeout,
93 call_timeout_callback, NULL);
95 _dbus_timeout_unref (list->timeout);
101 bus_expire_timeout_set_interval (DBusTimeout *timeout,
104 if (next_interval >= 0)
106 _dbus_timeout_set_interval (timeout,
108 _dbus_timeout_set_enabled (timeout, TRUE);
110 _dbus_verbose ("Enabled expire timeout with interval %d\n",
113 else if (dbus_timeout_get_enabled (timeout))
115 _dbus_timeout_set_enabled (timeout, FALSE);
117 _dbus_verbose ("Disabled expire timeout\n");
120 _dbus_verbose ("No need to disable expire timeout\n");
124 do_expiration_with_current_time (BusExpireList *list,
133 link = _dbus_list_get_first_link (&list->items);
136 DBusList *next = _dbus_list_get_next_link (&list->items, link);
142 elapsed = ELAPSED_MILLISECONDS_SINCE (item->added_tv_sec,
146 if (elapsed >= (double) list->expire_after)
148 _dbus_verbose ("Expiring an item %p\n", item);
150 /* If the expire function fails, we just end up expiring
151 * this item next time we walk through the list. This would
152 * be an indeterminate time normally, so we set up the
153 * next_interval to be "shortly" (just enough to avoid
156 if (!(* list->expire_func) (list, link, list->data))
158 next_interval = _dbus_get_oom_wait ();
164 /* We can end the loop, since the connections are in oldest-first order */
165 next_interval = ((double)list->expire_after) - elapsed;
166 _dbus_verbose ("Item %p expires in %d milliseconds\n",
167 item, next_interval);
175 return next_interval;
179 bus_expirelist_expire (BusExpireList *list)
185 if (list->items != NULL)
187 long tv_sec, tv_usec;
189 _dbus_get_current_time (&tv_sec, &tv_usec);
191 next_interval = do_expiration_with_current_time (list, tv_sec, tv_usec);
194 bus_expire_timeout_set_interval (list->timeout, next_interval);
198 expire_timeout_handler (void *data)
200 BusExpireList *list = data;
202 _dbus_verbose ("Running %s\n", _DBUS_FUNCTION_NAME);
204 /* note that this may remove the timeout */
205 bus_expirelist_expire (list);
210 #ifdef DBUS_BUILD_TESTS
219 test_expire_func (BusExpireList *list,
225 t = (TestExpireItem*) link->data;
227 t->expire_count += 1;
233 time_add_milliseconds (long *tv_sec,
237 *tv_sec = *tv_sec + milliseconds / 1000;
238 *tv_usec = *tv_usec + milliseconds * 1000;
239 if (*tv_usec >= 1000000)
247 bus_expire_list_test (const DBusString *test_data_dir)
251 long tv_sec, tv_usec;
252 long tv_sec_not_expired, tv_usec_not_expired;
253 long tv_sec_expired, tv_usec_expired;
254 long tv_sec_past, tv_usec_past;
255 TestExpireItem *item;
257 dbus_bool_t result = FALSE;
260 loop = _dbus_loop_new ();
261 _dbus_assert (loop != NULL);
263 #define EXPIRE_AFTER 100
265 list = bus_expire_list_new (loop, EXPIRE_AFTER,
266 test_expire_func, NULL);
267 _dbus_assert (list != NULL);
269 _dbus_get_current_time (&tv_sec, &tv_usec);
271 tv_sec_not_expired = tv_sec;
272 tv_usec_not_expired = tv_usec;
273 time_add_milliseconds (&tv_sec_not_expired,
274 &tv_usec_not_expired, EXPIRE_AFTER - 1);
276 tv_sec_expired = tv_sec;
277 tv_usec_expired = tv_usec;
278 time_add_milliseconds (&tv_sec_expired,
279 &tv_usec_expired, EXPIRE_AFTER);
282 tv_sec_past = tv_sec - 1;
283 tv_usec_past = tv_usec;
285 item = dbus_new0 (TestExpireItem, 1);
290 item->item.added_tv_sec = tv_sec;
291 item->item.added_tv_usec = tv_usec;
292 if (!_dbus_list_append (&list->items, item))
293 _dbus_assert_not_reached ("out of memory");
296 do_expiration_with_current_time (list, tv_sec_not_expired,
297 tv_usec_not_expired);
298 _dbus_assert (item->expire_count == 0);
299 _dbus_verbose ("next_interval = %d\n", next_interval);
300 _dbus_assert (next_interval == 1);
303 do_expiration_with_current_time (list, tv_sec_expired,
305 _dbus_assert (item->expire_count == 1);
306 _dbus_verbose ("next_interval = %d\n", next_interval);
307 _dbus_assert (next_interval == -1);
310 do_expiration_with_current_time (list, tv_sec_past,
312 _dbus_assert (item->expire_count == 1);
313 _dbus_verbose ("next_interval = %d\n", next_interval);
314 _dbus_assert (next_interval == 1000 + EXPIRE_AFTER);
316 _dbus_list_clear (&list->items);
319 bus_expire_list_free (list);
320 _dbus_loop_unref (loop);
328 #endif /* DBUS_BUILD_TESTS */