hydro_lang/location/
tick.rs

1use std::marker::PhantomData;
2
3use proc_macro2::Span;
4use sealed::sealed;
5use stageleft::{QuotedWithContext, q};
6
7#[cfg(stageleft_runtime)]
8use super::dynamic::DynLocation;
9use super::{Cluster, Location, LocationId, Process};
10use crate::compile::builder::FlowState;
11use crate::compile::ir::{HydroNode, HydroSource};
12#[cfg(stageleft_runtime)]
13use crate::forward_handle::{CycleCollection, CycleCollectionWithInitial};
14use crate::forward_handle::{ForwardHandle, ForwardRef, TickCycle, TickCycleHandle};
15use crate::live_collections::boundedness::Bounded;
16use crate::live_collections::optional::Optional;
17use crate::live_collections::singleton::Singleton;
18use crate::live_collections::stream::{ExactlyOnce, Stream, TotalOrder};
19use crate::nondet::nondet;
20
21#[sealed]
22pub trait NoTick {}
23#[sealed]
24impl<T> NoTick for Process<'_, T> {}
25#[sealed]
26impl<T> NoTick for Cluster<'_, T> {}
27
28#[sealed]
29pub trait NoAtomic {}
30#[sealed]
31impl<T> NoAtomic for Process<'_, T> {}
32#[sealed]
33impl<T> NoAtomic for Cluster<'_, T> {}
34#[sealed]
35impl<'a, L> NoAtomic for Tick<L> where L: Location<'a> {}
36
37#[derive(Clone)]
38pub struct Atomic<Loc> {
39    pub(crate) tick: Tick<Loc>,
40}
41
42impl<L: DynLocation> DynLocation for Atomic<L> {
43    fn id(&self) -> LocationId {
44        self.tick.id()
45    }
46
47    fn flow_state(&self) -> &FlowState {
48        self.tick.flow_state()
49    }
50
51    fn is_top_level() -> bool {
52        L::is_top_level()
53    }
54}
55
56impl<'a, L> Location<'a> for Atomic<L>
57where
58    L: Location<'a>,
59{
60    type Root = L::Root;
61
62    fn root(&self) -> Self::Root {
63        self.tick.root()
64    }
65}
66
67#[sealed]
68impl<L> NoTick for Atomic<L> {}
69
70pub trait DeferTick {
71    fn defer_tick(self) -> Self;
72}
73
74/// Marks the stream as being inside the single global clock domain.
75#[derive(Clone)]
76pub struct Tick<L> {
77    pub(crate) id: usize,
78    pub(crate) l: L,
79}
80
81impl<L: DynLocation> DynLocation for Tick<L> {
82    fn id(&self) -> LocationId {
83        LocationId::Tick(self.id, Box::new(self.l.id()))
84    }
85
86    fn flow_state(&self) -> &FlowState {
87        self.l.flow_state()
88    }
89
90    fn is_top_level() -> bool {
91        false
92    }
93}
94
95impl<'a, L> Location<'a> for Tick<L>
96where
97    L: Location<'a>,
98{
99    type Root = L::Root;
100
101    fn root(&self) -> Self::Root {
102        self.l.root()
103    }
104}
105
106impl<'a, L> Tick<L>
107where
108    L: Location<'a>,
109{
110    pub fn outer(&self) -> &L {
111        &self.l
112    }
113
114    pub fn spin_batch(
115        &self,
116        batch_size: impl QuotedWithContext<'a, usize, L> + Copy + 'a,
117    ) -> Stream<(), Self, Bounded, TotalOrder, ExactlyOnce>
118    where
119        L: NoTick + NoAtomic,
120    {
121        let out = self
122            .l
123            .spin()
124            .flat_map_ordered(q!(move |_| 0..batch_size))
125            .map(q!(|_| ()));
126
127        out.batch(self, nondet!(/** at runtime, `spin` produces a single value per tick, so each batch is guaranteed to be the same size. */))
128    }
129
130    pub fn singleton<T>(&self, e: impl QuotedWithContext<'a, T, L>) -> Singleton<T, Self, Bounded>
131    where
132        T: Clone,
133        L: NoTick + NoAtomic,
134    {
135        self.outer().singleton(e).snapshot(
136            self,
137            nondet!(/** a top-level singleton produces the same value each tick */),
138        )
139    }
140
141    pub fn optional_first_tick<T: Clone>(
142        &self,
143        e: impl QuotedWithContext<'a, T, Tick<L>>,
144    ) -> Optional<T, Self, Bounded> {
145        let e_arr = q!([e]);
146        let e = e_arr.splice_untyped_ctx(self);
147
148        Optional::new(
149            self.clone(),
150            HydroNode::Source {
151                source: HydroSource::Iter(e.into()),
152                metadata: self.new_node_metadata::<T>(),
153            },
154        )
155    }
156
157    #[expect(
158        private_bounds,
159        reason = "only Hydro collections can implement ReceiverComplete"
160    )]
161    pub fn forward_ref<S>(&self) -> (ForwardHandle<'a, S>, S)
162    where
163        S: CycleCollection<'a, ForwardRef, Location = Self>,
164        L: NoTick,
165    {
166        let next_id = self.flow_state().borrow_mut().next_cycle_id();
167        let ident = syn::Ident::new(&format!("cycle_{}", next_id), Span::call_site());
168
169        (
170            ForwardHandle {
171                completed: false,
172                ident: ident.clone(),
173                expected_location: Location::id(self),
174                _phantom: PhantomData,
175            },
176            S::create_source(ident, self.clone()),
177        )
178    }
179
180    #[expect(
181        private_bounds,
182        reason = "only Hydro collections can implement ReceiverComplete"
183    )]
184    pub fn cycle<S>(&self) -> (TickCycleHandle<'a, S>, S)
185    where
186        S: CycleCollection<'a, TickCycle, Location = Self> + DeferTick,
187        L: NoTick,
188    {
189        let next_id = self.flow_state().borrow_mut().next_cycle_id();
190        let ident = syn::Ident::new(&format!("cycle_{}", next_id), Span::call_site());
191
192        (
193            TickCycleHandle {
194                completed: false,
195                ident: ident.clone(),
196                expected_location: Location::id(self),
197                _phantom: PhantomData,
198            },
199            S::create_source(ident, self.clone()).defer_tick(),
200        )
201    }
202
203    #[expect(
204        private_bounds,
205        reason = "only Hydro collections can implement ReceiverComplete"
206    )]
207    pub fn cycle_with_initial<S>(&self, initial: S) -> (TickCycleHandle<'a, S>, S)
208    where
209        S: CycleCollectionWithInitial<'a, TickCycle, Location = Self>,
210        L: NoTick,
211    {
212        let next_id = self.flow_state().borrow_mut().next_cycle_id();
213        let ident = syn::Ident::new(&format!("cycle_{}", next_id), Span::call_site());
214
215        (
216            TickCycleHandle {
217                completed: false,
218                ident: ident.clone(),
219                expected_location: Location::id(self),
220                _phantom: PhantomData,
221            },
222            // no need to defer_tick, create_source_with_initial does it for us
223            S::create_source_with_initial(ident, initial, self.clone()),
224        )
225    }
226}