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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
use std::hash::Hash;
use crate::{core, CountMap, Input, Observable, Op, Output, Relation};
use self::pipe::{OrderedPipe, Pipe};
use super::context::CreationContext;
mod checked_foreach;
mod pipe;
pub struct FeedbackWhile<'a, C: Op>
where
C::D: Eq + Hash,
{
output: Output<C::D, C>,
input: Input<'a, C::D>,
}
pub struct Feedback<'a, C: Op> {
#[allow(clippy::type_complexity)]
output: Output<C::D, C, Pipe<(C::D, isize)>>,
input: Input<'a, C::D>,
}
pub struct FeedbackOrdered<'a, K: Ord, V: Eq + Hash, C: Op<D = (K, V)>> {
output: Output<(K, V), C, OrderedPipe<K, V>>,
input: Input<'a, V>,
}
pub struct Interrupter<C: Op, M: CountMap<C::D>, F: Fn(&M) -> I, I> {
output: Output<C::D, C, M>,
f: F,
}
pub(crate) trait IsFeeder<'a, I> {
fn feed(&mut self, context: &core::ExecutionContext<'a>) -> Instruct<I>;
}
pub(crate) trait IsFeedback<'a, I>: IsFeeder<'a, I> {
fn add_listener(&mut self, context: &core::CreationContext, f: impl FnMut() + 'static);
}
pub enum Instruct<I> {
Unchanged,
Changed,
Interrupt(I),
}
impl<'a, C: Op, I> IsFeeder<'a, I> for FeedbackWhile<'a, C>
where
C::D: Clone + Eq + Hash + 'a,
{
fn feed(&mut self, context: &core::ExecutionContext) -> Instruct<I> {
let m = self.output.get(context);
if m.is_empty() {
Instruct::Unchanged
} else {
self.input.send_all(
context,
m.iter().map(|(x, &count)| (x.clone(), count)).collect(),
);
Instruct::Changed
}
}
}
impl<'a, C: Op, I> IsFeedback<'a, I> for FeedbackWhile<'a, C>
where
C::D: Clone + Eq + Hash + 'a,
{
fn add_listener(&mut self, context: &core::CreationContext, f: impl FnMut() + 'static) {
self.output.add_listener(context, f);
}
}
impl<'a, C: Op, I> IsFeeder<'a, I> for Feedback<'a, C> {
fn feed(&mut self, context: &core::ExecutionContext<'a>) -> Instruct<I> {
let m = self.output.get(context);
let changes = m.receive();
if changes.is_empty() {
Instruct::Unchanged
} else {
self.input.send_all(context, changes);
Instruct::Changed
}
}
}
impl<'a, C: Op, I> IsFeedback<'a, I> for Feedback<'a, C> {
fn add_listener(&mut self, context: &core::CreationContext, f: impl FnMut() + 'static) {
self.output.add_listener(context, f);
}
}
impl<'a, K: Clone + Ord, V: Eq + Hash, C: Op<D = (K, V)>, I> IsFeeder<'a, I>
for FeedbackOrdered<'a, K, V, C>
{
fn feed(&mut self, context: &core::ExecutionContext<'a>) -> Instruct<I> {
let m = self.output.get(context);
match m.receive() {
None => Instruct::Unchanged,
Some((_, changes)) => {
self.input.send_all(context, changes.into_iter().collect());
Instruct::Changed
}
}
}
}
impl<'a, K: Clone + Ord, V: Eq + Hash, C: Op<D = (K, V)>, I> IsFeedback<'a, I>
for FeedbackOrdered<'a, K, V, C>
{
fn add_listener(&mut self, context: &core::CreationContext, f: impl FnMut() + 'static) {
self.output.add_listener(context, f);
}
}
impl<'a, C: Op, M: CountMap<C::D> + Observable, F: Fn(&M) -> I, I> IsFeeder<'a, I>
for Interrupter<C, M, F, I>
{
fn feed(&mut self, context: &core::ExecutionContext<'a>) -> Instruct<I> {
let m = self.output.get(context);
if m.is_empty() {
Instruct::Unchanged
} else {
Instruct::Interrupt((self.f)(&*m))
}
}
}
impl<'a, C: Op, M: CountMap<C::D> + Observable, F: Fn(&M) -> I, I> IsFeedback<'a, I>
for Interrupter<C, M, F, I>
{
fn add_listener(&mut self, context: &core::CreationContext, f: impl FnMut() + 'static) {
self.output.add_listener(context, f);
}
}
impl<'a, I> CreationContext<'a, I> {
pub fn feed<D>(&mut self, rel: Relation<impl Op<D = D> + 'a>, input: Input<'a, D>) {
let edge = (rel.tracking_index(), input.tracking_index());
self.add_feeder(
Feedback {
output: rel.into_output_(self),
input,
},
Some(edge),
)
}
pub fn feed_ordered<K: Clone + Ord + 'a, V: Eq + Hash + 'a>(
&mut self,
rel: Relation<impl Op<D = (K, V)> + 'a>,
input: Input<'a, V>,
) {
let edge = (rel.tracking_index(), input.tracking_index());
self.add_feeder(
FeedbackOrdered {
output: rel.into_output_(self),
input,
},
Some(edge),
)
}
pub fn interrupt<D, M: CountMap<D> + Observable + 'a>(
&mut self,
output: Output<D, impl Op<D = D> + 'a, M>,
f: impl Fn(&M) -> I + 'a,
) where
I: 'a,
{
self.add_feeder(Interrupter { output, f }, None)
}
pub fn feed_while<D: Clone + Eq + Hash + 'a>(
&mut self,
output: Output<D, impl Op<D = D> + 'a>,
input: Input<'a, D>,
) {
let edge = (output.tracking_index(), input.tracking_index());
self.add_feeder(FeedbackWhile { output, input }, Some(edge))
}
}