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
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use crate::table::*;
use fidl_fuchsia_inspect as finspect;
use fidl_fuchsia_inspect_deprecated as fdeprecated;
use fuchsia_inspect::{
    self as inspect, ArithmeticArrayProperty, ArrayProperty, DoubleArrayProperty,
    DoubleExponentialHistogramProperty, DoubleLinearHistogramProperty, Inspector, IntArrayProperty,
    IntExponentialHistogramProperty, IntLinearHistogramProperty, Node, UintArrayProperty,
    UintExponentialHistogramProperty, UintLinearHistogramProperty,
};
use futures::FutureExt;
use std::ops::AddAssign;
use structopt::StructOpt;

pub mod deprecated_fidl_server;
pub mod table;

pub struct PopulateParams<T> {
    pub floor: T,
    pub step: T,
    pub count: usize,
}

pub fn populated<H: inspect::HistogramProperty>(histogram: H, params: PopulateParams<H::Type>) -> H
where
    H::Type: AddAssign + Copy,
{
    let mut value = params.floor;
    for _ in 0..params.count {
        histogram.insert(value);
        value += params.step;
    }
    histogram
}

#[derive(Debug, StructOpt, Default)]
#[structopt(
    name = "example",
    about = "Example component to showcase Inspect API objects, including an NxM nested table"
)]
pub struct Options {
    #[structopt(long)]
    pub rows: usize,

    #[structopt(long)]
    pub columns: usize,

    /// If set, publish a top-level number called "extra_number".
    #[structopt(long = "extra-number")]
    pub extra_number: Option<i64>,
}

#[derive(Default)]
pub struct ExampleInspectData {
    int_array: IntArrayProperty,
    uint_array: UintArrayProperty,
    double_array: DoubleArrayProperty,
    int_linear_hist: IntLinearHistogramProperty,
    uint_linear_hist: UintLinearHistogramProperty,
    double_linear_hist: DoubleLinearHistogramProperty,
    int_exp_hist: IntExponentialHistogramProperty,
    uint_exp_hist: UintExponentialHistogramProperty,
    double_exp_hist: DoubleExponentialHistogramProperty,
    table: Option<Table>,
}

impl ExampleInspectData {
    /// Allocates a collection of example inspect values for testing.
    ///
    /// The allocated data remains visible to other components until this object
    /// is dropped.
    pub fn write_to(&mut self, node: &Node) {
        // Changing the order of the function calls below also changes the generated
        // identifiers that are used for each piece of example inspect data.
        reset_unique_names();
        self.table.replace(new_example_table(node));
        self.int_array = new_example_int_array(node);
        self.uint_array = new_example_uint_array(node);
        self.double_array = new_example_double_array(node);
        self.int_linear_hist = new_example_int_linear_hist(node);
        self.uint_linear_hist = new_example_uint_linear_hist(node);
        self.double_linear_hist = new_example_double_linear_hist(node);
        self.int_exp_hist = new_example_int_exp_hist(node);
        self.uint_exp_hist = new_example_uint_exp_hist(node);
        self.double_exp_hist = new_example_double_exp_hist(node);

        // Lazy values are closures registered with the node, and don't need
        // to be held by this struct to avoid being dropped.
        new_example_lazy_double(node);
        new_example_lazy_uint(node);
    }

    /// Returns an example NodeObject that can used to test fuchsia.inspect.deprecated.inspect.
    pub fn has_node_object(&self) -> bool {
        self.table.is_some()
    }

    pub fn get_node_object(&self) -> NodeObject {
        self.table.as_ref().unwrap().get_node_object()
    }
}

pub async fn serve_deprecated_inspect(stream: fdeprecated::InspectRequestStream, node: NodeObject) {
    deprecated_fidl_server::spawn_inspect_server(stream, node);
}

pub async fn serve_inspect_tree(stream: finspect::TreeRequestStream, inspector: &Inspector) {
    let settings = inspect_runtime::TreeServerSendPreference::default();
    inspect_runtime::service::spawn_tree_server_with_stream(inspector.clone(), settings, stream)
        .await;
}

