pictorus-blocks 0.0.0

Implementations of Pictorus blocks.
Documentation
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
use pictorus_block_data::{BlockData as OldBlockData, FromPass};
use pictorus_traits::{HasIc, Matrix, Pass, PassBy, ProcessBlock, Scalar};
use strum::EnumString;

/// Detects whether the input value has changed.
///
/// This block only accepts a single input edge.
/// The edge can optionally be a Matrix, in that case the change detection
/// operation is performed element wise and the output is a Matrix of the
/// same size as the input.
///
/// The block can detect 3 different "modes" of change:
///  - Rising: Only triggers if the input value got larger
///  - Falling: Only triggers if the input value got smaller
///  - Any: Triggers if the input value changed at all
///
/// The first execution of this block has no value to compare with
/// so it will always emit `false`
pub struct ChangeDetectionBlock<T: Apply> {
    pub data: OldBlockData,
    buffer: Option<T::Output>,
    last_input: Option<T>,
}

impl<T> Default for ChangeDetectionBlock<T>
where
    T: Apply,
    OldBlockData: FromPass<T::Output>,
{
    fn default() -> Self {
        Self {
            data: <OldBlockData as FromPass<T::Output>>::from_pass(T::Output::default().as_by()),
            buffer: None,
            last_input: None,
        }
    }
}

impl<T> HasIc for ChangeDetectionBlock<T>
where
    T: Apply,
    OldBlockData: FromPass<T::Output>,
{
    fn new(parameters: &Self::Parameters) -> Self {
        ChangeDetectionBlock::<T> {
            buffer: Some(T::Output::default()),
            data: <OldBlockData as FromPass<T::Output>>::from_pass(T::Output::default().as_by()),
            last_input: Some(parameters.ic),
        }
    }
}

impl<T> ProcessBlock for ChangeDetectionBlock<T>
where
    T: Apply,
    OldBlockData: FromPass<T::Output>,
{
    type Inputs = T;
    type Output = T::Output;
    type Parameters = Parameters<T>;

    fn process<'b>(
        &'b mut self,
        parameters: &Self::Parameters,
        _context: &dyn pictorus_traits::Context,
        inputs: PassBy<'_, Self::Inputs>,
    ) -> PassBy<'b, Self::Output> {
        let output = T::apply(&mut self.buffer, inputs, parameters, &mut self.last_input);
        self.data = OldBlockData::from_pass(output);
        output
    }
}

pub trait Apply: Pass + Sized + Copy {
    type Output: Pass + Default;

    fn apply<'s>(
        store: &'s mut Option<Self::Output>,
        input: PassBy<Self>,
        params: &Parameters<Self>,
        last_input: &mut Option<Self>,
    ) -> PassBy<'s, Self::Output>;
}

impl<C: ChangeDetect> Apply for C {
    type Output = f64;

    fn apply<'s>(
        store: &'s mut Option<Self::Output>,
        input: PassBy<Self>,
        params: &Parameters<Self>,
        last_input: &mut Option<Self>,
    ) -> PassBy<'s, Self::Output> {
        // Store a copy of input in `last_input` while grabbing what was there as `old_last_input`
        let old_last_input = last_input.replace(input);
        let old_last_input = old_last_input.unwrap_or(params.ic);
        let res = Self::change_detect(input, old_last_input, params.change_mode);
        *store = Some(res);
        res.as_by()
    }
}

impl<const NROWS: usize, const NCOLS: usize, C: ChangeDetect> Apply for Matrix<NROWS, NCOLS, C> {
    type Output = Matrix<NROWS, NCOLS, f64>;

    fn apply<'s>(
        store: &'s mut Option<Self::Output>,
        input: PassBy<Self>,
        params: &Parameters<Self>,
        last_input: &mut Option<Self>,
    ) -> PassBy<'s, Self::Output> {
        // Store a copy of input in `last_input` while grabbing what was there as `old_last_input`
        let old_last_input = last_input.replace(*input);
        let old_last_input = old_last_input.unwrap_or(params.ic);
        // Initialize Output to a Zeroed (i.e. all `false`) state.
        let output = store.insert(Matrix::zeroed());
        // Make a immutable iterator of each element of `input` and `old_last_input`

        let inputs = input
            .data
            .as_flattened()
            .iter()
            .zip(old_last_input.data.as_flattened().iter());
        // Zip that iterator with a mutable iterator over the output matrix
        // and then perform the operation on each set of three values
        output
            .data
            .as_flattened_mut()
            .iter_mut()
            .zip(inputs)
            .for_each(|(output, (lh, rh))| {
                *output = C::change_detect(*lh, *rh, params.change_mode)
            });
        output
    }
}

