sl4f_lib/diagnostics/
types.rs

1// Copyright 2020 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 serde::{Deserialize, Serialize};
6
7/// Enum for supported Diagnostics commands.
8#[derive(Debug, PartialEq)]
9pub enum DiagnosticsMethod {
10    /// Wraps `fuchsia.diagnostics.Archive.StreamDiagnostics` with default parameters
11    /// stream_mode=SNAPSHOT, format=JSON, data_type=INSPECT,
12    /// batch_retrieval_timeout_seconds=60
13    SnapshotInspect,
14}
15
16#[derive(Serialize, Deserialize)]
17pub struct SnapshotInspectArgs {
18    pub selectors: Vec<String>,
19    pub service_name: String,
20}
21
22impl std::str::FromStr for DiagnosticsMethod {
23    type Err = anyhow::Error;
24
25    fn from_str(method: &str) -> Result<Self, Self::Err> {
26        match method {
27            "SnapshotInspect" => Ok(DiagnosticsMethod::SnapshotInspect),
28            _ => return Err(format_err!("invalid Diagnostics Facade method: {}", method)),
29        }
30    }
31}