Fixes for #101264 and #99372:
[platform/upstream/glib.git] / glib / grand.c
index 7f6627e..ef28b82 100644 (file)
@@ -22,7 +22,7 @@
  * code from this file in your own programs or libraries.
  * Further information on the Mersenne Twister can be found at
  * http://www.math.keio.ac.jp/~matumoto/emt.html
- * This code was adapted to glib by Sebastian Wilhelmi <wilhelmi@ira.uka.de>.
+ * This code was adapted to glib by Sebastian Wilhelmi.
  */
 
 /*
  * MT safe
  */
 
-#include <glib.h>
+#include "config.h"
+
 #include <math.h>
 #include <stdio.h>
+#include <string.h>
+
+#include "glib.h"
+#include "gthreadinit.h"
 
 G_LOCK_DEFINE_STATIC (global_random);
 static GRand* global_random = NULL;
@@ -58,6 +63,41 @@ static GRand* global_random = NULL;
 #define TEMPERING_SHIFT_T(y)  (y << 15)
 #define TEMPERING_SHIFT_L(y)  (y >> 18)
 
+static guint
+get_random_version (void)
+{
+  static gboolean initialized = FALSE;
+  static guint random_version;
+  
+  if (!initialized)
+    {
+      const gchar *version_string = g_getenv ("G_RANDOM_VERSION");
+      if (!version_string || version_string[0] == '\000' || 
+         strcmp (version_string, "2.2") == 0)
+       random_version = 22;
+      else if (strcmp (version_string, "2.0") == 0)
+       random_version = 20;
+      else
+       {
+         g_warning ("Unknown G_RANDOM_VERSION \"%s\". Using version 2.2.",
+                    version_string);
+         random_version = 22;
+       }
+      initialized = TRUE;
+    }
+  
+  return random_version;
+}
+
+/* This is called from g_thread_init(). It's used to
+ * initialize some static data in a threadsafe way.
+ */
+void 
+_g_rand_thread_init (void)
+{
+  (void)get_random_version ();
+}
+
 struct _GRand
 {
   guint32 mt[N]; /* the array for the state vector  */
@@ -84,8 +124,8 @@ g_rand_new_with_seed (guint32 seed)
  * g_rand_new:
  * 
  * Creates a new random number generator initialized with a seed taken
- * either from /dev/urandom (if existing) or from the current time (as
- * a fallback).
+ * either from <filename>/dev/urandom</filename> (if existing) or from 
+ * the current time (as a fallback).
  * 
  * Return value: the new #GRand.
  **/
@@ -94,7 +134,7 @@ g_rand_new (void)
 {
   guint32 seed;
   GTimeVal now;
-#if G_OS_UNIX
+#ifdef G_OS_UNIX
   static gboolean dev_urandom_exists = TRUE;
 
   if (dev_urandom_exists)
@@ -124,7 +164,7 @@ g_rand_new (void)
 
 /**
  * g_rand_free:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  *
  * Frees the memory allocated for the #GRand.
  **/
@@ -138,7 +178,7 @@ g_rand_free (GRand* rand)
 
 /**
  * g_rand_set_seed:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  * @seed: a value to reinitialize the random number generator.
  *
  * Sets the seed for the random number generator #GRand to @seed.
@@ -148,24 +188,42 @@ g_rand_set_seed (GRand* rand, guint32 seed)
 {
   g_return_if_fail (rand != NULL);
 
-  /* setting initial seeds to mt[N] using         */
-  /* the generator Line 25 of Table 1 in          */
-  /* [KNUTH 1981, The Art of Computer Programming */
-  /*    Vol. 2 (2nd Ed.), pp102]                  */
-  
-  if (seed == 0) /* This would make the PRNG procude only zeros */
-    seed = 0x6b842128; /* Just set it to another number */
-
-  rand->mt[0]= seed & 0xffffffff;
-  for (rand->mti=1; rand->mti<N; rand->mti++)
-    rand->mt[rand->mti] = (69069 * rand->mt[rand->mti-1]) & 0xffffffff;
+  switch (get_random_version ())
+    {
+    case 20:
+      /* setting initial seeds to mt[N] using         */
+      /* the generator Line 25 of Table 1 in          */
+      /* [KNUTH 1981, The Art of Computer Programming */
+      /*    Vol. 2 (2nd Ed.), pp102]                  */
+      
+      if (seed == 0) /* This would make the PRNG procude only zeros */
+       seed = 0x6b842128; /* Just set it to another number */
+      
+      rand->mt[0]= seed;
+      for (rand->mti=1; rand->mti<N; rand->mti++)
+       rand->mt[rand->mti] = (69069 * rand->mt[rand->mti-1]);
+      
+      break;
+    case 22:
+      /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
+      /* In the previous version (see above), MSBs of the    */
+      /* seed affect only MSBs of the array mt[].            */
+      
+      rand->mt[0]= seed;
+      for (rand->mti=1; rand->mti<N; rand->mti++)
+       rand->mt[rand->mti] = 1812433253UL * 
+         (rand->mt[rand->mti-1] ^ (rand->mt[rand->mti-1] >> 30)) + rand->mti; 
+      break;
+    default:
+      g_assert_not_reached ();
+    }
 }
 
 /**
  * g_rand_int:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  *
- * Return the next random #guint32 from @rand equaly distributed over
+ * Returns the next random #guint32 from @rand_ equally distributed over
  * the range [0..2^32-1].
  *
  * Return value: A random number.
@@ -210,11 +268,11 @@ g_rand_int (GRand* rand)
 
 /**
  * g_rand_int_range:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  * @begin: lower closed bound of the interval.
  * @end: upper open bound of the interval.
  *
- * Return the next random #gint32 from @rand equaly distributed over
+ * Returns the next random #gint32 from @rand_ equally distributed over
  * the range [@begin..@end-1].
  *
  * Return value: A random number.
@@ -228,43 +286,72 @@ g_rand_int_range (GRand* rand, gint32 begin, gint32 end)
   g_return_val_if_fail (rand != NULL, begin);
   g_return_val_if_fail (end > begin, begin);
 
-  /* All tricks doing modulo calculations do not have a perfect
-   * distribution -> We must use the slower way through gdouble for
-   * maximal quality. */
-   
-  if (dist <= 0x10000L) /* 2^16 */
-    {
-      /* This method, which only calls g_rand_int once is only good
-       * for (end - begin) <= 2^16, because we only have 32 bits set
-       * from the one call to g_rand_int (). */
-
-      /* we are using (trans + trans * trans), because g_rand_int only
-       * covers [0..2^32-1] and thus g_rand_int * trans only covers
-       * [0..1-2^-32], but the biggest double < 1 is 1-2^-52. 
-       */
-
-      gdouble double_rand = g_rand_int (rand) * 
-       (G_RAND_DOUBLE_TRANSFORM +
-        G_RAND_DOUBLE_TRANSFORM * G_RAND_DOUBLE_TRANSFORM);
-      
-      random = (gint32) (double_rand * dist);
-    }
-  else
+  switch (get_random_version ())
     {
-      /* Now we use g_rand_double_range (), which will set 52 bits for
-         us, so that it is safe to round and still get a decent
-         distribution */
-       random = (gint32) g_rand_double_range (rand, 0, dist);
-    }
+    case 20:
+      if (dist <= 0x10000L) /* 2^16 */
+       {
+         /* This method, which only calls g_rand_int once is only good
+          * for (end - begin) <= 2^16, because we only have 32 bits set
+          * from the one call to g_rand_int (). */
+         
+         /* we are using (trans + trans * trans), because g_rand_int only
+          * covers [0..2^32-1] and thus g_rand_int * trans only covers
+          * [0..1-2^-32], but the biggest double < 1 is 1-2^-52. 
+          */
+         
+         gdouble double_rand = g_rand_int (rand) * 
+           (G_RAND_DOUBLE_TRANSFORM +
+            G_RAND_DOUBLE_TRANSFORM * G_RAND_DOUBLE_TRANSFORM);
+         
+         random = (gint32) (double_rand * dist);
+       }
+      else
+       {
+         /* Now we use g_rand_double_range (), which will set 52 bits for
+            us, so that it is safe to round and still get a decent
+            distribution */
+         random = (gint32) g_rand_double_range (rand, 0, dist);
+       }
+      break;
+    case 22:
+      if (dist == 0)
+       random = 0;
+      else 
+       {
+         /* maxvalue is set to the predecessor of the greatest
+          * multiple of dist less or equal 2^32. */
+         guint32 maxvalue;
+         if (dist <= 0x80000000u) /* 2^31 */
+           {
+             /* maxvalue = 2^32 - 1 - (2^32 % dist) */
+             guint32 leftover = (0x80000000u % dist) * 2;
+             if (leftover >= dist) leftover -= dist;
+             maxvalue = 0xffffffffu - leftover;
+           }
+         else
+           maxvalue = dist - 1;
+         
+         do
+           random = g_rand_int (rand);
+         while (random > maxvalue);
+         
+         random %= dist;
+       }
+      break;
+    default:
+      random = 0;              /* Quiet GCC */
+      g_assert_not_reached ();
+    }      
  
   return begin + random;
 }
 
 /**
  * g_rand_double:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  *
- * Return the next random #gdouble from @rand equaly distributed over
+ * Returns the next random #gdouble from @rand_ equally distributed over
  * the range [0..1).
  *
  * Return value: A random number.
@@ -287,11 +374,11 @@ g_rand_double (GRand* rand)
 
 /**
  * g_rand_double_range:
- * @rand: a #GRand.
+ * @rand_: a #GRand.
  * @begin: lower closed bound of the interval.
  * @end: upper open bound of the interval.
  *
- * Return the next random #gdouble from @rand equaly distributed over
+ * Returns the next random #gdouble from @rand_ equally distributed over
  * the range [@begin..@end).
  *
  * Return value: A random number.
@@ -305,7 +392,7 @@ g_rand_double_range (GRand* rand, gdouble begin, gdouble end)
 /**
  * g_random_int:
  *
- * Return a random #guint32 equaly distributed over the range
+ * Return a random #guint32 equally distributed over the range
  * [0..2^32-1].
  *
  * Return value: A random number.
@@ -328,7 +415,7 @@ g_random_int (void)
  * @begin: lower closed bound of the interval.
  * @end: upper open bound of the interval.
  *
- * Return a random #gint32 equaly distributed over the range
+ * Returns a random #gint32 equally distributed over the range
  * [@begin..@end-1].
  *
  * Return value: A random number.
@@ -349,7 +436,7 @@ g_random_int_range (gint32 begin, gint32 end)
 /**
  * g_random_double:
  *
- * Return a random #gdouble equaly distributed over the range [0..1).
+ * Returns a random #gdouble equally distributed over the range [0..1).
  *
  * Return value: A random number.
  **/
@@ -371,7 +458,7 @@ g_random_double (void)
  * @begin: lower closed bound of the interval.
  * @end: upper open bound of the interval.
  *
- * Return a random #gdouble equaly distributed over the range [@begin..@end).
+ * Returns a random #gdouble equally distributed over the range [@begin..@end).
  *
  * Return value: A random number.
  **/
@@ -393,7 +480,7 @@ g_random_double_range (gdouble begin, gdouble end)
  * @seed: a value to reinitialize the global random number generator.
  * 
  * Sets the seed for the global random number generator, which is used
- * by te g_random_* functions, to @seed.
+ * by the <function>g_random_*</function> functions, to @seed.
  **/
 void
 g_random_set_seed (guint32 seed)