system_update_configurator/
main.rs1#![deny(missing_docs)]
6#![allow(clippy::let_unit_value)]
7#![allow(clippy::type_complexity)]
8
9use anyhow::{Context, Error};
13use fuchsia_component::server::ServiceFs;
14use log::{error, info};
15
16pub mod bridge;
17mod health;
18mod service;
19
20#[fuchsia::main(logging = true)]
23pub async fn main() -> Result<(), Error> {
24 info!("starting system-update-configurator");
25
26 if let Err(e) = run().await {
27 error!("error running system-update-configurator: {e:#}")
28 }
29
30 info!("shutting down system-update-configurator");
31 Ok(())
32}
33
34async fn run() -> Result<(), Error> {
35 let inspector = fuchsia_inspect::Inspector::default();
36 let _inspect_server_task =
37 inspect_runtime::publish(&inspector, inspect_runtime::PublishOptions::default());
38 let health_status = health::HealthStatus::new(inspector.root());
39
40 let mut fs: service::Fs = ServiceFs::new_local();
41 fs.take_and_serve_directory_handle().context("while taking outdir handle")?;
42
43 let storage = bridge::OptOutStorage;
44
45 let mut storage = health_status.wrap_bridge(storage);
46
47 service::serve(fs, &mut storage).await;
48
49 Ok(())
50}