fidl_fuchsia_interop_test/
fidl_fuchsia_interop_test.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_fuchsia_interop_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct WaiterMarker;
16
17impl fidl::endpoints::ProtocolMarker for WaiterMarker {
18 type Proxy = WaiterProxy;
19 type RequestStream = WaiterRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = WaiterSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.interop.test.Waiter";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for WaiterMarker {}
26
27pub trait WaiterProxyInterface: Send + Sync {
28 fn r#ack(&self) -> Result<(), fidl::Error>;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct WaiterSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for WaiterSynchronousProxy {
38 type Proxy = WaiterProxy;
39 type Protocol = WaiterMarker;
40
41 fn from_channel(inner: fidl::Channel) -> Self {
42 Self::new(inner)
43 }
44
45 fn into_channel(self) -> fidl::Channel {
46 self.client.into_channel()
47 }
48
49 fn as_channel(&self) -> &fidl::Channel {
50 self.client.as_channel()
51 }
52}
53
54#[cfg(target_os = "fuchsia")]
55impl WaiterSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
58 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
59 }
60
61 pub fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 pub fn wait_for_event(
68 &self,
69 deadline: zx::MonotonicInstant,
70 ) -> Result<WaiterEvent, fidl::Error> {
71 WaiterEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#ack(&self) -> Result<(), fidl::Error> {
75 self.client.send::<fidl::encoding::EmptyPayload>(
76 (),
77 0x757877942989532f,
78 fidl::encoding::DynamicFlags::empty(),
79 )
80 }
81}
82
83#[cfg(target_os = "fuchsia")]
84impl From<WaiterSynchronousProxy> for zx::Handle {
85 fn from(value: WaiterSynchronousProxy) -> Self {
86 value.into_channel().into()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl From<fidl::Channel> for WaiterSynchronousProxy {
92 fn from(value: fidl::Channel) -> Self {
93 Self::new(value)
94 }
95}
96
97#[derive(Debug, Clone)]
98pub struct WaiterProxy {
99 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
100}
101
102impl fidl::endpoints::Proxy for WaiterProxy {
103 type Protocol = WaiterMarker;
104
105 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
106 Self::new(inner)
107 }
108
109 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
110 self.client.into_channel().map_err(|client| Self { client })
111 }
112
113 fn as_channel(&self) -> &::fidl::AsyncChannel {
114 self.client.as_channel()
115 }
116}
117
118impl WaiterProxy {
119 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
121 let protocol_name = <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
122 Self { client: fidl::client::Client::new(channel, protocol_name) }
123 }
124
125 pub fn take_event_stream(&self) -> WaiterEventStream {
131 WaiterEventStream { event_receiver: self.client.take_event_receiver() }
132 }
133
134 pub fn r#ack(&self) -> Result<(), fidl::Error> {
135 WaiterProxyInterface::r#ack(self)
136 }
137}
138
139impl WaiterProxyInterface for WaiterProxy {
140 fn r#ack(&self) -> Result<(), fidl::Error> {
141 self.client.send::<fidl::encoding::EmptyPayload>(
142 (),
143 0x757877942989532f,
144 fidl::encoding::DynamicFlags::empty(),
145 )
146 }
147}
148
149pub struct WaiterEventStream {
150 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
151}
152
153impl std::marker::Unpin for WaiterEventStream {}
154
155impl futures::stream::FusedStream for WaiterEventStream {
156 fn is_terminated(&self) -> bool {
157 self.event_receiver.is_terminated()
158 }
159}
160
161impl futures::Stream for WaiterEventStream {
162 type Item = Result<WaiterEvent, fidl::Error>;
163
164 fn poll_next(
165 mut self: std::pin::Pin<&mut Self>,
166 cx: &mut std::task::Context<'_>,
167 ) -> std::task::Poll<Option<Self::Item>> {
168 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
169 &mut self.event_receiver,
170 cx
171 )?) {
172 Some(buf) => std::task::Poll::Ready(Some(WaiterEvent::decode(buf))),
173 None => std::task::Poll::Ready(None),
174 }
175 }
176}
177
178#[derive(Debug)]
179pub enum WaiterEvent {}
180
181impl WaiterEvent {
182 fn decode(
184 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
185 ) -> Result<WaiterEvent, fidl::Error> {
186 let (bytes, _handles) = buf.split_mut();
187 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
188 debug_assert_eq!(tx_header.tx_id, 0);
189 match tx_header.ordinal {
190 _ => Err(fidl::Error::UnknownOrdinal {
191 ordinal: tx_header.ordinal,
192 protocol_name: <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
193 }),
194 }
195 }
196}
197
198pub struct WaiterRequestStream {
200 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
201 is_terminated: bool,
202}
203
204impl std::marker::Unpin for WaiterRequestStream {}
205
206impl futures::stream::FusedStream for WaiterRequestStream {
207 fn is_terminated(&self) -> bool {
208 self.is_terminated
209 }
210}
211
212impl fidl::endpoints::RequestStream for WaiterRequestStream {
213 type Protocol = WaiterMarker;
214 type ControlHandle = WaiterControlHandle;
215
216 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
217 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
218 }
219
220 fn control_handle(&self) -> Self::ControlHandle {
221 WaiterControlHandle { inner: self.inner.clone() }
222 }
223
224 fn into_inner(
225 self,
226 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
227 {
228 (self.inner, self.is_terminated)
229 }
230
231 fn from_inner(
232 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
233 is_terminated: bool,
234 ) -> Self {
235 Self { inner, is_terminated }
236 }
237}
238
239impl futures::Stream for WaiterRequestStream {
240 type Item = Result<WaiterRequest, fidl::Error>;
241
242 fn poll_next(
243 mut self: std::pin::Pin<&mut Self>,
244 cx: &mut std::task::Context<'_>,
245 ) -> std::task::Poll<Option<Self::Item>> {
246 let this = &mut *self;
247 if this.inner.check_shutdown(cx) {
248 this.is_terminated = true;
249 return std::task::Poll::Ready(None);
250 }
251 if this.is_terminated {
252 panic!("polled WaiterRequestStream after completion");
253 }
254 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
255 |bytes, handles| {
256 match this.inner.channel().read_etc(cx, bytes, handles) {
257 std::task::Poll::Ready(Ok(())) => {}
258 std::task::Poll::Pending => return std::task::Poll::Pending,
259 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
260 this.is_terminated = true;
261 return std::task::Poll::Ready(None);
262 }
263 std::task::Poll::Ready(Err(e)) => {
264 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
265 e.into(),
266 ))))
267 }
268 }
269
270 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
272
273 std::task::Poll::Ready(Some(match header.ordinal {
274 0x757877942989532f => {
275 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
276 let mut req = fidl::new_empty!(
277 fidl::encoding::EmptyPayload,
278 fidl::encoding::DefaultFuchsiaResourceDialect
279 );
280 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
281 let control_handle = WaiterControlHandle { inner: this.inner.clone() };
282 Ok(WaiterRequest::Ack { control_handle })
283 }
284 _ => Err(fidl::Error::UnknownOrdinal {
285 ordinal: header.ordinal,
286 protocol_name:
287 <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
288 }),
289 }))
290 },
291 )
292 }
293}
294
295#[derive(Debug)]
296pub enum WaiterRequest {
297 Ack { control_handle: WaiterControlHandle },
298}
299
300impl WaiterRequest {
301 #[allow(irrefutable_let_patterns)]
302 pub fn into_ack(self) -> Option<(WaiterControlHandle)> {
303 if let WaiterRequest::Ack { control_handle } = self {
304 Some((control_handle))
305 } else {
306 None
307 }
308 }
309
310 pub fn method_name(&self) -> &'static str {
312 match *self {
313 WaiterRequest::Ack { .. } => "ack",
314 }
315 }
316}
317
318#[derive(Debug, Clone)]
319pub struct WaiterControlHandle {
320 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
321}
322
323impl fidl::endpoints::ControlHandle for WaiterControlHandle {
324 fn shutdown(&self) {
325 self.inner.shutdown()
326 }
327 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
328 self.inner.shutdown_with_epitaph(status)
329 }
330
331 fn is_closed(&self) -> bool {
332 self.inner.channel().is_closed()
333 }
334 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
335 self.inner.channel().on_closed()
336 }
337
338 #[cfg(target_os = "fuchsia")]
339 fn signal_peer(
340 &self,
341 clear_mask: zx::Signals,
342 set_mask: zx::Signals,
343 ) -> Result<(), zx_status::Status> {
344 use fidl::Peered;
345 self.inner.channel().signal_peer(clear_mask, set_mask)
346 }
347}
348
349impl WaiterControlHandle {}
350
351mod internal {
352 use super::*;
353}