sl4f_lib/logging/
commands.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
5use crate::logging::facade::LoggingFacade;
6use crate::logging::types::LoggingMethod;
7use crate::server::Facade;
8use anyhow::Error;
9use async_trait::async_trait;
10use serde_json::{to_value, Value};
11
12#[async_trait(?Send)]
13impl Facade for LoggingFacade {
14    async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
15        match LoggingMethod::from_str(&method) {
16            LoggingMethod::LogErr => {
17                let message = match args.get("message") {
18                    Some(m) => m.to_string(),
19                    None => return Err(format_err!("Expected a serde_json Value \'message\'.")),
20                };
21                let result = self.log_err(message).await?;
22                Ok(to_value(result)?)
23            }
24            LoggingMethod::LogInfo => {
25                let message = match args.get("message") {
26                    Some(m) => m.to_string(),
27                    None => return Err(format_err!("Expected a serde_json Value \'message\'.")),
28                };
29                let result = self.log_info(message).await?;
30                Ok(to_value(result)?)
31            }
32            LoggingMethod::LogWarn => {
33                let message = match args.get("message") {
34                    Some(m) => m.to_string(),
35                    None => return Err(format_err!("Expected a serde_json Value \'message\'.")),
36                };
37                let result = self.log_warn(message).await?;
38                Ok(to_value(result)?)
39            }
40            _ => return Err(format_err!("Invalid Logging Facade FIDL method: {:?}", method)),
41        }
42    }
43}