changeset 1933:6197c967b1ff

call notify functions in in an idle call
author Vladimir Nadvornik <nadvornik@suse.cz>
date Sun, 02 Oct 2011 11:12:44 +0200
parents d50c2ddc9858
children 95a788b9dc1c
files src/filedata.c
diffstat 1 files changed, 20 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/filedata.c	Sat Oct 01 23:21:08 2011 +0200
+++ b/src/filedata.c	Sun Oct 02 11:12:44 2011 +0200
@@ -2524,6 +2524,12 @@
    implementation in view_file_list.c */
 
 
+typedef struct _NotifyIdleData NotifyIdleData;
+
+struct _NotifyIdleData {
+	FileData *fd;
+	NotifyType type;
+};
 
 
 typedef struct _NotifyData NotifyData;
@@ -2597,17 +2603,29 @@
 }
 
 
-void file_data_send_notification(FileData *fd, NotifyType type)
+gboolean file_data_send_notification_idle_cb(gpointer data)
 {
+	NotifyIdleData *nid = (NotifyIdleData *)data;
 	GList *work = notify_func_list;
 
 	while (work)
 		{
 		NotifyData *nd = (NotifyData *)work->data;
 		
-		nd->func(fd, type, nd->data);
+		nd->func(nid->fd, nid->type, nd->data);
 		work = work->next;
 		}
+	file_data_unref(nid->fd);
+	g_free(nid);
+	return FALSE;
+}
+
+void file_data_send_notification(FileData *fd, NotifyType type)
+{
+	NotifyIdleData *nid = g_new0(NotifyIdleData, 1);
+	nid->fd = file_data_ref(fd);
+	nid->type = type;
+	g_idle_add_full(G_PRIORITY_HIGH, file_data_send_notification_idle_cb, nid, NULL);
 }
 
 static GHashTable *file_data_monitor_pool = NULL;