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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
//! This module contains signals that are created using functions in the main signal trait.

use super::Signal;
use core::cmp;
use core::marker::PhantomData;
use core::ops;

macro_rules! signal_for_bin_op {
    ($name:tt, $f:tt) => {
        #[derive(Clone)]
        pub struct $name<L, R> {
            pub(super) left: L,
            pub(super) right: R,
        }

        impl<L, R> Signal for $name<L, R>
        where
            L: Signal,
            R: Signal,
            L::Type: ops::$name<R::Type>,
        {
            type Type = <L::Type as ops::$name<R::Type>>::Output;

            #[inline]
            fn next(&mut self) -> Self::Type {
                ops::$name::$f(self.left.next(), self.right.next())
            }
        }
    };
}

signal_for_bin_op!(Add, add);
signal_for_bin_op!(Sub, sub);
signal_for_bin_op!(Mul, mul);
signal_for_bin_op!(Div, div);
signal_for_bin_op!(Rem, rem);
signal_for_bin_op!(BitAnd, bitand);
signal_for_bin_op!(BitOr, bitor);
signal_for_bin_op!(BitXor, bitxor);
signal_for_bin_op!(Shr, shr);
signal_for_bin_op!(Shl, shl);

/// Negates a signal.
#[derive(Clone)]
pub struct Neg<S> {
    pub(super) signal: S,
}

impl<S> Signal for Neg<S>
where
    S: Signal,
    S::Type: ops::Neg,
{
    type Type = <S::Type as ops::Neg>::Output;

    #[inline]
    fn next(&mut self) -> Self::Type {
        ops::Neg::neg(self.signal.next())
    }
}

/// Returns the minimum of two signals,
#[derive(Clone)]
pub struct Min<A, B> {
    pub(super) a: A,
    pub(super) b: B,
}

impl<A, B> Signal for Min<A, B>
where
    A: Signal,
    B: Signal<Type = A::Type>,
    A::Type: Ord,
{
    type Type = A::Type;

    fn next(&mut self) -> Self::Type {
        let a = self.a.next();
        let b = self.b.next();

        if a < b {
            a
        } else {
            b
        }
    }
}

/// Returns the maximum of two signals,
#[derive(Clone)]
pub struct Max<A, B> {
    pub(super) a: A,
    pub(super) b: B,
}

impl<A, B> Signal for Max<A, B>
where
    A: Signal,
    B: Signal<Type = A::Type>,
    A::Type: Ord,
{
    type Type = A::Type;

    fn next(&mut self) -> Self::Type {
        let a = self.a.next();
        let b = self.b.next();

        if a > b {
            a
        } else {
            b
        }
    }
}

/// Clamps the values of `S` between `Min` and `Max`.
#[derive(Clone)]
pub struct Clamp<S, Min, Max> {
    pub(super) signal: S,
    pub(super) min: Min,
    pub(super) max: Max,
}

impl<S, Min, Max> Signal for Clamp<S, Min, Max>
where
    S: Signal,
    Min: Signal<Type = S::Type>,
    Max: Signal<Type = S::Type>,
    S::Type: cmp::Ord,
{
    type Type = S::Type;

    fn next(&mut self) -> Self::Type {
        let val = self.signal.next();
        let min = self.min.next();
        let max = self.max.next();

        if val < min {
            min
        } else if val > max {
            max
        } else {
            val
        }
    }
}

/// Maps a signal to another using a function.
#[derive(Clone)]
pub struct Map<S, F> {
    pub(super) signal: S,
    pub(super) map: F,
}

impl<S, F, T> Signal for Map<S, F>
where
    S: Signal,
    F: FnMut(S::Type) -> T,
{
    type Type = T;

    #[inline]
    fn next(&mut self) -> Self::Type {
        (self.map)(self.signal.next())
    }
}

#[derive(Clone)]
pub struct Filter<S, F> {
    pub(super) signal: S,
    pub(super) predicate: F,
}

impl<S, F> Signal for Filter<S, F>
where
    S: Signal,
    F: FnMut(&S::Type) -> bool,
{
    type Type = S::Type;

    fn next(&mut self) -> Self::Type {
        let mut candidate = self.signal.next();

        while !(self.predicate)(&candidate) {
            candidate = self.signal.next();
        }

        candidate
    }
}

#[derive(Clone)]
pub struct FilterMap<S, F> {
    pub(super) signal: S,
    pub(super) predicate: F,
}

impl<S, F, T> Signal for FilterMap<S, F>
where
    S: Signal,
    F: FnMut(S::Type) -> Option<T>,
{
    type Type = T;

    fn next(&mut self) -> Self::Type {
        loop {
            match (self.predicate)(self.signal.next()) {
                Some(value) => return value,
                None => continue,
            }
        }
    }
}

/// Clones the values of a signal. It is useful to turn a `Signal<Type = &T>` into a
/// `Signal<Type = T>`.
#[derive(Clone)]
pub struct Cloned<S> {
    pub(super) signal: S,
}

impl<'a, S, T> Signal for Cloned<S>
where
    T: 'a + Clone,
    S: Signal<Type = &'a T>,
{
    type Type = T;

    #[inline]
    fn next(&mut self) -> Self::Type {
        self.signal.next().clone()
    }
}

/// A signal that calls a function with a reference to each value before yielding it.
#[derive(Clone)]
pub struct Inspect<S, F> {
    pub(super) signal: S,
    pub(super) inspect: F,
}

impl<S, F> Signal for Inspect<S, F>
where
    S: Signal,
    F: FnMut(&S::Type),
{
    type Type = S::Type;

    #[inline]
    fn next(&mut self) -> Self::Type {
        let result = self.signal.next();
        (self.inspect)(&result);
        result
    }
}

/// An signal that yield the values of two other signals.
#[derive(Clone)]
pub struct Zip<A, B> {
    pub(super) a: A,
    pub(super) b: B,
}

impl<A, B> Signal for Zip<A, B>
where
    A: Signal,
    B: Signal,
{
    type Type = (A::Type, B::Type);

    #[inline]
    fn next(&mut self) -> Self::Type {
        (self.a.next(), self.b.next())
    }
}

/// Uses the `Into` trait to turn an signal into another.
#[derive(Clone)]
pub struct Into<S, T> {
    pub(super) signal: S,
    pub(super) _target: PhantomData<T>,
}

impl<S, T> Signal for Into<S, T>
where
    S: Signal,
    S::Type: core::convert::Into<T>,
{
    type Type = T;

    #[inline]
    fn next(&mut self) -> Self::Type {
        self.signal.next().into()
    }
}

/// Skips the values of a signal.
#[derive(Clone)]
pub struct Skip<S> {
    pub(super) signal: S,
    pub(super) n: usize,
}

impl<S> Signal for Skip<S>
where
    S: Signal,
{
    type Type = S::Type;

    fn next(&mut self) -> Self::Type {
        if self.n == 0 {
            self.signal.next()
        } else {
            for _ in 0..self.n {
                self.signal.next();
            }

            self.n = 0;

            self.signal.next()
        }
    }
}

/// An iterator that yield the values of a signal.
#[derive(Clone)]
pub struct IntoIter<S> {
    pub(super) signal: S,
}

impl<S> Iterator for IntoIter<S>
where
    S: Signal,
{
    type Item = S::Type;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        Some(self.signal.next())
    }
}