sl4f_lib/system_metrics/
commands.rs1use crate::server::Facade;
6use crate::system_metrics::facade::SystemMetricsFacade;
7use anyhow::{bail, Error};
8use async_trait::async_trait;
9use serde_json::{to_value, Value};
10
11#[async_trait(?Send)]
12impl Facade for SystemMetricsFacade {
13 async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
14 match method.as_ref() {
15 "StartLogging" => {
16 let result = self.start_logging(args).await?;
17 Ok(to_value(result)?)
18 }
19 "StartLoggingForever" => {
20 let result = self.start_logging_forever(args).await?;
21 Ok(to_value(result)?)
22 }
23 "StopLogging" => {
24 let result = self.stop_logging(args).await?;
25 Ok(to_value(result)?)
26 }
27 _ => bail!("Invalid SystemMetricsFacade FIDL method: {:?}", method),
28 }
29 }
30}