1use fidl_fuchsia_update::{MonitorRequest, MonitorRequestStream};
6use fidl_fuchsia_update_ext::State;
7use futures::prelude::*;
8use std::io::Write;
9
10fn print_state(state: &State) {
11 if termion::is_tty(&std::io::stdout()) {
12 print!("\r{}\x1b[K", state);
13 if state.is_terminal() {
14 println!();
15 }
16 } else {
17 println!("State: {state:?}")
18 }
19 std::io::stdout().flush().unwrap();
20}
21
22pub async fn monitor_state(mut stream: MonitorRequestStream) -> Result<(), anyhow::Error> {
23 while let Some(event) = stream.try_next().await? {
24 match event {
25 MonitorRequest::OnState { state, responder } => {
26 responder.send()?;
27
28 let state = State::from(state);
29
30 if state.is_error() {
32 anyhow::bail!("Update failed: {:?}", state)
33 } else {
34 print_state(&state);
35 }
36 }
37 }
38 }
39 Ok(())
40}