realm_proxy_client/
lib.rs1use anyhow::{bail, Result};
6use fidl::endpoints::{
7 create_endpoints, ClientEnd, DiscoverableProtocolMarker, ServerEnd, ServiceMarker, ServiceProxy,
8};
9use fidl_fuchsia_io as fio;
10use fidl_fuchsia_testing_harness::{RealmProxy_Marker, RealmProxy_Proxy};
11use fuchsia_component::client::connect_to_protocol;
12
13pub mod error;
14pub use error::Error;
15
16pub struct RealmProxyClient {
30 inner: RealmProxy_Proxy,
31}
32
33impl From<RealmProxy_Proxy> for RealmProxyClient {
34 fn from(value: RealmProxy_Proxy) -> Self {
35 Self { inner: value }
36 }
37}
38
39impl From<ClientEnd<RealmProxy_Marker>> for RealmProxyClient {
40 fn from(value: ClientEnd<RealmProxy_Marker>) -> Self {
41 let inner = value.into_proxy();
42 Self { inner }
43 }
44}
45
46impl RealmProxyClient {
47 pub fn connect() -> Result<Self, anyhow::Error> {
49 let inner = connect_to_protocol::<RealmProxy_Marker>()?;
50 Ok(Self { inner })
51 }
52
53 pub async fn connect_to_protocol<T: DiscoverableProtocolMarker>(
57 &self,
58 ) -> Result<T::Proxy, anyhow::Error> {
59 self.connect_to_named_protocol::<T>(T::PROTOCOL_NAME).await
60 }
61
62 pub async fn connect_server_end_to_protocol<T: DiscoverableProtocolMarker>(
66 &self,
67 server_end: ServerEnd<T>,
68 ) -> Result<(), anyhow::Error> {
69 self.connect_server_end_to_named_protocol::<T>(T::PROTOCOL_NAME, server_end).await
70 }
71
72 pub async fn connect_to_named_protocol<T: DiscoverableProtocolMarker>(
76 &self,
77 protocol_name: &str,
78 ) -> Result<T::Proxy, anyhow::Error> {
79 let (client, server) = create_endpoints::<T>();
80 self.connect_server_end_to_named_protocol(protocol_name, server).await?;
81 Ok(client.into_proxy())
82 }
83
84 pub async fn connect_server_end_to_named_protocol<T: DiscoverableProtocolMarker>(
88 &self,
89 protocol_name: &str,
90 server_end: ServerEnd<T>,
91 ) -> Result<(), anyhow::Error> {
92 let res =
93 self.inner.connect_to_named_protocol(protocol_name, server_end.into_channel()).await?;
94
95 if let Some(op_err) = res.err() {
96 bail!("{:?}", op_err);
97 }
98
99 Ok(())
100 }
101
102 pub async fn open_service<T: ServiceMarker>(
109 &self,
110 ) -> Result<fio::DirectoryProxy, anyhow::Error> {
111 let (client, server) = create_endpoints::<fio::DirectoryMarker>();
112 let res = self.inner.open_service(T::SERVICE_NAME, server.into_channel()).await?;
113 if let Some(op_err) = res.err() {
114 bail!("{:?}", op_err);
115 }
116
117 Ok(client.into_proxy())
118 }
119
120 pub async fn connect_to_service_instance<T: ServiceMarker>(
127 &self,
128 instance: &str,
129 ) -> Result<T::Proxy, anyhow::Error> {
130 let (client, server) = create_endpoints::<fio::DirectoryMarker>();
131 let res = self
132 .inner
133 .connect_to_service_instance(T::SERVICE_NAME, instance, server.into_channel())
134 .await?;
135 if let Some(op_err) = res.err() {
136 bail!("{:?}", op_err);
137 }
138
139 Ok(T::Proxy::from_member_opener(Box::new(
140 fuchsia_component::client::ServiceInstanceDirectory(
141 client.into_proxy(),
142 instance.to_owned(),
143 ),
144 )))
145 }
146}