sl4f_lib/traceutil/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::server::Facade;
6use crate::traceutil::facade::TraceutilFacade;
7use crate::traceutil::types::TraceutilMethod;
8use anyhow::Error;
9use async_trait::async_trait;
10use serde_json::Value;
11
12#[async_trait(?Send)]
13impl Facade for TraceutilFacade {
14 async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
15 match method.parse()? {
16 TraceutilMethod::GetTraceFile => self.get_trace_file(args).await,
17 }
18 }
19}