guest_cli/platform/
fuchsia.rs

1// Copyright 2022 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::platform::PlatformServices;
6use anyhow::{Context, Result};
7use async_trait::async_trait;
8use fidl_fuchsia_virtualization::{
9    GuestManagerMarker, GuestManagerProxy, LinuxManagerMarker, LinuxManagerProxy,
10};
11use fuchsia_component::client::{connect_to_protocol, connect_to_protocol_at_path};
12use guest_cli_args::GuestType;
13
14pub struct FuchsiaPlatformServices;
15
16impl FuchsiaPlatformServices {
17    pub fn new() -> Self {
18        Self
19    }
20}
21
22#[async_trait(?Send)]
23impl PlatformServices for FuchsiaPlatformServices {
24    async fn connect_to_manager(&self, guest_type: GuestType) -> Result<GuestManagerProxy> {
25        let manager = connect_to_protocol_at_path::<GuestManagerMarker>(
26            format!("/svc/{}", guest_type.guest_manager_interface()).as_str(),
27        )
28        .context("Failed to connect to manager service")?;
29        Ok(manager)
30    }
31
32    async fn connect_to_linux_manager(&self) -> Result<LinuxManagerProxy> {
33        connect_to_protocol::<LinuxManagerMarker>()
34            .context("Failed to connect to linux manager service")
35    }
36}