use crate::rand::{wyrand::WyRand, Rng, SeedableRng};
use std::{cell::RefCell, rc::Rc};
thread_local! {
static WYRAND: Rc<RefCell<WyRand>> = Rc::new(RefCell::new(WyRand::new()));
}
#[derive(Clone)]
#[doc(hidden)]
pub struct TlsWyRand(Rc<RefCell<WyRand>>);
impl Rng<8> for TlsWyRand {
fn rand(&mut self) -> [u8; 8] {
self.0.borrow_mut().rand()
}
}
impl SeedableRng<8, 8> for TlsWyRand {
fn reseed(&mut self, seed: [u8; 8]) {
self.0.borrow_mut().reseed(seed);
}
}
pub fn tls_rng() -> TlsWyRand {
WYRAND.with(|tls| TlsWyRand(tls.clone()))
}