rrtk 0.6.1

Rust Robotics ToolKit
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
// SPDX-License-Identifier: BSD-3-Clause
// Copyright 2024 UxuginPython
//!Streams that perform mathematical operations.
use crate::streams::*;
use core::mem::MaybeUninit;
//TODO: The behavior of SumStream and friends in relation to Ok(None) is maximally unhelpful for
//everyone. Either require Default and return that when all inputs return Ok(None) or return
//Ok(None) when any input returns Ok(None). This is the worst possible combination.
///A stream that adds all its inputs. If one input returns `Ok(None)`, it is excluded. If all inputs
///return `Ok(None)`, returns `Ok(None)`. If this is not the desired behavior, use
///[`NoneToValue`](converters::NoneToValue) or [`NoneToError`](converters::NoneToError).
///[`Sum2`] may also be a bit faster if you are only adding the outputs of two streams.
pub struct SumStream<T: AddAssign + Copy, const N: usize, E> {
    addends: [Reference<dyn Getter<T, E>>; N],
}
impl<T: AddAssign + Copy, const N: usize, E> SumStream<T, N, E> {
    ///Constructor for [`SumStream`].
    pub const fn new(addends: [Reference<dyn Getter<T, E>>; N]) -> Self {
        if N < 1 {
            panic!("rrtk::streams::SumStream must have at least one input stream");
        }
        Self { addends: addends }
    }
}
impl<T: AddAssign + Copy, const N: usize, E: Copy + Debug> Getter<T, E> for SumStream<T, N, E> {
    fn get(&self) -> Output<T, E> {
        //Err(...) -> return Err immediately
        //Ok(None) -> skip
        //Ok(Some(...)) -> add to value
        let mut outputs = [MaybeUninit::uninit(); N];
        //This is always equal to the index of the next uninitialized slot if there is one.
        let mut outputs_filled = 0;
        for i in &self.addends {
            match i.borrow().get()? {
                Some(x) => {
                    outputs[outputs_filled].write(x);
                    outputs_filled += 1;
                }
                None => (),
            }
        }
        if outputs_filled == 0 {
            return Ok(None);
        }
        //We can safely assume_init on outputs indexes within 0..outputs_filled.
        let (value, other_outputs) = outputs.split_at(1);
        unsafe {
            let mut value = value[0].assume_init();
            for i in 0..outputs_filled - 1 {
                value += other_outputs[i].assume_init();
            }
            Ok(Some(value))
        }
    }
}
impl<T: AddAssign + Copy, const N: usize, E: Copy + Debug> Updatable<E> for SumStream<T, N, E> {
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that adds two inputs. This should be a bit faster than [`SumStream`], which adds any
///number of inputs. If one inputs returns `Ok(None)`, the other input's output is returned. If
///both inputs return `Ok(None)`, returns `Ok(None)`. If this is not the desired behavior, use
///[`NoneToValue`](converters::NoneToValue) or [`NoneToError`](converters::NoneToError).
pub struct Sum2<
    T: Add<Output = T>,
    G1: Getter<T, E> + ?Sized,
    G2: Getter<T, E> + ?Sized,
    E: Copy + Debug,
> {
    addend1: Reference<G1>,
    addend2: Reference<G2>,
    phantom_t: PhantomData<T>,
    phantom_e: PhantomData<E>,
}
impl<T: Add<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Sum2<T, G1, G2, E>
{
    ///Constructor for [`Sum2`].
    pub const fn new(addend1: Reference<G1>, addend2: Reference<G2>) -> Self {
        Self {
            addend1: addend1,
            addend2: addend2,
            phantom_t: PhantomData,
            phantom_e: PhantomData,
        }
    }
}
impl<T: Add<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Getter<T, E> for Sum2<T, G1, G2, E>
{
    fn get(&self) -> Output<T, E> {
        let x = self.addend1.borrow().get()?;
        let x = match x {
            Some(x) => x,
            None => return self.addend2.borrow().get(),
        };
        let y = self.addend2.borrow().get()?;
        let y = match y {
            Some(y) => y,
            None => return Ok(Some(x)),
        };
        Ok(Some(x + y))
    }
}
impl<T: Add<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Updatable<E> for Sum2<T, G1, G2, E>
{
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that subtracts one of its inputs from the other. If the subtrahend stream returns
///`Ok(None)`, the minuend's value will be returned directly.
pub struct DifferenceStream<
    T: Sub<Output = T>,
    GM: Getter<T, E> + ?Sized,
    GS: Getter<T, E> + ?Sized,
    E: Copy + Debug,
> {
    minuend: Reference<GM>,
    subtrahend: Reference<GS>,
    phantom_t: PhantomData<T>,
    phantom_e: PhantomData<E>,
}
impl<T: Sub<Output = T>, GM: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    DifferenceStream<T, GM, GS, E>
{
    ///Constructor for [`DifferenceStream`].
    pub const fn new(minuend: Reference<GM>, subtrahend: Reference<GS>) -> Self {
        Self {
            minuend: minuend,
            subtrahend: subtrahend,
            phantom_t: PhantomData,
            phantom_e: PhantomData,
        }
    }
}
impl<T: Sub<Output = T>, GM: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    Getter<T, E> for DifferenceStream<T, GM, GS, E>
{
    fn get(&self) -> Output<T, E> {
        let minuend_output = self.minuend.borrow().get()?;
        let subtrahend_output = self.subtrahend.borrow().get()?;
        match minuend_output {
            Some(_) => {}
            None => {
                return Ok(None);
            }
        }
        let minuend_output = minuend_output.unwrap();
        match subtrahend_output {
            Some(_) => {}
            None => {
                return Ok(Some(minuend_output));
            }
        }
        let subtrahend_output = subtrahend_output.unwrap();
        let value = minuend_output.value - subtrahend_output.value;
        let time = if minuend_output.time > subtrahend_output.time {
            minuend_output.time
        } else {
            subtrahend_output.time
        };
        Ok(Some(Datum::new(time, value)))
    }
}
impl<T: Sub<Output = T>, GM: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    Updatable<E> for DifferenceStream<T, GM, GS, E>
{
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that multiplies its inputs. If an input returns `Ok(None)`, it is excluded from the
///calculation, effectively treating it as though it had returned 1. If this is not the desired
///behavior, use [`rrtk::streams::converters::NoneToValue`](streams::converters::NoneToValue) or
///[`rrtk::streams::converters::NoneToError`](streams::converters::NoneToError). [`Product2`] may
///also be a bit faster if you are only multiplying the outputs of two streams.
pub struct ProductStream<T: MulAssign + Copy, const N: usize, E> {
    factors: [Reference<dyn Getter<T, E>>; N],
}
impl<T: MulAssign + Copy, const N: usize, E> ProductStream<T, N, E> {
    ///Constructor for [`ProductStream`].
    pub const fn new(factors: [Reference<dyn Getter<T, E>>; N]) -> Self {
        if N < 1 {
            panic!("rrtk::streams::ProductStream must have at least one input stream");
        }
        Self { factors: factors }
    }
}
impl<T: MulAssign + Copy, const N: usize, E: Copy + Debug> Getter<T, E> for ProductStream<T, N, E> {
    fn get(&self) -> Output<T, E> {
        let mut outputs = [MaybeUninit::uninit(); N];
        let mut outputs_filled = 0;
        for i in &self.factors {
            match i.borrow().get()? {
                Some(x) => {
                    outputs[outputs_filled].write(x);
                    outputs_filled += 1;
                }
                None => (),
            }
        }
        if outputs_filled == 0 {
            return Ok(None);
        }
        let (value, other_outputs) = outputs.split_at(1);
        unsafe {
            let mut value = value[0].assume_init();
            for i in 0..outputs_filled - 1 {
                value *= other_outputs[i].assume_init();
            }
            Ok(Some(value))
        }
    }
}
impl<T: MulAssign + Copy, const N: usize, E: Copy + Debug> Updatable<E> for ProductStream<T, N, E> {
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that multiplies two inputs. It should be a bit faster than [`ProductStream`], which
///adds any number of inputs. If one input returns `Ok(None)`, returns the other input's output. If
///both inputs return `Ok(None)`, returns `Ok(None)`. If this is not the desired behavior, use
///[`NoneToValue`](converters::NoneToValue) or [`NoneToError`](converters::NoneToError).
pub struct Product2<
    T: Mul<Output = T>,
    G1: Getter<T, E> + ?Sized,
    G2: Getter<T, E> + ?Sized,
    E: Copy + Debug,
> {
    addend1: Reference<G1>,
    addend2: Reference<G2>,
    phantom_t: PhantomData<T>,
    phantom_e: PhantomData<E>,
}
impl<T: Mul<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Product2<T, G1, G2, E>
{
    ///Constructor for [`Product2`].
    pub const fn new(addend1: Reference<G1>, addend2: Reference<G2>) -> Self {
        Self {
            addend1: addend1,
            addend2: addend2,
            phantom_t: PhantomData,
            phantom_e: PhantomData,
        }
    }
}
impl<T: Mul<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Getter<T, E> for Product2<T, G1, G2, E>
{
    fn get(&self) -> Output<T, E> {
        let x = self.addend1.borrow().get()?;
        let x = match x {
            Some(x) => x,
            None => return self.addend2.borrow().get(),
        };
        let y = self.addend2.borrow().get()?;
        let y = match y {
            Some(y) => y,
            None => return Ok(Some(x)),
        };
        Ok(Some(x * y))
    }
}
impl<T: Mul<Output = T>, G1: Getter<T, E> + ?Sized, G2: Getter<T, E> + ?Sized, E: Copy + Debug>
    Updatable<E> for Product2<T, G1, G2, E>
{
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that divides one if its inputs by the other. If the divisor returns `Ok(None)`, the
///dividend's value is returned directly.
pub struct QuotientStream<
    T: Div<Output = T>,
    GD: Getter<T, E> + ?Sized,
    GS: Getter<T, E> + ?Sized,
    E: Copy + Debug,
> {
    dividend: Reference<GD>,
    divisor: Reference<GS>,
    phantom_t: PhantomData<T>,
    phantom_e: PhantomData<E>,
}
impl<T: Div<Output = T>, GD: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    QuotientStream<T, GD, GS, E>
{
    ///Constructor for [`QuotientStream`].
    pub const fn new(dividend: Reference<GD>, divisor: Reference<GS>) -> Self {
        Self {
            dividend: dividend,
            divisor: divisor,
            phantom_t: PhantomData,
            phantom_e: PhantomData,
        }
    }
}
impl<T: Div<Output = T>, GD: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    Getter<T, E> for QuotientStream<T, GD, GS, E>
{
    fn get(&self) -> Output<T, E> {
        let dividend_output = self.dividend.borrow().get()?;
        let divisor_output = self.divisor.borrow().get()?;
        match dividend_output {
            Some(_) => {}
            None => {
                return Ok(None);
            }
        }
        let dividend_output = dividend_output.unwrap();
        match divisor_output {
            Some(_) => {}
            None => {
                return Ok(Some(dividend_output));
            }
        }
        let divisor_output = divisor_output.unwrap();
        let value = dividend_output.value / divisor_output.value;
        let time = if dividend_output.time > divisor_output.time {
            dividend_output.time
        } else {
            divisor_output.time
        };
        Ok(Some(Datum::new(time, value)))
    }
}
impl<T: Div<Output = T>, GD: Getter<T, E> + ?Sized, GS: Getter<T, E> + ?Sized, E: Copy + Debug>
    Updatable<E> for QuotientStream<T, GD, GS, E>
{
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that exponentiates one of its inputs to the other. If the exponent input returns
///`Ok(None)`, the base's value is returned directly. Only available with `std`.
#[cfg(any(feature = "std", feature = "libm", feature = "micromath"))]
pub struct ExponentStream<GB: Getter<f32, E> + ?Sized, GE: Getter<f32, E> + ?Sized, E: Copy + Debug>
{
    base: Reference<GB>,
    exponent: Reference<GE>,
    phantom_e: PhantomData<E>,
}
#[cfg(any(feature = "std", feature = "libm", feature = "micromath"))]
impl<GB: Getter<f32, E> + ?Sized, GE: Getter<f32, E> + ?Sized, E: Copy + Debug>
    ExponentStream<GB, GE, E>
{
    ///Constructor for [`ExponentStream`].
    pub const fn new(base: Reference<GB>, exponent: Reference<GE>) -> Self {
        Self {
            base: base,
            exponent: exponent,
            phantom_e: PhantomData,
        }
    }
}
#[cfg(any(feature = "std", feature = "libm", feature = "micromath"))]
impl<GB: Getter<f32, E> + ?Sized, GE: Getter<f32, E> + ?Sized, E: Copy + Debug> Getter<f32, E>
    for ExponentStream<GB, GE, E>
{
    fn get(&self) -> Output<f32, E> {
        let base_output = self.base.borrow().get()?;
        let exponent_output = self.exponent.borrow().get()?;
        match base_output {
            Some(_) => {}
            None => {
                return Ok(None);
            }
        }
        let base_output = base_output.unwrap();
        match exponent_output {
            Some(_) => {}
            None => {
                return Ok(Some(base_output));
            }
        }
        let exponent_output = exponent_output.unwrap();
        let value = powf(base_output.value, exponent_output.value);
        let time = if base_output.time > exponent_output.time {
            base_output.time
        } else {
            exponent_output.time
        };
        Ok(Some(Datum::new(time, value)))
    }
}
#[cfg(any(feature = "std", feature = "libm", feature = "micromath"))]
impl<GB: Getter<f32, E> + ?Sized, GE: Getter<f32, E> + ?Sized, E: Copy + Debug> Updatable<E>
    for ExponentStream<GB, GE, E>
{
    fn update(&mut self) -> NothingOrError<E> {
        Ok(())
    }
}
///A stream that computes the numerical derivative of its input.
pub struct DerivativeStream<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> {
    input: Reference<G>,
    value: Output<Quantity, E>,
    //doesn't matter if this is an Err or Ok(None) - we can't use it either way if it's not Some
    prev_output: Option<Datum<Quantity>>,
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> DerivativeStream<G, E> {
    ///Constructor for [`DerivativeStream`].
    pub const fn new(input: Reference<G>) -> Self {
        Self {
            input: input,
            value: Ok(None),
            prev_output: None,
        }
    }
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> Getter<Quantity, E>
    for DerivativeStream<G, E>
{
    fn get(&self) -> Output<Quantity, E> {
        self.value.clone()
    }
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> Updatable<E> for DerivativeStream<G, E> {
    fn update(&mut self) -> NothingOrError<E> {
        let output = self.input.borrow().get();
        let output = match output {
            Ok(ok) => ok,
            Err(error) => {
                self.value = Err(error);
                self.prev_output = None;
                return Err(error);
            }
        };
        let output = match output {
            Some(some) => some,
            None => {
                self.value = Ok(None);
                self.prev_output = None;
                return Ok(());
            }
        };
        let prev_output = match self.prev_output {
            Some(some) => some,
            None => {
                self.prev_output = Some(output);
                return Ok(());
            }
        };
        let value =
            (output.value - prev_output.value) / Quantity::from(output.time - prev_output.time);
        self.value = Ok(Some(Datum::new(output.time, value)));
        self.prev_output = Some(output);
        Ok(())
    }
}
///A stream that computes the trapezoidal numerical integral of its input.
pub struct IntegralStream<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> {
    input: Reference<G>,
    value: Output<Quantity, E>,
    prev_output: Option<Datum<Quantity>>,
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> IntegralStream<G, E> {
    ///Constructor for [`IntegralStream`].
    pub const fn new(input: Reference<G>) -> Self {
        Self {
            input: input,
            value: Ok(None),
            prev_output: None,
        }
    }
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> Getter<Quantity, E>
    for IntegralStream<G, E>
{
    fn get(&self) -> Output<Quantity, E> {
        self.value.clone()
    }
}
impl<G: Getter<Quantity, E> + ?Sized, E: Copy + Debug> Updatable<E> for IntegralStream<G, E> {
    fn update(&mut self) -> NothingOrError<E> {
        let output = self.input.borrow().get();
        let output = match output {
            Ok(ok) => ok,
            Err(error) => {
                self.value = Err(error);
                self.prev_output = None;
                return Err(error);
            }
        };
        let output = match output {
            Some(some) => some,
            None => {
                self.value = Ok(None);
                self.prev_output = None;
                return Ok(());
            }
        };
        let prev_output = match self.prev_output {
            Some(some) => some,
            None => {
                self.prev_output = Some(output);
                return Ok(());
            }
        };
        let value_addend = Quantity::from(output.time - prev_output.time)
            * (prev_output.value + output.value)
            / Quantity::dimensionless(2.0);
        let value = match &self.value {
            Ok(Some(real_value)) => value_addend + real_value.value,
            _ => value_addend,
        };
        self.value = Ok(Some(Datum::new(output.time, value)));
        self.prev_output = Some(output);
        return Ok(());
    }
}