fidl_fuchsia_inspect_test/
fidl_fuchsia_inspect_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_inspect_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct HandshakeMarker;
16
17impl fidl::endpoints::ProtocolMarker for HandshakeMarker {
18 type Proxy = HandshakeProxy;
19 type RequestStream = HandshakeRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = HandshakeSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) Handshake";
24}
25
26pub trait HandshakeProxyInterface: Send + Sync {
27 type DoResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
28 fn r#do(&self) -> Self::DoResponseFut;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct HandshakeSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for HandshakeSynchronousProxy {
38 type Proxy = HandshakeProxy;
39 type Protocol = HandshakeMarker;
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 HandshakeSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <HandshakeMarker 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<HandshakeEvent, fidl::Error> {
71 HandshakeEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#do(&self, ___deadline: zx::MonotonicInstant) -> Result<(), fidl::Error> {
75 let _response =
76 self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
77 (),
78 0x17a1af007ed86afe,
79 fidl::encoding::DynamicFlags::empty(),
80 ___deadline,
81 )?;
82 Ok(_response)
83 }
84}
85
86#[cfg(target_os = "fuchsia")]
87impl From<HandshakeSynchronousProxy> for zx::Handle {
88 fn from(value: HandshakeSynchronousProxy) -> Self {
89 value.into_channel().into()
90 }
91}
92
93#[cfg(target_os = "fuchsia")]
94impl From<fidl::Channel> for HandshakeSynchronousProxy {
95 fn from(value: fidl::Channel) -> Self {
96 Self::new(value)
97 }
98}
99
100#[derive(Debug, Clone)]
101pub struct HandshakeProxy {
102 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
103}
104
105impl fidl::endpoints::Proxy for HandshakeProxy {
106 type Protocol = HandshakeMarker;
107
108 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
109 Self::new(inner)
110 }
111
112 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
113 self.client.into_channel().map_err(|client| Self { client })
114 }
115
116 fn as_channel(&self) -> &::fidl::AsyncChannel {
117 self.client.as_channel()
118 }
119}
120
121impl HandshakeProxy {
122 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
124 let protocol_name = <HandshakeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
125 Self { client: fidl::client::Client::new(channel, protocol_name) }
126 }
127
128 pub fn take_event_stream(&self) -> HandshakeEventStream {
134 HandshakeEventStream { event_receiver: self.client.take_event_receiver() }
135 }
136
137 pub fn r#do(
138 &self,
139 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
140 HandshakeProxyInterface::r#do(self)
141 }
142}
143
144impl HandshakeProxyInterface for HandshakeProxy {
145 type DoResponseFut =
146 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
147 fn r#do(&self) -> Self::DoResponseFut {
148 fn _decode(
149 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
150 ) -> Result<(), fidl::Error> {
151 let _response = fidl::client::decode_transaction_body::<
152 fidl::encoding::EmptyPayload,
153 fidl::encoding::DefaultFuchsiaResourceDialect,
154 0x17a1af007ed86afe,
155 >(_buf?)?;
156 Ok(_response)
157 }
158 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
159 (),
160 0x17a1af007ed86afe,
161 fidl::encoding::DynamicFlags::empty(),
162 _decode,
163 )
164 }
165}
166
167pub struct HandshakeEventStream {
168 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
169}
170
171impl std::marker::Unpin for HandshakeEventStream {}
172
173impl futures::stream::FusedStream for HandshakeEventStream {
174 fn is_terminated(&self) -> bool {
175 self.event_receiver.is_terminated()
176 }
177}
178
179impl futures::Stream for HandshakeEventStream {
180 type Item = Result<HandshakeEvent, fidl::Error>;
181
182 fn poll_next(
183 mut self: std::pin::Pin<&mut Self>,
184 cx: &mut std::task::Context<'_>,
185 ) -> std::task::Poll<Option<Self::Item>> {
186 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
187 &mut self.event_receiver,
188 cx
189 )?) {
190 Some(buf) => std::task::Poll::Ready(Some(HandshakeEvent::decode(buf))),
191 None => std::task::Poll::Ready(None),
192 }
193 }
194}
195
196#[derive(Debug)]
197pub enum HandshakeEvent {}
198
199impl HandshakeEvent {
200 fn decode(
202 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
203 ) -> Result<HandshakeEvent, fidl::Error> {
204 let (bytes, _handles) = buf.split_mut();
205 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
206 debug_assert_eq!(tx_header.tx_id, 0);
207 match tx_header.ordinal {
208 _ => Err(fidl::Error::UnknownOrdinal {
209 ordinal: tx_header.ordinal,
210 protocol_name: <HandshakeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
211 }),
212 }
213 }
214}
215
216pub struct HandshakeRequestStream {
218 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
219 is_terminated: bool,
220}
221
222impl std::marker::Unpin for HandshakeRequestStream {}
223
224impl futures::stream::FusedStream for HandshakeRequestStream {
225 fn is_terminated(&self) -> bool {
226 self.is_terminated
227 }
228}
229
230impl fidl::endpoints::RequestStream for HandshakeRequestStream {
231 type Protocol = HandshakeMarker;
232 type ControlHandle = HandshakeControlHandle;
233
234 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
235 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
236 }
237
238 fn control_handle(&self) -> Self::ControlHandle {
239 HandshakeControlHandle { inner: self.inner.clone() }
240 }
241
242 fn into_inner(
243 self,
244 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
245 {
246 (self.inner, self.is_terminated)
247 }
248
249 fn from_inner(
250 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
251 is_terminated: bool,
252 ) -> Self {
253 Self { inner, is_terminated }
254 }
255}
256
257impl futures::Stream for HandshakeRequestStream {
258 type Item = Result<HandshakeRequest, fidl::Error>;
259
260 fn poll_next(
261 mut self: std::pin::Pin<&mut Self>,
262 cx: &mut std::task::Context<'_>,
263 ) -> std::task::Poll<Option<Self::Item>> {
264 let this = &mut *self;
265 if this.inner.check_shutdown(cx) {
266 this.is_terminated = true;
267 return std::task::Poll::Ready(None);
268 }
269 if this.is_terminated {
270 panic!("polled HandshakeRequestStream after completion");
271 }
272 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
273 |bytes, handles| {
274 match this.inner.channel().read_etc(cx, bytes, handles) {
275 std::task::Poll::Ready(Ok(())) => {}
276 std::task::Poll::Pending => return std::task::Poll::Pending,
277 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
278 this.is_terminated = true;
279 return std::task::Poll::Ready(None);
280 }
281 std::task::Poll::Ready(Err(e)) => {
282 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
283 e.into(),
284 ))))
285 }
286 }
287
288 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
290
291 std::task::Poll::Ready(Some(match header.ordinal {
292 0x17a1af007ed86afe => {
293 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
294 let mut req = fidl::new_empty!(
295 fidl::encoding::EmptyPayload,
296 fidl::encoding::DefaultFuchsiaResourceDialect
297 );
298 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
299 let control_handle = HandshakeControlHandle { inner: this.inner.clone() };
300 Ok(HandshakeRequest::Do {
301 responder: HandshakeDoResponder {
302 control_handle: std::mem::ManuallyDrop::new(control_handle),
303 tx_id: header.tx_id,
304 },
305 })
306 }
307 _ => Err(fidl::Error::UnknownOrdinal {
308 ordinal: header.ordinal,
309 protocol_name:
310 <HandshakeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
311 }),
312 }))
313 },
314 )
315 }
316}
317
318#[derive(Debug)]
319pub enum HandshakeRequest {
320 Do { responder: HandshakeDoResponder },
321}
322
323impl HandshakeRequest {
324 #[allow(irrefutable_let_patterns)]
325 pub fn into_do(self) -> Option<(HandshakeDoResponder)> {
326 if let HandshakeRequest::Do { responder } = self {
327 Some((responder))
328 } else {
329 None
330 }
331 }
332
333 pub fn method_name(&self) -> &'static str {
335 match *self {
336 HandshakeRequest::Do { .. } => "do",
337 }
338 }
339}
340
341#[derive(Debug, Clone)]
342pub struct HandshakeControlHandle {
343 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
344}
345
346impl fidl::endpoints::ControlHandle for HandshakeControlHandle {
347 fn shutdown(&self) {
348 self.inner.shutdown()
349 }
350 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
351 self.inner.shutdown_with_epitaph(status)
352 }
353
354 fn is_closed(&self) -> bool {
355 self.inner.channel().is_closed()
356 }
357 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
358 self.inner.channel().on_closed()
359 }
360
361 #[cfg(target_os = "fuchsia")]
362 fn signal_peer(
363 &self,
364 clear_mask: zx::Signals,
365 set_mask: zx::Signals,
366 ) -> Result<(), zx_status::Status> {
367 use fidl::Peered;
368 self.inner.channel().signal_peer(clear_mask, set_mask)
369 }
370}
371
372impl HandshakeControlHandle {}
373
374#[must_use = "FIDL methods require a response to be sent"]
375#[derive(Debug)]
376pub struct HandshakeDoResponder {
377 control_handle: std::mem::ManuallyDrop<HandshakeControlHandle>,
378 tx_id: u32,
379}
380
381impl std::ops::Drop for HandshakeDoResponder {
385 fn drop(&mut self) {
386 self.control_handle.shutdown();
387 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
389 }
390}
391
392impl fidl::endpoints::Responder for HandshakeDoResponder {
393 type ControlHandle = HandshakeControlHandle;
394
395 fn control_handle(&self) -> &HandshakeControlHandle {
396 &self.control_handle
397 }
398
399 fn drop_without_shutdown(mut self) {
400 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
402 std::mem::forget(self);
404 }
405}
406
407impl HandshakeDoResponder {
408 pub fn send(self) -> Result<(), fidl::Error> {
412 let _result = self.send_raw();
413 if _result.is_err() {
414 self.control_handle.shutdown();
415 }
416 self.drop_without_shutdown();
417 _result
418 }
419
420 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
422 let _result = self.send_raw();
423 self.drop_without_shutdown();
424 _result
425 }
426
427 fn send_raw(&self) -> Result<(), fidl::Error> {
428 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
429 (),
430 self.tx_id,
431 0x17a1af007ed86afe,
432 fidl::encoding::DynamicFlags::empty(),
433 )
434 }
435}
436
437mod internal {
438 use super::*;
439}