Merge remote-tracking branch 'gvdb/master'
[platform/upstream/glib.git] / glib / grand.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /* Originally developed and coded by Makoto Matsumoto and Takuji
21  * Nishimura.  Please mail <matumoto@math.keio.ac.jp>, if you're using
22  * code from this file in your own programs or libraries.
23  * Further information on the Mersenne Twister can be found at
24  * http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
25  * This code was adapted to glib by Sebastian Wilhelmi.
26  */
27
28 /*
29  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
30  * file for a list of people on the GLib Team.  See the ChangeLog
31  * files for a list of changes.  These files are distributed with
32  * GLib at ftp://ftp.gtk.org/pub/gtk/.
33  */
34
35 /*
36  * MT safe
37  */
38
39 #include "config.h"
40
41 #include <math.h>
42 #include <errno.h>
43 #include <stdio.h>
44 #include <string.h>
45 #include <sys/types.h>
46 #ifdef HAVE_UNISTD_H
47 #include <unistd.h>
48 #endif
49
50 #include "grand.h"
51
52 #include "genviron.h"
53 #include "gmain.h"
54 #include "gmem.h"
55 #include "gtestutils.h"
56 #include "gthread.h"
57
58 #ifdef G_OS_WIN32
59 #include <process.h>            /* For getpid() */
60 #endif
61
62 /**
63  * SECTION:random_numbers
64  * @title: Random Numbers
65  * @short_description: pseudo-random number generator
66  *
67  * The following functions allow you to use a portable, fast and good
68  * pseudo-random number generator (PRNG). It uses the Mersenne Twister
69  * PRNG, which was originally developed by Makoto Matsumoto and Takuji
70  * Nishimura. Further information can be found at
71  * <ulink url="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html">
72  * http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html</ulink>.
73  *
74  * If you just need a random number, you simply call the
75  * <function>g_random_*</function> functions, which will create a
76  * globally used #GRand and use the according
77  * <function>g_rand_*</function> functions internally. Whenever you
78  * need a stream of reproducible random numbers, you better create a
79  * #GRand yourself and use the <function>g_rand_*</function> functions
80  * directly, which will also be slightly faster. Initializing a #GRand
81  * with a certain seed will produce exactly the same series of random
82  * numbers on all platforms. This can thus be used as a seed for e.g.
83  * games.
84  *
85  * The <function>g_rand*_range</function> functions will return high
86  * quality equally distributed random numbers, whereas for example the
87  * <literal>(g_random_int()&percnt;max)</literal> approach often
88  * doesn't yield equally distributed numbers.
89  *
90  * GLib changed the seeding algorithm for the pseudo-random number
91  * generator Mersenne Twister, as used by
92  * <structname>GRand</structname> and <structname>GRandom</structname>.
93  * This was necessary, because some seeds would yield very bad
94  * pseudo-random streams.  Also the pseudo-random integers generated by
95  * <function>g_rand*_int_range()</function> will have a slightly better
96  * equal distribution with the new version of GLib.
97  *
98  * The original seeding and generation algorithms, as found in GLib
99  * 2.0.x, can be used instead of the new ones by setting the
100  * environment variable <envar>G_RANDOM_VERSION</envar> to the value of
101  * '2.0'. Use the GLib-2.0 algorithms only if you have sequences of
102  * numbers generated with Glib-2.0 that you need to reproduce exactly.
103  **/
104
105 /**
106  * GRand:
107  *
108  * The #GRand struct is an opaque data structure. It should only be
109  * accessed through the <function>g_rand_*</function> functions.
110  **/
111
112 G_LOCK_DEFINE_STATIC (global_random);
113 static GRand* global_random = NULL;
114
115 /* Period parameters */  
116 #define N 624
117 #define M 397
118 #define MATRIX_A 0x9908b0df   /* constant vector a */
119 #define UPPER_MASK 0x80000000 /* most significant w-r bits */
120 #define LOWER_MASK 0x7fffffff /* least significant r bits */
121
122 /* Tempering parameters */   
123 #define TEMPERING_MASK_B 0x9d2c5680
124 #define TEMPERING_MASK_C 0xefc60000
125 #define TEMPERING_SHIFT_U(y)  (y >> 11)
126 #define TEMPERING_SHIFT_S(y)  (y << 7)
127 #define TEMPERING_SHIFT_T(y)  (y << 15)
128 #define TEMPERING_SHIFT_L(y)  (y >> 18)
129
130 static guint
131 get_random_version (void)
132 {
133   static gsize initialized = FALSE;
134   static guint random_version;
135
136   if (g_once_init_enter (&initialized))
137     {
138       const gchar *version_string = g_getenv ("G_RANDOM_VERSION");
139       if (!version_string || version_string[0] == '\000' || 
140           strcmp (version_string, "2.2") == 0)
141         random_version = 22;
142       else if (strcmp (version_string, "2.0") == 0)
143         random_version = 20;
144       else
145         {
146           g_warning ("Unknown G_RANDOM_VERSION \"%s\". Using version 2.2.",
147                      version_string);
148           random_version = 22;
149         }
150       g_once_init_leave (&initialized, TRUE);
151     }
152   
153   return random_version;
154 }
155
156 struct _GRand
157 {
158   guint32 mt[N]; /* the array for the state vector  */
159   guint mti; 
160 };
161
162 /**
163  * g_rand_new_with_seed:
164  * @seed: a value to initialize the random number generator.
165  * 
166  * Creates a new random number generator initialized with @seed.
167  * 
168  * Return value: the new #GRand.
169  **/
170 GRand*
171 g_rand_new_with_seed (guint32 seed)
172 {
173   GRand *rand = g_new0 (GRand, 1);
174   g_rand_set_seed (rand, seed);
175   return rand;
176 }
177
178 /**
179  * g_rand_new_with_seed_array:
180  * @seed: an array of seeds to initialize the random number generator.
181  * @seed_length: an array of seeds to initialize the random number generator.
182  * 
183  * Creates a new random number generator initialized with @seed.
184  * 
185  * Return value: the new #GRand.
186  *
187  * Since: 2.4
188  **/
189 GRand*
190 g_rand_new_with_seed_array (const guint32 *seed, guint seed_length)
191 {
192   GRand *rand = g_new0 (GRand, 1);
193   g_rand_set_seed_array (rand, seed, seed_length);
194   return rand;
195 }
196
197 /**
198  * g_rand_new:
199  * 
200  * Creates a new random number generator initialized with a seed taken
201  * either from <filename>/dev/urandom</filename> (if existing) or from 
202  * the current time (as a fallback).
203  * 
204  * Return value: the new #GRand.
205  **/
206 GRand* 
207 g_rand_new (void)
208 {
209   guint32 seed[4];
210   GTimeVal now;
211 #ifdef G_OS_UNIX
212   static gboolean dev_urandom_exists = TRUE;
213
214   if (dev_urandom_exists)
215     {
216       FILE* dev_urandom;
217
218       do
219         {
220           errno = 0;
221           dev_urandom = fopen("/dev/urandom", "rb");
222         }
223       while G_UNLIKELY (errno == EINTR);
224
225       if (dev_urandom)
226         {
227           int r;
228
229           setvbuf (dev_urandom, NULL, _IONBF, 0);
230           do
231             {
232               errno = 0;
233               r = fread (seed, sizeof (seed), 1, dev_urandom);
234             }
235           while G_UNLIKELY (errno == EINTR);
236
237           if (r != 1)
238             dev_urandom_exists = FALSE;
239
240           fclose (dev_urandom);
241         }       
242       else
243         dev_urandom_exists = FALSE;
244     }
245 #else
246   static gboolean dev_urandom_exists = FALSE;
247 #endif
248
249   if (!dev_urandom_exists)
250     {  
251       g_get_current_time (&now);
252       seed[0] = now.tv_sec;
253       seed[1] = now.tv_usec;
254       seed[2] = getpid ();
255 #ifdef G_OS_UNIX
256       seed[3] = getppid ();
257 #else
258       seed[3] = 0;
259 #endif
260     }
261
262   return g_rand_new_with_seed_array (seed, 4);
263 }
264
265 /**
266  * g_rand_free:
267  * @rand_: a #GRand.
268  *
269  * Frees the memory allocated for the #GRand.
270  **/
271 void
272 g_rand_free (GRand* rand)
273 {
274   g_return_if_fail (rand != NULL);
275
276   g_free (rand);
277 }
278
279 /**
280  * g_rand_copy:
281  * @rand_: a #GRand.
282  *
283  * Copies a #GRand into a new one with the same exact state as before.
284  * This way you can take a snapshot of the random number generator for
285  * replaying later.
286  *
287  * Return value: the new #GRand.
288  *
289  * Since: 2.4
290  **/
291 GRand *
292 g_rand_copy (GRand* rand)
293 {
294   GRand* new_rand;
295
296   g_return_val_if_fail (rand != NULL, NULL);
297
298   new_rand = g_new0 (GRand, 1);
299   memcpy (new_rand, rand, sizeof (GRand));
300
301   return new_rand;
302 }
303
304 /**
305  * g_rand_set_seed:
306  * @rand_: a #GRand.
307  * @seed: a value to reinitialize the random number generator.
308  *
309  * Sets the seed for the random number generator #GRand to @seed.
310  **/
311 void
312 g_rand_set_seed (GRand* rand, guint32 seed)
313 {
314   g_return_if_fail (rand != NULL);
315
316   switch (get_random_version ())
317     {
318     case 20:
319       /* setting initial seeds to mt[N] using         */
320       /* the generator Line 25 of Table 1 in          */
321       /* [KNUTH 1981, The Art of Computer Programming */
322       /*    Vol. 2 (2nd Ed.), pp102]                  */
323       
324       if (seed == 0) /* This would make the PRNG procude only zeros */
325         seed = 0x6b842128; /* Just set it to another number */
326       
327       rand->mt[0]= seed;
328       for (rand->mti=1; rand->mti<N; rand->mti++)
329         rand->mt[rand->mti] = (69069 * rand->mt[rand->mti-1]);
330       
331       break;
332     case 22:
333       /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
334       /* In the previous version (see above), MSBs of the    */
335       /* seed affect only MSBs of the array mt[].            */
336       
337       rand->mt[0]= seed;
338       for (rand->mti=1; rand->mti<N; rand->mti++)
339         rand->mt[rand->mti] = 1812433253UL * 
340           (rand->mt[rand->mti-1] ^ (rand->mt[rand->mti-1] >> 30)) + rand->mti; 
341       break;
342     default:
343       g_assert_not_reached ();
344     }
345 }
346
347 /**
348  * g_rand_set_seed_array:
349  * @rand_: a #GRand.
350  * @seed: array to initialize with
351  * @seed_length: length of array
352  *
353  * Initializes the random number generator by an array of
354  * longs.  Array can be of arbitrary size, though only the
355  * first 624 values are taken.  This function is useful
356  * if you have many low entropy seeds, or if you require more then
357  * 32bits of actual entropy for your application.
358  *
359  * Since: 2.4
360  **/
361 void
362 g_rand_set_seed_array (GRand* rand, const guint32 *seed, guint seed_length)
363 {
364   int i, j, k;
365
366   g_return_if_fail (rand != NULL);
367   g_return_if_fail (seed_length >= 1);
368
369   g_rand_set_seed (rand, 19650218UL);
370
371   i=1; j=0;
372   k = (N>seed_length ? N : seed_length);
373   for (; k; k--)
374     {
375       rand->mt[i] = (rand->mt[i] ^
376                      ((rand->mt[i-1] ^ (rand->mt[i-1] >> 30)) * 1664525UL))
377               + seed[j] + j; /* non linear */
378       rand->mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
379       i++; j++;
380       if (i>=N)
381         {
382           rand->mt[0] = rand->mt[N-1];
383           i=1;
384         }
385       if (j>=seed_length)
386         j=0;
387     }
388   for (k=N-1; k; k--)
389     {
390       rand->mt[i] = (rand->mt[i] ^
391                      ((rand->mt[i-1] ^ (rand->mt[i-1] >> 30)) * 1566083941UL))
392               - i; /* non linear */
393       rand->mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
394       i++;
395       if (i>=N)
396         {
397           rand->mt[0] = rand->mt[N-1];
398           i=1;
399         }
400     }
401
402   rand->mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ 
403 }
404
405 /**
406  * g_rand_boolean:
407  * @rand_: a #GRand.
408  * @Returns: a random #gboolean.
409  *
410  * Returns a random #gboolean from @rand_. This corresponds to a
411  * unbiased coin toss.
412  **/
413 /**
414  * g_rand_int:
415  * @rand_: a #GRand.
416  *
417  * Returns the next random #guint32 from @rand_ equally distributed over
418  * the range [0..2^32-1].
419  *
420  * Return value: A random number.
421  **/
422 guint32
423 g_rand_int (GRand* rand)
424 {
425   guint32 y;
426   static const guint32 mag01[2]={0x0, MATRIX_A};
427   /* mag01[x] = x * MATRIX_A  for x=0,1 */
428
429   g_return_val_if_fail (rand != NULL, 0);
430
431   if (rand->mti >= N) { /* generate N words at one time */
432     int kk;
433     
434     for (kk=0;kk<N-M;kk++) {
435       y = (rand->mt[kk]&UPPER_MASK)|(rand->mt[kk+1]&LOWER_MASK);
436       rand->mt[kk] = rand->mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1];
437     }
438     for (;kk<N-1;kk++) {
439       y = (rand->mt[kk]&UPPER_MASK)|(rand->mt[kk+1]&LOWER_MASK);
440       rand->mt[kk] = rand->mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1];
441     }
442     y = (rand->mt[N-1]&UPPER_MASK)|(rand->mt[0]&LOWER_MASK);
443     rand->mt[N-1] = rand->mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1];
444     
445     rand->mti = 0;
446   }
447   
448   y = rand->mt[rand->mti++];
449   y ^= TEMPERING_SHIFT_U(y);
450   y ^= TEMPERING_SHIFT_S(y) & TEMPERING_MASK_B;
451   y ^= TEMPERING_SHIFT_T(y) & TEMPERING_MASK_C;
452   y ^= TEMPERING_SHIFT_L(y);
453   
454   return y; 
455 }
456
457 /* transform [0..2^32] -> [0..1] */
458 #define G_RAND_DOUBLE_TRANSFORM 2.3283064365386962890625e-10
459
460 /**
461  * g_rand_int_range:
462  * @rand_: a #GRand.
463  * @begin: lower closed bound of the interval.
464  * @end: upper open bound of the interval.
465  *
466  * Returns the next random #gint32 from @rand_ equally distributed over
467  * the range [@begin..@end-1].
468  *
469  * Return value: A random number.
470  **/
471 gint32 
472 g_rand_int_range (GRand* rand, gint32 begin, gint32 end)
473 {
474   guint32 dist = end - begin;
475   guint32 random;
476
477   g_return_val_if_fail (rand != NULL, begin);
478   g_return_val_if_fail (end > begin, begin);
479
480   switch (get_random_version ())
481     {
482     case 20:
483       if (dist <= 0x10000L) /* 2^16 */
484         {
485           /* This method, which only calls g_rand_int once is only good
486            * for (end - begin) <= 2^16, because we only have 32 bits set
487            * from the one call to g_rand_int (). */
488           
489           /* we are using (trans + trans * trans), because g_rand_int only
490            * covers [0..2^32-1] and thus g_rand_int * trans only covers
491            * [0..1-2^-32], but the biggest double < 1 is 1-2^-52. 
492            */
493           
494           gdouble double_rand = g_rand_int (rand) * 
495             (G_RAND_DOUBLE_TRANSFORM +
496              G_RAND_DOUBLE_TRANSFORM * G_RAND_DOUBLE_TRANSFORM);
497           
498           random = (gint32) (double_rand * dist);
499         }
500       else
501         {
502           /* Now we use g_rand_double_range (), which will set 52 bits for
503              us, so that it is safe to round and still get a decent
504              distribution */
505           random = (gint32) g_rand_double_range (rand, 0, dist);
506         }
507       break;
508     case 22:
509       if (dist == 0)
510         random = 0;
511       else 
512         {
513           /* maxvalue is set to the predecessor of the greatest
514            * multiple of dist less or equal 2^32. */
515           guint32 maxvalue;
516           if (dist <= 0x80000000u) /* 2^31 */
517             {
518               /* maxvalue = 2^32 - 1 - (2^32 % dist) */
519               guint32 leftover = (0x80000000u % dist) * 2;
520               if (leftover >= dist) leftover -= dist;
521               maxvalue = 0xffffffffu - leftover;
522             }
523           else
524             maxvalue = dist - 1;
525           
526           do
527             random = g_rand_int (rand);
528           while (random > maxvalue);
529           
530           random %= dist;
531         }
532       break;
533     default:
534       random = 0;               /* Quiet GCC */
535       g_assert_not_reached ();
536     }      
537  
538   return begin + random;
539 }
540
541 /**
542  * g_rand_double:
543  * @rand_: a #GRand.
544  *
545  * Returns the next random #gdouble from @rand_ equally distributed over
546  * the range [0..1).
547  *
548  * Return value: A random number.
549  **/
550 gdouble 
551 g_rand_double (GRand* rand)
552 {    
553   /* We set all 52 bits after the point for this, not only the first
554      32. Thats why we need two calls to g_rand_int */
555   gdouble retval = g_rand_int (rand) * G_RAND_DOUBLE_TRANSFORM;
556   retval = (retval + g_rand_int (rand)) * G_RAND_DOUBLE_TRANSFORM;
557
558   /* The following might happen due to very bad rounding luck, but
559    * actually this should be more than rare, we just try again then */
560   if (retval >= 1.0) 
561     return g_rand_double (rand);
562
563   return retval;
564 }
565
566 /**
567  * g_rand_double_range:
568  * @rand_: a #GRand.
569  * @begin: lower closed bound of the interval.
570  * @end: upper open bound of the interval.
571  *
572  * Returns the next random #gdouble from @rand_ equally distributed over
573  * the range [@begin..@end).
574  *
575  * Return value: A random number.
576  **/
577 gdouble 
578 g_rand_double_range (GRand* rand, gdouble begin, gdouble end)
579 {
580   gdouble r;
581
582   r = g_rand_double (rand);
583
584   return r * end - (r - 1) * begin;
585 }
586
587 /**
588  * g_random_boolean:
589  * @Returns: a random #gboolean.
590  *
591  * Returns a random #gboolean. This corresponds to a unbiased coin toss.
592  **/
593 /**
594  * g_random_int:
595  *
596  * Return a random #guint32 equally distributed over the range
597  * [0..2^32-1].
598  *
599  * Return value: A random number.
600  **/
601 guint32
602 g_random_int (void)
603 {
604   guint32 result;
605   G_LOCK (global_random);
606   if (!global_random)
607     global_random = g_rand_new ();
608   
609   result = g_rand_int (global_random);
610   G_UNLOCK (global_random);
611   return result;
612 }
613
614 /**
615  * g_random_int_range:
616  * @begin: lower closed bound of the interval.
617  * @end: upper open bound of the interval.
618  *
619  * Returns a random #gint32 equally distributed over the range
620  * [@begin..@end-1].
621  *
622  * Return value: A random number.
623  **/
624 gint32 
625 g_random_int_range (gint32 begin, gint32 end)
626 {
627   gint32 result;
628   G_LOCK (global_random);
629   if (!global_random)
630     global_random = g_rand_new ();
631   
632   result = g_rand_int_range (global_random, begin, end);
633   G_UNLOCK (global_random);
634   return result;
635 }
636
637 /**
638  * g_random_double:
639  *
640  * Returns a random #gdouble equally distributed over the range [0..1).
641  *
642  * Return value: A random number.
643  **/
644 gdouble 
645 g_random_double (void)
646 {
647   double result;
648   G_LOCK (global_random);
649   if (!global_random)
650     global_random = g_rand_new ();
651   
652   result = g_rand_double (global_random);
653   G_UNLOCK (global_random);
654   return result;
655 }
656
657 /**
658  * g_random_double_range:
659  * @begin: lower closed bound of the interval.
660  * @end: upper open bound of the interval.
661  *
662  * Returns a random #gdouble equally distributed over the range [@begin..@end).
663  *
664  * Return value: A random number.
665  **/
666 gdouble 
667 g_random_double_range (gdouble begin, gdouble end)
668 {
669   double result;
670   G_LOCK (global_random);
671   if (!global_random)
672     global_random = g_rand_new ();
673  
674   result = g_rand_double_range (global_random, begin, end);
675   G_UNLOCK (global_random);
676   return result;
677 }
678
679 /**
680  * g_random_set_seed:
681  * @seed: a value to reinitialize the global random number generator.
682  * 
683  * Sets the seed for the global random number generator, which is used
684  * by the <function>g_random_*</function> functions, to @seed.
685  **/
686 void
687 g_random_set_seed (guint32 seed)
688 {
689   G_LOCK (global_random);
690   if (!global_random)
691     global_random = g_rand_new_with_seed (seed);
692   else
693     g_rand_set_seed (global_random, seed);
694   G_UNLOCK (global_random);
695 }