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_session_power_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct HandoffTakeResponse {
16 pub lease: fidl::Handle,
26}
27
28impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for HandoffTakeResponse {}
29
30#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
31pub struct HandoffMarker;
32
33impl fidl::endpoints::ProtocolMarker for HandoffMarker {
34 type Proxy = HandoffProxy;
35 type RequestStream = HandoffRequestStream;
36 #[cfg(target_os = "fuchsia")]
37 type SynchronousProxy = HandoffSynchronousProxy;
38
39 const DEBUG_NAME: &'static str = "fuchsia.session.power.Handoff";
40}
41impl fidl::endpoints::DiscoverableProtocolMarker for HandoffMarker {}
42pub type HandoffTakeResult = Result<fidl::Handle, HandoffError>;
43
44pub trait HandoffProxyInterface: Send + Sync {
45 type TakeResponseFut: std::future::Future<Output = Result<HandoffTakeResult, fidl::Error>>
46 + Send;
47 fn r#take(&self) -> Self::TakeResponseFut;
48}
49#[derive(Debug)]
50#[cfg(target_os = "fuchsia")]
51pub struct HandoffSynchronousProxy {
52 client: fidl::client::sync::Client,
53}
54
55#[cfg(target_os = "fuchsia")]
56impl fidl::endpoints::SynchronousProxy for HandoffSynchronousProxy {
57 type Proxy = HandoffProxy;
58 type Protocol = HandoffMarker;
59
60 fn from_channel(inner: fidl::Channel) -> Self {
61 Self::new(inner)
62 }
63
64 fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 fn as_channel(&self) -> &fidl::Channel {
69 self.client.as_channel()
70 }
71}
72
73#[cfg(target_os = "fuchsia")]
74impl HandoffSynchronousProxy {
75 pub fn new(channel: fidl::Channel) -> Self {
76 let protocol_name = <HandoffMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
77 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
78 }
79
80 pub fn into_channel(self) -> fidl::Channel {
81 self.client.into_channel()
82 }
83
84 pub fn wait_for_event(
87 &self,
88 deadline: zx::MonotonicInstant,
89 ) -> Result<HandoffEvent, fidl::Error> {
90 HandoffEvent::decode(self.client.wait_for_event(deadline)?)
91 }
92
93 pub fn r#take(
95 &self,
96 ___deadline: zx::MonotonicInstant,
97 ) -> Result<HandoffTakeResult, fidl::Error> {
98 let _response = self.client.send_query::<
99 fidl::encoding::EmptyPayload,
100 fidl::encoding::FlexibleResultType<HandoffTakeResponse, HandoffError>,
101 >(
102 (),
103 0x7150089bdc73770b,
104 fidl::encoding::DynamicFlags::FLEXIBLE,
105 ___deadline,
106 )?
107 .into_result::<HandoffMarker>("take")?;
108 Ok(_response.map(|x| x.lease))
109 }
110}
111
112#[cfg(target_os = "fuchsia")]
113impl From<HandoffSynchronousProxy> for zx::Handle {
114 fn from(value: HandoffSynchronousProxy) -> Self {
115 value.into_channel().into()
116 }
117}
118
119#[cfg(target_os = "fuchsia")]
120impl From<fidl::Channel> for HandoffSynchronousProxy {
121 fn from(value: fidl::Channel) -> Self {
122 Self::new(value)
123 }
124}
125
126#[derive(Debug, Clone)]
127pub struct HandoffProxy {
128 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
129}
130
131impl fidl::endpoints::Proxy for HandoffProxy {
132 type Protocol = HandoffMarker;
133
134 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
135 Self::new(inner)
136 }
137
138 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
139 self.client.into_channel().map_err(|client| Self { client })
140 }
141
142 fn as_channel(&self) -> &::fidl::AsyncChannel {
143 self.client.as_channel()
144 }
145}
146
147impl HandoffProxy {
148 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
150 let protocol_name = <HandoffMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
151 Self { client: fidl::client::Client::new(channel, protocol_name) }
152 }
153
154 pub fn take_event_stream(&self) -> HandoffEventStream {
160 HandoffEventStream { event_receiver: self.client.take_event_receiver() }
161 }
162
163 pub fn r#take(
165 &self,
166 ) -> fidl::client::QueryResponseFut<
167 HandoffTakeResult,
168 fidl::encoding::DefaultFuchsiaResourceDialect,
169 > {
170 HandoffProxyInterface::r#take(self)
171 }
172}
173
174impl HandoffProxyInterface for HandoffProxy {
175 type TakeResponseFut = fidl::client::QueryResponseFut<
176 HandoffTakeResult,
177 fidl::encoding::DefaultFuchsiaResourceDialect,
178 >;
179 fn r#take(&self) -> Self::TakeResponseFut {
180 fn _decode(
181 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
182 ) -> Result<HandoffTakeResult, fidl::Error> {
183 let _response = fidl::client::decode_transaction_body::<
184 fidl::encoding::FlexibleResultType<HandoffTakeResponse, HandoffError>,
185 fidl::encoding::DefaultFuchsiaResourceDialect,
186 0x7150089bdc73770b,
187 >(_buf?)?
188 .into_result::<HandoffMarker>("take")?;
189 Ok(_response.map(|x| x.lease))
190 }
191 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, HandoffTakeResult>(
192 (),
193 0x7150089bdc73770b,
194 fidl::encoding::DynamicFlags::FLEXIBLE,
195 _decode,
196 )
197 }
198}
199
200pub struct HandoffEventStream {
201 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
202}
203
204impl std::marker::Unpin for HandoffEventStream {}
205
206impl futures::stream::FusedStream for HandoffEventStream {
207 fn is_terminated(&self) -> bool {
208 self.event_receiver.is_terminated()
209 }
210}
211
212impl futures::Stream for HandoffEventStream {
213 type Item = Result<HandoffEvent, fidl::Error>;
214
215 fn poll_next(
216 mut self: std::pin::Pin<&mut Self>,
217 cx: &mut std::task::Context<'_>,
218 ) -> std::task::Poll<Option<Self::Item>> {
219 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
220 &mut self.event_receiver,
221 cx
222 )?) {
223 Some(buf) => std::task::Poll::Ready(Some(HandoffEvent::decode(buf))),
224 None => std::task::Poll::Ready(None),
225 }
226 }
227}
228
229#[derive(Debug)]
230pub enum HandoffEvent {
231 #[non_exhaustive]
232 _UnknownEvent {
233 ordinal: u64,
235 },
236}
237
238impl HandoffEvent {
239 fn decode(
241 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
242 ) -> Result<HandoffEvent, fidl::Error> {
243 let (bytes, _handles) = buf.split_mut();
244 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
245 debug_assert_eq!(tx_header.tx_id, 0);
246 match tx_header.ordinal {
247 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
248 Ok(HandoffEvent::_UnknownEvent { ordinal: tx_header.ordinal })
249 }
250 _ => Err(fidl::Error::UnknownOrdinal {
251 ordinal: tx_header.ordinal,
252 protocol_name: <HandoffMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
253 }),
254 }
255 }
256}
257
258pub struct HandoffRequestStream {
260 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
261 is_terminated: bool,
262}
263
264impl std::marker::Unpin for HandoffRequestStream {}
265
266impl futures::stream::FusedStream for HandoffRequestStream {
267 fn is_terminated(&self) -> bool {
268 self.is_terminated
269 }
270}
271
272impl fidl::endpoints::RequestStream for HandoffRequestStream {
273 type Protocol = HandoffMarker;
274 type ControlHandle = HandoffControlHandle;
275
276 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
277 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
278 }
279
280 fn control_handle(&self) -> Self::ControlHandle {
281 HandoffControlHandle { inner: self.inner.clone() }
282 }
283
284 fn into_inner(
285 self,
286 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
287 {
288 (self.inner, self.is_terminated)
289 }
290
291 fn from_inner(
292 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
293 is_terminated: bool,
294 ) -> Self {
295 Self { inner, is_terminated }
296 }
297}
298
299impl futures::Stream for HandoffRequestStream {
300 type Item = Result<HandoffRequest, fidl::Error>;
301
302 fn poll_next(
303 mut self: std::pin::Pin<&mut Self>,
304 cx: &mut std::task::Context<'_>,
305 ) -> std::task::Poll<Option<Self::Item>> {
306 let this = &mut *self;
307 if this.inner.check_shutdown(cx) {
308 this.is_terminated = true;
309 return std::task::Poll::Ready(None);
310 }
311 if this.is_terminated {
312 panic!("polled HandoffRequestStream after completion");
313 }
314 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
315 |bytes, handles| {
316 match this.inner.channel().read_etc(cx, bytes, handles) {
317 std::task::Poll::Ready(Ok(())) => {}
318 std::task::Poll::Pending => return std::task::Poll::Pending,
319 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
320 this.is_terminated = true;
321 return std::task::Poll::Ready(None);
322 }
323 std::task::Poll::Ready(Err(e)) => {
324 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
325 e.into(),
326 ))))
327 }
328 }
329
330 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
332
333 std::task::Poll::Ready(Some(match header.ordinal {
334 0x7150089bdc73770b => {
335 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
336 let mut req = fidl::new_empty!(
337 fidl::encoding::EmptyPayload,
338 fidl::encoding::DefaultFuchsiaResourceDialect
339 );
340 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
341 let control_handle = HandoffControlHandle { inner: this.inner.clone() };
342 Ok(HandoffRequest::Take {
343 responder: HandoffTakeResponder {
344 control_handle: std::mem::ManuallyDrop::new(control_handle),
345 tx_id: header.tx_id,
346 },
347 })
348 }
349 _ if header.tx_id == 0
350 && header
351 .dynamic_flags()
352 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
353 {
354 Ok(HandoffRequest::_UnknownMethod {
355 ordinal: header.ordinal,
356 control_handle: HandoffControlHandle { inner: this.inner.clone() },
357 method_type: fidl::MethodType::OneWay,
358 })
359 }
360 _ if header
361 .dynamic_flags()
362 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
363 {
364 this.inner.send_framework_err(
365 fidl::encoding::FrameworkErr::UnknownMethod,
366 header.tx_id,
367 header.ordinal,
368 header.dynamic_flags(),
369 (bytes, handles),
370 )?;
371 Ok(HandoffRequest::_UnknownMethod {
372 ordinal: header.ordinal,
373 control_handle: HandoffControlHandle { inner: this.inner.clone() },
374 method_type: fidl::MethodType::TwoWay,
375 })
376 }
377 _ => Err(fidl::Error::UnknownOrdinal {
378 ordinal: header.ordinal,
379 protocol_name:
380 <HandoffMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
381 }),
382 }))
383 },
384 )
385 }
386}
387
388#[derive(Debug)]
396pub enum HandoffRequest {
397 Take { responder: HandoffTakeResponder },
399 #[non_exhaustive]
401 _UnknownMethod {
402 ordinal: u64,
404 control_handle: HandoffControlHandle,
405 method_type: fidl::MethodType,
406 },
407}
408
409impl HandoffRequest {
410 #[allow(irrefutable_let_patterns)]
411 pub fn into_take(self) -> Option<(HandoffTakeResponder)> {
412 if let HandoffRequest::Take { responder } = self {
413 Some((responder))
414 } else {
415 None
416 }
417 }
418
419 pub fn method_name(&self) -> &'static str {
421 match *self {
422 HandoffRequest::Take { .. } => "take",
423 HandoffRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
424 "unknown one-way method"
425 }
426 HandoffRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
427 "unknown two-way method"
428 }
429 }
430 }
431}
432
433#[derive(Debug, Clone)]
434pub struct HandoffControlHandle {
435 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
436}
437
438impl fidl::endpoints::ControlHandle for HandoffControlHandle {
439 fn shutdown(&self) {
440 self.inner.shutdown()
441 }
442 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
443 self.inner.shutdown_with_epitaph(status)
444 }
445
446 fn is_closed(&self) -> bool {
447 self.inner.channel().is_closed()
448 }
449 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
450 self.inner.channel().on_closed()
451 }
452
453 #[cfg(target_os = "fuchsia")]
454 fn signal_peer(
455 &self,
456 clear_mask: zx::Signals,
457 set_mask: zx::Signals,
458 ) -> Result<(), zx_status::Status> {
459 use fidl::Peered;
460 self.inner.channel().signal_peer(clear_mask, set_mask)
461 }
462}
463
464impl HandoffControlHandle {}
465
466#[must_use = "FIDL methods require a response to be sent"]
467#[derive(Debug)]
468pub struct HandoffTakeResponder {
469 control_handle: std::mem::ManuallyDrop<HandoffControlHandle>,
470 tx_id: u32,
471}
472
473impl std::ops::Drop for HandoffTakeResponder {
477 fn drop(&mut self) {
478 self.control_handle.shutdown();
479 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
481 }
482}
483
484impl fidl::endpoints::Responder for HandoffTakeResponder {
485 type ControlHandle = HandoffControlHandle;
486
487 fn control_handle(&self) -> &HandoffControlHandle {
488 &self.control_handle
489 }
490
491 fn drop_without_shutdown(mut self) {
492 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
494 std::mem::forget(self);
496 }
497}
498
499impl HandoffTakeResponder {
500 pub fn send(self, mut result: Result<fidl::Handle, HandoffError>) -> Result<(), fidl::Error> {
504 let _result = self.send_raw(result);
505 if _result.is_err() {
506 self.control_handle.shutdown();
507 }
508 self.drop_without_shutdown();
509 _result
510 }
511
512 pub fn send_no_shutdown_on_err(
514 self,
515 mut result: Result<fidl::Handle, HandoffError>,
516 ) -> Result<(), fidl::Error> {
517 let _result = self.send_raw(result);
518 self.drop_without_shutdown();
519 _result
520 }
521
522 fn send_raw(&self, mut result: Result<fidl::Handle, HandoffError>) -> Result<(), fidl::Error> {
523 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
524 HandoffTakeResponse,
525 HandoffError,
526 >>(
527 fidl::encoding::FlexibleResult::new(result.map(|lease| (lease,))),
528 self.tx_id,
529 0x7150089bdc73770b,
530 fidl::encoding::DynamicFlags::FLEXIBLE,
531 )
532 }
533}
534
535mod internal {
536 use super::*;
537
538 impl fidl::encoding::ResourceTypeMarker for HandoffTakeResponse {
539 type Borrowed<'a> = &'a mut Self;
540 fn take_or_borrow<'a>(
541 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
542 ) -> Self::Borrowed<'a> {
543 value
544 }
545 }
546
547 unsafe impl fidl::encoding::TypeMarker for HandoffTakeResponse {
548 type Owned = Self;
549
550 #[inline(always)]
551 fn inline_align(_context: fidl::encoding::Context) -> usize {
552 4
553 }
554
555 #[inline(always)]
556 fn inline_size(_context: fidl::encoding::Context) -> usize {
557 4
558 }
559 }
560
561 unsafe impl
562 fidl::encoding::Encode<HandoffTakeResponse, fidl::encoding::DefaultFuchsiaResourceDialect>
563 for &mut HandoffTakeResponse
564 {
565 #[inline]
566 unsafe fn encode(
567 self,
568 encoder: &mut fidl::encoding::Encoder<
569 '_,
570 fidl::encoding::DefaultFuchsiaResourceDialect,
571 >,
572 offset: usize,
573 _depth: fidl::encoding::Depth,
574 ) -> fidl::Result<()> {
575 encoder.debug_check_bounds::<HandoffTakeResponse>(offset);
576 fidl::encoding::Encode::<
578 HandoffTakeResponse,
579 fidl::encoding::DefaultFuchsiaResourceDialect,
580 >::encode(
581 (<fidl::encoding::HandleType<
582 fidl::Handle,
583 { fidl::ObjectType::NONE.into_raw() },
584 2147483648,
585 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
586 &mut self.lease
587 ),),
588 encoder,
589 offset,
590 _depth,
591 )
592 }
593 }
594 unsafe impl<
595 T0: fidl::encoding::Encode<
596 fidl::encoding::HandleType<
597 fidl::Handle,
598 { fidl::ObjectType::NONE.into_raw() },
599 2147483648,
600 >,
601 fidl::encoding::DefaultFuchsiaResourceDialect,
602 >,
603 >
604 fidl::encoding::Encode<HandoffTakeResponse, fidl::encoding::DefaultFuchsiaResourceDialect>
605 for (T0,)
606 {
607 #[inline]
608 unsafe fn encode(
609 self,
610 encoder: &mut fidl::encoding::Encoder<
611 '_,
612 fidl::encoding::DefaultFuchsiaResourceDialect,
613 >,
614 offset: usize,
615 depth: fidl::encoding::Depth,
616 ) -> fidl::Result<()> {
617 encoder.debug_check_bounds::<HandoffTakeResponse>(offset);
618 self.0.encode(encoder, offset + 0, depth)?;
622 Ok(())
623 }
624 }
625
626 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
627 for HandoffTakeResponse
628 {
629 #[inline(always)]
630 fn new_empty() -> Self {
631 Self {
632 lease: fidl::new_empty!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
633 }
634 }
635
636 #[inline]
637 unsafe fn decode(
638 &mut self,
639 decoder: &mut fidl::encoding::Decoder<
640 '_,
641 fidl::encoding::DefaultFuchsiaResourceDialect,
642 >,
643 offset: usize,
644 _depth: fidl::encoding::Depth,
645 ) -> fidl::Result<()> {
646 decoder.debug_check_bounds::<Self>(offset);
647 fidl::decode!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.lease, decoder, offset + 0, _depth)?;
649 Ok(())
650 }
651 }
652}