aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-folder-cache.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-10-01 02:25:13 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-10-01 02:25:13 +0800
commit3eb790382815e90c190b575ad44f32134f104680 (patch)
tree5bf1e3498d6d0afff94deaca180e15d9c8cf75ab /mail/mail-folder-cache.c
parent90c70d0bc44d4d4c7d68c2382f20bb18483a3d26 (diff)
downloadgsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar.gz
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar.bz2
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar.lz
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar.xz
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.tar.zst
gsoc2013-evolution-3eb790382815e90c190b575ad44f32134f104680.zip
MailFolderCache: Use an idle callback instead of MailAsyncEvent.
Diffstat (limited to 'mail/mail-folder-cache.c')
-rw-r--r--mail/mail-folder-cache.c26
1 files changed, 15 insertions, 11 deletions
diff --git a/mail/mail-folder-cache.c b/mail/mail-folder-cache.c
index 1b32198f7f..97374173e3 100644
--- a/mail/mail-folder-cache.c
+++ b/mail/mail-folder-cache.c
@@ -71,8 +71,8 @@ struct _MailFolderCachePrivate {
GMutex *stores_mutex;
/* List of folder changes to be executed in gui thread */
GQueue updates;
- /* event id for the async event of flushing all pending updates */
- gint update_id;
+ /* idle source id for flushing all pending updates */
+ guint update_id;
/* hack for people who LIKE to have unsent count */
gint count_sent;
gint count_trash;
@@ -151,11 +151,10 @@ free_update (struct _folder_update *up)
g_free (up);
}
-static void
-real_flush_updates (gpointer o, gpointer event_data, gpointer data)
+static gboolean
+flush_updates_idle_cb (MailFolderCache *self)
{
struct _folder_update *up;
- MailFolderCache *self = (MailFolderCache*) o;
g_mutex_lock (self->priv->stores_mutex);
while ((up = g_queue_pop_head (&self->priv->updates)) != NULL) {
@@ -209,17 +208,23 @@ real_flush_updates (gpointer o, gpointer event_data, gpointer data)
g_mutex_lock (self->priv->stores_mutex);
}
- self->priv->update_id = -1;
+ self->priv->update_id = 0;
g_mutex_unlock (self->priv->stores_mutex);
+
+ return FALSE;
}
static void
flush_updates (MailFolderCache *self)
{
- if (self->priv->update_id == -1 && !g_queue_is_empty (&self->priv->updates))
- self->priv->update_id = mail_async_event_emit (
- mail_async_event, (MailAsyncFunc)
- real_flush_updates, self, NULL, NULL);
+ if (self->priv->update_id > 0)
+ return;
+
+ if (g_queue_is_empty (&self->priv->updates))
+ return;
+
+ self->priv->update_id = g_idle_add (
+ (GSourceFunc) flush_updates_idle_cb, self);
}
/* This is how unread counts work (and don't work):
@@ -1052,7 +1057,6 @@ mail_folder_cache_init (MailFolderCache *self)
self->priv->stores_mutex = g_mutex_new ();
g_queue_init (&self->priv->updates);
- self->priv->update_id = -1;
self->priv->count_sent = getenv("EVOLUTION_COUNT_SENT") != NULL;
self->priv->count_trash = getenv("EVOLUTION_COUNT_TRASH") != NULL;