pub fn new_example_table(node: &Node) -> Table {
    let table_node_name = unique_name("table");
    Table::new(3, 3, &table_node_name, node.create_child(&table_node_name))
}

pub fn new_example_int_array(node: &Node) -> IntArrayProperty {
    let int_array = node.create_int_array(unique_name("array"), 3);
    int_array.set(0, 1);
    int_array.add(1, 10);
    int_array.subtract(2, 3);
    int_array
}

pub fn new_example_uint_array(node: &Node) -> UintArrayProperty {
    let uint_array = node.create_uint_array(unique_name("array"), 3);
    uint_array.set(0, 1u64);
    uint_array.add(1, 10);
    uint_array.set(2, 3u64);
    uint_array.subtract(2, 1);
    uint_array
}

pub fn new_example_double_array(node: &Node) -> DoubleArrayProperty {
    let double_array = node.create_double_array(unique_name("array"), 3);
    double_array.set(0, 0.25);
    double_array.add(1, 1.25);
    double_array.subtract(2, 0.75);
    double_array
}

pub fn new_example_int_linear_hist(node: &Node) -> IntLinearHistogramProperty {
    let hist = populated(
        node.create_int_linear_histogram(
            unique_name("histogram"),
            inspect::LinearHistogramParams { floor: -10, step_size: 5, buckets: 3 },
        ),
        PopulateParams { floor: -20, step: 1, count: 40 },
    );
    hist
}

pub fn new_example_uint_linear_hist(node: &Node) -> UintLinearHistogramProperty {
    let hist = populated(
        node.create_uint_linear_histogram(
            unique_name("histogram"),
            inspect::LinearHistogramParams { floor: 5, step_size: 5, buckets: 3 },
        ),
        PopulateParams { floor: 0, step: 1, count: 40 },
    );
    hist
}

pub fn new_example_double_linear_hist(node: &Node) -> DoubleLinearHistogramProperty {
    let hist = populated(
        node.create_double_linear_histogram(
            unique_name("histogram"),
            inspect::LinearHistogramParams { floor: 0.0, step_size: 0.5, buckets: 3 },
        ),
        PopulateParams { floor: -1.0, step: 0.1, count: 40 },
    );
    hist
}

pub fn new_example_int_exp_hist(node: &Node) -> IntExponentialHistogramProperty {
    let hist = populated(
        node.create_int_exponential_histogram(
            unique_name("histogram"),
            inspect::ExponentialHistogramParams {
                floor: -10,
                initial_step: 5,
                step_multiplier: 2,
                buckets: 3,
            },
        ),
        PopulateParams { floor: -20, step: 1, count: 40 },
    );
    hist
}

pub fn new_example_uint_exp_hist(node: &Node) -> UintExponentialHistogramProperty {
    let hist = populated(
        node.create_uint_exponential_histogram(
            unique_name("histogram"),
            inspect::ExponentialHistogramParams {
                floor: 0,
                initial_step: 1,
                step_multiplier: 2,
                buckets: 3,
            },
        ),
        PopulateParams { floor: 0, step: 1, count: 40 },
    );
    hist
}

pub fn new_example_double_exp_hist(node: &Node) -> DoubleExponentialHistogramProperty {
    let hist = populated(
        node.create_double_exponential_histogram(
            unique_name("histogram"),
            inspect::ExponentialHistogramParams {
                floor: 0.0,
                initial_step: 1.25,
                step_multiplier: 3.0,
                buckets: 5,
            },
        ),
        PopulateParams { floor: -1.0, step: 0.1, count: 40 },
    );
    hist
}

pub fn new_example_lazy_uint(node: &Node) {
    node.record_lazy_child("lazy-node", move || {
        async move {
            let inspector = inspect::Inspector::default();
            inspector.root().record_uint("uint", 3);
            Ok(inspector)
        }
        .boxed()
    });
}

pub fn new_example_lazy_double(node: &Node) {
    node.record_lazy_values("lazy-values", move || {
        async move {
            let inspector = inspect::Inspector::default();
            inspector.root().record_double("lazy-double", 3.25);
            Ok(inspector)
        }
        .boxed()
    });
}