wipe/src/exec.rs
2022-11-23 19:53:31 +01:00

197 lines
5.3 KiB
Rust

use crate::Error;
use crate::Renderer;
use cancellation::CancellationToken;
use std::thread;
use std::time::{Duration, Instant};
/// A stub for the system clock.
#[cfg_attr(test, mockall::automock)]
pub trait Clock {
/// Returns the current time.
fn now(&self) -> Instant;
/// Sleep for the given duration.
fn sleep(&self, duration: Duration);
}
/// The implementation of [Clock].
#[derive(derive_more::Constructor)]
pub struct ClockImpl;
impl Clock for ClockImpl {
fn now(&self) -> Instant {
Instant::now()
}
fn sleep(&self, duration: Duration) {
thread::sleep(duration)
}
}
/// A timer for rendering.
#[derive(derive_more::Constructor)]
pub struct Executor<T> {
clock: T,
duration: Duration,
delay: Duration,
}
impl<T: Clock> Executor<T> {
/// Runs the animation main loop.
pub fn run(&self, mut renderer: impl Renderer, token: &CancellationToken) -> Result<(), Error> {
let start = self.clock.now();
let mut tick = start;
while !token.is_canceled() && tick.duration_since(start) < self.duration {
let step = tick.duration_since(start).as_secs_f32() / self.duration.as_secs_f32();
renderer.render(step)?;
tick = self.delay(tick);
}
Ok(())
}
/// Sleeps until the next frame starts.
/// Returns the current time.
fn delay(&self, begin: Instant) -> Instant {
let end = self.clock.now();
if self.delay > end.duration_since(begin) {
self.clock.sleep(self.delay - end.duration_since(begin));
}
self.clock.now()
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::MockRenderer;
use cancellation::CancellationTokenSource;
use mockall::predicate::eq;
use mockall::Sequence;
#[test]
fn run_steps_correct() {
let mut clock = MockClock::new();
let clock_seq = &mut Sequence::new();
let begin = Instant::now();
clock
.expect_now()
.once()
.return_const(begin)
.in_sequence(clock_seq);
clock
.expect_now()
.times(2)
.return_const(begin + Duration::from_secs(10))
.in_sequence(clock_seq);
clock
.expect_now()
.times(2)
.return_const(begin + Duration::from_secs(20))
.in_sequence(clock_seq);
let timer = Executor::new(clock, Duration::from_secs(20), Duration::from_secs(10));
let mut renderer = MockRenderer::new();
let renderer_seq = &mut Sequence::new();
renderer
.expect_render()
.with(eq(0.0))
.once()
.returning(|_| Ok(()))
.in_sequence(renderer_seq);
renderer
.expect_render()
.with(eq(0.5))
.once()
.returning(|_| Ok(()))
.in_sequence(renderer_seq);
timer.run(renderer, CancellationToken::none()).unwrap();
}
#[test]
fn run_sleep_duration_correct() {
let mut clock = MockClock::new();
let clock_seq = &mut Sequence::new();
let begin = Instant::now();
clock
.expect_now()
.once()
.return_const(begin)
.in_sequence(clock_seq);
clock
.expect_now()
.once()
.return_const(begin + Duration::from_secs(4))
.in_sequence(clock_seq);
clock
.expect_sleep()
.once()
.with(eq(Duration::from_secs(6)))
.return_const(())
.in_sequence(clock_seq);
clock
.expect_now()
.once()
.return_const(begin + Duration::from_secs(10))
.in_sequence(clock_seq);
let timer = Executor::new(clock, Duration::from_secs(10), Duration::from_secs(10));
let mut renderer = MockRenderer::new();
renderer.expect_render().returning(|_| Ok(()));
timer.run(renderer, CancellationToken::none()).unwrap();
}
#[test]
fn run_delay_exceeded_does_not_sleep() {
let mut clock = MockClock::new();
let clock_seq = &mut Sequence::new();
let begin = Instant::now();
clock
.expect_now()
.once()
.return_const(begin)
.in_sequence(clock_seq);
clock
.expect_now()
.times(2)
.return_const(begin + Duration::from_secs(12))
.in_sequence(clock_seq);
let timer = Executor::new(clock, Duration::from_secs(10), Duration::from_secs(10));
let mut renderer = MockRenderer::new();
renderer.expect_render().returning(|_| Ok(()));
timer.run(renderer, CancellationToken::none()).unwrap();
}
#[test]
fn run_canceled_aborts() {
let mut clock = MockClock::new();
let mut renderer = MockRenderer::new();
let src = CancellationTokenSource::new();
let token = src.token().clone();
clock.expect_now().return_const(Instant::now());
clock.expect_sleep().once().return_const(());
renderer.expect_render().once().returning(move |_| {
src.cancel();
Ok(())
});
let timer = Executor::new(clock, Duration::from_secs(10), Duration::from_secs(1));
timer.run(renderer, &token).unwrap();
}
}