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_ui_display_singleton_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct DisplayPowerMarker;
16
17impl fidl::endpoints::ProtocolMarker for DisplayPowerMarker {
18 type Proxy = DisplayPowerProxy;
19 type RequestStream = DisplayPowerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = DisplayPowerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.ui.display.singleton.DisplayPower";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for DisplayPowerMarker {}
26pub type DisplayPowerSetDisplayPowerResult = Result<(), i32>;
27
28pub trait DisplayPowerProxyInterface: Send + Sync {
29 type SetDisplayPowerResponseFut: std::future::Future<Output = Result<DisplayPowerSetDisplayPowerResult, fidl::Error>>
30 + Send;
31 fn r#set_display_power(&self, power_on: bool) -> Self::SetDisplayPowerResponseFut;
32}
33#[derive(Debug)]
34#[cfg(target_os = "fuchsia")]
35pub struct DisplayPowerSynchronousProxy {
36 client: fidl::client::sync::Client,
37}
38
39#[cfg(target_os = "fuchsia")]
40impl fidl::endpoints::SynchronousProxy for DisplayPowerSynchronousProxy {
41 type Proxy = DisplayPowerProxy;
42 type Protocol = DisplayPowerMarker;
43
44 fn from_channel(inner: fidl::Channel) -> Self {
45 Self::new(inner)
46 }
47
48 fn into_channel(self) -> fidl::Channel {
49 self.client.into_channel()
50 }
51
52 fn as_channel(&self) -> &fidl::Channel {
53 self.client.as_channel()
54 }
55}
56
57#[cfg(target_os = "fuchsia")]
58impl DisplayPowerSynchronousProxy {
59 pub fn new(channel: fidl::Channel) -> Self {
60 let protocol_name = <DisplayPowerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
61 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
62 }
63
64 pub fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 pub fn wait_for_event(
71 &self,
72 deadline: zx::MonotonicInstant,
73 ) -> Result<DisplayPowerEvent, fidl::Error> {
74 DisplayPowerEvent::decode(self.client.wait_for_event(deadline)?)
75 }
76
77 pub fn r#set_display_power(
88 &self,
89 mut power_on: bool,
90 ___deadline: zx::MonotonicInstant,
91 ) -> Result<DisplayPowerSetDisplayPowerResult, fidl::Error> {
92 let _response = self.client.send_query::<
93 DisplayPowerSetDisplayPowerRequest,
94 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
95 >(
96 (power_on,),
97 0x59f31b10e74ce66f,
98 fidl::encoding::DynamicFlags::empty(),
99 ___deadline,
100 )?;
101 Ok(_response.map(|x| x))
102 }
103}
104
105#[cfg(target_os = "fuchsia")]
106impl From<DisplayPowerSynchronousProxy> for zx::Handle {
107 fn from(value: DisplayPowerSynchronousProxy) -> Self {
108 value.into_channel().into()
109 }
110}
111
112#[cfg(target_os = "fuchsia")]
113impl From<fidl::Channel> for DisplayPowerSynchronousProxy {
114 fn from(value: fidl::Channel) -> Self {
115 Self::new(value)
116 }
117}
118
119#[derive(Debug, Clone)]
120pub struct DisplayPowerProxy {
121 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
122}
123
124impl fidl::endpoints::Proxy for DisplayPowerProxy {
125 type Protocol = DisplayPowerMarker;
126
127 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
128 Self::new(inner)
129 }
130
131 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
132 self.client.into_channel().map_err(|client| Self { client })
133 }
134
135 fn as_channel(&self) -> &::fidl::AsyncChannel {
136 self.client.as_channel()
137 }
138}
139
140impl DisplayPowerProxy {
141 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
143 let protocol_name = <DisplayPowerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
144 Self { client: fidl::client::Client::new(channel, protocol_name) }
145 }
146
147 pub fn take_event_stream(&self) -> DisplayPowerEventStream {
153 DisplayPowerEventStream { event_receiver: self.client.take_event_receiver() }
154 }
155
156 pub fn r#set_display_power(
167 &self,
168 mut power_on: bool,
169 ) -> fidl::client::QueryResponseFut<
170 DisplayPowerSetDisplayPowerResult,
171 fidl::encoding::DefaultFuchsiaResourceDialect,
172 > {
173 DisplayPowerProxyInterface::r#set_display_power(self, power_on)
174 }
175}
176
177impl DisplayPowerProxyInterface for DisplayPowerProxy {
178 type SetDisplayPowerResponseFut = fidl::client::QueryResponseFut<
179 DisplayPowerSetDisplayPowerResult,
180 fidl::encoding::DefaultFuchsiaResourceDialect,
181 >;
182 fn r#set_display_power(&self, mut power_on: bool) -> Self::SetDisplayPowerResponseFut {
183 fn _decode(
184 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
185 ) -> Result<DisplayPowerSetDisplayPowerResult, fidl::Error> {
186 let _response = fidl::client::decode_transaction_body::<
187 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
188 fidl::encoding::DefaultFuchsiaResourceDialect,
189 0x59f31b10e74ce66f,
190 >(_buf?)?;
191 Ok(_response.map(|x| x))
192 }
193 self.client.send_query_and_decode::<
194 DisplayPowerSetDisplayPowerRequest,
195 DisplayPowerSetDisplayPowerResult,
196 >(
197 (power_on,),
198 0x59f31b10e74ce66f,
199 fidl::encoding::DynamicFlags::empty(),
200 _decode,
201 )
202 }
203}
204
205pub struct DisplayPowerEventStream {
206 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
207}
208
209impl std::marker::Unpin for DisplayPowerEventStream {}
210
211impl futures::stream::FusedStream for DisplayPowerEventStream {
212 fn is_terminated(&self) -> bool {
213 self.event_receiver.is_terminated()
214 }
215}
216
217impl futures::Stream for DisplayPowerEventStream {
218 type Item = Result<DisplayPowerEvent, fidl::Error>;
219
220 fn poll_next(
221 mut self: std::pin::Pin<&mut Self>,
222 cx: &mut std::task::Context<'_>,
223 ) -> std::task::Poll<Option<Self::Item>> {
224 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
225 &mut self.event_receiver,
226 cx
227 )?) {
228 Some(buf) => std::task::Poll::Ready(Some(DisplayPowerEvent::decode(buf))),
229 None => std::task::Poll::Ready(None),
230 }
231 }
232}
233
234#[derive(Debug)]
235pub enum DisplayPowerEvent {
236 #[non_exhaustive]
237 _UnknownEvent {
238 ordinal: u64,
240 },
241}
242
243impl DisplayPowerEvent {
244 fn decode(
246 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
247 ) -> Result<DisplayPowerEvent, fidl::Error> {
248 let (bytes, _handles) = buf.split_mut();
249 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
250 debug_assert_eq!(tx_header.tx_id, 0);
251 match tx_header.ordinal {
252 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
253 Ok(DisplayPowerEvent::_UnknownEvent { ordinal: tx_header.ordinal })
254 }
255 _ => Err(fidl::Error::UnknownOrdinal {
256 ordinal: tx_header.ordinal,
257 protocol_name: <DisplayPowerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
258 }),
259 }
260 }
261}
262
263pub struct DisplayPowerRequestStream {
265 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
266 is_terminated: bool,
267}
268
269impl std::marker::Unpin for DisplayPowerRequestStream {}
270
271impl futures::stream::FusedStream for DisplayPowerRequestStream {
272 fn is_terminated(&self) -> bool {
273 self.is_terminated
274 }
275}
276
277impl fidl::endpoints::RequestStream for DisplayPowerRequestStream {
278 type Protocol = DisplayPowerMarker;
279 type ControlHandle = DisplayPowerControlHandle;
280
281 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
282 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
283 }
284
285 fn control_handle(&self) -> Self::ControlHandle {
286 DisplayPowerControlHandle { inner: self.inner.clone() }
287 }
288
289 fn into_inner(
290 self,
291 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
292 {
293 (self.inner, self.is_terminated)
294 }
295
296 fn from_inner(
297 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
298 is_terminated: bool,
299 ) -> Self {
300 Self { inner, is_terminated }
301 }
302}
303
304impl futures::Stream for DisplayPowerRequestStream {
305 type Item = Result<DisplayPowerRequest, fidl::Error>;
306
307 fn poll_next(
308 mut self: std::pin::Pin<&mut Self>,
309 cx: &mut std::task::Context<'_>,
310 ) -> std::task::Poll<Option<Self::Item>> {
311 let this = &mut *self;
312 if this.inner.check_shutdown(cx) {
313 this.is_terminated = true;
314 return std::task::Poll::Ready(None);
315 }
316 if this.is_terminated {
317 panic!("polled DisplayPowerRequestStream after completion");
318 }
319 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
320 |bytes, handles| {
321 match this.inner.channel().read_etc(cx, bytes, handles) {
322 std::task::Poll::Ready(Ok(())) => {}
323 std::task::Poll::Pending => return std::task::Poll::Pending,
324 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
325 this.is_terminated = true;
326 return std::task::Poll::Ready(None);
327 }
328 std::task::Poll::Ready(Err(e)) => {
329 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
330 e.into(),
331 ))))
332 }
333 }
334
335 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
337
338 std::task::Poll::Ready(Some(match header.ordinal {
339 0x59f31b10e74ce66f => {
340 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
341 let mut req = fidl::new_empty!(
342 DisplayPowerSetDisplayPowerRequest,
343 fidl::encoding::DefaultFuchsiaResourceDialect
344 );
345 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DisplayPowerSetDisplayPowerRequest>(&header, _body_bytes, handles, &mut req)?;
346 let control_handle =
347 DisplayPowerControlHandle { inner: this.inner.clone() };
348 Ok(DisplayPowerRequest::SetDisplayPower {
349 power_on: req.power_on,
350
351 responder: DisplayPowerSetDisplayPowerResponder {
352 control_handle: std::mem::ManuallyDrop::new(control_handle),
353 tx_id: header.tx_id,
354 },
355 })
356 }
357 _ if header.tx_id == 0
358 && header
359 .dynamic_flags()
360 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
361 {
362 Ok(DisplayPowerRequest::_UnknownMethod {
363 ordinal: header.ordinal,
364 control_handle: DisplayPowerControlHandle { inner: this.inner.clone() },
365 method_type: fidl::MethodType::OneWay,
366 })
367 }
368 _ if header
369 .dynamic_flags()
370 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
371 {
372 this.inner.send_framework_err(
373 fidl::encoding::FrameworkErr::UnknownMethod,
374 header.tx_id,
375 header.ordinal,
376 header.dynamic_flags(),
377 (bytes, handles),
378 )?;
379 Ok(DisplayPowerRequest::_UnknownMethod {
380 ordinal: header.ordinal,
381 control_handle: DisplayPowerControlHandle { inner: this.inner.clone() },
382 method_type: fidl::MethodType::TwoWay,
383 })
384 }
385 _ => Err(fidl::Error::UnknownOrdinal {
386 ordinal: header.ordinal,
387 protocol_name:
388 <DisplayPowerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
389 }),
390 }))
391 },
392 )
393 }
394}
395
396#[derive(Debug)]
398pub enum DisplayPowerRequest {
399 SetDisplayPower { power_on: bool, responder: DisplayPowerSetDisplayPowerResponder },
410 #[non_exhaustive]
412 _UnknownMethod {
413 ordinal: u64,
415 control_handle: DisplayPowerControlHandle,
416 method_type: fidl::MethodType,
417 },
418}
419
420impl DisplayPowerRequest {
421 #[allow(irrefutable_let_patterns)]
422 pub fn into_set_display_power(self) -> Option<(bool, DisplayPowerSetDisplayPowerResponder)> {
423 if let DisplayPowerRequest::SetDisplayPower { power_on, responder } = self {
424 Some((power_on, responder))
425 } else {
426 None
427 }
428 }
429
430 pub fn method_name(&self) -> &'static str {
432 match *self {
433 DisplayPowerRequest::SetDisplayPower { .. } => "set_display_power",
434 DisplayPowerRequest::_UnknownMethod {
435 method_type: fidl::MethodType::OneWay, ..
436 } => "unknown one-way method",
437 DisplayPowerRequest::_UnknownMethod {
438 method_type: fidl::MethodType::TwoWay, ..
439 } => "unknown two-way method",
440 }
441 }
442}
443
444#[derive(Debug, Clone)]
445pub struct DisplayPowerControlHandle {
446 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
447}
448
449impl fidl::endpoints::ControlHandle for DisplayPowerControlHandle {
450 fn shutdown(&self) {
451 self.inner.shutdown()
452 }
453 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
454 self.inner.shutdown_with_epitaph(status)
455 }
456
457 fn is_closed(&self) -> bool {
458 self.inner.channel().is_closed()
459 }
460 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
461 self.inner.channel().on_closed()
462 }
463
464 #[cfg(target_os = "fuchsia")]
465 fn signal_peer(
466 &self,
467 clear_mask: zx::Signals,
468 set_mask: zx::Signals,
469 ) -> Result<(), zx_status::Status> {
470 use fidl::Peered;
471 self.inner.channel().signal_peer(clear_mask, set_mask)
472 }
473}
474
475impl DisplayPowerControlHandle {}
476
477#[must_use = "FIDL methods require a response to be sent"]
478#[derive(Debug)]
479pub struct DisplayPowerSetDisplayPowerResponder {
480 control_handle: std::mem::ManuallyDrop<DisplayPowerControlHandle>,
481 tx_id: u32,
482}
483
484impl std::ops::Drop for DisplayPowerSetDisplayPowerResponder {
488 fn drop(&mut self) {
489 self.control_handle.shutdown();
490 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
492 }
493}
494
495impl fidl::endpoints::Responder for DisplayPowerSetDisplayPowerResponder {
496 type ControlHandle = DisplayPowerControlHandle;
497
498 fn control_handle(&self) -> &DisplayPowerControlHandle {
499 &self.control_handle
500 }
501
502 fn drop_without_shutdown(mut self) {
503 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
505 std::mem::forget(self);
507 }
508}
509
510impl DisplayPowerSetDisplayPowerResponder {
511 pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
515 let _result = self.send_raw(result);
516 if _result.is_err() {
517 self.control_handle.shutdown();
518 }
519 self.drop_without_shutdown();
520 _result
521 }
522
523 pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
525 let _result = self.send_raw(result);
526 self.drop_without_shutdown();
527 _result
528 }
529
530 fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
531 self.control_handle
532 .inner
533 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
534 result,
535 self.tx_id,
536 0x59f31b10e74ce66f,
537 fidl::encoding::DynamicFlags::empty(),
538 )
539 }
540}
541
542#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
543pub struct InfoMarker;
544
545impl fidl::endpoints::ProtocolMarker for InfoMarker {
546 type Proxy = InfoProxy;
547 type RequestStream = InfoRequestStream;
548 #[cfg(target_os = "fuchsia")]
549 type SynchronousProxy = InfoSynchronousProxy;
550
551 const DEBUG_NAME: &'static str = "fuchsia.ui.display.singleton.Info";
552}
553impl fidl::endpoints::DiscoverableProtocolMarker for InfoMarker {}
554
555pub trait InfoProxyInterface: Send + Sync {
556 type GetMetricsResponseFut: std::future::Future<Output = Result<Metrics, fidl::Error>> + Send;
557 fn r#get_metrics(&self) -> Self::GetMetricsResponseFut;
558}
559#[derive(Debug)]
560#[cfg(target_os = "fuchsia")]
561pub struct InfoSynchronousProxy {
562 client: fidl::client::sync::Client,
563}
564
565#[cfg(target_os = "fuchsia")]
566impl fidl::endpoints::SynchronousProxy for InfoSynchronousProxy {
567 type Proxy = InfoProxy;
568 type Protocol = InfoMarker;
569
570 fn from_channel(inner: fidl::Channel) -> Self {
571 Self::new(inner)
572 }
573
574 fn into_channel(self) -> fidl::Channel {
575 self.client.into_channel()
576 }
577
578 fn as_channel(&self) -> &fidl::Channel {
579 self.client.as_channel()
580 }
581}
582
583#[cfg(target_os = "fuchsia")]
584impl InfoSynchronousProxy {
585 pub fn new(channel: fidl::Channel) -> Self {
586 let protocol_name = <InfoMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
587 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
588 }
589
590 pub fn into_channel(self) -> fidl::Channel {
591 self.client.into_channel()
592 }
593
594 pub fn wait_for_event(&self, deadline: zx::MonotonicInstant) -> Result<InfoEvent, fidl::Error> {
597 InfoEvent::decode(self.client.wait_for_event(deadline)?)
598 }
599
600 pub fn r#get_metrics(&self, ___deadline: zx::MonotonicInstant) -> Result<Metrics, fidl::Error> {
601 let _response =
602 self.client.send_query::<fidl::encoding::EmptyPayload, InfoGetMetricsResponse>(
603 (),
604 0x6d631353834698be,
605 fidl::encoding::DynamicFlags::empty(),
606 ___deadline,
607 )?;
608 Ok(_response.info)
609 }
610}
611
612#[cfg(target_os = "fuchsia")]
613impl From<InfoSynchronousProxy> for zx::Handle {
614 fn from(value: InfoSynchronousProxy) -> Self {
615 value.into_channel().into()
616 }
617}
618
619#[cfg(target_os = "fuchsia")]
620impl From<fidl::Channel> for InfoSynchronousProxy {
621 fn from(value: fidl::Channel) -> Self {
622 Self::new(value)
623 }
624}
625
626#[derive(Debug, Clone)]
627pub struct InfoProxy {
628 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
629}
630
631impl fidl::endpoints::Proxy for InfoProxy {
632 type Protocol = InfoMarker;
633
634 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
635 Self::new(inner)
636 }
637
638 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
639 self.client.into_channel().map_err(|client| Self { client })
640 }
641
642 fn as_channel(&self) -> &::fidl::AsyncChannel {
643 self.client.as_channel()
644 }
645}
646
647impl InfoProxy {
648 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
650 let protocol_name = <InfoMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
651 Self { client: fidl::client::Client::new(channel, protocol_name) }
652 }
653
654 pub fn take_event_stream(&self) -> InfoEventStream {
660 InfoEventStream { event_receiver: self.client.take_event_receiver() }
661 }
662
663 pub fn r#get_metrics(
664 &self,
665 ) -> fidl::client::QueryResponseFut<Metrics, fidl::encoding::DefaultFuchsiaResourceDialect>
666 {
667 InfoProxyInterface::r#get_metrics(self)
668 }
669}
670
671impl InfoProxyInterface for InfoProxy {
672 type GetMetricsResponseFut =
673 fidl::client::QueryResponseFut<Metrics, fidl::encoding::DefaultFuchsiaResourceDialect>;
674 fn r#get_metrics(&self) -> Self::GetMetricsResponseFut {
675 fn _decode(
676 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
677 ) -> Result<Metrics, fidl::Error> {
678 let _response = fidl::client::decode_transaction_body::<
679 InfoGetMetricsResponse,
680 fidl::encoding::DefaultFuchsiaResourceDialect,
681 0x6d631353834698be,
682 >(_buf?)?;
683 Ok(_response.info)
684 }
685 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Metrics>(
686 (),
687 0x6d631353834698be,
688 fidl::encoding::DynamicFlags::empty(),
689 _decode,
690 )
691 }
692}
693
694pub struct InfoEventStream {
695 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
696}
697
698impl std::marker::Unpin for InfoEventStream {}
699
700impl futures::stream::FusedStream for InfoEventStream {
701 fn is_terminated(&self) -> bool {
702 self.event_receiver.is_terminated()
703 }
704}
705
706impl futures::Stream for InfoEventStream {
707 type Item = Result<InfoEvent, fidl::Error>;
708
709 fn poll_next(
710 mut self: std::pin::Pin<&mut Self>,
711 cx: &mut std::task::Context<'_>,
712 ) -> std::task::Poll<Option<Self::Item>> {
713 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
714 &mut self.event_receiver,
715 cx
716 )?) {
717 Some(buf) => std::task::Poll::Ready(Some(InfoEvent::decode(buf))),
718 None => std::task::Poll::Ready(None),
719 }
720 }
721}
722
723#[derive(Debug)]
724pub enum InfoEvent {}
725
726impl InfoEvent {
727 fn decode(
729 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
730 ) -> Result<InfoEvent, fidl::Error> {
731 let (bytes, _handles) = buf.split_mut();
732 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
733 debug_assert_eq!(tx_header.tx_id, 0);
734 match tx_header.ordinal {
735 _ => Err(fidl::Error::UnknownOrdinal {
736 ordinal: tx_header.ordinal,
737 protocol_name: <InfoMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
738 }),
739 }
740 }
741}
742
743pub struct InfoRequestStream {
745 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
746 is_terminated: bool,
747}
748
749impl std::marker::Unpin for InfoRequestStream {}
750
751impl futures::stream::FusedStream for InfoRequestStream {
752 fn is_terminated(&self) -> bool {
753 self.is_terminated
754 }
755}
756
757impl fidl::endpoints::RequestStream for InfoRequestStream {
758 type Protocol = InfoMarker;
759 type ControlHandle = InfoControlHandle;
760
761 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
762 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
763 }
764
765 fn control_handle(&self) -> Self::ControlHandle {
766 InfoControlHandle { inner: self.inner.clone() }
767 }
768
769 fn into_inner(
770 self,
771 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
772 {
773 (self.inner, self.is_terminated)
774 }
775
776 fn from_inner(
777 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
778 is_terminated: bool,
779 ) -> Self {
780 Self { inner, is_terminated }
781 }
782}
783
784impl futures::Stream for InfoRequestStream {
785 type Item = Result<InfoRequest, fidl::Error>;
786
787 fn poll_next(
788 mut self: std::pin::Pin<&mut Self>,
789 cx: &mut std::task::Context<'_>,
790 ) -> std::task::Poll<Option<Self::Item>> {
791 let this = &mut *self;
792 if this.inner.check_shutdown(cx) {
793 this.is_terminated = true;
794 return std::task::Poll::Ready(None);
795 }
796 if this.is_terminated {
797 panic!("polled InfoRequestStream after completion");
798 }
799 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
800 |bytes, handles| {
801 match this.inner.channel().read_etc(cx, bytes, handles) {
802 std::task::Poll::Ready(Ok(())) => {}
803 std::task::Poll::Pending => return std::task::Poll::Pending,
804 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
805 this.is_terminated = true;
806 return std::task::Poll::Ready(None);
807 }
808 std::task::Poll::Ready(Err(e)) => {
809 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
810 e.into(),
811 ))))
812 }
813 }
814
815 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
817
818 std::task::Poll::Ready(Some(match header.ordinal {
819 0x6d631353834698be => {
820 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
821 let mut req = fidl::new_empty!(
822 fidl::encoding::EmptyPayload,
823 fidl::encoding::DefaultFuchsiaResourceDialect
824 );
825 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
826 let control_handle = InfoControlHandle { inner: this.inner.clone() };
827 Ok(InfoRequest::GetMetrics {
828 responder: InfoGetMetricsResponder {
829 control_handle: std::mem::ManuallyDrop::new(control_handle),
830 tx_id: header.tx_id,
831 },
832 })
833 }
834 _ => Err(fidl::Error::UnknownOrdinal {
835 ordinal: header.ordinal,
836 protocol_name: <InfoMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
837 }),
838 }))
839 },
840 )
841 }
842}
843
844#[derive(Debug)]
846pub enum InfoRequest {
847 GetMetrics { responder: InfoGetMetricsResponder },
848}
849
850impl InfoRequest {
851 #[allow(irrefutable_let_patterns)]
852 pub fn into_get_metrics(self) -> Option<(InfoGetMetricsResponder)> {
853 if let InfoRequest::GetMetrics { responder } = self {
854 Some((responder))
855 } else {
856 None
857 }
858 }
859
860 pub fn method_name(&self) -> &'static str {
862 match *self {
863 InfoRequest::GetMetrics { .. } => "get_metrics",
864 }
865 }
866}
867
868#[derive(Debug, Clone)]
869pub struct InfoControlHandle {
870 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
871}
872
873impl fidl::endpoints::ControlHandle for InfoControlHandle {
874 fn shutdown(&self) {
875 self.inner.shutdown()
876 }
877 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
878 self.inner.shutdown_with_epitaph(status)
879 }
880
881 fn is_closed(&self) -> bool {
882 self.inner.channel().is_closed()
883 }
884 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
885 self.inner.channel().on_closed()
886 }
887
888 #[cfg(target_os = "fuchsia")]
889 fn signal_peer(
890 &self,
891 clear_mask: zx::Signals,
892 set_mask: zx::Signals,
893 ) -> Result<(), zx_status::Status> {
894 use fidl::Peered;
895 self.inner.channel().signal_peer(clear_mask, set_mask)
896 }
897}
898
899impl InfoControlHandle {}
900
901#[must_use = "FIDL methods require a response to be sent"]
902#[derive(Debug)]
903pub struct InfoGetMetricsResponder {
904 control_handle: std::mem::ManuallyDrop<InfoControlHandle>,
905 tx_id: u32,
906}
907
908impl std::ops::Drop for InfoGetMetricsResponder {
912 fn drop(&mut self) {
913 self.control_handle.shutdown();
914 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
916 }
917}
918
919impl fidl::endpoints::Responder for InfoGetMetricsResponder {
920 type ControlHandle = InfoControlHandle;
921
922 fn control_handle(&self) -> &InfoControlHandle {
923 &self.control_handle
924 }
925
926 fn drop_without_shutdown(mut self) {
927 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
929 std::mem::forget(self);
931 }
932}
933
934impl InfoGetMetricsResponder {
935 pub fn send(self, mut info: &Metrics) -> Result<(), fidl::Error> {
939 let _result = self.send_raw(info);
940 if _result.is_err() {
941 self.control_handle.shutdown();
942 }
943 self.drop_without_shutdown();
944 _result
945 }
946
947 pub fn send_no_shutdown_on_err(self, mut info: &Metrics) -> Result<(), fidl::Error> {
949 let _result = self.send_raw(info);
950 self.drop_without_shutdown();
951 _result
952 }
953
954 fn send_raw(&self, mut info: &Metrics) -> Result<(), fidl::Error> {
955 self.control_handle.inner.send::<InfoGetMetricsResponse>(
956 (info,),
957 self.tx_id,
958 0x6d631353834698be,
959 fidl::encoding::DynamicFlags::empty(),
960 )
961 }
962}
963
964mod internal {
965 use super::*;
966}