[W32] Add a tuning feature
authorWerner Koch <wk@gnupg.org>
Thu, 26 Jan 2006 10:23:15 +0000 (10:23 +0000)
committerWerner Koch <wk@gnupg.org>
Thu, 26 Jan 2006 10:23:15 +0000 (10:23 +0000)
gpgme/ChangeLog
gpgme/gpgme.h
gpgme/posix-util.c
gpgme/util.h
gpgme/w32-io.c
gpgme/w32-util.c

index 6996bd7f8acb12f13f3668b26fec33064a933534..0ba8de511becabed921fd8680a52f00cee7c6425 100644 (file)
@@ -1,3 +1,10 @@
+2006-01-26  Werner Koch  <wk@g10code.com>
+
+       * w32-util.c (_gpgme_get_conf_int): New.
+       * posix-util.c (_gpgme_get_conf_int): New.
+       * w32-io.c (get_desired_thread_priority): New.
+       (create_reader, create_writer): Use it here.
+
 2006-01-04  Werner Koch  <wk@g10code.com>
 
        * debug.h (_gpgme_debug_srcname): New. Use it with the debug macros.
index 40ca9aa75dd232c0b79d29e7926df787db675c8f..f0fee7c0be4a21f386ae5250c60bb09bf5d6283e 100644 (file)
@@ -72,7 +72,7 @@ extern "C" {
    AM_PATH_GPGME macro) check that this header matches the installed
    library.  Warning: Do not edit the next line.  configure will do
    that for you!  */
-#define GPGME_VERSION "1.1.1-cvs1149"
+#define GPGME_VERSION "1.1.1-cvs1150"
 
 
 \f
index 45bfa5ded101dfa49465a0850e47aa8f2d97da65..d5b4172d7cc152e2a441f926f91ede00adaf6835 100644 (file)
@@ -48,3 +48,10 @@ _gpgme_get_gpgsm_path (void)
   return NULL;
 #endif
 }
+
+/* See w32-util.c */
+int
+_gpgme_get_conf_int (const char *key, int *value)
+{
+  return 0;
+}
index 3c724cadb1e6cec75c4276889f9de5858f153278..28d5e1922c8fa9453629f504339772dcbcf4169b 100644 (file)
@@ -31,6 +31,7 @@
 /*-- {posix,w32}-util.c --*/
 const char *_gpgme_get_gpg_path (void);
 const char *_gpgme_get_gpgsm_path (void);
+int _gpgme_get_conf_int (const char *key, int *value);
 
 \f
 /*-- replacement functions in <funcname>.c --*/
index fd83e531dd1efa9700184abb36c747af08bad54a..13042afc6113926d1a10b9d76b2386d8856f70fb 100644 (file)
@@ -119,6 +119,23 @@ DEFINE_STATIC_LOCK (writer_table_lock);
 
 
 
+static int
+get_desired_thread_priority (void)
+{
+  int value;
+
+  if (!_gpgme_get_conf_int ("IOThreadPriority", &value))
+    {
+      value = THREAD_PRIORITY_HIGHEST;
+      DEBUG1 ("** Using standard IOThreadPriority of %d\n", value);
+    }
+  else
+    DEBUG1 ("** Configured IOThreadPriority is %d\n", value);
+
+  return value;
+}
+
+
 static HANDLE
 set_synchronize (HANDLE h)
 {
@@ -266,7 +283,7 @@ create_reader (HANDLE fd)
       /* We set the priority of the thread higher because we know that
          it only runs for a short time.  This greatly helps to increase
          the performance of the I/O. */
-      SetThreadPriority (c->thread_hd, THREAD_PRIORITY_HIGHEST);
+      SetThreadPriority (c->thread_hd, get_desired_thread_priority ());
     }
 
     return c;
@@ -524,7 +541,7 @@ create_writer (HANDLE fd)
       /* We set the priority of the thread higher because we know that
          it only runs for a short time.  This greatly helps to increase
          the performance of the I/O. */
-      SetThreadPriority (c->thread_hd, THREAD_PRIORITY_HIGHEST);
+      SetThreadPriority (c->thread_hd, get_desired_thread_priority ());
     }
 
     return c;
index fa1a6d7a2a78a849c5f134a9d9376122f29d0a05..889a6ec1abf3bd796b477a0cf2276fd7414abcd1 100644 (file)
@@ -265,7 +265,6 @@ find_program_at_standard_place (const char *name)
   return result;
 }
 
-
 const char *
 _gpgme_get_gpg_path (void)
 {
@@ -301,3 +300,18 @@ _gpgme_get_gpgsm_path (void)
   UNLOCK (get_path_lock);
   return gpgsm_program;
 }
+
+
+/* Return an integer value from gpgme specific configuration
+   entries. VALUE receives that value; function returns true if a value
+   has been configured and false if not. */
+int
+_gpgme_get_conf_int (const char *key, int *value)
+{
+  char *tmp = read_w32_registry_string (NULL, "Software\\GNU\\gpgme", key);
+  if (!tmp)
+    return 0;
+  *value = atoi (tmp);
+  free (tmp);
+  return 1;
+}