blob: ad4fd474428d4b8933beebbd4d8677b6944a3440 [file] [log] [blame]
Raymond Hettinger40f62172002-12-29 23:03:38 +00001/* Random objects */
2
3/* ------------------------------------------------------------------
4 The code in this module was based on a download from:
Hiroki Nodaf15fa872017-02-15 18:04:43 +09005 http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html
Raymond Hettinger40f62172002-12-29 23:03:38 +00006
7 It was modified in 2002 by Raymond Hettinger as follows:
8
Benjamin Petersond8e5f2d2010-08-24 18:08:22 +00009 * the principal computational lines untouched.
Raymond Hettinger40f62172002-12-29 23:03:38 +000010
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000011 * renamed genrand_res53() to random_random() and wrapped
12 in python calling/return code.
Raymond Hettinger40f62172002-12-29 23:03:38 +000013
Victor Stinner9f5fe792020-04-17 19:05:35 +020014 * genrand_uint32() and the helper functions, init_genrand()
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000015 and init_by_array(), were declared static, wrapped in
16 Python calling/return code. also, their global data
17 references were replaced with structure references.
Raymond Hettinger40f62172002-12-29 23:03:38 +000018
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000019 * unused functions from the original were deleted.
20 new, original C python code was added to implement the
21 Random() interface.
Raymond Hettinger40f62172002-12-29 23:03:38 +000022
23 The following are the verbatim comments from the original code:
24
25 A C-program for MT19937, with initialization improved 2002/1/26.
26 Coded by Takuji Nishimura and Makoto Matsumoto.
27
28 Before using, initialize the state by using init_genrand(seed)
29 or init_by_array(init_key, key_length).
30
31 Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
32 All rights reserved.
33
34 Redistribution and use in source and binary forms, with or without
35 modification, are permitted provided that the following conditions
36 are met:
37
38 1. Redistributions of source code must retain the above copyright
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000039 notice, this list of conditions and the following disclaimer.
Raymond Hettinger40f62172002-12-29 23:03:38 +000040
41 2. Redistributions in binary form must reproduce the above copyright
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000042 notice, this list of conditions and the following disclaimer in the
43 documentation and/or other materials provided with the distribution.
Raymond Hettinger40f62172002-12-29 23:03:38 +000044
45 3. The names of its contributors may not be used to endorse or promote
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000046 products derived from this software without specific prior written
47 permission.
Raymond Hettinger40f62172002-12-29 23:03:38 +000048
49 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
53 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
54 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
55 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
56 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
57 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
58 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60
61
62 Any feedback is very welcome.
Hiroki Nodaf15fa872017-02-15 18:04:43 +090063 http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
64 email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
Raymond Hettinger40f62172002-12-29 23:03:38 +000065*/
66
67/* ---------------------------------------------------------------*/
68
69#include "Python.h"
Victor Stinner9f2a9202016-09-06 17:03:03 -070070#ifdef HAVE_PROCESS_H
Victor Stinner9f5fe792020-04-17 19:05:35 +020071# include <process.h> // getpid()
Victor Stinner9f2a9202016-09-06 17:03:03 -070072#endif
Raymond Hettinger40f62172002-12-29 23:03:38 +000073
74/* Period parameters -- These are all magic. Don't change. */
75#define N 624
76#define M 397
Serhiy Storchakadce04052015-05-13 15:02:12 +030077#define MATRIX_A 0x9908b0dfU /* constant vector a */
78#define UPPER_MASK 0x80000000U /* most significant w-r bits */
79#define LOWER_MASK 0x7fffffffU /* least significant r bits */
Raymond Hettinger40f62172002-12-29 23:03:38 +000080
81typedef struct {
Dino Viehland04f0bbf2019-09-13 11:12:27 +010082 PyObject *Random_Type;
83 PyObject *Long___abs__;
84} _randomstate;
85
Hai Shif707d942020-03-16 21:15:01 +080086static inline _randomstate*
87get_random_state(PyObject *module)
88{
89 void *state = PyModule_GetState(module);
90 assert(state != NULL);
91 return (_randomstate *)state;
92}
Dino Viehland04f0bbf2019-09-13 11:12:27 +010093
94static struct PyModuleDef _randommodule;
95
Christian Heimescc0cd432020-11-19 08:46:29 +010096#define _randomstate_type(type) \
97 (get_random_state(_PyType_GetModuleByDef(type, &_randommodule)))
Dino Viehland04f0bbf2019-09-13 11:12:27 +010098
99typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000100 PyObject_HEAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101 int index;
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700102 uint32_t state[N];
Raymond Hettinger40f62172002-12-29 23:03:38 +0000103} RandomObject;
104
Raymond Hettinger40f62172002-12-29 23:03:38 +0000105
Pablo Galindo561612d2019-05-24 22:09:23 +0100106#include "clinic/_randommodule.c.h"
107
108/*[clinic input]
109module _random
Christian Heimescc0cd432020-11-19 08:46:29 +0100110class _random.Random "RandomObject *" "_randomstate_type(type)->Random_Type"
Pablo Galindo561612d2019-05-24 22:09:23 +0100111[clinic start generated code]*/
Christian Heimescc0cd432020-11-19 08:46:29 +0100112/*[clinic end generated code: output=da39a3ee5e6b4b0d input=70a2c99619474983]*/
Raymond Hettinger40f62172002-12-29 23:03:38 +0000113
114/* Random methods */
115
116
117/* generates a random number on [0,0xffffffff]-interval */
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700118static uint32_t
Victor Stinner9f5fe792020-04-17 19:05:35 +0200119genrand_uint32(RandomObject *self)
Raymond Hettinger40f62172002-12-29 23:03:38 +0000120{
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700121 uint32_t y;
122 static const uint32_t mag01[2] = {0x0U, MATRIX_A};
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 /* mag01[x] = x * MATRIX_A for x=0,1 */
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700124 uint32_t *mt;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000125
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 mt = self->state;
127 if (self->index >= N) { /* generate N words at one time */
128 int kk;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000129
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 for (kk=0;kk<N-M;kk++) {
131 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300132 mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1U];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 }
134 for (;kk<N-1;kk++) {
135 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300136 mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1U];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 }
138 y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300139 mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1U];
Raymond Hettinger40f62172002-12-29 23:03:38 +0000140
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000141 self->index = 0;
142 }
Raymond Hettinger40f62172002-12-29 23:03:38 +0000143
144 y = mt[self->index++];
145 y ^= (y >> 11);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300146 y ^= (y << 7) & 0x9d2c5680U;
147 y ^= (y << 15) & 0xefc60000U;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000148 y ^= (y >> 18);
149 return y;
150}
151
152/* random_random is the function named genrand_res53 in the original code;
153 * generates a random number on [0,1) with 53-bit resolution; note that
154 * 9007199254740992 == 2**53; I assume they're spelling "/2**53" as
155 * multiply-by-reciprocal in the (likely vain) hope that the compiler will
156 * optimize the division away at compile-time. 67108864 is 2**26. In
157 * effect, a contains 27 random bits shifted left 26, and b fills in the
158 * lower 26 bits of the 53-bit numerator.
Berker Peksag0ac70c02016-04-29 16:54:10 +0300159 * The original code credited Isaku Wada for this algorithm, 2002/01/09.
Raymond Hettinger40f62172002-12-29 23:03:38 +0000160 */
Pablo Galindo561612d2019-05-24 22:09:23 +0100161
162/*[clinic input]
163_random.Random.random
164
165 self: self(type="RandomObject *")
166
167random() -> x in the interval [0, 1).
168[clinic start generated code]*/
169
Raymond Hettinger40f62172002-12-29 23:03:38 +0000170static PyObject *
Pablo Galindo561612d2019-05-24 22:09:23 +0100171_random_Random_random_impl(RandomObject *self)
172/*[clinic end generated code: output=117ff99ee53d755c input=afb2a59cbbb00349]*/
Raymond Hettinger40f62172002-12-29 23:03:38 +0000173{
Victor Stinner9f5fe792020-04-17 19:05:35 +0200174 uint32_t a=genrand_uint32(self)>>5, b=genrand_uint32(self)>>6;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 return PyFloat_FromDouble((a*67108864.0+b)*(1.0/9007199254740992.0));
Raymond Hettinger40f62172002-12-29 23:03:38 +0000176}
177
178/* initializes mt[N] with a seed */
179static void
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700180init_genrand(RandomObject *self, uint32_t s)
Raymond Hettinger40f62172002-12-29 23:03:38 +0000181{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000182 int mti;
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700183 uint32_t *mt;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000184
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 mt = self->state;
Serhiy Storchakadce04052015-05-13 15:02:12 +0300186 mt[0]= s;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000187 for (mti=1; mti<N; mti++) {
188 mt[mti] =
Serhiy Storchakadce04052015-05-13 15:02:12 +0300189 (1812433253U * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000190 /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
191 /* In the previous versions, MSBs of the seed affect */
192 /* only MSBs of the array mt[]. */
193 /* 2002/01/09 modified by Makoto Matsumoto */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 }
195 self->index = mti;
196 return;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000197}
198
199/* initialize by an array with array-length */
200/* init_key is the array for initializing keys */
201/* key_length is its length */
Victor Stinnere66987e2016-09-06 16:33:52 -0700202static void
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700203init_by_array(RandomObject *self, uint32_t init_key[], size_t key_length)
Raymond Hettinger40f62172002-12-29 23:03:38 +0000204{
Mark Dickinson4cd60172012-12-21 21:52:49 +0000205 size_t i, j, k; /* was signed in the original code. RDH 12/16/2002 */
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700206 uint32_t *mt;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000207
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 mt = self->state;
Serhiy Storchakadce04052015-05-13 15:02:12 +0300209 init_genrand(self, 19650218U);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000210 i=1; j=0;
211 k = (N>key_length ? N : key_length);
212 for (; k; k--) {
Serhiy Storchakadce04052015-05-13 15:02:12 +0300213 mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525U))
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700214 + init_key[j] + (uint32_t)j; /* non linear */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 i++; j++;
216 if (i>=N) { mt[0] = mt[N-1]; i=1; }
217 if (j>=key_length) j=0;
218 }
219 for (k=N-1; k; k--) {
Serhiy Storchakadce04052015-05-13 15:02:12 +0300220 mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941U))
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700221 - (uint32_t)i; /* non linear */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 i++;
223 if (i>=N) { mt[0] = mt[N-1]; i=1; }
224 }
Raymond Hettinger40f62172002-12-29 23:03:38 +0000225
Serhiy Storchakadce04052015-05-13 15:02:12 +0300226 mt[0] = 0x80000000U; /* MSB is 1; assuring non-zero initial array */
Raymond Hettinger40f62172002-12-29 23:03:38 +0000227}
228
229/*
230 * The rest is Python-specific code, neither part of, nor derived from, the
231 * Twister download.
232 */
233
Victor Stinnere66987e2016-09-06 16:33:52 -0700234static int
235random_seed_urandom(RandomObject *self)
236{
Victor Stinner1a1bd2e2020-04-17 19:13:06 +0200237 uint32_t key[N];
Victor Stinnere66987e2016-09-06 16:33:52 -0700238
239 if (_PyOS_URandomNonblock(key, sizeof(key)) < 0) {
240 return -1;
241 }
242 init_by_array(self, key, Py_ARRAY_LENGTH(key));
243 return 0;
244}
245
246static void
247random_seed_time_pid(RandomObject *self)
248{
249 _PyTime_t now;
250 uint32_t key[5];
251
252 now = _PyTime_GetSystemClock();
Victor Stinner1a1bd2e2020-04-17 19:13:06 +0200253 key[0] = (uint32_t)(now & 0xffffffffU);
254 key[1] = (uint32_t)(now >> 32);
Victor Stinnere66987e2016-09-06 16:33:52 -0700255
Victor Stinner1a1bd2e2020-04-17 19:13:06 +0200256 key[2] = (uint32_t)getpid();
Victor Stinnere66987e2016-09-06 16:33:52 -0700257
258 now = _PyTime_GetMonotonicClock();
Victor Stinner1a1bd2e2020-04-17 19:13:06 +0200259 key[3] = (uint32_t)(now & 0xffffffffU);
260 key[4] = (uint32_t)(now >> 32);
Victor Stinnere66987e2016-09-06 16:33:52 -0700261
262 init_by_array(self, key, Py_ARRAY_LENGTH(key));
263}
264
Raymond Hettinger40f62172002-12-29 23:03:38 +0000265static PyObject *
Pablo Galindo561612d2019-05-24 22:09:23 +0100266random_seed(RandomObject *self, PyObject *arg)
Raymond Hettinger40f62172002-12-29 23:03:38 +0000267{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000268 PyObject *result = NULL; /* guilty until proved innocent */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000269 PyObject *n = NULL;
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700270 uint32_t *key = NULL;
Serhiy Storchakadce04052015-05-13 15:02:12 +0300271 size_t bits, keyused;
Mark Dickinson4cd60172012-12-21 21:52:49 +0000272 int res;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000273
Pablo Galindo561612d2019-05-24 22:09:23 +0100274 if (arg == NULL || arg == Py_None) {
275 if (random_seed_urandom(self) < 0) {
Victor Stinnere66987e2016-09-06 16:33:52 -0700276 PyErr_Clear();
Raymond Hettinger40f62172002-12-29 23:03:38 +0000277
Victor Stinnere66987e2016-09-06 16:33:52 -0700278 /* Reading system entropy failed, fall back on the worst entropy:
279 use the current time and process identifier. */
280 random_seed_time_pid(self);
281 }
282 Py_RETURN_NONE;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000283 }
Victor Stinnere66987e2016-09-06 16:33:52 -0700284
Larry Hastingsd60cd422012-06-24 02:52:21 -0700285 /* This algorithm relies on the number being unsigned.
286 * So: if the arg is a PyLong, use its absolute value.
287 * Otherwise use its hash value, cast to unsigned.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000288 */
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100289 if (PyLong_CheckExact(arg)) {
290 n = PyNumber_Absolute(arg);
291 } else if (PyLong_Check(arg)) {
Oren Milmand780b2d2017-09-28 10:50:01 +0300292 /* Calling int.__abs__() prevents calling arg.__abs__(), which might
293 return an invalid value. See issue #31478. */
Christian Heimescc0cd432020-11-19 08:46:29 +0100294 _randomstate *state = _randomstate_type(Py_TYPE(self));
295 n = PyObject_CallOneArg(state->Long___abs__, arg);
Oren Milmand780b2d2017-09-28 10:50:01 +0300296 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000297 else {
Larry Hastingsd60cd422012-06-24 02:52:21 -0700298 Py_hash_t hash = PyObject_Hash(arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000299 if (hash == -1)
300 goto Done;
Larry Hastingsd60cd422012-06-24 02:52:21 -0700301 n = PyLong_FromSize_t((size_t)hash);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000302 }
303 if (n == NULL)
304 goto Done;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000305
Mark Dickinson4cd60172012-12-21 21:52:49 +0000306 /* Now split n into 32-bit chunks, from the right. */
307 bits = _PyLong_NumBits(n);
308 if (bits == (size_t)-1 && PyErr_Occurred())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309 goto Done;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000310
Mark Dickinson4cd60172012-12-21 21:52:49 +0000311 /* Figure out how many 32-bit chunks this gives us. */
312 keyused = bits == 0 ? 1 : (bits - 1) / 32 + 1;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000313
Mark Dickinson4cd60172012-12-21 21:52:49 +0000314 /* Convert seed to byte sequence. */
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700315 key = (uint32_t *)PyMem_Malloc((size_t)4 * keyused);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300316 if (key == NULL) {
Victor Stinnera4ced862013-07-15 20:00:36 +0200317 PyErr_NoMemory();
Mark Dickinson4cd60172012-12-21 21:52:49 +0000318 goto Done;
Victor Stinnera4ced862013-07-15 20:00:36 +0200319 }
Mark Dickinson4cd60172012-12-21 21:52:49 +0000320 res = _PyLong_AsByteArray((PyLongObject *)n,
Serhiy Storchakadce04052015-05-13 15:02:12 +0300321 (unsigned char *)key, keyused * 4,
322 PY_LITTLE_ENDIAN,
Mark Dickinson4cd60172012-12-21 21:52:49 +0000323 0); /* unsigned */
324 if (res == -1) {
Mark Dickinson4cd60172012-12-21 21:52:49 +0000325 goto Done;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 }
Raymond Hettinger40f62172002-12-29 23:03:38 +0000327
Serhiy Storchakadce04052015-05-13 15:02:12 +0300328#if PY_BIG_ENDIAN
329 {
330 size_t i, j;
331 /* Reverse an array. */
Zachary Warec15ea4c2015-05-17 23:46:22 -0500332 for (i = 0, j = keyused - 1; i < j; i++, j--) {
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700333 uint32_t tmp = key[i];
Serhiy Storchakadce04052015-05-13 15:02:12 +0300334 key[i] = key[j];
335 key[j] = tmp;
336 }
Mark Dickinson4cd60172012-12-21 21:52:49 +0000337 }
Serhiy Storchakadce04052015-05-13 15:02:12 +0300338#endif
Victor Stinnere66987e2016-09-06 16:33:52 -0700339 init_by_array(self, key, keyused);
340
341 Py_INCREF(Py_None);
342 result = Py_None;
343
Raymond Hettinger40f62172002-12-29 23:03:38 +0000344Done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000345 Py_XDECREF(n);
346 PyMem_Free(key);
347 return result;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000348}
349
Pablo Galindo561612d2019-05-24 22:09:23 +0100350/*[clinic input]
351_random.Random.seed
352
353 self: self(type="RandomObject *")
354 n: object = None
355 /
356
357seed([n]) -> None.
358
359Defaults to use urandom and falls back to a combination
360of the current time and the process identifier.
361[clinic start generated code]*/
362
Raymond Hettinger40f62172002-12-29 23:03:38 +0000363static PyObject *
Pablo Galindo561612d2019-05-24 22:09:23 +0100364_random_Random_seed_impl(RandomObject *self, PyObject *n)
365/*[clinic end generated code: output=0fad1e16ba883681 input=78d6ef0d52532a54]*/
366{
367 return random_seed(self, n);
368}
369
370/*[clinic input]
371_random.Random.getstate
372
373 self: self(type="RandomObject *")
374
375getstate() -> tuple containing the current state.
376[clinic start generated code]*/
377
378static PyObject *
379_random_Random_getstate_impl(RandomObject *self)
380/*[clinic end generated code: output=bf6cef0c092c7180 input=b937a487928c0e89]*/
Raymond Hettinger40f62172002-12-29 23:03:38 +0000381{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000382 PyObject *state;
383 PyObject *element;
384 int i;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000386 state = PyTuple_New(N+1);
387 if (state == NULL)
388 return NULL;
389 for (i=0; i<N ; i++) {
390 element = PyLong_FromUnsignedLong(self->state[i]);
391 if (element == NULL)
392 goto Fail;
393 PyTuple_SET_ITEM(state, i, element);
394 }
395 element = PyLong_FromLong((long)(self->index));
396 if (element == NULL)
397 goto Fail;
398 PyTuple_SET_ITEM(state, i, element);
399 return state;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000400
401Fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 Py_DECREF(state);
403 return NULL;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000404}
405
Pablo Galindo561612d2019-05-24 22:09:23 +0100406
407/*[clinic input]
408_random.Random.setstate
409
410 self: self(type="RandomObject *")
411 state: object
412 /
413
414setstate(state) -> None. Restores generator state.
415[clinic start generated code]*/
416
Raymond Hettinger40f62172002-12-29 23:03:38 +0000417static PyObject *
Pablo Galindo561612d2019-05-24 22:09:23 +0100418_random_Random_setstate(RandomObject *self, PyObject *state)
419/*[clinic end generated code: output=fd1c3cd0037b6681 input=b3b4efbb1bc66af8]*/
Raymond Hettinger40f62172002-12-29 23:03:38 +0000420{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 int i;
422 unsigned long element;
423 long index;
bladebryan9616a822017-04-21 23:10:46 -0700424 uint32_t new_state[N];
Raymond Hettinger40f62172002-12-29 23:03:38 +0000425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000426 if (!PyTuple_Check(state)) {
427 PyErr_SetString(PyExc_TypeError,
428 "state vector must be a tuple");
429 return NULL;
430 }
431 if (PyTuple_Size(state) != N+1) {
432 PyErr_SetString(PyExc_ValueError,
433 "state vector is the wrong size");
434 return NULL;
435 }
Raymond Hettinger40f62172002-12-29 23:03:38 +0000436
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000437 for (i=0; i<N ; i++) {
438 element = PyLong_AsUnsignedLong(PyTuple_GET_ITEM(state, i));
439 if (element == (unsigned long)-1 && PyErr_Occurred())
440 return NULL;
bladebryan9616a822017-04-21 23:10:46 -0700441 new_state[i] = (uint32_t)element;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 }
Raymond Hettinger40f62172002-12-29 23:03:38 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 index = PyLong_AsLong(PyTuple_GET_ITEM(state, i));
445 if (index == -1 && PyErr_Occurred())
446 return NULL;
Serhiy Storchaka178f0b62015-07-24 09:02:53 +0300447 if (index < 0 || index > N) {
448 PyErr_SetString(PyExc_ValueError, "invalid state");
449 return NULL;
450 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000451 self->index = (int)index;
bladebryan9616a822017-04-21 23:10:46 -0700452 for (i = 0; i < N; i++)
453 self->state[i] = new_state[i];
Raymond Hettinger40f62172002-12-29 23:03:38 +0000454
Serhiy Storchaka228b12e2017-01-23 09:47:21 +0200455 Py_RETURN_NONE;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000456}
457
Pablo Galindo561612d2019-05-24 22:09:23 +0100458/*[clinic input]
459
460_random.Random.getrandbits
461
462 self: self(type="RandomObject *")
463 k: int
464 /
465
466getrandbits(k) -> x. Generates an int with k random bits.
467[clinic start generated code]*/
468
Raymond Hettinger40f62172002-12-29 23:03:38 +0000469static PyObject *
Pablo Galindo561612d2019-05-24 22:09:23 +0100470_random_Random_getrandbits_impl(RandomObject *self, int k)
471/*[clinic end generated code: output=b402f82a2158887f input=8c0e6396dd176fc0]*/
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000472{
Pablo Galindo561612d2019-05-24 22:09:23 +0100473 int i, words;
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700474 uint32_t r;
475 uint32_t *wordarray;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 PyObject *result;
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000477
Antoine Pitrou75a33782020-04-17 19:32:14 +0200478 if (k < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 PyErr_SetString(PyExc_ValueError,
Antoine Pitrou75a33782020-04-17 19:32:14 +0200480 "number of bits must be non-negative");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000481 return NULL;
482 }
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000483
Antoine Pitrou75a33782020-04-17 19:32:14 +0200484 if (k == 0)
485 return PyLong_FromLong(0);
486
Serhiy Storchakad8a0bac2013-01-04 12:18:35 +0200487 if (k <= 32) /* Fast path */
Victor Stinner9f5fe792020-04-17 19:05:35 +0200488 return PyLong_FromUnsignedLong(genrand_uint32(self) >> (32 - k));
Serhiy Storchakad8a0bac2013-01-04 12:18:35 +0200489
Serhiy Storchakadce04052015-05-13 15:02:12 +0300490 words = (k - 1) / 32 + 1;
Benjamin Peterson9b3d7702016-09-06 13:24:00 -0700491 wordarray = (uint32_t *)PyMem_Malloc(words * 4);
Serhiy Storchakadce04052015-05-13 15:02:12 +0300492 if (wordarray == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000493 PyErr_NoMemory();
494 return NULL;
495 }
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000496
Serhiy Storchakadce04052015-05-13 15:02:12 +0300497 /* Fill-out bits of long integer, by 32-bit words, from least significant
498 to most significant. */
499#if PY_LITTLE_ENDIAN
500 for (i = 0; i < words; i++, k -= 32)
501#else
502 for (i = words - 1; i >= 0; i--, k -= 32)
503#endif
504 {
Victor Stinner9f5fe792020-04-17 19:05:35 +0200505 r = genrand_uint32(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 if (k < 32)
Serhiy Storchakadce04052015-05-13 15:02:12 +0300507 r >>= (32 - k); /* Drop least significant bits */
508 wordarray[i] = r;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 }
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000510
Serhiy Storchakadce04052015-05-13 15:02:12 +0300511 result = _PyLong_FromByteArray((unsigned char *)wordarray, words * 4,
512 PY_LITTLE_ENDIAN, 0 /* unsigned */);
513 PyMem_Free(wordarray);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 return result;
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000515}
516
517static PyObject *
Raymond Hettinger40f62172002-12-29 23:03:38 +0000518random_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
519{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000520 RandomObject *self;
521 PyObject *tmp;
Christian Heimescc0cd432020-11-19 08:46:29 +0100522 _randomstate *state = _randomstate_type(type);
Raymond Hettinger40f62172002-12-29 23:03:38 +0000523
Christian Heimescc0cd432020-11-19 08:46:29 +0100524 if (type == (PyTypeObject*)state->Random_Type &&
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100525 !_PyArg_NoKeywords("Random()", kwds)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000526 return NULL;
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100527 }
Georg Brandl02c42872005-08-26 06:42:30 +0000528
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100529 self = (RandomObject *)PyType_GenericAlloc(type, 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000530 if (self == NULL)
531 return NULL;
532 tmp = random_seed(self, args);
533 if (tmp == NULL) {
534 Py_DECREF(self);
535 return NULL;
536 }
537 Py_DECREF(tmp);
538 return (PyObject *)self;
Raymond Hettinger40f62172002-12-29 23:03:38 +0000539}
540
Dong-hee Na6989af02020-06-21 18:44:58 +0900541
Raymond Hettinger40f62172002-12-29 23:03:38 +0000542static PyMethodDef random_methods[] = {
Pablo Galindo561612d2019-05-24 22:09:23 +0100543 _RANDOM_RANDOM_RANDOM_METHODDEF
544 _RANDOM_RANDOM_SEED_METHODDEF
545 _RANDOM_RANDOM_GETSTATE_METHODDEF
546 _RANDOM_RANDOM_SETSTATE_METHODDEF
547 _RANDOM_RANDOM_GETRANDBITS_METHODDEF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000548 {NULL, NULL} /* sentinel */
Raymond Hettinger40f62172002-12-29 23:03:38 +0000549};
550
551PyDoc_STRVAR(random_doc,
552"Random() -> create a random number generator with its own internal state.");
553
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100554static PyType_Slot Random_Type_slots[] = {
Victor Stinner2f902612019-10-01 12:45:52 +0200555 {Py_tp_doc, (void *)random_doc},
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100556 {Py_tp_methods, random_methods},
557 {Py_tp_new, random_new},
558 {Py_tp_free, PyObject_Free},
559 {0, 0},
560};
561
562static PyType_Spec Random_Type_spec = {
563 "_random.Random",
564 sizeof(RandomObject),
565 0,
566 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
567 Random_Type_slots
Raymond Hettinger40f62172002-12-29 23:03:38 +0000568};
569
570PyDoc_STRVAR(module_doc,
571"Module implements the Mersenne Twister random number generator.");
572
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100573static int
Christian Heimescc0cd432020-11-19 08:46:29 +0100574_random_exec(PyObject *module)
575{
576 _randomstate *state = get_random_state(module);
577
578 state->Random_Type = PyType_FromModuleAndSpec(
579 module, &Random_Type_spec, NULL);
580 if (state->Random_Type == NULL) {
581 return -1;
582 }
583 if (PyModule_AddType(module, (PyTypeObject *)state->Random_Type) < 0) {
584 return -1;
585 }
586
587 /* Look up and save int.__abs__, which is needed in random_seed(). */
588 PyObject *longval = longval = PyLong_FromLong(0);
589 if (longval == NULL) {
590 return -1;
591 }
592
593 PyObject *longtype = PyObject_Type(longval);
594 Py_DECREF(longval);
595 if (longtype == NULL) {
596 return -1;
597 }
598
599 state->Long___abs__ = PyObject_GetAttrString(longtype, "__abs__");
600 Py_DECREF(longtype);
601 if (state->Long___abs__ == NULL) {
602 return -1;
603 }
604 return 0;
605}
606
607static PyModuleDef_Slot _random_slots[] = {
608 {Py_mod_exec, _random_exec},
609 {0, NULL}
610};
611
612static int
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100613_random_traverse(PyObject *module, visitproc visit, void *arg)
614{
Hai Shif707d942020-03-16 21:15:01 +0800615 Py_VISIT(get_random_state(module)->Random_Type);
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100616 return 0;
617}
618
619static int
620_random_clear(PyObject *module)
621{
Hai Shif707d942020-03-16 21:15:01 +0800622 Py_CLEAR(get_random_state(module)->Random_Type);
623 Py_CLEAR(get_random_state(module)->Long___abs__);
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100624 return 0;
625}
626
627static void
628_random_free(void *module)
629{
630 _random_clear((PyObject *)module);
631}
Martin v. Löwis1a214512008-06-11 05:26:20 +0000632
633static struct PyModuleDef _randommodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 PyModuleDef_HEAD_INIT,
635 "_random",
636 module_doc,
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100637 sizeof(_randomstate),
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000638 NULL,
Christian Heimescc0cd432020-11-19 08:46:29 +0100639 _random_slots,
Dino Viehland04f0bbf2019-09-13 11:12:27 +0100640 _random_traverse,
641 _random_clear,
642 _random_free,
Martin v. Löwis1a214512008-06-11 05:26:20 +0000643};
644
Raymond Hettinger40f62172002-12-29 23:03:38 +0000645PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000646PyInit__random(void)
Raymond Hettinger40f62172002-12-29 23:03:38 +0000647{
Christian Heimescc0cd432020-11-19 08:46:29 +0100648 return PyModuleDef_Init(&_randommodule);
Raymond Hettinger40f62172002-12-29 23:03:38 +0000649}