sl4f_lib/wlan_phy/
facade.rs1use anyhow::{format_err, Context, Error};
6use fidl_fuchsia_wlan_device_service::{DeviceMonitorMarker, DeviceMonitorProxy};
7use fuchsia_component::client::connect_to_protocol;
8
9#[derive(Debug)]
10pub struct WlanPhyFacade {
11 device_monitor: DeviceMonitorProxy,
12}
13
14impl WlanPhyFacade {
15 pub fn new() -> Result<WlanPhyFacade, Error> {
16 Ok(WlanPhyFacade { device_monitor: connect_to_protocol::<DeviceMonitorMarker>()? })
17 }
18
19 pub async fn get_country(&self, phy_id: u16) -> Result<[u8; 2], Error> {
24 let country_code = self
25 .device_monitor
26 .get_country(phy_id)
27 .await
28 .context("get_country(): encountered FIDL error")?;
29 match country_code {
30 Ok(country) => Ok(country.alpha2),
31 Err(status) => Err(format_err!(
32 "get_country(): encountered service failure {}",
33 zx::Status::from_raw(status)
34 )),
35 }
36 }
37
38 pub async fn get_dev_path(&self, phy_id: u16) -> Result<Option<String>, Error> {
43 self.device_monitor
44 .get_dev_path(phy_id)
45 .await
46 .map_err(|e| format_err!("get_path(): encountered FIDL error: {:?}", e))
47 }
48}