system_update_configurator/
main.rs

1// Copyright 2022 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#![deny(missing_docs)]
6#![allow(clippy::let_unit_value)]
7#![allow(clippy::type_complexity)]
8
9//! Component that implements the fuchsia.update.config.OptOut and
10//! fuchsia.update.config.OptOutAdmin protocols.
11
12use anyhow::{Context, Error};
13use fuchsia_component::server::ServiceFs;
14use log::{error, info};
15
16pub mod bridge;
17mod health;
18mod service;
19
20/// main() entry point to this binary that is actually a library aggregated with other binaries in
21/// the //src/sys/pkg/bin/grand-swd-binary.
22#[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}