summaryrefslogtreecommitdiffstats
path: root/avahi-core/timeeventq.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-07-16 20:14:34 +0000
committerLennart Poettering <lennart@poettering.net>2005-07-16 20:14:34 +0000
commit774b0629a3536eda0b560e092964cf94d6b742aa (patch)
tree7f0fa10f0488c5053c25053a5ab9402054af3fbe /avahi-core/timeeventq.c
parentb1e07e8d002b0078a3b56a22979f47bcccf73306 (diff)
* hide some more files
* make sure not to run a time event twice in the same main loop iteration * add new test timeeventq-test git-svn-id: file:///home/lennart/svn/public/avahi/trunk@167 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/timeeventq.c')
-rw-r--r--avahi-core/timeeventq.c51
1 files changed, 46 insertions, 5 deletions
diff --git a/avahi-core/timeeventq.c b/avahi-core/timeeventq.c
index efce7b7..60d9fe0 100644
--- a/avahi-core/timeeventq.c
+++ b/avahi-core/timeeventq.c
@@ -28,8 +28,14 @@
static gint compare(gconstpointer _a, gconstpointer _b) {
const AvahiTimeEvent *a = _a, *b = _b;
+ gint ret;
- return avahi_timeval_compare(&a->expiry, &b->expiry);
+ if ((ret = avahi_timeval_compare(&a->expiry, &b->expiry)) != 0)
+ return ret;
+
+ /* If both exevents are scheduled for the same time, put the entry
+ * that has been run earlier the last time first. */
+ return avahi_timeval_compare(&a->last_run, &b->last_run);
}
static gboolean prepare_func(GSource *source, gint *timeout) {
@@ -50,12 +56,17 @@ static gboolean prepare_func(GSource *source, gint *timeout) {
g_source_get_current_time(source, &now);
- if (avahi_timeval_compare(&now, &e->expiry) >= 0) {
+ if (avahi_timeval_compare(&now, &e->expiry) >= 0 && /* Time elapsed */
+ avahi_timeval_compare(&now, &e->last_run) != 0 /* Not yet run */) {
*timeout = -1;
return TRUE;
}
*timeout = (gint) (avahi_timeval_diff(&e->expiry, &now)/1000);
+
+ /* Wait at least 1 msec */
+ if (*timeout <= 0)
+ *timeout = 1;
return FALSE;
}
@@ -75,7 +86,9 @@ static gboolean check_func(GSource *source) {
g_source_get_current_time(source, &now);
- return avahi_timeval_compare(&now, &e->expiry) >= 0;
+ return
+ avahi_timeval_compare(&now, &e->expiry) >= 0 && /* Time elapsed */
+ avahi_timeval_compare(&now, &e->last_run) != 0; /* Not yet run */
}
static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer user_data) {
@@ -89,9 +102,19 @@ static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer us
while (q->prioq->root) {
AvahiTimeEvent *e = q->prioq->root->data;
+ /* Not yet expired */
if (avahi_timeval_compare(&now, &e->expiry) < 0)
break;
+ /* Already ran */
+ if (avahi_timeval_compare(&now, &e->last_run) == 0)
+ break;
+
+ /* Make sure to move the entry away from the front */
+ e->last_run = now;
+ avahi_prio_queue_shuffle(q->prioq, e->node);
+
+ /* Run it */
g_assert(e->callback);
e->callback(e, e->userdata);
}
@@ -99,6 +122,17 @@ static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer us
return TRUE;
}
+static void fix_expiry_time(AvahiTimeEvent *e) {
+ GTimeVal now;
+ g_assert(e);
+
+ g_source_get_current_time(&e->queue->source, &now);
+
+ if (avahi_timeval_compare(&now, &e->expiry) > 0)
+ e->expiry = now;
+
+}
+
AvahiTimeEventQueue* avahi_time_event_queue_new(GMainContext *context, gint priority) {
AvahiTimeEventQueue *q;
@@ -132,7 +166,7 @@ void avahi_time_event_queue_free(AvahiTimeEventQueue *q) {
g_source_unref(&q->source);
}
-AvahiTimeEvent* avahi_time_event_queue_add(AvahiTimeEventQueue *q, const GTimeVal *timeval, void (*callback)(AvahiTimeEvent *e, void *userdata), void *userdata) {
+AvahiTimeEvent* avahi_time_event_queue_add(AvahiTimeEventQueue *q, const GTimeVal *timeval, AvahiTimeEventCallback callback, gpointer userdata) {
AvahiTimeEvent *e;
g_assert(q);
@@ -142,10 +176,15 @@ AvahiTimeEvent* avahi_time_event_queue_add(AvahiTimeEventQueue *q, const GTimeVa
e = g_new(AvahiTimeEvent, 1);
e->queue = q;
- e->expiry = *timeval;
e->callback = callback;
e->userdata = userdata;
+ e->expiry = *timeval;
+ fix_expiry_time(e);
+
+ e->last_run.tv_sec = 0;
+ e->last_run.tv_usec = 0;
+
e->node = avahi_prio_queue_put(q->prioq, e);
return e;
@@ -164,8 +203,10 @@ void avahi_time_event_queue_update(AvahiTimeEventQueue *q, AvahiTimeEvent *e, co
g_assert(q);
g_assert(e);
g_assert(e->queue == q);
+ g_assert(timeval);
e->expiry = *timeval;
+ fix_expiry_time(e);
avahi_prio_queue_shuffle(q->prioq, e->node);
}