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.
45use crate::diagnostics::types::SnapshotInspectArgs;
6use anyhow::Error;
7use diagnostics_reader::{ArchiveReader, RetryConfig};
8use fidl_fuchsia_diagnostics::ArchiveAccessorMarker;
9use fuchsia_component::client;
10use serde_json::Value;
1112// Give components 5 minutes to respond with their Inspect data in case the system is under heavy
13// load. This can happen especially when running unoptimized on emulators.
14const BATCH_RETRIEVAL_TIMEOUT_SECONDS: i64 = 300;
1516/// Facade providing access to diagnostics interface.
17#[derive(Debug)]
18pub struct DiagnosticsFacade {}
1920impl DiagnosticsFacade {
21pub fn new() -> DiagnosticsFacade {
22 DiagnosticsFacade {}
23 }
2425pub async fn snapshot_inspect(&self, args: SnapshotInspectArgs) -> Result<Value, Error> {
26let service_path = format!("/svc/{}", args.service_name);
27let proxy =
28 client::connect_to_protocol_at_path::<ArchiveAccessorMarker>(&service_path).unwrap();
29let value = ArchiveReader::inspect()
30 .retry(RetryConfig::never())
31 .with_archive(proxy)
32 .add_selectors(args.selectors.into_iter())
33 .with_batch_retrieval_timeout_seconds(BATCH_RETRIEVAL_TIMEOUT_SECONDS)
34 .snapshot_raw::<serde_json::Value>()
35 .await?;
36Ok(value)
37 }
38}