trait ChangeDetect: Scalar + for<'a> Pass<By<'a> = Self> + PartialEq + PartialOrd {
    fn change_detect(left_hand: PassBy<Self>, right_hand: PassBy<Self>, mode: ChangeMode) -> f64 {
        let bool_output = match mode {
            ChangeMode::Any => left_hand != right_hand,
            ChangeMode::Rising => left_hand > right_hand,
            ChangeMode::Falling => left_hand < right_hand,
        };
        if bool_output {
            1.0
        } else {
            0.0
        }
    }
}

impl ChangeDetect for bool {}
impl ChangeDetect for u8 {}
impl ChangeDetect for i8 {}
impl ChangeDetect for u16 {}
impl ChangeDetect for i16 {}
impl ChangeDetect for u32 {}
impl ChangeDetect for i32 {}
impl ChangeDetect for f32 {}
impl ChangeDetect for f64 {}

#[derive(Debug, Clone, Copy, PartialEq, Eq, EnumString)]
/// Represents the mode of change detection.
pub enum ChangeMode {
    /// Detects any change, whether rising or falling.
    Any,
    /// Detects only rising changes (i.e., when the value increases).
    Rising,
    /// Detects only falling changes (i.e., when the value decreases).
    Falling,
}

pub struct Parameters<T> {
    ic: T,
    change_mode: ChangeMode,
}

