inspect_proto/
lib.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! A generic protobuf service for inspect.

// Crates used by generated code. Reference them explicitly to ensure that
// automated tools do not remove them.
#![expect(missing_docs)]

use mesh_rpc as _;
use prost as _;

include!(concat!(env!("OUT_DIR"), "/inspect.rs"));

/// Equivalent to [`InspectResponse`], but using [`inspect::Node`].
/// These have equivalent encodings.
#[derive(Debug, Clone, mesh::MeshPayload)]
pub struct InspectResponse2 {
    #[mesh(1)]
    pub result: inspect::Node,
}

/// Equivalent to [`InspectResponse`], but using [`inspect::Value`].
/// These have equivalent encodings.
#[derive(Debug, Clone, mesh::MeshPayload)]
pub struct UpdateResponse2 {
    #[mesh(1)]
    pub new_value: inspect::Value,
}

#[cfg(test)]
mod tests {
    use crate::InspectResponse;
    use crate::InspectResponse2;
    use inspect::Entry;
    use inspect::Error;
    use inspect::Node;
    use inspect::SensitivityLevel;
    use inspect::Value;
    use inspect::ValueKind;
    use mesh::Message;

    #[test]
    fn test() {
        let response2 = InspectResponse2 {
            result: Node::Dir(vec![
                Entry {
                    name: "a".to_string(),
                    node: Node::Unevaluated,
                    sensitivity: SensitivityLevel::Unspecified,
                },
                Entry {
                    name: "b".to_string(),
                    node: Node::Failed(Error::Update("foo".into())),
                    sensitivity: SensitivityLevel::Safe,
                },
                Entry {
                    name: "c".to_string(),
                    node: Node::Value(Value::new(ValueKind::Signed(-1))),
                    sensitivity: SensitivityLevel::Sensitive,
                },
                Entry {
                    name: "d".to_string(),
                    node: Node::Value(Value::new(ValueKind::Unsigned(2))),
                    sensitivity: SensitivityLevel::Safe,
                },
                Entry {
                    name: "e".to_string(),
                    node: Node::Value(Value::new(ValueKind::Bool(true))),
                    sensitivity: SensitivityLevel::Sensitive,
                },
                Entry {
                    name: "f".to_string(),
                    node: Node::Value(Value::new(ValueKind::String("foo".to_string()))),
                    sensitivity: SensitivityLevel::Unspecified,
                },
            ]),
        };

        let response = Message::new(response2.clone())
            .parse::<InspectResponse>()
            .unwrap();

        assert_eq!(
            Message::new(response)
                .parse::<InspectResponse2>()
                .unwrap()
                .result,
            response2.result
        );
    }
}