fuchsia_inspect/
lib.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! # fuchsia-inspect
6//!
7//! Components in Fuchsia may expose structured information about themselves conforming to the
8//! [Inspect API][inspect]. This crate is the core library for writing inspect data in Rust
9//! components.
10//!
11//! For a comprehensive guide on how to start using inspect, please refer to the
12//! [codelab].
13//!
14//! ## Library concepts
15//!
16//! There's two types of inspect values: nodes and properties. These have the following
17//! characteristics:
18//!
19//!   - A Node may have any number of key/value pairs called Properties.
20//!   - A Node may have any number of children, which are also Nodes.
21//!   - Properties and nodes are created under a parent node. Inspect is already initialized with a
22//!     root node.
23//!   - The key for a value in a Node is always a UTF-8 string, the value may be one of the
24//!     supported types (a node or a property of any type).
25//!   - Nodes and properties have strict ownership semantics. Whenever a node or property is
26//!     created, it is written to the backing [VMO][inspect-vmo] and whenever it is dropped it is
27//!     removed from the VMO.
28//!   - Inspection is best effort, if an error occurs, no panic will happen and nodes and properties
29//!     might become No-Ops. For example, when the VMO becomes full, any further creation of a
30//!     property or a node will result in no changes in the VMO and a silent failure. However,
31//!     mutation of existing properties in the VMO will continue to work.
32//!   - All nodes and properties are thread safe.
33//!
34//! ### Creating vs Recording
35//!
36//! There are two functions each for initializing nodes and properties:
37//!
38//!   - `create_*`: returns the created node/property and it's up to the caller to handle its
39//!     lifetime.
40//!   - `record_*`: creates the node/property but doesn't return it and ties its lifetime to
41//!     the node where the function was called.
42//!
43//! ### Lazy value support
44//!
45//! Lazy (or dynamic) values are values that are created on demand, this is, whenever they are read.
46//! Unlike regular nodes, they don't take any space on the VMO until a reader comes and requests
47//! its data.
48//!
49//! There's two ways of creating lazy values:
50//!
51//!   - **Lazy node**: creates a child node of root with the given name. The callback returns a
52//!     future for an [`Inspector`][inspector] whose root node is spliced into the parent node when
53//!     read.
54//!   - **Lazy values**: works like the previous one, except that all properties and nodes under the
55//!     future root node node are added directly as children of the parent node.
56//!
57//! ## Quickstart
58//!
59//! Add the following to your component main:
60//!
61//! ```rust
62//! use fuchsia_inspect::component;
63//! use inspect_runtime;
64//!
65//! let _inspect_server_task = inspect_runtime::publish(
66//!     component::inspector(),
67//!     inspect_runtime::PublishOptions::default(),
68//! );
69//!
70//! // Now you can create nodes and properties anywhere!
71//! let child = component::inspector().root().create_child("foo");
72//! child.record_uint("bar", 42);
73//! ```
74//!
75//! [inspect]: https://fuchsia.dev/fuchsia-src/development/diagnostics/inspect
76//! [codelab]: https://fuchsia.dev/fuchsia-src/development/diagnostics/inspect/codelab
77//! [inspect-vmo]: https://fuchsia.dev/fuchsia-src/reference/diagnostics/inspect/vmo-format
78//! [inspector]: Inspector
79
80#[cfg(target_os = "fuchsia")]
81pub mod component;
82pub mod health;
83pub mod reader;
84pub mod stats;
85mod writer;
86
87pub mod hierarchy {
88    pub use diagnostics_hierarchy::*;
89}
90
91pub use crate::state::Stats;
92pub use crate::writer::*;
93pub use diagnostics_hierarchy::{
94    DiagnosticsHierarchyGetter, ExponentialHistogramParams, LinearHistogramParams,
95};
96
97/// Directiory within the outgoing directory of a component where the diagnostics service should be
98/// added.
99pub const DIAGNOSTICS_DIR: &str = "diagnostics";