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_input_injection_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct InputDeviceRegistryRegisterAndGetDeviceInfoRequest {
16 pub device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for InputDeviceRegistryRegisterAndGetDeviceInfoRequest
21{
22}
23
24#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
25pub struct InputDeviceRegistryRegisterRequest {
26 pub device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
27}
28
29impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
30 for InputDeviceRegistryRegisterRequest
31{
32}
33
34#[derive(Debug, Default, PartialEq)]
35pub struct InputDeviceRegistryRegisterAndGetDeviceInfoResponse {
36 pub device_id: Option<u32>,
37 #[doc(hidden)]
38 pub __source_breaking: fidl::marker::SourceBreaking,
39}
40
41impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
42 for InputDeviceRegistryRegisterAndGetDeviceInfoResponse
43{
44}
45
46#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
47pub struct InputDeviceRegistryMarker;
48
49impl fidl::endpoints::ProtocolMarker for InputDeviceRegistryMarker {
50 type Proxy = InputDeviceRegistryProxy;
51 type RequestStream = InputDeviceRegistryRequestStream;
52 #[cfg(target_os = "fuchsia")]
53 type SynchronousProxy = InputDeviceRegistrySynchronousProxy;
54
55 const DEBUG_NAME: &'static str = "fuchsia.input.injection.InputDeviceRegistry";
56}
57impl fidl::endpoints::DiscoverableProtocolMarker for InputDeviceRegistryMarker {}
58
59pub trait InputDeviceRegistryProxyInterface: Send + Sync {
60 fn r#register(
61 &self,
62 device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
63 ) -> Result<(), fidl::Error>;
64 type RegisterAndGetDeviceInfoResponseFut: std::future::Future<
65 Output = Result<InputDeviceRegistryRegisterAndGetDeviceInfoResponse, fidl::Error>,
66 > + Send;
67 fn r#register_and_get_device_info(
68 &self,
69 device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
70 ) -> Self::RegisterAndGetDeviceInfoResponseFut;
71}
72#[derive(Debug)]
73#[cfg(target_os = "fuchsia")]
74pub struct InputDeviceRegistrySynchronousProxy {
75 client: fidl::client::sync::Client,
76}
77
78#[cfg(target_os = "fuchsia")]
79impl fidl::endpoints::SynchronousProxy for InputDeviceRegistrySynchronousProxy {
80 type Proxy = InputDeviceRegistryProxy;
81 type Protocol = InputDeviceRegistryMarker;
82
83 fn from_channel(inner: fidl::Channel) -> Self {
84 Self::new(inner)
85 }
86
87 fn into_channel(self) -> fidl::Channel {
88 self.client.into_channel()
89 }
90
91 fn as_channel(&self) -> &fidl::Channel {
92 self.client.as_channel()
93 }
94}
95
96#[cfg(target_os = "fuchsia")]
97impl InputDeviceRegistrySynchronousProxy {
98 pub fn new(channel: fidl::Channel) -> Self {
99 let protocol_name =
100 <InputDeviceRegistryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
101 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
102 }
103
104 pub fn into_channel(self) -> fidl::Channel {
105 self.client.into_channel()
106 }
107
108 pub fn wait_for_event(
111 &self,
112 deadline: zx::MonotonicInstant,
113 ) -> Result<InputDeviceRegistryEvent, fidl::Error> {
114 InputDeviceRegistryEvent::decode(self.client.wait_for_event(deadline)?)
115 }
116
117 pub fn r#register(
121 &self,
122 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
123 ) -> Result<(), fidl::Error> {
124 self.client.send::<InputDeviceRegistryRegisterRequest>(
125 (device,),
126 0x523ec9804a4d8d45,
127 fidl::encoding::DynamicFlags::empty(),
128 )
129 }
130
131 pub fn r#register_and_get_device_info(
136 &self,
137 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
138 ___deadline: zx::MonotonicInstant,
139 ) -> Result<InputDeviceRegistryRegisterAndGetDeviceInfoResponse, fidl::Error> {
140 let _response = self.client.send_query::<
141 InputDeviceRegistryRegisterAndGetDeviceInfoRequest,
142 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
143 >(
144 (device,),
145 0x41db5035990763bc,
146 fidl::encoding::DynamicFlags::empty(),
147 ___deadline,
148 )?;
149 Ok(_response)
150 }
151}
152
153#[cfg(target_os = "fuchsia")]
154impl From<InputDeviceRegistrySynchronousProxy> for zx::Handle {
155 fn from(value: InputDeviceRegistrySynchronousProxy) -> Self {
156 value.into_channel().into()
157 }
158}
159
160#[cfg(target_os = "fuchsia")]
161impl From<fidl::Channel> for InputDeviceRegistrySynchronousProxy {
162 fn from(value: fidl::Channel) -> Self {
163 Self::new(value)
164 }
165}
166
167#[derive(Debug, Clone)]
168pub struct InputDeviceRegistryProxy {
169 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
170}
171
172impl fidl::endpoints::Proxy for InputDeviceRegistryProxy {
173 type Protocol = InputDeviceRegistryMarker;
174
175 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
176 Self::new(inner)
177 }
178
179 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
180 self.client.into_channel().map_err(|client| Self { client })
181 }
182
183 fn as_channel(&self) -> &::fidl::AsyncChannel {
184 self.client.as_channel()
185 }
186}
187
188impl InputDeviceRegistryProxy {
189 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
191 let protocol_name =
192 <InputDeviceRegistryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
193 Self { client: fidl::client::Client::new(channel, protocol_name) }
194 }
195
196 pub fn take_event_stream(&self) -> InputDeviceRegistryEventStream {
202 InputDeviceRegistryEventStream { event_receiver: self.client.take_event_receiver() }
203 }
204
205 pub fn r#register(
209 &self,
210 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
211 ) -> Result<(), fidl::Error> {
212 InputDeviceRegistryProxyInterface::r#register(self, device)
213 }
214
215 pub fn r#register_and_get_device_info(
220 &self,
221 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
222 ) -> fidl::client::QueryResponseFut<
223 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
224 fidl::encoding::DefaultFuchsiaResourceDialect,
225 > {
226 InputDeviceRegistryProxyInterface::r#register_and_get_device_info(self, device)
227 }
228}
229
230impl InputDeviceRegistryProxyInterface for InputDeviceRegistryProxy {
231 fn r#register(
232 &self,
233 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
234 ) -> Result<(), fidl::Error> {
235 self.client.send::<InputDeviceRegistryRegisterRequest>(
236 (device,),
237 0x523ec9804a4d8d45,
238 fidl::encoding::DynamicFlags::empty(),
239 )
240 }
241
242 type RegisterAndGetDeviceInfoResponseFut = fidl::client::QueryResponseFut<
243 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
244 fidl::encoding::DefaultFuchsiaResourceDialect,
245 >;
246 fn r#register_and_get_device_info(
247 &self,
248 mut device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
249 ) -> Self::RegisterAndGetDeviceInfoResponseFut {
250 fn _decode(
251 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
252 ) -> Result<InputDeviceRegistryRegisterAndGetDeviceInfoResponse, fidl::Error> {
253 let _response = fidl::client::decode_transaction_body::<
254 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
255 fidl::encoding::DefaultFuchsiaResourceDialect,
256 0x41db5035990763bc,
257 >(_buf?)?;
258 Ok(_response)
259 }
260 self.client.send_query_and_decode::<
261 InputDeviceRegistryRegisterAndGetDeviceInfoRequest,
262 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
263 >(
264 (device,),
265 0x41db5035990763bc,
266 fidl::encoding::DynamicFlags::empty(),
267 _decode,
268 )
269 }
270}
271
272pub struct InputDeviceRegistryEventStream {
273 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
274}
275
276impl std::marker::Unpin for InputDeviceRegistryEventStream {}
277
278impl futures::stream::FusedStream for InputDeviceRegistryEventStream {
279 fn is_terminated(&self) -> bool {
280 self.event_receiver.is_terminated()
281 }
282}
283
284impl futures::Stream for InputDeviceRegistryEventStream {
285 type Item = Result<InputDeviceRegistryEvent, fidl::Error>;
286
287 fn poll_next(
288 mut self: std::pin::Pin<&mut Self>,
289 cx: &mut std::task::Context<'_>,
290 ) -> std::task::Poll<Option<Self::Item>> {
291 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
292 &mut self.event_receiver,
293 cx
294 )?) {
295 Some(buf) => std::task::Poll::Ready(Some(InputDeviceRegistryEvent::decode(buf))),
296 None => std::task::Poll::Ready(None),
297 }
298 }
299}
300
301#[derive(Debug)]
302pub enum InputDeviceRegistryEvent {}
303
304impl InputDeviceRegistryEvent {
305 fn decode(
307 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
308 ) -> Result<InputDeviceRegistryEvent, fidl::Error> {
309 let (bytes, _handles) = buf.split_mut();
310 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
311 debug_assert_eq!(tx_header.tx_id, 0);
312 match tx_header.ordinal {
313 _ => Err(fidl::Error::UnknownOrdinal {
314 ordinal: tx_header.ordinal,
315 protocol_name:
316 <InputDeviceRegistryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
317 }),
318 }
319 }
320}
321
322pub struct InputDeviceRegistryRequestStream {
324 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
325 is_terminated: bool,
326}
327
328impl std::marker::Unpin for InputDeviceRegistryRequestStream {}
329
330impl futures::stream::FusedStream for InputDeviceRegistryRequestStream {
331 fn is_terminated(&self) -> bool {
332 self.is_terminated
333 }
334}
335
336impl fidl::endpoints::RequestStream for InputDeviceRegistryRequestStream {
337 type Protocol = InputDeviceRegistryMarker;
338 type ControlHandle = InputDeviceRegistryControlHandle;
339
340 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
341 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
342 }
343
344 fn control_handle(&self) -> Self::ControlHandle {
345 InputDeviceRegistryControlHandle { inner: self.inner.clone() }
346 }
347
348 fn into_inner(
349 self,
350 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
351 {
352 (self.inner, self.is_terminated)
353 }
354
355 fn from_inner(
356 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
357 is_terminated: bool,
358 ) -> Self {
359 Self { inner, is_terminated }
360 }
361}
362
363impl futures::Stream for InputDeviceRegistryRequestStream {
364 type Item = Result<InputDeviceRegistryRequest, fidl::Error>;
365
366 fn poll_next(
367 mut self: std::pin::Pin<&mut Self>,
368 cx: &mut std::task::Context<'_>,
369 ) -> std::task::Poll<Option<Self::Item>> {
370 let this = &mut *self;
371 if this.inner.check_shutdown(cx) {
372 this.is_terminated = true;
373 return std::task::Poll::Ready(None);
374 }
375 if this.is_terminated {
376 panic!("polled InputDeviceRegistryRequestStream after completion");
377 }
378 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
379 |bytes, handles| {
380 match this.inner.channel().read_etc(cx, bytes, handles) {
381 std::task::Poll::Ready(Ok(())) => {}
382 std::task::Poll::Pending => return std::task::Poll::Pending,
383 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
384 this.is_terminated = true;
385 return std::task::Poll::Ready(None);
386 }
387 std::task::Poll::Ready(Err(e)) => {
388 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
389 e.into(),
390 ))))
391 }
392 }
393
394 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
396
397 std::task::Poll::Ready(Some(match header.ordinal {
398 0x523ec9804a4d8d45 => {
399 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
400 let mut req = fidl::new_empty!(InputDeviceRegistryRegisterRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
401 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InputDeviceRegistryRegisterRequest>(&header, _body_bytes, handles, &mut req)?;
402 let control_handle = InputDeviceRegistryControlHandle {
403 inner: this.inner.clone(),
404 };
405 Ok(InputDeviceRegistryRequest::Register {device: req.device,
406
407 control_handle,
408 })
409 }
410 0x41db5035990763bc => {
411 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
412 let mut req = fidl::new_empty!(InputDeviceRegistryRegisterAndGetDeviceInfoRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
413 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InputDeviceRegistryRegisterAndGetDeviceInfoRequest>(&header, _body_bytes, handles, &mut req)?;
414 let control_handle = InputDeviceRegistryControlHandle {
415 inner: this.inner.clone(),
416 };
417 Ok(InputDeviceRegistryRequest::RegisterAndGetDeviceInfo {device: req.device,
418
419 responder: InputDeviceRegistryRegisterAndGetDeviceInfoResponder {
420 control_handle: std::mem::ManuallyDrop::new(control_handle),
421 tx_id: header.tx_id,
422 },
423 })
424 }
425 _ => Err(fidl::Error::UnknownOrdinal {
426 ordinal: header.ordinal,
427 protocol_name: <InputDeviceRegistryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
428 }),
429 }))
430 },
431 )
432 }
433}
434
435#[derive(Debug)]
442pub enum InputDeviceRegistryRequest {
443 Register {
447 device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
448 control_handle: InputDeviceRegistryControlHandle,
449 },
450 RegisterAndGetDeviceInfo {
455 device: fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
456 responder: InputDeviceRegistryRegisterAndGetDeviceInfoResponder,
457 },
458}
459
460impl InputDeviceRegistryRequest {
461 #[allow(irrefutable_let_patterns)]
462 pub fn into_register(
463 self,
464 ) -> Option<(
465 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
466 InputDeviceRegistryControlHandle,
467 )> {
468 if let InputDeviceRegistryRequest::Register { device, control_handle } = self {
469 Some((device, control_handle))
470 } else {
471 None
472 }
473 }
474
475 #[allow(irrefutable_let_patterns)]
476 pub fn into_register_and_get_device_info(
477 self,
478 ) -> Option<(
479 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
480 InputDeviceRegistryRegisterAndGetDeviceInfoResponder,
481 )> {
482 if let InputDeviceRegistryRequest::RegisterAndGetDeviceInfo { device, responder } = self {
483 Some((device, responder))
484 } else {
485 None
486 }
487 }
488
489 pub fn method_name(&self) -> &'static str {
491 match *self {
492 InputDeviceRegistryRequest::Register { .. } => "register",
493 InputDeviceRegistryRequest::RegisterAndGetDeviceInfo { .. } => {
494 "register_and_get_device_info"
495 }
496 }
497 }
498}
499
500#[derive(Debug, Clone)]
501pub struct InputDeviceRegistryControlHandle {
502 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
503}
504
505impl fidl::endpoints::ControlHandle for InputDeviceRegistryControlHandle {
506 fn shutdown(&self) {
507 self.inner.shutdown()
508 }
509 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
510 self.inner.shutdown_with_epitaph(status)
511 }
512
513 fn is_closed(&self) -> bool {
514 self.inner.channel().is_closed()
515 }
516 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
517 self.inner.channel().on_closed()
518 }
519
520 #[cfg(target_os = "fuchsia")]
521 fn signal_peer(
522 &self,
523 clear_mask: zx::Signals,
524 set_mask: zx::Signals,
525 ) -> Result<(), zx_status::Status> {
526 use fidl::Peered;
527 self.inner.channel().signal_peer(clear_mask, set_mask)
528 }
529}
530
531impl InputDeviceRegistryControlHandle {}
532
533#[must_use = "FIDL methods require a response to be sent"]
534#[derive(Debug)]
535pub struct InputDeviceRegistryRegisterAndGetDeviceInfoResponder {
536 control_handle: std::mem::ManuallyDrop<InputDeviceRegistryControlHandle>,
537 tx_id: u32,
538}
539
540impl std::ops::Drop for InputDeviceRegistryRegisterAndGetDeviceInfoResponder {
544 fn drop(&mut self) {
545 self.control_handle.shutdown();
546 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
548 }
549}
550
551impl fidl::endpoints::Responder for InputDeviceRegistryRegisterAndGetDeviceInfoResponder {
552 type ControlHandle = InputDeviceRegistryControlHandle;
553
554 fn control_handle(&self) -> &InputDeviceRegistryControlHandle {
555 &self.control_handle
556 }
557
558 fn drop_without_shutdown(mut self) {
559 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
561 std::mem::forget(self);
563 }
564}
565
566impl InputDeviceRegistryRegisterAndGetDeviceInfoResponder {
567 pub fn send(
571 self,
572 mut payload: InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
573 ) -> Result<(), fidl::Error> {
574 let _result = self.send_raw(payload);
575 if _result.is_err() {
576 self.control_handle.shutdown();
577 }
578 self.drop_without_shutdown();
579 _result
580 }
581
582 pub fn send_no_shutdown_on_err(
584 self,
585 mut payload: InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
586 ) -> Result<(), fidl::Error> {
587 let _result = self.send_raw(payload);
588 self.drop_without_shutdown();
589 _result
590 }
591
592 fn send_raw(
593 &self,
594 mut payload: InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
595 ) -> Result<(), fidl::Error> {
596 self.control_handle.inner.send::<InputDeviceRegistryRegisterAndGetDeviceInfoResponse>(
597 &mut payload,
598 self.tx_id,
599 0x41db5035990763bc,
600 fidl::encoding::DynamicFlags::empty(),
601 )
602 }
603}
604
605mod internal {
606 use super::*;
607
608 impl fidl::encoding::ResourceTypeMarker for InputDeviceRegistryRegisterAndGetDeviceInfoRequest {
609 type Borrowed<'a> = &'a mut Self;
610 fn take_or_borrow<'a>(
611 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
612 ) -> Self::Borrowed<'a> {
613 value
614 }
615 }
616
617 unsafe impl fidl::encoding::TypeMarker for InputDeviceRegistryRegisterAndGetDeviceInfoRequest {
618 type Owned = Self;
619
620 #[inline(always)]
621 fn inline_align(_context: fidl::encoding::Context) -> usize {
622 4
623 }
624
625 #[inline(always)]
626 fn inline_size(_context: fidl::encoding::Context) -> usize {
627 4
628 }
629 }
630
631 unsafe impl
632 fidl::encoding::Encode<
633 InputDeviceRegistryRegisterAndGetDeviceInfoRequest,
634 fidl::encoding::DefaultFuchsiaResourceDialect,
635 > for &mut InputDeviceRegistryRegisterAndGetDeviceInfoRequest
636 {
637 #[inline]
638 unsafe fn encode(
639 self,
640 encoder: &mut fidl::encoding::Encoder<
641 '_,
642 fidl::encoding::DefaultFuchsiaResourceDialect,
643 >,
644 offset: usize,
645 _depth: fidl::encoding::Depth,
646 ) -> fidl::Result<()> {
647 encoder
648 .debug_check_bounds::<InputDeviceRegistryRegisterAndGetDeviceInfoRequest>(offset);
649 fidl::encoding::Encode::<
651 InputDeviceRegistryRegisterAndGetDeviceInfoRequest,
652 fidl::encoding::DefaultFuchsiaResourceDialect,
653 >::encode(
654 (<fidl::encoding::Endpoint<
655 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
656 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
657 &mut self.device
658 ),),
659 encoder,
660 offset,
661 _depth,
662 )
663 }
664 }
665 unsafe impl<
666 T0: fidl::encoding::Encode<
667 fidl::encoding::Endpoint<
668 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
669 >,
670 fidl::encoding::DefaultFuchsiaResourceDialect,
671 >,
672 >
673 fidl::encoding::Encode<
674 InputDeviceRegistryRegisterAndGetDeviceInfoRequest,
675 fidl::encoding::DefaultFuchsiaResourceDialect,
676 > for (T0,)
677 {
678 #[inline]
679 unsafe fn encode(
680 self,
681 encoder: &mut fidl::encoding::Encoder<
682 '_,
683 fidl::encoding::DefaultFuchsiaResourceDialect,
684 >,
685 offset: usize,
686 depth: fidl::encoding::Depth,
687 ) -> fidl::Result<()> {
688 encoder
689 .debug_check_bounds::<InputDeviceRegistryRegisterAndGetDeviceInfoRequest>(offset);
690 self.0.encode(encoder, offset + 0, depth)?;
694 Ok(())
695 }
696 }
697
698 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
699 for InputDeviceRegistryRegisterAndGetDeviceInfoRequest
700 {
701 #[inline(always)]
702 fn new_empty() -> Self {
703 Self {
704 device: fidl::new_empty!(
705 fidl::encoding::Endpoint<
706 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
707 >,
708 fidl::encoding::DefaultFuchsiaResourceDialect
709 ),
710 }
711 }
712
713 #[inline]
714 unsafe fn decode(
715 &mut self,
716 decoder: &mut fidl::encoding::Decoder<
717 '_,
718 fidl::encoding::DefaultFuchsiaResourceDialect,
719 >,
720 offset: usize,
721 _depth: fidl::encoding::Depth,
722 ) -> fidl::Result<()> {
723 decoder.debug_check_bounds::<Self>(offset);
724 fidl::decode!(
726 fidl::encoding::Endpoint<
727 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
728 >,
729 fidl::encoding::DefaultFuchsiaResourceDialect,
730 &mut self.device,
731 decoder,
732 offset + 0,
733 _depth
734 )?;
735 Ok(())
736 }
737 }
738
739 impl fidl::encoding::ResourceTypeMarker for InputDeviceRegistryRegisterRequest {
740 type Borrowed<'a> = &'a mut Self;
741 fn take_or_borrow<'a>(
742 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
743 ) -> Self::Borrowed<'a> {
744 value
745 }
746 }
747
748 unsafe impl fidl::encoding::TypeMarker for InputDeviceRegistryRegisterRequest {
749 type Owned = Self;
750
751 #[inline(always)]
752 fn inline_align(_context: fidl::encoding::Context) -> usize {
753 4
754 }
755
756 #[inline(always)]
757 fn inline_size(_context: fidl::encoding::Context) -> usize {
758 4
759 }
760 }
761
762 unsafe impl
763 fidl::encoding::Encode<
764 InputDeviceRegistryRegisterRequest,
765 fidl::encoding::DefaultFuchsiaResourceDialect,
766 > for &mut InputDeviceRegistryRegisterRequest
767 {
768 #[inline]
769 unsafe fn encode(
770 self,
771 encoder: &mut fidl::encoding::Encoder<
772 '_,
773 fidl::encoding::DefaultFuchsiaResourceDialect,
774 >,
775 offset: usize,
776 _depth: fidl::encoding::Depth,
777 ) -> fidl::Result<()> {
778 encoder.debug_check_bounds::<InputDeviceRegistryRegisterRequest>(offset);
779 fidl::encoding::Encode::<
781 InputDeviceRegistryRegisterRequest,
782 fidl::encoding::DefaultFuchsiaResourceDialect,
783 >::encode(
784 (<fidl::encoding::Endpoint<
785 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
786 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
787 &mut self.device
788 ),),
789 encoder,
790 offset,
791 _depth,
792 )
793 }
794 }
795 unsafe impl<
796 T0: fidl::encoding::Encode<
797 fidl::encoding::Endpoint<
798 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
799 >,
800 fidl::encoding::DefaultFuchsiaResourceDialect,
801 >,
802 >
803 fidl::encoding::Encode<
804 InputDeviceRegistryRegisterRequest,
805 fidl::encoding::DefaultFuchsiaResourceDialect,
806 > for (T0,)
807 {
808 #[inline]
809 unsafe fn encode(
810 self,
811 encoder: &mut fidl::encoding::Encoder<
812 '_,
813 fidl::encoding::DefaultFuchsiaResourceDialect,
814 >,
815 offset: usize,
816 depth: fidl::encoding::Depth,
817 ) -> fidl::Result<()> {
818 encoder.debug_check_bounds::<InputDeviceRegistryRegisterRequest>(offset);
819 self.0.encode(encoder, offset + 0, depth)?;
823 Ok(())
824 }
825 }
826
827 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
828 for InputDeviceRegistryRegisterRequest
829 {
830 #[inline(always)]
831 fn new_empty() -> Self {
832 Self {
833 device: fidl::new_empty!(
834 fidl::encoding::Endpoint<
835 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
836 >,
837 fidl::encoding::DefaultFuchsiaResourceDialect
838 ),
839 }
840 }
841
842 #[inline]
843 unsafe fn decode(
844 &mut self,
845 decoder: &mut fidl::encoding::Decoder<
846 '_,
847 fidl::encoding::DefaultFuchsiaResourceDialect,
848 >,
849 offset: usize,
850 _depth: fidl::encoding::Depth,
851 ) -> fidl::Result<()> {
852 decoder.debug_check_bounds::<Self>(offset);
853 fidl::decode!(
855 fidl::encoding::Endpoint<
856 fidl::endpoints::ClientEnd<fidl_fuchsia_input_report::InputDeviceMarker>,
857 >,
858 fidl::encoding::DefaultFuchsiaResourceDialect,
859 &mut self.device,
860 decoder,
861 offset + 0,
862 _depth
863 )?;
864 Ok(())
865 }
866 }
867
868 impl InputDeviceRegistryRegisterAndGetDeviceInfoResponse {
869 #[inline(always)]
870 fn max_ordinal_present(&self) -> u64 {
871 if let Some(_) = self.device_id {
872 return 1;
873 }
874 0
875 }
876 }
877
878 impl fidl::encoding::ResourceTypeMarker for InputDeviceRegistryRegisterAndGetDeviceInfoResponse {
879 type Borrowed<'a> = &'a mut Self;
880 fn take_or_borrow<'a>(
881 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
882 ) -> Self::Borrowed<'a> {
883 value
884 }
885 }
886
887 unsafe impl fidl::encoding::TypeMarker for InputDeviceRegistryRegisterAndGetDeviceInfoResponse {
888 type Owned = Self;
889
890 #[inline(always)]
891 fn inline_align(_context: fidl::encoding::Context) -> usize {
892 8
893 }
894
895 #[inline(always)]
896 fn inline_size(_context: fidl::encoding::Context) -> usize {
897 16
898 }
899 }
900
901 unsafe impl
902 fidl::encoding::Encode<
903 InputDeviceRegistryRegisterAndGetDeviceInfoResponse,
904 fidl::encoding::DefaultFuchsiaResourceDialect,
905 > for &mut InputDeviceRegistryRegisterAndGetDeviceInfoResponse
906 {
907 unsafe fn encode(
908 self,
909 encoder: &mut fidl::encoding::Encoder<
910 '_,
911 fidl::encoding::DefaultFuchsiaResourceDialect,
912 >,
913 offset: usize,
914 mut depth: fidl::encoding::Depth,
915 ) -> fidl::Result<()> {
916 encoder
917 .debug_check_bounds::<InputDeviceRegistryRegisterAndGetDeviceInfoResponse>(offset);
918 let max_ordinal: u64 = self.max_ordinal_present();
920 encoder.write_num(max_ordinal, offset);
921 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
922 if max_ordinal == 0 {
924 return Ok(());
925 }
926 depth.increment()?;
927 let envelope_size = 8;
928 let bytes_len = max_ordinal as usize * envelope_size;
929 #[allow(unused_variables)]
930 let offset = encoder.out_of_line_offset(bytes_len);
931 let mut _prev_end_offset: usize = 0;
932 if 1 > max_ordinal {
933 return Ok(());
934 }
935
936 let cur_offset: usize = (1 - 1) * envelope_size;
939
940 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
942
943 fidl::encoding::encode_in_envelope_optional::<
948 u32,
949 fidl::encoding::DefaultFuchsiaResourceDialect,
950 >(
951 self.device_id.as_ref().map(<u32 as fidl::encoding::ValueTypeMarker>::borrow),
952 encoder,
953 offset + cur_offset,
954 depth,
955 )?;
956
957 _prev_end_offset = cur_offset + envelope_size;
958
959 Ok(())
960 }
961 }
962
963 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
964 for InputDeviceRegistryRegisterAndGetDeviceInfoResponse
965 {
966 #[inline(always)]
967 fn new_empty() -> Self {
968 Self::default()
969 }
970
971 unsafe fn decode(
972 &mut self,
973 decoder: &mut fidl::encoding::Decoder<
974 '_,
975 fidl::encoding::DefaultFuchsiaResourceDialect,
976 >,
977 offset: usize,
978 mut depth: fidl::encoding::Depth,
979 ) -> fidl::Result<()> {
980 decoder.debug_check_bounds::<Self>(offset);
981 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
982 None => return Err(fidl::Error::NotNullable),
983 Some(len) => len,
984 };
985 if len == 0 {
987 return Ok(());
988 };
989 depth.increment()?;
990 let envelope_size = 8;
991 let bytes_len = len * envelope_size;
992 let offset = decoder.out_of_line_offset(bytes_len)?;
993 let mut _next_ordinal_to_read = 0;
995 let mut next_offset = offset;
996 let end_offset = offset + bytes_len;
997 _next_ordinal_to_read += 1;
998 if next_offset >= end_offset {
999 return Ok(());
1000 }
1001
1002 while _next_ordinal_to_read < 1 {
1004 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1005 _next_ordinal_to_read += 1;
1006 next_offset += envelope_size;
1007 }
1008
1009 let next_out_of_line = decoder.next_out_of_line();
1010 let handles_before = decoder.remaining_handles();
1011 if let Some((inlined, num_bytes, num_handles)) =
1012 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1013 {
1014 let member_inline_size =
1015 <u32 as fidl::encoding::TypeMarker>::inline_size(decoder.context);
1016 if inlined != (member_inline_size <= 4) {
1017 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1018 }
1019 let inner_offset;
1020 let mut inner_depth = depth.clone();
1021 if inlined {
1022 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1023 inner_offset = next_offset;
1024 } else {
1025 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1026 inner_depth.increment()?;
1027 }
1028 let val_ref = self.device_id.get_or_insert_with(|| {
1029 fidl::new_empty!(u32, fidl::encoding::DefaultFuchsiaResourceDialect)
1030 });
1031 fidl::decode!(
1032 u32,
1033 fidl::encoding::DefaultFuchsiaResourceDialect,
1034 val_ref,
1035 decoder,
1036 inner_offset,
1037 inner_depth
1038 )?;
1039 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1040 {
1041 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1042 }
1043 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1044 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1045 }
1046 }
1047
1048 next_offset += envelope_size;
1049
1050 while next_offset < end_offset {
1052 _next_ordinal_to_read += 1;
1053 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1054 next_offset += envelope_size;
1055 }
1056
1057 Ok(())
1058 }
1059 }
1060}