sl4f_lib/system_metrics/
commands.rs

1// Copyright 2021 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
5use 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}