aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-store.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-04-10 18:11:16 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-04-10 18:11:16 +0800
commit79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8 (patch)
treed4ee9de29c3f2c44a6cd30624808a88a58103f3a /calendar/gui/e-meeting-store.c
parent05a50698056b0e3610b980d9392c44a24329b06f (diff)
downloadgsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar.gz
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar.bz2
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar.lz
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar.xz
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.tar.zst
gsoc2013-evolution-79a50792491efc77d0bf7b53fdeaa1afd3fa8dd8.zip
Fixes #163039
svn path=/trunk/; revision=31798
Diffstat (limited to 'calendar/gui/e-meeting-store.c')
-rw-r--r--calendar/gui/e-meeting-store.c59
1 files changed, 7 insertions, 52 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c
index 8a185add17..738447b83b 100644
--- a/calendar/gui/e-meeting-store.c
+++ b/calendar/gui/e-meeting-store.c
@@ -58,10 +58,8 @@ struct _EMeetingStorePrivate {
GMutex *mutex;
guint refresh_idle_id;
- guint callback_idle_id;
guint num_threads;
guint num_queries;
- GAsyncQueue *async_queue;
};
#define BUF_SIZE 1024
@@ -566,15 +564,10 @@ ems_finalize (GObject *obj)
if (priv->refresh_idle_id)
g_source_remove (priv->refresh_idle_id);
- if (priv->callback_idle_id)
- g_source_remove (priv->callback_idle_id);
-
g_free (priv->fb_uri);
g_mutex_free (priv->mutex);
- g_async_queue_unref (priv->async_queue);
-
g_free (priv);
if (G_OBJECT_CLASS (parent_class)->finalize)
@@ -610,8 +603,6 @@ ems_init (EMeetingStore *store)
priv->mutex = g_mutex_new ();
- priv->async_queue = g_async_queue_new ();
-
priv->num_queries = 0;
start_addressbook_server (store);
@@ -947,38 +938,6 @@ find_zone (icalproperty *ip, icalcomponent *tz_top_level)
return NULL;
}
-typedef struct {
- EMeetingStoreRefreshCallback call_back;
- gpointer *data;
-} QueueCbData;
-
-/* Process the callbacks in the main thread. Avoids widget redrawing issues. */
-static gboolean
-process_callbacks_main_thread (void *data)
-{
- EMeetingStore *store = data;
- EMeetingStorePrivate *priv;
- QueueCbData *aqueue_data;
- gboolean threads_done = FALSE;
-
- priv = store->priv;
-
- g_mutex_lock (priv->mutex);
- if (priv->num_threads == 0) {
- threads_done = TRUE;
- priv->callback_idle_id = 0;
- }
- g_mutex_unlock (priv->mutex);
-
- while ((aqueue_data = g_async_queue_try_pop (priv->async_queue)) != NULL) {
- aqueue_data->call_back (aqueue_data->data);
-
- g_free (aqueue_data);
- }
-
- return !threads_done;
-}
-
static void
process_callbacks (EMeetingStoreQueueData *qdata)
{
@@ -988,12 +947,13 @@ process_callbacks (EMeetingStoreQueueData *qdata)
store = qdata->store;
for (i = 0; i < qdata->call_backs->len; i++) {
- QueueCbData *aqueue_data = g_new0 (QueueCbData, 1);
-
- aqueue_data->call_back = g_ptr_array_index (qdata->call_backs, i);
- aqueue_data->data = g_ptr_array_index (qdata->data, i);
+ EMeetingStoreRefreshCallback call_back;
+ gpointer *data = NULL;
- g_async_queue_push (store->priv->async_queue, aqueue_data);
+ call_back = g_ptr_array_index (qdata->call_backs, i);
+ data = g_ptr_array_index (qdata->data, i);
+
+ g_idle_add ((GSourceFunc) call_back, data);
}
g_mutex_lock (store->priv->mutex);
@@ -1001,7 +961,6 @@ process_callbacks (EMeetingStoreQueueData *qdata)
g_mutex_unlock (store->priv->mutex);
refresh_queue_remove (qdata->store, qdata->attendee);
- g_async_queue_unref (store->priv->async_queue);
g_object_unref (store);
}
@@ -1338,7 +1297,6 @@ refresh_busy_periods (gpointer data)
}
- g_async_queue_ref (priv->async_queue);
g_mutex_lock (store->priv->mutex);
store->priv->num_threads++;
@@ -1352,17 +1310,14 @@ refresh_busy_periods (gpointer data)
g_free (fbd->email);
priv->refresh_idle_id = 0;
- g_async_queue_unref (priv->async_queue);
g_mutex_lock (store->priv->mutex);
store->priv->num_threads--;
g_mutex_unlock (store->priv->mutex);
return FALSE;
- } else if (priv->callback_idle_id == 0) {
- priv->callback_idle_id = g_idle_add (process_callbacks_main_thread,
- store);
}
+
return TRUE;
}