2022-01-04 10:21:08 +01:00
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2019-06-23 04:21:30 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
2021-11-16 10:44:36 +01:00
|
|
|
[has_globals]
|
2019-06-22 20:20:28 +02:00
|
|
|
module rand
|
|
|
|
|
2022-02-23 11:36:14 +01:00
|
|
|
import math.bits
|
2021-08-18 10:33:37 +02:00
|
|
|
import rand.config
|
2022-02-23 11:36:14 +01:00
|
|
|
import rand.constants
|
2020-06-09 15:06:07 +02:00
|
|
|
import rand.wyrand
|
2022-03-12 08:41:12 +01:00
|
|
|
import time
|
2020-07-26 12:10:56 +02:00
|
|
|
|
2021-03-03 12:41:00 +01:00
|
|
|
// PRNG is a common interface for all PRNGs that can be used seamlessly with the rand
|
|
|
|
// modules's API. It defines all the methods that a PRNG (in the vlib or custom made) must
|
|
|
|
// implement in order to ensure that _all_ functions can be used with the generator.
|
|
|
|
pub interface PRNG {
|
2021-10-11 14:41:31 +02:00
|
|
|
mut:
|
2021-03-03 12:41:00 +01:00
|
|
|
seed(seed_data []u32)
|
2022-04-15 17:25:45 +02:00
|
|
|
u8() u8
|
2022-02-28 12:17:54 +01:00
|
|
|
u16() u16
|
2021-03-03 12:41:00 +01:00
|
|
|
u32() u32
|
|
|
|
u64() u64
|
2022-02-28 12:17:54 +01:00
|
|
|
block_size() int
|
2021-09-23 10:14:20 +02:00
|
|
|
free()
|
2021-03-03 12:41:00 +01:00
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// bytes returns a buffer of `bytes_needed` random bytes
|
2022-02-23 11:36:14 +01:00
|
|
|
[inline]
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn (mut rng PRNG) bytes(bytes_needed int) ?[]u8 {
|
2022-02-23 11:36:14 +01:00
|
|
|
if bytes_needed < 0 {
|
|
|
|
return error('can not read < 0 random bytes')
|
|
|
|
}
|
2022-02-28 12:17:54 +01:00
|
|
|
|
2022-04-15 14:35:35 +02:00
|
|
|
mut buffer := []u8{len: bytes_needed}
|
2022-02-28 12:17:54 +01:00
|
|
|
read_internal(mut rng, mut buffer)
|
|
|
|
|
|
|
|
return buffer
|
2022-02-23 11:36:14 +01:00
|
|
|
}
|
|
|
|
|
2022-03-12 08:41:12 +01:00
|
|
|
// read fills in `buf` with a maximum of `buf.len` random bytes
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn (mut rng PRNG) read(mut buf []u8) {
|
2022-03-12 08:41:12 +01:00
|
|
|
read_internal(mut rng, mut buf)
|
|
|
|
}
|
|
|
|
|
2022-02-23 11:36:14 +01:00
|
|
|
// u32n returns a uniformly distributed pseudorandom 32-bit signed positive `u32` in range `[0, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) u32n(max u32) ?u32 {
|
|
|
|
if max == 0 {
|
|
|
|
return error('max must be positive integer')
|
|
|
|
}
|
|
|
|
// Owing to the pigeon-hole principle, we can't simply do
|
|
|
|
// val := rng.u32() % max.
|
|
|
|
// It'll wreck the properties of the distribution unless
|
|
|
|
// max evenly divides 2^32. So we divide evenly to
|
|
|
|
// the closest power of two. Then we loop until we find
|
|
|
|
// an int in the required range
|
|
|
|
bit_len := bits.len_32(max)
|
|
|
|
if bit_len == 32 {
|
|
|
|
for {
|
|
|
|
value := rng.u32()
|
|
|
|
if value < max {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mask := (u32(1) << (bit_len + 1)) - 1
|
|
|
|
for {
|
|
|
|
value := rng.u32() & mask
|
|
|
|
if value < max {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return u32(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// u64n returns a uniformly distributed pseudorandom 64-bit signed positive `u64` in range `[0, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) u64n(max u64) ?u64 {
|
|
|
|
if max == 0 {
|
|
|
|
return error('max must be positive integer')
|
|
|
|
}
|
|
|
|
bit_len := bits.len_64(max)
|
|
|
|
if bit_len == 64 {
|
|
|
|
for {
|
|
|
|
value := rng.u64()
|
|
|
|
if value < max {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mask := (u64(1) << (bit_len + 1)) - 1
|
|
|
|
for {
|
|
|
|
value := rng.u64() & mask
|
|
|
|
if value < max {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return u64(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// u32_in_range returns a uniformly distributed pseudorandom 32-bit unsigned `u32` in range `[min, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) u32_in_range(min u32, max u32) ?u32 {
|
|
|
|
if max <= min {
|
|
|
|
return error('max must be greater than min')
|
|
|
|
}
|
|
|
|
return min + rng.u32n(max - min) ?
|
|
|
|
}
|
|
|
|
|
|
|
|
// u64_in_range returns a uniformly distributed pseudorandom 64-bit unsigned `u64` in range `[min, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) u64_in_range(min u64, max u64) ?u64 {
|
|
|
|
if max <= min {
|
|
|
|
return error('max must be greater than min')
|
|
|
|
}
|
|
|
|
return min + rng.u64n(max - min) ?
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// i8 returns a (possibly negative) pseudorandom 8-bit `i8`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) i8() i8 {
|
2022-04-15 13:58:56 +02:00
|
|
|
return i8(rng.u8())
|
2022-02-28 12:17:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// i16 returns a (possibly negative) pseudorandom 16-bit `i16`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) i16() i16 {
|
|
|
|
return i16(rng.u16())
|
|
|
|
}
|
|
|
|
|
2022-02-23 11:36:14 +01:00
|
|
|
// int returns a (possibly negative) pseudorandom 32-bit `int`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) int() int {
|
|
|
|
return int(rng.u32())
|
|
|
|
}
|
|
|
|
|
|
|
|
// i64 returns a (possibly negative) pseudorandom 64-bit `i64`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) i64() i64 {
|
|
|
|
return i64(rng.u64())
|
|
|
|
}
|
|
|
|
|
|
|
|
// int31 returns a positive pseudorandom 31-bit `int`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) int31() int {
|
|
|
|
return int(rng.u32() & constants.u31_mask) // Set the 32nd bit to 0.
|
|
|
|
}
|
|
|
|
|
|
|
|
// int63 returns a positive pseudorandom 63-bit `i64`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) int63() i64 {
|
|
|
|
return i64(rng.u64() & constants.u63_mask) // Set the 64th bit to 0.
|
|
|
|
}
|
|
|
|
|
|
|
|
// intn returns a pseudorandom `int` in range `[0, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) intn(max int) ?int {
|
|
|
|
if max <= 0 {
|
|
|
|
return error('max has to be positive.')
|
|
|
|
}
|
|
|
|
return int(rng.u32n(u32(max)) ?)
|
|
|
|
}
|
|
|
|
|
|
|
|
// i64n returns a pseudorandom int that lies in `[0, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) i64n(max i64) ?i64 {
|
|
|
|
if max <= 0 {
|
|
|
|
return error('max has to be positive.')
|
|
|
|
}
|
|
|
|
return i64(rng.u64n(u64(max)) ?)
|
|
|
|
}
|
|
|
|
|
|
|
|
// int_in_range returns a pseudorandom `int` in range `[min, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) int_in_range(min int, max int) ?int {
|
|
|
|
if max <= min {
|
|
|
|
return error('max must be greater than min')
|
|
|
|
}
|
|
|
|
// This supports negative ranges like [-10, -5) because the difference is positive
|
|
|
|
return min + rng.intn(max - min) ?
|
|
|
|
}
|
|
|
|
|
|
|
|
// i64_in_range returns a pseudorandom `i64` in range `[min, max)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) i64_in_range(min i64, max i64) ?i64 {
|
|
|
|
if max <= min {
|
|
|
|
return error('max must be greater than min')
|
|
|
|
}
|
|
|
|
return min + rng.i64n(max - min) ?
|
|
|
|
}
|
|
|
|
|
|
|
|
// f32 returns a pseudorandom `f32` value in range `[0, 1)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f32() f32 {
|
|
|
|
return f32(rng.u32()) / constants.max_u32_as_f32
|
|
|
|
}
|
|
|
|
|
|
|
|
// f64 returns a pseudorandom `f64` value in range `[0, 1)`.
|
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f64() f64 {
|
|
|
|
return f64(rng.u64()) / constants.max_u64_as_f64
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// f32n returns a pseudorandom `f32` value in range `[0, max]`.
|
2022-02-23 11:36:14 +01:00
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f32n(max f32) ?f32 {
|
2022-02-28 12:17:54 +01:00
|
|
|
if max < 0 {
|
|
|
|
return error('max has to be non-negative.')
|
2022-02-23 11:36:14 +01:00
|
|
|
}
|
|
|
|
return rng.f32() * max
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// f64n returns a pseudorandom `f64` value in range `[0, max]`.
|
2022-02-23 11:36:14 +01:00
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f64n(max f64) ?f64 {
|
2022-02-28 12:17:54 +01:00
|
|
|
if max < 0 {
|
|
|
|
return error('max has to be non-negative.')
|
2022-02-23 11:36:14 +01:00
|
|
|
}
|
|
|
|
return rng.f64() * max
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// f32_in_range returns a pseudorandom `f32` in range `[min, max]`.
|
2022-02-23 11:36:14 +01:00
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f32_in_range(min f32, max f32) ?f32 {
|
2022-02-28 12:17:54 +01:00
|
|
|
if max < min {
|
|
|
|
return error('max must be greater than or equal to min')
|
2022-02-23 11:36:14 +01:00
|
|
|
}
|
|
|
|
return min + rng.f32n(max - min) ?
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// i64_in_range returns a pseudorandom `i64` in range `[min, max]`.
|
2022-02-23 11:36:14 +01:00
|
|
|
[inline]
|
|
|
|
pub fn (mut rng PRNG) f64_in_range(min f64, max f64) ?f64 {
|
2022-02-28 12:17:54 +01:00
|
|
|
if max < min {
|
|
|
|
return error('max must be greater than or equal to min')
|
2022-02-23 11:36:14 +01:00
|
|
|
}
|
|
|
|
return min + rng.f64n(max - min) ?
|
|
|
|
}
|
|
|
|
|
2022-03-12 08:41:12 +01:00
|
|
|
// ulid generates an Unique Lexicographically sortable IDentifier.
|
|
|
|
// See https://github.com/ulid/spec .
|
|
|
|
// Note: ULIDs can leak timing information, if you make them public, because
|
|
|
|
// you can infer the rate at which some resource is being created, like
|
|
|
|
// users or business transactions.
|
|
|
|
// (https://news.ycombinator.com/item?id=14526173)
|
|
|
|
pub fn (mut rng PRNG) ulid() string {
|
|
|
|
return internal_ulid_at_millisecond(mut rng, u64(time.utc().unix_time_milli()))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ulid_at_millisecond does the same as `ulid` but takes a custom Unix millisecond timestamp via `unix_time_milli`.
|
|
|
|
pub fn (mut rng PRNG) ulid_at_millisecond(unix_time_milli u64) string {
|
|
|
|
return internal_ulid_at_millisecond(mut rng, unix_time_milli)
|
|
|
|
}
|
|
|
|
|
|
|
|
// string_from_set returns a string of length `len` containing random characters sampled from the given `charset`
|
|
|
|
pub fn (mut rng PRNG) string_from_set(charset string, len int) string {
|
|
|
|
return internal_string_from_set(mut rng, charset, len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// string returns a string of length `len` containing random characters in range `[a-zA-Z]`.
|
|
|
|
pub fn (mut rng PRNG) string(len int) string {
|
|
|
|
return internal_string_from_set(mut rng, rand.english_letters, len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// hex returns a hexadecimal number of length `len` containing random characters in range `[a-f0-9]`.
|
|
|
|
pub fn (mut rng PRNG) hex(len int) string {
|
|
|
|
return internal_string_from_set(mut rng, rand.hex_chars, len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ascii returns a random string of the printable ASCII characters with length `len`.
|
|
|
|
pub fn (mut rng PRNG) ascii(len int) string {
|
|
|
|
return internal_string_from_set(mut rng, rand.ascii_chars, len)
|
|
|
|
}
|
|
|
|
|
2022-03-27 16:38:59 +02:00
|
|
|
// Configuration struct for the shuffle functions.
|
|
|
|
// The start index is inclusive and the end index is exclusive.
|
|
|
|
// Set the end to 0 to shuffle until the end of the array.
|
|
|
|
[params]
|
|
|
|
pub struct ShuffleConfigStruct {
|
|
|
|
pub:
|
|
|
|
start int
|
|
|
|
end int
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (config ShuffleConfigStruct) validate_for<T>(a []T) ? {
|
|
|
|
if config.start < 0 || config.start >= a.len {
|
|
|
|
return error("argument 'config.start' must be in range [0, a.len)")
|
|
|
|
}
|
|
|
|
if config.end < 0 || config.end > a.len {
|
|
|
|
return error("argument 'config.end' must be in range [0, a.len]")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// shuffle randomly permutates the elements in `a`. The range for shuffling is
|
|
|
|
// optional and the entire array is shuffled by default. Leave the end as 0 to
|
|
|
|
// shuffle all elements until the end.
|
|
|
|
[direct_array_access]
|
|
|
|
pub fn (mut rng PRNG) shuffle<T>(mut a []T, config ShuffleConfigStruct) ? {
|
|
|
|
config.validate_for(a) ?
|
|
|
|
new_end := if config.end == 0 { a.len } else { config.end }
|
|
|
|
for i in config.start .. new_end {
|
|
|
|
x := rng.int_in_range(i, new_end) or { config.start }
|
|
|
|
// swap
|
|
|
|
a_i := a[i]
|
|
|
|
a[i] = a[x]
|
|
|
|
a[x] = a_i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// shuffle_clone returns a random permutation of the elements in `a`.
|
|
|
|
// The permutation is done on a fresh clone of `a`, so `a` remains unchanged.
|
|
|
|
pub fn (mut rng PRNG) shuffle_clone<T>(a []T, config ShuffleConfigStruct) ?[]T {
|
|
|
|
mut res := a.clone()
|
|
|
|
rng.shuffle(mut res, config) ?
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// choose samples k elements from the array without replacement.
|
|
|
|
// This means the indices cannot repeat and it restricts the sample size to be less than or equal to the size of the given array.
|
|
|
|
// Note that if the array has repeating elements, then the sample may have repeats as well.
|
|
|
|
pub fn (mut rng PRNG) choose<T>(array []T, k int) ?[]T {
|
|
|
|
n := array.len
|
|
|
|
if k > n {
|
|
|
|
return error('Cannot choose $k elements without replacement from a $n-element array.')
|
|
|
|
}
|
|
|
|
mut results := []T{len: k}
|
|
|
|
mut indices := []int{len: n, init: it}
|
2022-04-01 18:31:27 +02:00
|
|
|
// TODO: see why exactly it is necessary to enfoce the type here in Checker.infer_fn_generic_types
|
|
|
|
// (v errors with: `inferred generic type T is ambiguous: got int, expected string`, when <int> is missing)
|
|
|
|
rng.shuffle<int>(mut indices) ?
|
2022-03-27 16:38:59 +02:00
|
|
|
for i in 0 .. k {
|
|
|
|
results[i] = array[indices[i]]
|
|
|
|
}
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
|
|
|
// sample samples k elements from the array with replacement.
|
|
|
|
// This means the elements can repeat and the size of the sample may exceed the size of the array.
|
|
|
|
pub fn (mut rng PRNG) sample<T>(array []T, k int) []T {
|
|
|
|
mut results := []T{len: k}
|
|
|
|
for i in 0 .. k {
|
|
|
|
results[i] = array[rng.intn(array.len) or { 0 }]
|
|
|
|
}
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
2021-11-16 10:44:36 +01:00
|
|
|
__global default_rng &PRNG
|
2021-03-03 07:36:56 +01:00
|
|
|
|
2020-06-09 15:06:07 +02:00
|
|
|
// new_default returns a new instance of the default RNG. If the seed is not provided, the current time will be used to seed the instance.
|
2021-09-23 10:14:20 +02:00
|
|
|
[manualfree]
|
2021-08-18 10:33:37 +02:00
|
|
|
pub fn new_default(config config.PRNGConfigStruct) &PRNG {
|
2020-07-24 01:55:55 +02:00
|
|
|
mut rng := &wyrand.WyRandRNG{}
|
2021-08-15 17:09:51 +02:00
|
|
|
rng.seed(config.seed_)
|
2021-09-23 10:14:20 +02:00
|
|
|
unsafe { config.seed_.free() }
|
|
|
|
return &PRNG(rng)
|
2019-09-16 21:21:21 +02:00
|
|
|
}
|
2020-05-27 15:41:37 +02:00
|
|
|
|
2021-03-03 12:41:00 +01:00
|
|
|
// get_current_rng returns the PRNG instance currently in use. If it is not changed, it will be an instance of wyrand.WyRandRNG.
|
|
|
|
pub fn get_current_rng() &PRNG {
|
|
|
|
return default_rng
|
|
|
|
}
|
|
|
|
|
|
|
|
// set_rng changes the default RNG from wyrand.WyRandRNG (or whatever the last RNG was) to the one
|
2021-05-08 12:32:29 +02:00
|
|
|
// provided by the user. Note that this new RNG must be seeded manually with a constant seed or the
|
2021-03-03 12:41:00 +01:00
|
|
|
// `seed.time_seed_array()` method. Also, it is recommended to store the old RNG in a variable and
|
|
|
|
// should be restored if work with the custom RNG is complete. It is not necessary to restore if the
|
|
|
|
// program terminates soon afterwards.
|
|
|
|
pub fn set_rng(rng &PRNG) {
|
2021-05-07 14:58:48 +02:00
|
|
|
default_rng = unsafe { rng }
|
2021-03-03 12:41:00 +01:00
|
|
|
}
|
|
|
|
|
2021-03-12 20:24:43 +01:00
|
|
|
// seed sets the given array of `u32` values as the seed for the `default_rng`. The default_rng is
|
|
|
|
// an instance of WyRandRNG which takes 2 u32 values. When using a custom RNG, make sure to use
|
|
|
|
// the correct number of u32s.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn seed(seed []u32) {
|
2021-03-03 07:36:56 +01:00
|
|
|
default_rng.seed(seed)
|
2020-06-01 21:13:56 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u32 returns a uniformly distributed `u32` in range `[0, 2³²)`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn u32() u32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u32()
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u64 returns a uniformly distributed `u64` in range `[0, 2⁶⁴)`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn u64() u64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u64()
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u32n returns a uniformly distributed pseudorandom 32-bit signed positive `u32` in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn u32n(max u32) ?u32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u32n(max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u64n returns a uniformly distributed pseudorandom 64-bit signed positive `u64` in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn u64n(max u64) ?u64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u64n(max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u32_in_range returns a uniformly distributed pseudorandom 32-bit unsigned `u32` in range `[min, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn u32_in_range(min u32, max u32) ?u32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u32_in_range(min, max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// u64_in_range returns a uniformly distributed pseudorandom 64-bit unsigned `u64` in range `[min, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn u64_in_range(min u64, max u64) ?u64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.u64_in_range(min, max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// i16 returns a uniformly distributed pseudorandom 16-bit signed (possibly negative) `i16`.
|
|
|
|
pub fn i16() i16 {
|
|
|
|
return default_rng.i16()
|
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// int returns a uniformly distributed pseudorandom 32-bit signed (possibly negative) `int`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn int() int {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.int()
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// intn returns a uniformly distributed pseudorandom 32-bit signed positive `int` in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn intn(max int) ?int {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.intn(max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2021-01-26 18:26:05 +01:00
|
|
|
// byte returns a uniformly distributed pseudorandom 8-bit unsigned positive `byte`.
|
2022-04-15 17:25:45 +02:00
|
|
|
pub fn u8() u8 {
|
2022-04-15 13:58:56 +02:00
|
|
|
return default_rng.u8()
|
2021-01-26 18:26:05 +01:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// int_in_range returns a uniformly distributed pseudorandom 32-bit signed int in range `[min, max)`.
|
|
|
|
// Both `min` and `max` can be negative, but we must have `min < max`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn int_in_range(min int, max int) ?int {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.int_in_range(min, max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// int31 returns a uniformly distributed pseudorandom 31-bit signed positive `int`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn int31() int {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.int31()
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// i64 returns a uniformly distributed pseudorandom 64-bit signed (possibly negative) `i64`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn i64() i64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.i64()
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// i64n returns a uniformly distributed pseudorandom 64-bit signed positive `i64` in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn i64n(max i64) ?i64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.i64n(max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// i64_in_range returns a uniformly distributed pseudorandom 64-bit signed `i64` in range `[min, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn i64_in_range(min i64, max i64) ?i64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.i64_in_range(min, max)
|
2020-06-09 15:06:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// int63 returns a uniformly distributed pseudorandom 63-bit signed positive `i64`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn int63() i64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.int63()
|
2020-06-01 21:13:56 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f32 returns a uniformly distributed 32-bit floating point in range `[0, 1)`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn f32() f32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f32()
|
2020-05-27 15:41:37 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f64 returns a uniformly distributed 64-bit floating point in range `[0, 1)`.
|
2020-06-09 15:06:07 +02:00
|
|
|
pub fn f64() f64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f64()
|
2020-05-27 15:41:37 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f32n returns a uniformly distributed 32-bit floating point in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn f32n(max f32) ?f32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f32n(max)
|
2020-05-27 15:41:37 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f64n returns a uniformly distributed 64-bit floating point in range `[0, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn f64n(max f64) ?f64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f64n(max)
|
2020-05-28 01:16:17 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f32_in_range returns a uniformly distributed 32-bit floating point in range `[min, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn f32_in_range(min f32, max f32) ?f32 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f32_in_range(min, max)
|
2020-05-27 19:13:57 +02:00
|
|
|
}
|
2020-05-28 01:16:17 +02:00
|
|
|
|
2020-12-27 19:06:17 +01:00
|
|
|
// f64_in_range returns a uniformly distributed 64-bit floating point in range `[min, max)`.
|
2022-02-23 11:36:14 +01:00
|
|
|
pub fn f64_in_range(min f64, max f64) ?f64 {
|
2021-03-03 07:36:56 +01:00
|
|
|
return default_rng.f64_in_range(min, max)
|
2020-06-01 21:13:56 +02:00
|
|
|
}
|
2020-07-15 21:36:06 +02:00
|
|
|
|
2022-02-06 09:49:43 +01:00
|
|
|
// bytes returns a buffer of `bytes_needed` random bytes
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn bytes(bytes_needed int) ?[]u8 {
|
2022-02-23 11:36:14 +01:00
|
|
|
return default_rng.bytes(bytes_needed)
|
2022-02-06 09:49:43 +01:00
|
|
|
}
|
|
|
|
|
2022-02-28 12:17:54 +01:00
|
|
|
// read fills in `buf` a maximum of `buf.len` random bytes
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn read(mut buf []u8) {
|
2022-02-28 12:17:54 +01:00
|
|
|
read_internal(mut default_rng, mut buf)
|
|
|
|
}
|
|
|
|
|
2020-07-15 21:36:06 +02:00
|
|
|
const (
|
2021-02-19 10:16:02 +01:00
|
|
|
english_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
|
|
|
hex_chars = 'abcdef0123456789'
|
|
|
|
ascii_chars = '!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\\^_`abcdefghijklmnopqrstuvwxyz{|}~'
|
2020-07-15 21:36:06 +02:00
|
|
|
)
|
2022-03-12 08:41:12 +01:00
|
|
|
|
|
|
|
// ulid generates an Unique Lexicographically sortable IDentifier.
|
|
|
|
// See https://github.com/ulid/spec .
|
|
|
|
// Note: ULIDs can leak timing information, if you make them public, because
|
|
|
|
// you can infer the rate at which some resource is being created, like
|
|
|
|
// users or business transactions.
|
|
|
|
// (https://news.ycombinator.com/item?id=14526173)
|
|
|
|
pub fn ulid() string {
|
2022-03-27 16:38:59 +02:00
|
|
|
return default_rng.ulid()
|
2022-03-12 08:41:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ulid_at_millisecond does the same as `ulid` but takes a custom Unix millisecond timestamp via `unix_time_milli`.
|
|
|
|
pub fn ulid_at_millisecond(unix_time_milli u64) string {
|
2022-03-27 16:38:59 +02:00
|
|
|
return default_rng.ulid_at_millisecond(unix_time_milli)
|
2022-03-12 08:41:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// string_from_set returns a string of length `len` containing random characters sampled from the given `charset`
|
|
|
|
pub fn string_from_set(charset string, len int) string {
|
2022-03-27 16:38:59 +02:00
|
|
|
return default_rng.string_from_set(charset, len)
|
2022-03-12 08:41:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// string returns a string of length `len` containing random characters in range `[a-zA-Z]`.
|
|
|
|
pub fn string(len int) string {
|
|
|
|
return string_from_set(rand.english_letters, len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// hex returns a hexadecimal number of length `len` containing random characters in range `[a-f0-9]`.
|
|
|
|
pub fn hex(len int) string {
|
|
|
|
return string_from_set(rand.hex_chars, len)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ascii returns a random string of the printable ASCII characters with length `len`.
|
|
|
|
pub fn ascii(len int) string {
|
|
|
|
return string_from_set(rand.ascii_chars, len)
|
|
|
|
}
|
2022-03-23 14:31:26 +01:00
|
|
|
|
2022-03-27 16:38:59 +02:00
|
|
|
// shuffle randomly permutates the elements in `a`. The range for shuffling is
|
|
|
|
// optional and the entire array is shuffled by default. Leave the end as 0 to
|
|
|
|
// shuffle all elements until the end.
|
|
|
|
pub fn shuffle<T>(mut a []T, config ShuffleConfigStruct) ? {
|
|
|
|
default_rng.shuffle(mut a, config) ?
|
2022-03-23 14:31:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// shuffle_clone returns a random permutation of the elements in `a`.
|
|
|
|
// The permutation is done on a fresh clone of `a`, so `a` remains unchanged.
|
2022-03-27 16:38:59 +02:00
|
|
|
pub fn shuffle_clone<T>(a []T, config ShuffleConfigStruct) ?[]T {
|
|
|
|
return default_rng.shuffle_clone(a, config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// choose samples k elements from the array without replacement.
|
|
|
|
// This means the indices cannot repeat and it restricts the sample size to be less than or equal to the size of the given array.
|
|
|
|
// Note that if the array has repeating elements, then the sample may have repeats as well.
|
|
|
|
pub fn choose<T>(array []T, k int) ?[]T {
|
|
|
|
return default_rng.choose(array, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sample samples k elements from the array with replacement.
|
|
|
|
// This means the elements can repeat and the size of the sample may exceed the size of the array.
|
|
|
|
pub fn sample<T>(array []T, k int) []T {
|
|
|
|
return default_rng.sample(array, k)
|
2022-03-23 14:31:26 +01:00
|
|
|
}
|