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_power_internal_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct CollaborativeRebootSchedulerScheduleRebootRequest {
16 pub reason: CollaborativeRebootReason,
17 pub cancel: Option<fidl::EventPair>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
21 for CollaborativeRebootSchedulerScheduleRebootRequest
22{
23}
24
25#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
26pub struct CollaborativeRebootSchedulerMarker;
27
28impl fidl::endpoints::ProtocolMarker for CollaborativeRebootSchedulerMarker {
29 type Proxy = CollaborativeRebootSchedulerProxy;
30 type RequestStream = CollaborativeRebootSchedulerRequestStream;
31 #[cfg(target_os = "fuchsia")]
32 type SynchronousProxy = CollaborativeRebootSchedulerSynchronousProxy;
33
34 const DEBUG_NAME: &'static str = "fuchsia.power.internal.CollaborativeRebootScheduler";
35}
36impl fidl::endpoints::DiscoverableProtocolMarker for CollaborativeRebootSchedulerMarker {}
37
38pub trait CollaborativeRebootSchedulerProxyInterface: Send + Sync {
39 type ScheduleRebootResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
40 fn r#schedule_reboot(
41 &self,
42 reason: CollaborativeRebootReason,
43 cancel: Option<fidl::EventPair>,
44 ) -> Self::ScheduleRebootResponseFut;
45}
46#[derive(Debug)]
47#[cfg(target_os = "fuchsia")]
48pub struct CollaborativeRebootSchedulerSynchronousProxy {
49 client: fidl::client::sync::Client,
50}
51
52#[cfg(target_os = "fuchsia")]
53impl fidl::endpoints::SynchronousProxy for CollaborativeRebootSchedulerSynchronousProxy {
54 type Proxy = CollaborativeRebootSchedulerProxy;
55 type Protocol = CollaborativeRebootSchedulerMarker;
56
57 fn from_channel(inner: fidl::Channel) -> Self {
58 Self::new(inner)
59 }
60
61 fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 fn as_channel(&self) -> &fidl::Channel {
66 self.client.as_channel()
67 }
68}
69
70#[cfg(target_os = "fuchsia")]
71impl CollaborativeRebootSchedulerSynchronousProxy {
72 pub fn new(channel: fidl::Channel) -> Self {
73 let protocol_name =
74 <CollaborativeRebootSchedulerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
75 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
76 }
77
78 pub fn into_channel(self) -> fidl::Channel {
79 self.client.into_channel()
80 }
81
82 pub fn wait_for_event(
85 &self,
86 deadline: zx::MonotonicInstant,
87 ) -> Result<CollaborativeRebootSchedulerEvent, fidl::Error> {
88 CollaborativeRebootSchedulerEvent::decode(self.client.wait_for_event(deadline)?)
89 }
90
91 pub fn r#schedule_reboot(
112 &self,
113 mut reason: CollaborativeRebootReason,
114 mut cancel: Option<fidl::EventPair>,
115 ___deadline: zx::MonotonicInstant,
116 ) -> Result<(), fidl::Error> {
117 let _response = self.client.send_query::<
118 CollaborativeRebootSchedulerScheduleRebootRequest,
119 fidl::encoding::EmptyPayload,
120 >(
121 (reason, cancel,),
122 0x439c89c2c4b101ab,
123 fidl::encoding::DynamicFlags::empty(),
124 ___deadline,
125 )?;
126 Ok(_response)
127 }
128}
129
130#[cfg(target_os = "fuchsia")]
131impl From<CollaborativeRebootSchedulerSynchronousProxy> for zx::Handle {
132 fn from(value: CollaborativeRebootSchedulerSynchronousProxy) -> Self {
133 value.into_channel().into()
134 }
135}
136
137#[cfg(target_os = "fuchsia")]
138impl From<fidl::Channel> for CollaborativeRebootSchedulerSynchronousProxy {
139 fn from(value: fidl::Channel) -> Self {
140 Self::new(value)
141 }
142}
143
144#[derive(Debug, Clone)]
145pub struct CollaborativeRebootSchedulerProxy {
146 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
147}
148
149impl fidl::endpoints::Proxy for CollaborativeRebootSchedulerProxy {
150 type Protocol = CollaborativeRebootSchedulerMarker;
151
152 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
153 Self::new(inner)
154 }
155
156 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
157 self.client.into_channel().map_err(|client| Self { client })
158 }
159
160 fn as_channel(&self) -> &::fidl::AsyncChannel {
161 self.client.as_channel()
162 }
163}
164
165impl CollaborativeRebootSchedulerProxy {
166 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
168 let protocol_name =
169 <CollaborativeRebootSchedulerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
170 Self { client: fidl::client::Client::new(channel, protocol_name) }
171 }
172
173 pub fn take_event_stream(&self) -> CollaborativeRebootSchedulerEventStream {
179 CollaborativeRebootSchedulerEventStream {
180 event_receiver: self.client.take_event_receiver(),
181 }
182 }
183
184 pub fn r#schedule_reboot(
205 &self,
206 mut reason: CollaborativeRebootReason,
207 mut cancel: Option<fidl::EventPair>,
208 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
209 CollaborativeRebootSchedulerProxyInterface::r#schedule_reboot(self, reason, cancel)
210 }
211}
212
213impl CollaborativeRebootSchedulerProxyInterface for CollaborativeRebootSchedulerProxy {
214 type ScheduleRebootResponseFut =
215 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
216 fn r#schedule_reboot(
217 &self,
218 mut reason: CollaborativeRebootReason,
219 mut cancel: Option<fidl::EventPair>,
220 ) -> Self::ScheduleRebootResponseFut {
221 fn _decode(
222 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
223 ) -> Result<(), fidl::Error> {
224 let _response = fidl::client::decode_transaction_body::<
225 fidl::encoding::EmptyPayload,
226 fidl::encoding::DefaultFuchsiaResourceDialect,
227 0x439c89c2c4b101ab,
228 >(_buf?)?;
229 Ok(_response)
230 }
231 self.client.send_query_and_decode::<CollaborativeRebootSchedulerScheduleRebootRequest, ()>(
232 (reason, cancel),
233 0x439c89c2c4b101ab,
234 fidl::encoding::DynamicFlags::empty(),
235 _decode,
236 )
237 }
238}
239
240pub struct CollaborativeRebootSchedulerEventStream {
241 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
242}
243
244impl std::marker::Unpin for CollaborativeRebootSchedulerEventStream {}
245
246impl futures::stream::FusedStream for CollaborativeRebootSchedulerEventStream {
247 fn is_terminated(&self) -> bool {
248 self.event_receiver.is_terminated()
249 }
250}
251
252impl futures::Stream for CollaborativeRebootSchedulerEventStream {
253 type Item = Result<CollaborativeRebootSchedulerEvent, fidl::Error>;
254
255 fn poll_next(
256 mut self: std::pin::Pin<&mut Self>,
257 cx: &mut std::task::Context<'_>,
258 ) -> std::task::Poll<Option<Self::Item>> {
259 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
260 &mut self.event_receiver,
261 cx
262 )?) {
263 Some(buf) => {
264 std::task::Poll::Ready(Some(CollaborativeRebootSchedulerEvent::decode(buf)))
265 }
266 None => std::task::Poll::Ready(None),
267 }
268 }
269}
270
271#[derive(Debug)]
272pub enum CollaborativeRebootSchedulerEvent {}
273
274impl CollaborativeRebootSchedulerEvent {
275 fn decode(
277 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
278 ) -> Result<CollaborativeRebootSchedulerEvent, fidl::Error> {
279 let (bytes, _handles) = buf.split_mut();
280 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
281 debug_assert_eq!(tx_header.tx_id, 0);
282 match tx_header.ordinal {
283 _ => Err(fidl::Error::UnknownOrdinal {
284 ordinal: tx_header.ordinal,
285 protocol_name: <CollaborativeRebootSchedulerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
286 })
287 }
288 }
289}
290
291pub struct CollaborativeRebootSchedulerRequestStream {
293 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
294 is_terminated: bool,
295}
296
297impl std::marker::Unpin for CollaborativeRebootSchedulerRequestStream {}
298
299impl futures::stream::FusedStream for CollaborativeRebootSchedulerRequestStream {
300 fn is_terminated(&self) -> bool {
301 self.is_terminated
302 }
303}
304
305impl fidl::endpoints::RequestStream for CollaborativeRebootSchedulerRequestStream {
306 type Protocol = CollaborativeRebootSchedulerMarker;
307 type ControlHandle = CollaborativeRebootSchedulerControlHandle;
308
309 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
310 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
311 }
312
313 fn control_handle(&self) -> Self::ControlHandle {
314 CollaborativeRebootSchedulerControlHandle { inner: self.inner.clone() }
315 }
316
317 fn into_inner(
318 self,
319 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
320 {
321 (self.inner, self.is_terminated)
322 }
323
324 fn from_inner(
325 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
326 is_terminated: bool,
327 ) -> Self {
328 Self { inner, is_terminated }
329 }
330}
331
332impl futures::Stream for CollaborativeRebootSchedulerRequestStream {
333 type Item = Result<CollaborativeRebootSchedulerRequest, fidl::Error>;
334
335 fn poll_next(
336 mut self: std::pin::Pin<&mut Self>,
337 cx: &mut std::task::Context<'_>,
338 ) -> std::task::Poll<Option<Self::Item>> {
339 let this = &mut *self;
340 if this.inner.check_shutdown(cx) {
341 this.is_terminated = true;
342 return std::task::Poll::Ready(None);
343 }
344 if this.is_terminated {
345 panic!("polled CollaborativeRebootSchedulerRequestStream after completion");
346 }
347 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
348 |bytes, handles| {
349 match this.inner.channel().read_etc(cx, bytes, handles) {
350 std::task::Poll::Ready(Ok(())) => {}
351 std::task::Poll::Pending => return std::task::Poll::Pending,
352 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
353 this.is_terminated = true;
354 return std::task::Poll::Ready(None);
355 }
356 std::task::Poll::Ready(Err(e)) => {
357 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
358 e.into(),
359 ))))
360 }
361 }
362
363 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
365
366 std::task::Poll::Ready(Some(match header.ordinal {
367 0x439c89c2c4b101ab => {
368 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
369 let mut req = fidl::new_empty!(CollaborativeRebootSchedulerScheduleRebootRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
370 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CollaborativeRebootSchedulerScheduleRebootRequest>(&header, _body_bytes, handles, &mut req)?;
371 let control_handle = CollaborativeRebootSchedulerControlHandle {
372 inner: this.inner.clone(),
373 };
374 Ok(CollaborativeRebootSchedulerRequest::ScheduleReboot {reason: req.reason,
375cancel: req.cancel,
376
377 responder: CollaborativeRebootSchedulerScheduleRebootResponder {
378 control_handle: std::mem::ManuallyDrop::new(control_handle),
379 tx_id: header.tx_id,
380 },
381 })
382 }
383 _ => Err(fidl::Error::UnknownOrdinal {
384 ordinal: header.ordinal,
385 protocol_name: <CollaborativeRebootSchedulerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
386 }),
387 }))
388 },
389 )
390 }
391}
392
393#[derive(Debug)]
414pub enum CollaborativeRebootSchedulerRequest {
415 ScheduleReboot {
436 reason: CollaborativeRebootReason,
437 cancel: Option<fidl::EventPair>,
438 responder: CollaborativeRebootSchedulerScheduleRebootResponder,
439 },
440}
441
442impl CollaborativeRebootSchedulerRequest {
443 #[allow(irrefutable_let_patterns)]
444 pub fn into_schedule_reboot(
445 self,
446 ) -> Option<(
447 CollaborativeRebootReason,
448 Option<fidl::EventPair>,
449 CollaborativeRebootSchedulerScheduleRebootResponder,
450 )> {
451 if let CollaborativeRebootSchedulerRequest::ScheduleReboot { reason, cancel, responder } =
452 self
453 {
454 Some((reason, cancel, responder))
455 } else {
456 None
457 }
458 }
459
460 pub fn method_name(&self) -> &'static str {
462 match *self {
463 CollaborativeRebootSchedulerRequest::ScheduleReboot { .. } => "schedule_reboot",
464 }
465 }
466}
467
468#[derive(Debug, Clone)]
469pub struct CollaborativeRebootSchedulerControlHandle {
470 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
471}
472
473impl fidl::endpoints::ControlHandle for CollaborativeRebootSchedulerControlHandle {
474 fn shutdown(&self) {
475 self.inner.shutdown()
476 }
477 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
478 self.inner.shutdown_with_epitaph(status)
479 }
480
481 fn is_closed(&self) -> bool {
482 self.inner.channel().is_closed()
483 }
484 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
485 self.inner.channel().on_closed()
486 }
487
488 #[cfg(target_os = "fuchsia")]
489 fn signal_peer(
490 &self,
491 clear_mask: zx::Signals,
492 set_mask: zx::Signals,
493 ) -> Result<(), zx_status::Status> {
494 use fidl::Peered;
495 self.inner.channel().signal_peer(clear_mask, set_mask)
496 }
497}
498
499impl CollaborativeRebootSchedulerControlHandle {}
500
501#[must_use = "FIDL methods require a response to be sent"]
502#[derive(Debug)]
503pub struct CollaborativeRebootSchedulerScheduleRebootResponder {
504 control_handle: std::mem::ManuallyDrop<CollaborativeRebootSchedulerControlHandle>,
505 tx_id: u32,
506}
507
508impl std::ops::Drop for CollaborativeRebootSchedulerScheduleRebootResponder {
512 fn drop(&mut self) {
513 self.control_handle.shutdown();
514 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
516 }
517}
518
519impl fidl::endpoints::Responder for CollaborativeRebootSchedulerScheduleRebootResponder {
520 type ControlHandle = CollaborativeRebootSchedulerControlHandle;
521
522 fn control_handle(&self) -> &CollaborativeRebootSchedulerControlHandle {
523 &self.control_handle
524 }
525
526 fn drop_without_shutdown(mut self) {
527 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
529 std::mem::forget(self);
531 }
532}
533
534impl CollaborativeRebootSchedulerScheduleRebootResponder {
535 pub fn send(self) -> Result<(), fidl::Error> {
539 let _result = self.send_raw();
540 if _result.is_err() {
541 self.control_handle.shutdown();
542 }
543 self.drop_without_shutdown();
544 _result
545 }
546
547 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
549 let _result = self.send_raw();
550 self.drop_without_shutdown();
551 _result
552 }
553
554 fn send_raw(&self) -> Result<(), fidl::Error> {
555 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
556 (),
557 self.tx_id,
558 0x439c89c2c4b101ab,
559 fidl::encoding::DynamicFlags::empty(),
560 )
561 }
562}
563
564mod internal {
565 use super::*;
566
567 impl fidl::encoding::ResourceTypeMarker for CollaborativeRebootSchedulerScheduleRebootRequest {
568 type Borrowed<'a> = &'a mut Self;
569 fn take_or_borrow<'a>(
570 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
571 ) -> Self::Borrowed<'a> {
572 value
573 }
574 }
575
576 unsafe impl fidl::encoding::TypeMarker for CollaborativeRebootSchedulerScheduleRebootRequest {
577 type Owned = Self;
578
579 #[inline(always)]
580 fn inline_align(_context: fidl::encoding::Context) -> usize {
581 4
582 }
583
584 #[inline(always)]
585 fn inline_size(_context: fidl::encoding::Context) -> usize {
586 8
587 }
588 }
589
590 unsafe impl
591 fidl::encoding::Encode<
592 CollaborativeRebootSchedulerScheduleRebootRequest,
593 fidl::encoding::DefaultFuchsiaResourceDialect,
594 > for &mut CollaborativeRebootSchedulerScheduleRebootRequest
595 {
596 #[inline]
597 unsafe fn encode(
598 self,
599 encoder: &mut fidl::encoding::Encoder<
600 '_,
601 fidl::encoding::DefaultFuchsiaResourceDialect,
602 >,
603 offset: usize,
604 _depth: fidl::encoding::Depth,
605 ) -> fidl::Result<()> {
606 encoder.debug_check_bounds::<CollaborativeRebootSchedulerScheduleRebootRequest>(offset);
607 fidl::encoding::Encode::<
609 CollaborativeRebootSchedulerScheduleRebootRequest,
610 fidl::encoding::DefaultFuchsiaResourceDialect,
611 >::encode(
612 (
613 <CollaborativeRebootReason as fidl::encoding::ValueTypeMarker>::borrow(
614 &self.reason,
615 ),
616 <fidl::encoding::Optional<
617 fidl::encoding::HandleType<
618 fidl::EventPair,
619 { fidl::ObjectType::EVENTPAIR.into_raw() },
620 16384,
621 >,
622 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
623 &mut self.cancel
624 ),
625 ),
626 encoder,
627 offset,
628 _depth,
629 )
630 }
631 }
632 unsafe impl<
633 T0: fidl::encoding::Encode<
634 CollaborativeRebootReason,
635 fidl::encoding::DefaultFuchsiaResourceDialect,
636 >,
637 T1: fidl::encoding::Encode<
638 fidl::encoding::Optional<
639 fidl::encoding::HandleType<
640 fidl::EventPair,
641 { fidl::ObjectType::EVENTPAIR.into_raw() },
642 16384,
643 >,
644 >,
645 fidl::encoding::DefaultFuchsiaResourceDialect,
646 >,
647 >
648 fidl::encoding::Encode<
649 CollaborativeRebootSchedulerScheduleRebootRequest,
650 fidl::encoding::DefaultFuchsiaResourceDialect,
651 > for (T0, T1)
652 {
653 #[inline]
654 unsafe fn encode(
655 self,
656 encoder: &mut fidl::encoding::Encoder<
657 '_,
658 fidl::encoding::DefaultFuchsiaResourceDialect,
659 >,
660 offset: usize,
661 depth: fidl::encoding::Depth,
662 ) -> fidl::Result<()> {
663 encoder.debug_check_bounds::<CollaborativeRebootSchedulerScheduleRebootRequest>(offset);
664 self.0.encode(encoder, offset + 0, depth)?;
668 self.1.encode(encoder, offset + 4, depth)?;
669 Ok(())
670 }
671 }
672
673 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
674 for CollaborativeRebootSchedulerScheduleRebootRequest
675 {
676 #[inline(always)]
677 fn new_empty() -> Self {
678 Self {
679 reason: fidl::new_empty!(
680 CollaborativeRebootReason,
681 fidl::encoding::DefaultFuchsiaResourceDialect
682 ),
683 cancel: fidl::new_empty!(
684 fidl::encoding::Optional<
685 fidl::encoding::HandleType<
686 fidl::EventPair,
687 { fidl::ObjectType::EVENTPAIR.into_raw() },
688 16384,
689 >,
690 >,
691 fidl::encoding::DefaultFuchsiaResourceDialect
692 ),
693 }
694 }
695
696 #[inline]
697 unsafe fn decode(
698 &mut self,
699 decoder: &mut fidl::encoding::Decoder<
700 '_,
701 fidl::encoding::DefaultFuchsiaResourceDialect,
702 >,
703 offset: usize,
704 _depth: fidl::encoding::Depth,
705 ) -> fidl::Result<()> {
706 decoder.debug_check_bounds::<Self>(offset);
707 fidl::decode!(
709 CollaborativeRebootReason,
710 fidl::encoding::DefaultFuchsiaResourceDialect,
711 &mut self.reason,
712 decoder,
713 offset + 0,
714 _depth
715 )?;
716 fidl::decode!(
717 fidl::encoding::Optional<
718 fidl::encoding::HandleType<
719 fidl::EventPair,
720 { fidl::ObjectType::EVENTPAIR.into_raw() },
721 16384,
722 >,
723 >,
724 fidl::encoding::DefaultFuchsiaResourceDialect,
725 &mut self.cancel,
726 decoder,
727 offset + 4,
728 _depth
729 )?;
730 Ok(())
731 }
732 }
733}