1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
use crate::action::{Action, Props, StatefulAction, INFINITE};
use crate::comm::{QWriter, Signal, SignalId};
use crate::resource::{IoManager, ResourceManager};
use crate::server::{AsyncSignal, Config, State, SyncSignal};
use crate::util::spin_sleeper;
use eyre::{eyre, Context, Result};
use serde::{Deserialize, Serialize};
use serde_cbor::Value;
use std::collections::BTreeSet;
use std::sync::mpsc::{self, Sender, TryRecvError};
use std::thread;
use std::time::{Duration, Instant};
const MIN_STEP_DELAY: f32 = 0.010;
#[derive(Debug, Deserialize, Serialize)]
pub struct Clock {
step: f32,
#[serde(default)]
from: i64,
#[serde(default)]
on_start: bool,
out_tic: SignalId,
}
stateful!(Clock {
link: Sender<()>,
});
impl Action for Clock {
#[inline]
fn out_signals(&self) -> BTreeSet<SignalId> {
BTreeSet::from([self.out_tic])
}
fn init(self) -> Result<Box<dyn Action>>
where
Self: 'static + Sized,
{
if self.step < MIN_STEP_DELAY {
return Err(eyre!("Step size for clock is smaller than MIN_STEP_DELAY."));
}
if self.out_tic == 0 {
return Err(eyre!("Clock with no `out_signal` is useless."));
}
Ok(Box::new(self))
}
fn stateful(
&self,
_io: &IoManager,
_res: &ResourceManager,
_config: &Config,
sync_writer: &QWriter<SyncSignal>,
_async_writer: &QWriter<AsyncSignal>,
) -> Result<Box<dyn StatefulAction>> {
let (tx, rx) = mpsc::channel();
{
let step = Duration::from_secs_f32(self.step);
let on_start = self.on_start;
let out_tic = self.out_tic;
let mut tics = self.from as i128;
let mut sync_writer = sync_writer.clone();
thread::spawn(move || {
let sleeper = spin_sleeper();
if rx.recv().is_err() {
return;
}
if on_start {
sync_writer.push(SyncSignal::Emit(
Instant::now(),
vec![(out_tic, Value::Integer(tics))].into(),
));
}
while let Err(TryRecvError::Empty) | Ok(()) = rx.try_recv() {
tics += 1;
sleeper.sleep(step);
sync_writer.push(SyncSignal::Emit(
Instant::now(),
vec![(out_tic, Value::Integer(tics))].into(),
));
}
});
}
Ok(Box::new(StatefulClock {
done: false,
link: tx,
}))
}
}
impl StatefulAction for StatefulClock {
impl_stateful!();
fn props(&self) -> Props {
INFINITE.into()
}
fn start(
&mut self,
_sync_writer: &mut QWriter<SyncSignal>,
_async_writer: &mut QWriter<AsyncSignal>,
_state: &State,
) -> Result<Signal> {
self.link
.send(())
.wrap_err("Failed to communicate with the clock thread.")?;
Ok(Signal::none())
}
}