|
| 1 | +// use std::{ |
| 2 | +// sync::{ |
| 3 | +// atomic::{AtomicUsize, Ordering}, |
| 4 | +// Arc, Condvar, Mutex, |
| 5 | +// }, |
| 6 | +// thread, |
| 7 | +// time::{Duration, Instant}, |
| 8 | +// }; |
| 9 | + |
| 10 | +// const IDLE_THRESHOLD: Duration = Duration::from_secs(10); |
| 11 | + |
| 12 | +// type Job = dyn FnOnce() + Send + 'static; |
| 13 | + |
| 14 | +// struct Inner { |
| 15 | +// base: Instant, |
| 16 | +// next_exit: AtomicUsize, |
| 17 | +// job: Mutex<Option<Box<Job>>>, |
| 18 | +// wait_job: Condvar, |
| 19 | +// } |
| 20 | + |
| 21 | +// #[derive(Clone)] |
| 22 | +// pub struct CachedThread { |
| 23 | +// inner: Arc<Inner>, |
| 24 | +// } |
| 25 | + |
| 26 | +// impl CachedThread { |
| 27 | +// pub fn new() -> CachedThread { |
| 28 | +// CachedThread { |
| 29 | +// inner: Arc::new(Inner { |
| 30 | +// base: Instant::now(), |
| 31 | +// next_exit: AtomicUsize::new(0), |
| 32 | +// job: Mutex::new(None), |
| 33 | +// wait_job: Condvar::new(), |
| 34 | +// }), |
| 35 | +// } |
| 36 | +// } |
| 37 | + |
| 38 | +// pub fn spawn<F>(&self, f: F) |
| 39 | +// where |
| 40 | +// F: FnOnce() + Send + 'static, |
| 41 | +// { |
| 42 | +// let job = Box::new(f); |
| 43 | +// self.inner.job.try |
| 44 | +// self.inner |
| 45 | +// .sender |
| 46 | +// .try_send(job) |
| 47 | +// .unwrap_or_else(|err| match err { |
| 48 | +// TrySendError::Full(job) => { |
| 49 | +// let self2 = self.clone(); |
| 50 | +// let _ = thread::Builder::new().spawn(move || self2.main_loop()); |
| 51 | +// self.inner.sender.send(job).unwrap(); |
| 52 | +// } |
| 53 | + |
| 54 | +// // we hold both side of the channel, so it will never be disconnected |
| 55 | +// TrySendError::Disconnected(_) => unreachable!(), |
| 56 | +// }); |
| 57 | +// } |
| 58 | + |
| 59 | +// fn main_loop(&self) { |
| 60 | +// loop { |
| 61 | +// match self.inner.receiver.recv_timeout(IDLE_THRESHOLD) { |
| 62 | +// Ok(job) => job(), |
| 63 | + |
| 64 | +// Err(RecvTimeoutError::Timeout) => { |
| 65 | +// let now = Instant::now(); |
| 66 | +// let next_exit = self.inner.next_exit.load(Ordering::Relaxed); |
| 67 | +// if now.duration_since(self.inner.base).as_secs() as usize >= next_exit { |
| 68 | +// let new_next_exit = (now + IDLE_THRESHOLD) |
| 69 | +// .duration_since(self.inner.base) |
| 70 | +// .as_secs() as usize; |
| 71 | + |
| 72 | +// // only 1 thread is allowed to exit per IDLE_THRESHOLD |
| 73 | +// if next_exit |
| 74 | +// == self.inner.next_exit.compare_and_swap( |
| 75 | +// next_exit, |
| 76 | +// new_next_exit, |
| 77 | +// Ordering::Relaxed, |
| 78 | +// ) |
| 79 | +// { |
| 80 | +// return; |
| 81 | +// } |
| 82 | +// } |
| 83 | +// } |
| 84 | + |
| 85 | +// // we hold both side of the channel |
| 86 | +// Err(RecvTimeoutError::Disconnected) => unreachable!(), |
| 87 | +// } |
| 88 | +// } |
| 89 | +// } |
| 90 | +// } |
0 commit comments