1use std::{
13 collections::hash_map::RandomState,
14 hash::{BuildHasher, Hasher},
15 ops::Range,
16};
17
18pub trait Rng {
22 fn next_u64(&mut self) -> u64;
24
25 fn next_f64(&mut self) -> f64 {
27 let float_size = std::mem::size_of::<f64>() as u32 * 8;
30 let precision = 52 + 1;
31 let scale = 1.0 / ((1u64 << precision) as f64);
32
33 let value = self.next_u64();
34 let value = value >> (float_size - precision);
35
36 scale * value as f64
37 }
38
39 fn next_range(&mut self, range: Range<u64>) -> u64 {
45 debug_assert!(
46 range.start < range.end,
47 "The range start must be smaller than the end"
48 );
49 let start = range.start;
50 let end = range.end;
51
52 let range = end - start;
53
54 let n = self.next_u64();
55
56 (n % range) + start
57 }
58}
59
60impl<R: Rng + ?Sized> Rng for Box<R> {
61 fn next_u64(&mut self) -> u64 {
62 (**self).next_u64()
63 }
64}
65
66#[derive(Clone, Debug)]
75pub struct HasherRng<H = RandomState> {
76 hasher: H,
77 counter: u64,
78}
79
80impl HasherRng {
81 pub fn new() -> Self {
83 HasherRng::default()
84 }
85}
86
87impl Default for HasherRng {
88 fn default() -> Self {
89 HasherRng::with_hasher(RandomState::default())
90 }
91}
92
93impl<H> HasherRng<H> {
94 pub fn with_hasher(hasher: H) -> Self {
96 HasherRng { hasher, counter: 0 }
97 }
98}
99
100impl<H> Rng for HasherRng<H>
101where
102 H: BuildHasher,
103{
104 fn next_u64(&mut self) -> u64 {
105 let mut hasher = self.hasher.build_hasher();
106 hasher.write_u64(self.counter);
107 self.counter = self.counter.wrapping_add(1);
108 hasher.finish()
109 }
110}
111
112#[cfg(feature = "balance")]
120pub(crate) fn sample_floyd2<R: Rng>(rng: &mut R, length: u64) -> [u64; 2] {
121 debug_assert!(2 <= length);
122 let aidx = rng.next_range(0..length - 1);
123 let bidx = rng.next_range(0..length);
124 let aidx = if aidx == bidx { length - 1 } else { aidx };
125 [aidx, bidx]
126}
127
128#[cfg(test)]
129mod tests {
130 use super::*;
131 use quickcheck::*;
132
133 quickcheck! {
134 fn next_f64(counter: u64) -> TestResult {
135 let mut rng = HasherRng::default();
136 rng.counter = counter;
137 let n = rng.next_f64();
138
139 TestResult::from_bool(n < 1.0 && n >= 0.0)
140 }
141
142 fn next_range(counter: u64, range: Range<u64>) -> TestResult {
143 if range.start >= range.end{
144 return TestResult::discard();
145 }
146
147 let mut rng = HasherRng::default();
148 rng.counter = counter;
149
150 let n = rng.next_range(range.clone());
151
152 TestResult::from_bool(n >= range.start && (n < range.end || range.start == range.end))
153 }
154
155 fn sample_floyd2(counter: u64, length: u64) -> TestResult {
156 if length < 2 || length > 256 {
157 return TestResult::discard();
158 }
159
160 let mut rng = HasherRng::default();
161 rng.counter = counter;
162
163 let [a, b] = super::sample_floyd2(&mut rng, length);
164
165 if a >= length || b >= length || a == b {
166 return TestResult::failed();
167 }
168
169 TestResult::passed()
170 }
171 }
172
173 #[test]
174 fn sample_inplace_boundaries() {
175 let mut r = HasherRng::default();
176 match super::sample_floyd2(&mut r, 2) {
177 [0, 1] | [1, 0] => (),
178 array => panic!("unexpected inplace boundaries: {:?}", array),
179 }
180 }
181}