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