Fix errors from conditional compilation in timer functions

This commit is contained in:
Max Brunsfeld 2022-03-04 16:54:12 -08:00
parent fab115e549
commit 4124308d94
3 changed files with 67 additions and 60 deletions

View file

@ -287,7 +287,6 @@ impl Client {
} }
Status::ConnectionLost => { Status::ConnectionLost => {
let this = self.clone(); let this = self.clone();
let foreground = cx.foreground();
let reconnect_interval = state.reconnect_interval; let reconnect_interval = state.reconnect_interval;
state._reconnect_task = Some(cx.spawn(|cx| async move { state._reconnect_task = Some(cx.spawn(|cx| async move {
let mut rng = StdRng::from_entropy(); let mut rng = StdRng::from_entropy();
@ -300,7 +299,7 @@ impl Client {
}, },
&cx, &cx,
); );
foreground.timer(delay).await; cx.background().timer(delay).await;
delay = delay delay = delay
.mul_f32(rng.gen_range(1.0..=2.0)) .mul_f32(rng.gen_range(1.0..=2.0))
.min(reconnect_interval); .min(reconnect_interval);

View file

@ -1,6 +1,6 @@
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use async_task::Runnable; use async_task::Runnable;
use smol::{channel, prelude::*, Executor, Timer}; use smol::{channel, prelude::*, Executor};
use std::{ use std::{
any::Any, any::Any,
fmt::{self, Display}, fmt::{self, Display},
@ -86,6 +86,19 @@ pub struct Deterministic {
parker: parking_lot::Mutex<parking::Parker>, parker: parking_lot::Mutex<parking::Parker>,
} }
pub enum Timer {
Production(smol::Timer),
#[cfg(any(test, feature = "test-support"))]
Deterministic(DeterministicTimer),
}
#[cfg(any(test, feature = "test-support"))]
pub struct DeterministicTimer {
rx: postage::barrier::Receiver,
id: usize,
state: Arc<parking_lot::Mutex<DeterministicState>>,
}
#[cfg(any(test, feature = "test-support"))] #[cfg(any(test, feature = "test-support"))]
impl Deterministic { impl Deterministic {
pub fn new(seed: u64) -> Arc<Self> { pub fn new(seed: u64) -> Arc<Self> {
@ -306,30 +319,14 @@ impl Deterministic {
None None
} }
pub fn timer(&self, duration: Duration) -> impl Future<Output = ()> { pub fn timer(&self, duration: Duration) -> Timer {
let (tx, mut rx) = postage::barrier::channel(); let (tx, rx) = postage::barrier::channel();
let timer_id;
{
let mut state = self.state.lock(); let mut state = self.state.lock();
let wakeup_at = state.now + duration; let wakeup_at = state.now + duration;
timer_id = util::post_inc(&mut state.next_timer_id); let id = util::post_inc(&mut state.next_timer_id);
state.pending_timers.push((timer_id, wakeup_at, tx)); state.pending_timers.push((id, wakeup_at, tx));
}
let remove_timer = util::defer({
let state = self.state.clone(); let state = self.state.clone();
move || { Timer::Deterministic(DeterministicTimer { rx, id, state })
state
.lock()
.pending_timers
.retain(|(id, _, _)| *id != timer_id);
}
});
async move {
postage::prelude::Stream::recv(&mut rx).await;
drop(remove_timer);
}
} }
pub fn advance_clock(&self, duration: Duration) { pub fn advance_clock(&self, duration: Duration) {
@ -344,6 +341,43 @@ impl Deterministic {
} }
} }
impl Drop for Timer {
fn drop(&mut self) {
#[cfg(any(test, feature = "test-support"))]
if let Timer::Deterministic(DeterministicTimer { state, id, .. }) = self {
state
.lock()
.pending_timers
.retain(|(timer_id, _, _)| timer_id != id)
}
}
}
impl Future for Timer {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match &mut *self {
#[cfg(any(test, feature = "test-support"))]
Self::Deterministic(DeterministicTimer { rx, .. }) => {
use postage::stream::{PollRecv, Stream as _};
smol::pin!(rx);
match rx.poll_recv(&mut postage::Context::from_waker(cx.waker())) {
PollRecv::Ready(()) | PollRecv::Closed => Poll::Ready(()),
PollRecv::Pending => Poll::Pending,
}
}
Self::Production(timer) => {
smol::pin!(timer);
match timer.poll(cx) {
Poll::Ready(_) => Poll::Ready(()),
Poll::Pending => Poll::Pending,
}
}
}
}
}
#[cfg(any(test, feature = "test-support"))] #[cfg(any(test, feature = "test-support"))]
impl DeterministicState { impl DeterministicState {
fn will_park(&mut self) { fn will_park(&mut self) {
@ -464,23 +498,6 @@ impl Foreground {
} }
} }
pub fn timer(&self, duration: Duration) -> impl Future<Output = ()> {
let mut timer = None;
#[cfg(any(test, feature = "test-support"))]
if let Self::Deterministic { executor, .. } = self {
timer = Some(executor.timer(duration));
}
async move {
if let Some(timer) = timer {
timer.await;
} else {
Timer::after(duration).await;
}
}
}
#[cfg(any(test, feature = "test-support"))] #[cfg(any(test, feature = "test-support"))]
pub fn advance_clock(&self, duration: Duration) { pub fn advance_clock(&self, duration: Duration) {
match self { match self {
@ -603,20 +620,11 @@ impl Background {
} }
} }
pub fn timer(&self, duration: Duration) -> impl Future<Output = ()> { pub fn timer(&self, duration: Duration) -> Timer {
let mut timer = None; match self {
Background::Production { .. } => Timer::Production(smol::Timer::after(duration)),
#[cfg(any(test, feature = "test-support"))] #[cfg(any(test, feature = "test-support"))]
if let Self::Deterministic { executor, .. } = self { Background::Deterministic { executor } => executor.timer(duration),
timer = Some(executor.timer(duration));
}
async move {
if let Some(timer) = timer {
timer.await;
} else {
Timer::after(duration).await;
}
} }
} }

View file

@ -5079,14 +5079,14 @@ mod tests {
} }
impl Executor for Arc<gpui::executor::Background> { impl Executor for Arc<gpui::executor::Background> {
type Timer = BoxFuture<'static, ()>; type Timer = gpui::executor::Timer;
fn spawn_detached<F: 'static + Send + Future<Output = ()>>(&self, future: F) { fn spawn_detached<F: 'static + Send + Future<Output = ()>>(&self, future: F) {
self.spawn(future).detach(); self.spawn(future).detach();
} }
fn timer(&self, duration: Duration) -> Self::Timer { fn timer(&self, duration: Duration) -> Self::Timer {
self.as_ref().timer(duration).boxed() self.as_ref().timer(duration)
} }
} }