1cfg_rt! {
2 mod rt;
3 pub(crate) use rt::RngSeedGenerator;
4
5 cfg_unstable! {
6 mod rt_unstable;
7 }
8}
9
10#[allow(unreachable_pub)]
15#[derive(Clone, Debug)]
16pub struct RngSeed {
17 s: u32,
18 r: u32,
19}
20
21#[derive(Clone, Copy, Debug)]
29pub(crate) struct FastRand {
30 one: u32,
31 two: u32,
32}
33
34impl RngSeed {
35 pub(crate) fn new() -> Self {
37 Self::from_u64(crate::loom::rand::seed())
38 }
39
40 fn from_u64(seed: u64) -> Self {
41 let one = (seed >> 32) as u32;
42 let two = seed as u32;
43
44 Self::from_pair(one, two)
45 }
46
47 fn from_pair(s: u32, r: u32) -> Self {
48 if s == 0 && r == 0 {
49 Self { s: 0, r: 1 }
50 } else {
51 Self { s, r }
52 }
53 }
54}
55
56impl FastRand {
57 pub(crate) fn new() -> FastRand {
59 FastRand::from_seed(RngSeed::new())
60 }
61
62 pub(crate) fn from_seed(seed: RngSeed) -> FastRand {
64 FastRand {
65 one: seed.s,
66 two: seed.r,
67 }
68 }
69
70 #[cfg(any(
71 feature = "macros",
72 feature = "rt-multi-thread",
73 all(feature = "sync", feature = "rt")
74 ))]
75 pub(crate) fn fastrand_n(&mut self, n: u32) -> u32 {
76 let mul = (self.fastrand() as u64).wrapping_mul(n as u64);
79 (mul >> 32) as u32
80 }
81
82 fn fastrand(&mut self) -> u32 {
83 let mut s1 = self.one;
84 let s0 = self.two;
85
86 s1 ^= s1 << 17;
87 s1 = s1 ^ s0 ^ s1 >> 7 ^ s0 >> 16;
88
89 self.one = s0;
90 self.two = s1;
91
92 s0.wrapping_add(s1)
93 }
94}
95
96#[cfg(test)]
97mod tests {
98 use super::*;
99
100 #[test]
101 fn non_zero_seed_from_u64() {
102 let seed = RngSeed::from_u64(0);
103 assert_eq!(seed.s, 0);
104 assert_eq!(seed.r, 1);
105 }
106
107 #[test]
108 fn non_zero_seed_from_pair() {
109 let seed = RngSeed::from_pair(0, 0);
110 assert_eq!(seed.s, 0);
111 assert_eq!(seed.r, 1);
112 }
113}