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
use Future;
use crateBlockMeta;
use crateMaybeSend;
use crateMessageOutputs;
use crateWorkIo;
use Result;
/// Processing logic for a block.
///
/// `Kernel` is the central trait custom block authors implement. The
/// `#[derive(Block)]` macro declares stream and message ports from annotated
/// fields and methods; the `Kernel` implementation supplies initialization,
/// work, and shutdown behavior.
///
/// ```
/// use futuresdr::runtime::dev::prelude::*;
///
/// #[derive(Block)]
/// struct Scale {
/// #[input]
/// input: DefaultCpuReader<f32>,
/// #[output]
/// output: DefaultCpuWriter<f32>,
/// gain: f32,
/// }
///
/// impl Kernel for Scale {
/// async fn work(
/// &mut self,
/// io: &mut WorkIo,
/// _mo: &mut MessageOutputs,
/// _meta: &mut BlockMeta,
/// ) -> Result<()> {
/// let input = self.input.slice();
/// let output = self.output.slice();
/// let n = input.len().min(output.len());
///
/// for i in 0..n {
/// output[i] = input[i] * self.gain;
/// }
///
/// self.input.consume(n);
/// self.output.produce(n);
///
/// if self.input.finished() {
/// io.finished = true;
/// }
///
/// Ok(())
/// }
/// }
/// ```