2019-09-17 21:03:54 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
module rand
|
|
|
|
|
|
|
|
import(
|
2019-09-20 16:39:36 +02:00
|
|
|
math.bits
|
2019-09-17 21:03:54 +02:00
|
|
|
encoding.binary
|
|
|
|
)
|
|
|
|
|
2019-09-23 22:17:06 +02:00
|
|
|
pub fn int_u64(max u64) ?u64 {
|
2019-09-20 16:39:36 +02:00
|
|
|
bitlen := bits.len64(max)
|
2019-09-17 21:03:54 +02:00
|
|
|
if bitlen == 0 {
|
|
|
|
return u64(0)
|
|
|
|
}
|
|
|
|
k := (bitlen + 7) / 8
|
|
|
|
mut b := u64(bitlen % 8)
|
|
|
|
if b == u64(0) {
|
|
|
|
b = u64(8)
|
|
|
|
}
|
|
|
|
mut n := u64(0)
|
|
|
|
for {
|
|
|
|
mut bytes := read(k) or {
|
|
|
|
return error(err)
|
|
|
|
}
|
|
|
|
bytes[0] &= byte(int(u64(1)<<b) - 1)
|
|
|
|
x := bytes_to_u64(bytes)
|
|
|
|
n = x[0]
|
2019-09-18 15:12:16 +02:00
|
|
|
// NOTE: maybe until we have bigint could do it another way?
|
|
|
|
// if x.len > 1 {
|
|
|
|
// n = u64(u32(x[1])<<u32(32)) | n
|
|
|
|
// }
|
2019-09-17 21:03:54 +02:00
|
|
|
if n < max {
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
2019-09-23 22:17:06 +02:00
|
|
|
fn bytes_to_u64(b []byte) []u64 {
|
2019-09-18 15:12:16 +02:00
|
|
|
ws := 64/8
|
|
|
|
mut z := [u64(0)].repeat((b.len + ws - 1) / ws)
|
2019-09-17 21:03:54 +02:00
|
|
|
mut i := b.len
|
2019-09-18 15:12:16 +02:00
|
|
|
for k := 0; i >= ws; k++ {
|
|
|
|
z[k] = binary.big_endian_u64(b.slice(i-ws, i))
|
|
|
|
i -= ws
|
2019-09-17 21:03:54 +02:00
|
|
|
}
|
|
|
|
if i > 0 {
|
|
|
|
mut d := u64(0)
|
|
|
|
for s := u64(0); i > 0; s += u64(8) {
|
|
|
|
d |= u64(u64(b[i-1]) << s)
|
|
|
|
i--
|
|
|
|
}
|
|
|
|
z[z.len-1] = d
|
|
|
|
}
|
|
|
|
return z
|
|
|
|
}
|