summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2006-04-05 14:03:53 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2006-04-05 14:03:53 +0000
commit8fa8629fa44075dfa41b1bff96a7951dd40cfb0a (patch)
tree1d7ef94b106dd33c796af7e80929d073b8ecbd05 /common
parent737b2a1a36c13e575d3cfb21f7e42553407cb6d2 (diff)
added timeout new function
Diffstat (limited to 'common')
-rw-r--r--common/glib-ectomy.c175
-rw-r--r--common/glib-ectomy.h27
2 files changed, 199 insertions, 3 deletions
diff --git a/common/glib-ectomy.c b/common/glib-ectomy.c
index 463d0aee..f1d79e7f 100644
--- a/common/glib-ectomy.c
+++ b/common/glib-ectomy.c
@@ -10,8 +10,11 @@
#include <malloc.h>
#include <string.h>
#include <limits.h>
+#include <sys/time.h>
+#include <time.h>
#include "glib-ectomy.h"
+#include "list.h"
GIOError g_io_channel_read(GIOChannel *channel, gchar *buf, gsize count, gsize *bytes_read)
{
@@ -89,6 +92,7 @@ struct watch {
};
static struct watch watch_head = { .id = 0, .next = 0 };
+static GMainContext *default_context = NULL;
void g_io_remove_watch(guint id)
{
@@ -129,6 +133,23 @@ guint g_io_add_watch(GIOChannel *channel, GIOCondition condition,
func, user_data, NULL);
}
+static GMainContext *g_main_context_default()
+{
+
+ if (default_context)
+ return default_context;
+
+ default_context = malloc(sizeof(GMainContext));
+ if (!default_context)
+ return NULL;
+
+ memset(default_context, 0, sizeof(GMainContext));
+
+ default_context->timeout = -1;
+
+ return default_context;
+}
+
GMainLoop *g_main_loop_new(GMainContext *context, gboolean is_running)
{
GMainLoop *ml;
@@ -137,11 +158,80 @@ GMainLoop *g_main_loop_new(GMainContext *context, gboolean is_running)
if (!ml)
return NULL;
- ml->bail = 0;
+ memset(ml, 0, sizeof(GMainLoop));
+
+ if (!context)
+ ml->context = g_main_context_default();
+ else
+ ml->context = context;
+ ml->bail = 0;
return ml;
}
+static void timeout_handlers_prepare(GMainContext *context)
+{
+ struct slist *l = context->ltimeout;
+ struct timeout *t;
+ struct timeval tv;
+ glong msec, timeout = LONG_MAX;
+
+ gettimeofday(&tv, NULL);
+
+ while (l) {
+ t = l->data;
+ l = l->next;
+
+ /* calculate the remainning time */
+ msec = (t->expiration.tv_sec - tv.tv_sec) * 1000 +
+ (t->expiration.tv_usec - tv.tv_usec) / 1000;
+ if (msec < 0)
+ msec = 0;
+
+ timeout = MIN_TIMEOUT(timeout, msec);
+ }
+
+ /* set to min value found or NO timeout */
+ context->timeout = (timeout != LONG_MAX ? timeout: -1);
+}
+
+static void timeout_handlers_check(GMainContext *context)
+{
+ struct slist *l = context->ltimeout;
+ struct timeout *t;
+ struct timeval tv;
+
+ gettimeofday(&tv, NULL);
+
+ while (l) {
+ t = l->data;
+ l = l->next;
+
+ if ((tv.tv_sec < t->expiration.tv_sec) ||
+ (tv.tv_sec == t->expiration.tv_sec &&
+ tv.tv_usec < t->expiration.tv_usec))
+ continue;
+
+ if (t->func(t->data)) {
+ /* if false/expired: remove it from the list */
+ context->ltimeout = slist_remove(context->ltimeout, t);
+ free(t);
+ } else {
+ glong secs, msecs;
+ /* update the next expiration time */
+ secs = t->interval / 1000;
+ msecs = t->interval - secs * 1000;
+
+ t->expiration.tv_sec = tv.tv_sec + secs;
+ t->expiration.tv_usec = tv.tv_usec + msecs * 1000;
+ if (t->expiration.tv_usec >= 1000000) {
+ t->expiration.tv_usec -= 1000000;
+ t->expiration.tv_sec++;
+ }
+ }
+ }
+}
+
void g_main_loop_run(GMainLoop *loop)
{
int open_max = sysconf(_SC_OPEN_MAX);
@@ -163,7 +253,10 @@ void g_main_loop_run(GMainLoop *loop)
nfds++;
}
- rc = poll(ufds, nfds, -1);
+ /* calculate the next timeout */
+ timeout_handlers_prepare(loop->context);
+
+ rc = poll(ufds, nfds, loop->context->timeout);
if (rc < 0)
continue;
@@ -190,6 +283,9 @@ void g_main_loop_run(GMainLoop *loop)
w = w->next;
i++;
}
+
+ /* check expired timers */
+ timeout_handlers_check(loop->context);
}
free(ufds);
@@ -208,3 +304,78 @@ void g_main_loop_quit(GMainLoop *loop)
free(w);
}
}
+
+void g_main_loop_unref(GMainLoop *loop)
+{
+ if (!loop->context)
+ return;
+
+ slist_free(loop->context->ltimeout);
+ free(loop->context);
+}
+
+guint g_timeout_add(guint interval, timeout_func_t *func, void *data)
+{
+ struct timeval tv;
+ guint secs;
+ guint msecs;
+ struct timeout *t;
+
+ if (!default_context || !func)
+ return 0;
+
+ t = malloc(sizeof(*t));
+
+ if (!t)
+ return 0;
+
+ t->interval = interval;
+ t->func = func;
+ t->data = data;
+
+ gettimeofday(&tv, NULL);
+
+ secs = interval /1000;
+ msecs = interval - secs * 1000;
+
+ t->expiration.tv_sec = tv.tv_sec + secs;
+ t->expiration.tv_usec = tv.tv_usec + msecs * 1000;
+
+ if (t->expiration.tv_usec >= 1000000) {
+ t->expiration.tv_usec -= 1000000;
+ t->expiration.tv_sec++;
+ }
+
+ /* attach the timeout the default context */
+ t->id = ++default_context->next_id;
+ default_context->ltimeout = slist_append(default_context->ltimeout, t);
+
+ return t->id;
+}
+
+gint g_timeout_remove(const guint id)
+{
+ struct slist *l;
+ struct timeout *t;
+
+ if (!default_context)
+ return -1;
+
+ l = default_context->ltimeout;
+
+ while (l) {
+ t = l->data;
+ l = l->next;
+
+ if (t->id != id)
+ continue;
+
+ default_context->ltimeout = slist_remove(default_context->ltimeout, t);
+ free(t);
+
+ return 0;
+ }
+
+ return -1;
+}
+
diff --git a/common/glib-ectomy.h b/common/glib-ectomy.h
index e921b40d..56dac08b 100644
--- a/common/glib-ectomy.h
+++ b/common/glib-ectomy.h
@@ -28,16 +28,36 @@ typedef ssize_t gssize;
#define SSIZE_MAX INT_MAX
#endif
+#define MIN_TIMEOUT(a, b) (((a) < (b)) ? (a) : (b))
+
typedef struct _GIOChannel {
int fd;
} GIOChannel;
+typedef int (timeout_func_t)(void *data);
+
+typedef struct {
+ glong tv_sec;
+ glong tv_usec;
+} time_val_t;
+
+struct timeout {
+ guint id;
+ guint interval;
+ time_val_t expiration;
+ void *data;
+ timeout_func_t *func;
+};
+
typedef struct _GMainContext {
- int dummy;
+ guint next_id;
+ glong timeout;
+ struct slist *ltimeout;
} GMainContext;
typedef struct _GMainLoop {
int bail;
+ GMainContext *context;
} GMainLoop;
typedef enum {
@@ -89,9 +109,14 @@ void g_io_remove_watch(guint id);
GMainLoop *g_main_loop_new(GMainContext *context, gboolean is_running);
void g_main_loop_run(GMainLoop *loop);
void g_main_loop_quit(GMainLoop *loop);
+void g_main_loop_unref(GMainLoop *loop);
+guint g_timeout_add(guint interval, timeout_func_t *func, void *data);
+gint g_timeout_remove(const guint id);
+
#define g_main_new(is_running) g_main_loop_new(NULL, is_running);
#define g_main_run(loop) g_main_loop_run(loop)
#define g_main_quit(loop) g_main_loop_quit(loop)
+#define g_main_unref(loop) g_main_loop_unref(loop)
#endif /* __GLIB_ECTOMY_H */