1use anyhow::Error;
8use fuchsia_triage::{DiagnosticData, Source};
9use inspect_fetcher::InspectFetcher;
10
11const INSPECT_SERVICE_PATH: &str = "/svc/fuchsia.diagnostics.ArchiveAccessor.feedback";
13
14#[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}