update/
main.rs

1// Copyright 2019 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#![allow(clippy::let_unit_value)]
6
7use anyhow::Error;
8use fuchsia_async as fasync;
9
10mod args;
11mod channel;
12mod check;
13mod commit;
14mod install;
15mod monitor_state;
16mod monitor_updates;
17mod revert;
18
19async fn handle_cmd(cmd: args::Command) -> Result<(), Error> {
20    match cmd {
21        args::Command::Channel(args::Channel { cmd }) => {
22            crate::channel::handle_channel_control_cmd(cmd).await?;
23        }
24        args::Command::CheckNow(check_now) => {
25            crate::check::handle_check_now_cmd(check_now).await?;
26        }
27        args::Command::MonitorUpdates(_) => {
28            crate::monitor_updates::handle_monitor_updates_cmd().await?;
29        }
30        args::Command::ForceInstall(args) => {
31            crate::install::handle_force_install(
32                args.update_pkg_url,
33                args.reboot,
34                args.service_initiated,
35            )
36            .await?;
37        }
38        args::Command::WaitForCommit(_) => {
39            crate::commit::handle_wait_for_commit().await?;
40        }
41        args::Command::Revert(_) => {
42            crate::revert::handle_revert().await?;
43        }
44    }
45    Ok(())
46}
47
48pub fn main() -> Result<(), Error> {
49    let mut executor = fasync::LocalExecutor::new();
50    let args::Update { cmd } = argh::from_env();
51    executor.run_singlethreaded(handle_cmd(cmd))
52}