impl<T> Parameters<T> {
    pub fn new(ic: T, change_mode: &str) -> Self {
        let change_mode = change_mode.parse().expect("Failed to parse ChangeMode");
        Self { ic, change_mode }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::testing::StubContext;
    use crate::traits::Scalar as _;
    use paste::paste;

    macro_rules! test_scalars {
        ($type:ty) => {
            paste! {
                #[test]
                fn [<test_scalar_rising_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new([<1 $type>], "Rising");
                    let mut block = ChangeDetectionBlock::<$type>::default();

                    // No change - false
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(!output.is_truthy());

                    //Falling -false
                    let output = block.process(&params, &context, [<0 $type>]);
                    assert!(!output.is_truthy());

                    // Rising - true
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(output.is_truthy());
                }

                #[test]
                fn [<test_scalar_falling_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new([<1 $type>], "Falling");
                    let mut block = ChangeDetectionBlock::<$type>::default();

                    // No change - false
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(!output.is_truthy());

                    //Falling -true
                    let output = block.process(&params, &context, [<0 $type>]);
                    assert!(output.is_truthy());

                    // Rising - false
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(!output.is_truthy());
                }


                #[test]
                fn [<test_scalar_any_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new([<1 $type>], "Any");
                    let mut block = ChangeDetectionBlock::<$type>::default();

                    // No change - false
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(!output.is_truthy());

                    //Falling -true
                    let output = block.process(&params, &context, [<0 $type>]);
                    assert!(output.is_truthy());

                    // Rising - true
                    let output = block.process(&params, &context, [<1 $type>]);
                    assert!(output.is_truthy());
                }
            }
        };
    }

    test_scalars!(u8);
    test_scalars!(i8);
    test_scalars!(u16);
    test_scalars!(i16);
    test_scalars!(u32);
    test_scalars!(i32);
    test_scalars!(f32);
    test_scalars!(f64);

    macro_rules! test_matrix {
        ($type:ty) => {
            paste! {
                #[test]
                fn [<test_matrix_falling_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new(Matrix{data: [[[<42 $type>]; 8]; 11],}, "Falling");
                    let mut block = ChangeDetectionBlock::<Matrix<8, 11, $type>>::default();

                    let input = Matrix {
                        data: [[[<42 $type>]; 8]; 11],
                    };

                    // No change
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    // Falling for all values
                    let input = Matrix {
                        data: [[[<1 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(
                        output,
                        &Matrix {
                            data: [[1.0; 8]; 11]
                        }
                    );

                    //Rising all values
                    let mut input = Matrix {
                        data: [[[<11 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    // Falling just one element
                    input.data[3][5] = [<4 $type>];
                    let mut expected_output = Matrix::zeroed();
                    expected_output.data[3][5] = 1.0;
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &expected_output);

                    // Rising just one element
                    input.data[6][2] = [<42 $type>];
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());
                }

                #[test]
                fn [<test_matrix_rising_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new(Matrix{data: [[[<42 $type>]; 8]; 11],}, "Rising");
                    let mut block = ChangeDetectionBlock::<Matrix<8, 11, $type>>::default();

                    let input = Matrix {
                        data: [[[<42 $type>]; 8]; 11],
                    };

                    // No change
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    // Falling for all values
                    let input = Matrix {
                        data: [[[<1 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    //Rising all values
                    let mut input = Matrix {
                        data: [[[<11 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(
                        output,
                        &Matrix {
                            data: [[1.0; 8]; 11]
                        }
                    );

                    // Falling just one element
                    input.data[3][5] = [<4 $type>];
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    // Rising just one element
                    input.data[6][2] = [<42 $type>];
                    let mut expected_output = Matrix::zeroed();
                    expected_output.data[6][2] = 1.0;
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &expected_output);
                }

                #[test]
                fn [<test_matrix_any_ $type>]() {
                    let context = StubContext::default();
                    let params = Parameters::new(Matrix{data: [[[<42 $type>]; 8]; 11],}, "Any");
                    let mut block = ChangeDetectionBlock::<Matrix<8, 11, $type>>::default();

                    let input = Matrix {
                        data: [[[<42 $type>]; 8]; 11],
                    };

                    // No change
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &Matrix::zeroed());

                    // Falling for all values
                    let input = Matrix {
                        data: [[[<1 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(
                        output,
                        &Matrix {
                            data: [[1.0; 8]; 11]
                        }
                    );

                    //Rising all values
                    let mut input = Matrix {
                        data: [[[<11 $type>]; 8]; 11],
                    };
                    let output = block.process(&params, &context, &input);
                    assert_eq!(
                        output,
                        &Matrix {
                            data: [[1.0; 8]; 11]
                        }
                    );

                    // Falling just one element
                    input.data[3][5] = [<4 $type>];
                    let mut expected_output = Matrix::zeroed();
                    expected_output.data[3][5] = 1.0;
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &expected_output);

                    // Rising just one element
                    input.data[6][2] = [<42 $type>];
                    let mut expected_output = Matrix::zeroed();
                    expected_output.data[6][2] = 1.0;
                    let output = block.process(&params, &context, &input);
                    assert_eq!(output, &expected_output);
                }
            }
        };
    }

    test_matrix!(u8);
    test_matrix!(i8);
    test_matrix!(u16);
    test_matrix!(i16);
    test_matrix!(u32);
    test_matrix!(i32);
    test_matrix!(f32);
    test_matrix!(f64);

    #[test]
    fn test_scalar_bool_any() {
        let context = StubContext::default();
        let params = Parameters::new(true, "Any");
        let mut block = ChangeDetectionBlock::<bool>::default();

        // No change
        let output = block.process(&params, &context, false);
        assert!(output.is_truthy());

        // Falling for all values
        let output = block.process(&params, &context, false);
        assert!(!output.is_truthy());

        //Rising all values
        let output = block.process(&params, &context, true);
        assert!(output.is_truthy());
    }

    #[test]
    fn test_scalar_bool_rising() {
        let context = StubContext::default();
        let params = Parameters::new(true, "Rising");
        let mut block = ChangeDetectionBlock::<bool>::default();

        // No change
        let output = block.process(&params, &context, true);
        assert!(!output.is_truthy());

        // Falling for all values
        let output = block.process(&params, &context, false);
        assert!(!output.is_truthy());

        //Rising all values
        let output = block.process(&params, &context, true);
        assert!(output.is_truthy());
    }

    #[test]
    fn test_scalar_bool_falling() {
        let context = StubContext::default();
        let params = Parameters::new(true, "Falling");
        let mut block = ChangeDetectionBlock::<bool>::default();

        // No change
        let output = block.process(&params, &context, true);
        assert!(!output.is_truthy());

        // Falling for all values
        let output = block.process(&params, &context, false);
        assert!(output.is_truthy());

        //Rising all values
        let output = block.process(&params, &context, true);
        assert!(!output.is_truthy());
    }
}