detect/
diagnostics.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
5// Fetches diagnostic data.
6
7use anyhow::Error;
8use fuchsia_triage::{DiagnosticData, Source};
9use inspect_fetcher::InspectFetcher;
10
11// The capability name for the Inspect reader
12const INSPECT_SERVICE_PATH: &str = "/svc/fuchsia.diagnostics.ArchiveAccessor.feedback";
13
14// Durable connection to Archivist
15#[derive(Debug)]
16pub struct DiagnosticFetcher {
17    inspect: InspectFetcher,
18}
19
20#[derive(Debug)]
21pub struct Selectors {
22    pub(crate) inspect_selectors: Vec<String>,
23}
24
25impl DiagnosticFetcher {
26    pub fn create(selectors: Selectors) -> Result<DiagnosticFetcher, Error> {
27        Ok(DiagnosticFetcher {
28            inspect: InspectFetcher::create(INSPECT_SERVICE_PATH, selectors.inspect_selectors)?,
29        })
30    }
31
32    pub async fn get_diagnostics(&mut self) -> Result<Vec<DiagnosticData>, Error> {
33        let inspect_data = DiagnosticData::new(
34            "inspect.json".to_string(),
35            Source::Inspect,
36            self.inspect.fetch().await?,
37        )?;
38        Ok(vec![inspect_data])
39    }
40}
41
42impl Selectors {
43    pub fn new() -> Selectors {
44        Selectors { inspect_selectors: Vec::new() }
45    }
46
47    pub fn with_inspect_selectors(mut self, selectors: Vec<String>) -> Self {
48        self.inspect_selectors.extend(selectors);
49        self
50    }
51}