Use idle callback to write to the local config directory
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 11 Jan 2012 21:04:14 +0000 (22:04 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 11 Jan 2012 21:04:14 +0000 (22:04 +0100)
When the users config directory is on a filesystem with high latency,
moving a dialog box resulted in many writes and thus an unacceptable
delay.  This change fixes that by consolidating the writes into a
low priority idle callback.

src/ui/gui/psppire-conf.c
src/ui/gui/psppire-conf.h

index 02cc2751212a2a0de931fe7a2b9e722b342255e2..fe4f934bd640193e382f1fc077c7ff661f91850b 100644 (file)
@@ -24,6 +24,8 @@
 #include <stdio.h>
 #include <sys/stat.h>
 
+#include <glib.h>
+
 #include "psppire-conf.h"
 
 static void psppire_conf_init            (PsppireConf      *conf);
@@ -73,8 +75,8 @@ conf_read (PsppireConf *conf)
                             NULL);
 }
 
-static void
-conf_write (PsppireConf *conf)
+static gboolean
+flush_conf (PsppireConf *conf)
 {
   gsize length = 0;
 
@@ -86,8 +88,19 @@ conf_write (PsppireConf *conf)
     }
 
   g_free (kf);
+  conf->idle = 0;
+  return FALSE;
 }
 
+static void
+conf_write (PsppireConf *conf)
+{
+  if ( conf->idle == 0)
+    conf->idle = g_idle_add_full (G_PRIORITY_LOW, 
+                                 (GSourceFunc) flush_conf, conf, NULL);
+}
+
+
 static void
 psppire_conf_dispose  (GObject *object)
 {
@@ -157,6 +170,7 @@ psppire_conf_init (PsppireConf *conf)
   conf->keyfile = g_key_file_new ();
 
   conf->dispose_has_run = FALSE;
+  conf->idle = 0;
 }
 
 
index 674577e778a8586d6c41c9ce610b77306dd01095..8586022666d5757754b1af8b48da2de8e8adbbc6 100644 (file)
@@ -62,6 +62,7 @@ struct _PsppireConf
 
   GKeyFile *keyfile;
   gchar *filename;
+  guint idle;
 };