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_pointer_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct MouseSourceMarker;
16
17impl fidl::endpoints::ProtocolMarker for MouseSourceMarker {
18 type Proxy = MouseSourceProxy;
19 type RequestStream = MouseSourceRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = MouseSourceSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) MouseSource";
24}
25
26pub trait MouseSourceProxyInterface: Send + Sync {
27 type WatchResponseFut: std::future::Future<Output = Result<Vec<MouseEvent>, fidl::Error>> + Send;
28 fn r#watch(&self) -> Self::WatchResponseFut;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct MouseSourceSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for MouseSourceSynchronousProxy {
38 type Proxy = MouseSourceProxy;
39 type Protocol = MouseSourceMarker;
40
41 fn from_channel(inner: fidl::Channel) -> Self {
42 Self::new(inner)
43 }
44
45 fn into_channel(self) -> fidl::Channel {
46 self.client.into_channel()
47 }
48
49 fn as_channel(&self) -> &fidl::Channel {
50 self.client.as_channel()
51 }
52}
53
54#[cfg(target_os = "fuchsia")]
55impl MouseSourceSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <MouseSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
58 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
59 }
60
61 pub fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 pub fn wait_for_event(
68 &self,
69 deadline: zx::MonotonicInstant,
70 ) -> Result<MouseSourceEvent, fidl::Error> {
71 MouseSourceEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#watch(
99 &self,
100 ___deadline: zx::MonotonicInstant,
101 ) -> Result<Vec<MouseEvent>, fidl::Error> {
102 let _response =
103 self.client.send_query::<fidl::encoding::EmptyPayload, MouseSourceWatchResponse>(
104 (),
105 0x5b1f6e917ac1abb4,
106 fidl::encoding::DynamicFlags::empty(),
107 ___deadline,
108 )?;
109 Ok(_response.events)
110 }
111}
112
113#[cfg(target_os = "fuchsia")]
114impl From<MouseSourceSynchronousProxy> for zx::Handle {
115 fn from(value: MouseSourceSynchronousProxy) -> Self {
116 value.into_channel().into()
117 }
118}
119
120#[cfg(target_os = "fuchsia")]
121impl From<fidl::Channel> for MouseSourceSynchronousProxy {
122 fn from(value: fidl::Channel) -> Self {
123 Self::new(value)
124 }
125}
126
127#[derive(Debug, Clone)]
128pub struct MouseSourceProxy {
129 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
130}
131
132impl fidl::endpoints::Proxy for MouseSourceProxy {
133 type Protocol = MouseSourceMarker;
134
135 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
136 Self::new(inner)
137 }
138
139 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
140 self.client.into_channel().map_err(|client| Self { client })
141 }
142
143 fn as_channel(&self) -> &::fidl::AsyncChannel {
144 self.client.as_channel()
145 }
146}
147
148impl MouseSourceProxy {
149 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
151 let protocol_name = <MouseSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
152 Self { client: fidl::client::Client::new(channel, protocol_name) }
153 }
154
155 pub fn take_event_stream(&self) -> MouseSourceEventStream {
161 MouseSourceEventStream { event_receiver: self.client.take_event_receiver() }
162 }
163
164 pub fn r#watch(
189 &self,
190 ) -> fidl::client::QueryResponseFut<
191 Vec<MouseEvent>,
192 fidl::encoding::DefaultFuchsiaResourceDialect,
193 > {
194 MouseSourceProxyInterface::r#watch(self)
195 }
196}
197
198impl MouseSourceProxyInterface for MouseSourceProxy {
199 type WatchResponseFut = fidl::client::QueryResponseFut<
200 Vec<MouseEvent>,
201 fidl::encoding::DefaultFuchsiaResourceDialect,
202 >;
203 fn r#watch(&self) -> Self::WatchResponseFut {
204 fn _decode(
205 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
206 ) -> Result<Vec<MouseEvent>, fidl::Error> {
207 let _response = fidl::client::decode_transaction_body::<
208 MouseSourceWatchResponse,
209 fidl::encoding::DefaultFuchsiaResourceDialect,
210 0x5b1f6e917ac1abb4,
211 >(_buf?)?;
212 Ok(_response.events)
213 }
214 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<MouseEvent>>(
215 (),
216 0x5b1f6e917ac1abb4,
217 fidl::encoding::DynamicFlags::empty(),
218 _decode,
219 )
220 }
221}
222
223pub struct MouseSourceEventStream {
224 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
225}
226
227impl std::marker::Unpin for MouseSourceEventStream {}
228
229impl futures::stream::FusedStream for MouseSourceEventStream {
230 fn is_terminated(&self) -> bool {
231 self.event_receiver.is_terminated()
232 }
233}
234
235impl futures::Stream for MouseSourceEventStream {
236 type Item = Result<MouseSourceEvent, fidl::Error>;
237
238 fn poll_next(
239 mut self: std::pin::Pin<&mut Self>,
240 cx: &mut std::task::Context<'_>,
241 ) -> std::task::Poll<Option<Self::Item>> {
242 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
243 &mut self.event_receiver,
244 cx
245 )?) {
246 Some(buf) => std::task::Poll::Ready(Some(MouseSourceEvent::decode(buf))),
247 None => std::task::Poll::Ready(None),
248 }
249 }
250}
251
252#[derive(Debug)]
253pub enum MouseSourceEvent {}
254
255impl MouseSourceEvent {
256 fn decode(
258 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
259 ) -> Result<MouseSourceEvent, fidl::Error> {
260 let (bytes, _handles) = buf.split_mut();
261 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
262 debug_assert_eq!(tx_header.tx_id, 0);
263 match tx_header.ordinal {
264 _ => Err(fidl::Error::UnknownOrdinal {
265 ordinal: tx_header.ordinal,
266 protocol_name: <MouseSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
267 }),
268 }
269 }
270}
271
272pub struct MouseSourceRequestStream {
274 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
275 is_terminated: bool,
276}
277
278impl std::marker::Unpin for MouseSourceRequestStream {}
279
280impl futures::stream::FusedStream for MouseSourceRequestStream {
281 fn is_terminated(&self) -> bool {
282 self.is_terminated
283 }
284}
285
286impl fidl::endpoints::RequestStream for MouseSourceRequestStream {
287 type Protocol = MouseSourceMarker;
288 type ControlHandle = MouseSourceControlHandle;
289
290 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
291 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
292 }
293
294 fn control_handle(&self) -> Self::ControlHandle {
295 MouseSourceControlHandle { inner: self.inner.clone() }
296 }
297
298 fn into_inner(
299 self,
300 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
301 {
302 (self.inner, self.is_terminated)
303 }
304
305 fn from_inner(
306 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
307 is_terminated: bool,
308 ) -> Self {
309 Self { inner, is_terminated }
310 }
311}
312
313impl futures::Stream for MouseSourceRequestStream {
314 type Item = Result<MouseSourceRequest, fidl::Error>;
315
316 fn poll_next(
317 mut self: std::pin::Pin<&mut Self>,
318 cx: &mut std::task::Context<'_>,
319 ) -> std::task::Poll<Option<Self::Item>> {
320 let this = &mut *self;
321 if this.inner.check_shutdown(cx) {
322 this.is_terminated = true;
323 return std::task::Poll::Ready(None);
324 }
325 if this.is_terminated {
326 panic!("polled MouseSourceRequestStream after completion");
327 }
328 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
329 |bytes, handles| {
330 match this.inner.channel().read_etc(cx, bytes, handles) {
331 std::task::Poll::Ready(Ok(())) => {}
332 std::task::Poll::Pending => return std::task::Poll::Pending,
333 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
334 this.is_terminated = true;
335 return std::task::Poll::Ready(None);
336 }
337 std::task::Poll::Ready(Err(e)) => {
338 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
339 e.into(),
340 ))))
341 }
342 }
343
344 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
346
347 std::task::Poll::Ready(Some(match header.ordinal {
348 0x5b1f6e917ac1abb4 => {
349 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
350 let mut req = fidl::new_empty!(
351 fidl::encoding::EmptyPayload,
352 fidl::encoding::DefaultFuchsiaResourceDialect
353 );
354 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
355 let control_handle = MouseSourceControlHandle { inner: this.inner.clone() };
356 Ok(MouseSourceRequest::Watch {
357 responder: MouseSourceWatchResponder {
358 control_handle: std::mem::ManuallyDrop::new(control_handle),
359 tx_id: header.tx_id,
360 },
361 })
362 }
363 _ => Err(fidl::Error::UnknownOrdinal {
364 ordinal: header.ordinal,
365 protocol_name:
366 <MouseSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
367 }),
368 }))
369 },
370 )
371 }
372}
373
374#[derive(Debug)]
389pub enum MouseSourceRequest {
390 Watch { responder: MouseSourceWatchResponder },
415}
416
417impl MouseSourceRequest {
418 #[allow(irrefutable_let_patterns)]
419 pub fn into_watch(self) -> Option<(MouseSourceWatchResponder)> {
420 if let MouseSourceRequest::Watch { responder } = self {
421 Some((responder))
422 } else {
423 None
424 }
425 }
426
427 pub fn method_name(&self) -> &'static str {
429 match *self {
430 MouseSourceRequest::Watch { .. } => "watch",
431 }
432 }
433}
434
435#[derive(Debug, Clone)]
436pub struct MouseSourceControlHandle {
437 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
438}
439
440impl fidl::endpoints::ControlHandle for MouseSourceControlHandle {
441 fn shutdown(&self) {
442 self.inner.shutdown()
443 }
444 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
445 self.inner.shutdown_with_epitaph(status)
446 }
447
448 fn is_closed(&self) -> bool {
449 self.inner.channel().is_closed()
450 }
451 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
452 self.inner.channel().on_closed()
453 }
454
455 #[cfg(target_os = "fuchsia")]
456 fn signal_peer(
457 &self,
458 clear_mask: zx::Signals,
459 set_mask: zx::Signals,
460 ) -> Result<(), zx_status::Status> {
461 use fidl::Peered;
462 self.inner.channel().signal_peer(clear_mask, set_mask)
463 }
464}
465
466impl MouseSourceControlHandle {}
467
468#[must_use = "FIDL methods require a response to be sent"]
469#[derive(Debug)]
470pub struct MouseSourceWatchResponder {
471 control_handle: std::mem::ManuallyDrop<MouseSourceControlHandle>,
472 tx_id: u32,
473}
474
475impl std::ops::Drop for MouseSourceWatchResponder {
479 fn drop(&mut self) {
480 self.control_handle.shutdown();
481 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
483 }
484}
485
486impl fidl::endpoints::Responder for MouseSourceWatchResponder {
487 type ControlHandle = MouseSourceControlHandle;
488
489 fn control_handle(&self) -> &MouseSourceControlHandle {
490 &self.control_handle
491 }
492
493 fn drop_without_shutdown(mut self) {
494 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
496 std::mem::forget(self);
498 }
499}
500
501impl MouseSourceWatchResponder {
502 pub fn send(self, mut events: &[MouseEvent]) -> Result<(), fidl::Error> {
506 let _result = self.send_raw(events);
507 if _result.is_err() {
508 self.control_handle.shutdown();
509 }
510 self.drop_without_shutdown();
511 _result
512 }
513
514 pub fn send_no_shutdown_on_err(self, mut events: &[MouseEvent]) -> Result<(), fidl::Error> {
516 let _result = self.send_raw(events);
517 self.drop_without_shutdown();
518 _result
519 }
520
521 fn send_raw(&self, mut events: &[MouseEvent]) -> Result<(), fidl::Error> {
522 self.control_handle.inner.send::<MouseSourceWatchResponse>(
523 (events,),
524 self.tx_id,
525 0x5b1f6e917ac1abb4,
526 fidl::encoding::DynamicFlags::empty(),
527 )
528 }
529}
530
531#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
532pub struct TouchSourceMarker;
533
534impl fidl::endpoints::ProtocolMarker for TouchSourceMarker {
535 type Proxy = TouchSourceProxy;
536 type RequestStream = TouchSourceRequestStream;
537 #[cfg(target_os = "fuchsia")]
538 type SynchronousProxy = TouchSourceSynchronousProxy;
539
540 const DEBUG_NAME: &'static str = "(anonymous) TouchSource";
541}
542
543pub trait TouchSourceProxyInterface: Send + Sync {
544 type WatchResponseFut: std::future::Future<Output = Result<Vec<TouchEvent>, fidl::Error>> + Send;
545 fn r#watch(&self, responses: &[TouchResponse]) -> Self::WatchResponseFut;
546 type UpdateResponseResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
547 fn r#update_response(
548 &self,
549 interaction: &TouchInteractionId,
550 response: &TouchResponse,
551 ) -> Self::UpdateResponseResponseFut;
552}
553#[derive(Debug)]
554#[cfg(target_os = "fuchsia")]
555pub struct TouchSourceSynchronousProxy {
556 client: fidl::client::sync::Client,
557}
558
559#[cfg(target_os = "fuchsia")]
560impl fidl::endpoints::SynchronousProxy for TouchSourceSynchronousProxy {
561 type Proxy = TouchSourceProxy;
562 type Protocol = TouchSourceMarker;
563
564 fn from_channel(inner: fidl::Channel) -> Self {
565 Self::new(inner)
566 }
567
568 fn into_channel(self) -> fidl::Channel {
569 self.client.into_channel()
570 }
571
572 fn as_channel(&self) -> &fidl::Channel {
573 self.client.as_channel()
574 }
575}
576
577#[cfg(target_os = "fuchsia")]
578impl TouchSourceSynchronousProxy {
579 pub fn new(channel: fidl::Channel) -> Self {
580 let protocol_name = <TouchSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
581 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
582 }
583
584 pub fn into_channel(self) -> fidl::Channel {
585 self.client.into_channel()
586 }
587
588 pub fn wait_for_event(
591 &self,
592 deadline: zx::MonotonicInstant,
593 ) -> Result<TouchSourceEvent, fidl::Error> {
594 TouchSourceEvent::decode(self.client.wait_for_event(deadline)?)
595 }
596
597 pub fn r#watch(
638 &self,
639 mut responses: &[TouchResponse],
640 ___deadline: zx::MonotonicInstant,
641 ) -> Result<Vec<TouchEvent>, fidl::Error> {
642 let _response =
643 self.client.send_query::<TouchSourceWatchRequest, TouchSourceWatchResponse>(
644 (responses,),
645 0x38453127dd0fc7d,
646 fidl::encoding::DynamicFlags::empty(),
647 ___deadline,
648 )?;
649 Ok(_response.events)
650 }
651
652 pub fn r#update_response(
669 &self,
670 mut interaction: &TouchInteractionId,
671 mut response: &TouchResponse,
672 ___deadline: zx::MonotonicInstant,
673 ) -> Result<(), fidl::Error> {
674 let _response = self
675 .client
676 .send_query::<TouchSourceUpdateResponseRequest, fidl::encoding::EmptyPayload>(
677 (interaction, response),
678 0x6c746a313b39898a,
679 fidl::encoding::DynamicFlags::empty(),
680 ___deadline,
681 )?;
682 Ok(_response)
683 }
684}
685
686#[cfg(target_os = "fuchsia")]
687impl From<TouchSourceSynchronousProxy> for zx::Handle {
688 fn from(value: TouchSourceSynchronousProxy) -> Self {
689 value.into_channel().into()
690 }
691}
692
693#[cfg(target_os = "fuchsia")]
694impl From<fidl::Channel> for TouchSourceSynchronousProxy {
695 fn from(value: fidl::Channel) -> Self {
696 Self::new(value)
697 }
698}
699
700#[derive(Debug, Clone)]
701pub struct TouchSourceProxy {
702 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
703}
704
705impl fidl::endpoints::Proxy for TouchSourceProxy {
706 type Protocol = TouchSourceMarker;
707
708 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
709 Self::new(inner)
710 }
711
712 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
713 self.client.into_channel().map_err(|client| Self { client })
714 }
715
716 fn as_channel(&self) -> &::fidl::AsyncChannel {
717 self.client.as_channel()
718 }
719}
720
721impl TouchSourceProxy {
722 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
724 let protocol_name = <TouchSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
725 Self { client: fidl::client::Client::new(channel, protocol_name) }
726 }
727
728 pub fn take_event_stream(&self) -> TouchSourceEventStream {
734 TouchSourceEventStream { event_receiver: self.client.take_event_receiver() }
735 }
736
737 pub fn r#watch(
778 &self,
779 mut responses: &[TouchResponse],
780 ) -> fidl::client::QueryResponseFut<
781 Vec<TouchEvent>,
782 fidl::encoding::DefaultFuchsiaResourceDialect,
783 > {
784 TouchSourceProxyInterface::r#watch(self, responses)
785 }
786
787 pub fn r#update_response(
804 &self,
805 mut interaction: &TouchInteractionId,
806 mut response: &TouchResponse,
807 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
808 TouchSourceProxyInterface::r#update_response(self, interaction, response)
809 }
810}
811
812impl TouchSourceProxyInterface for TouchSourceProxy {
813 type WatchResponseFut = fidl::client::QueryResponseFut<
814 Vec<TouchEvent>,
815 fidl::encoding::DefaultFuchsiaResourceDialect,
816 >;
817 fn r#watch(&self, mut responses: &[TouchResponse]) -> Self::WatchResponseFut {
818 fn _decode(
819 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
820 ) -> Result<Vec<TouchEvent>, fidl::Error> {
821 let _response = fidl::client::decode_transaction_body::<
822 TouchSourceWatchResponse,
823 fidl::encoding::DefaultFuchsiaResourceDialect,
824 0x38453127dd0fc7d,
825 >(_buf?)?;
826 Ok(_response.events)
827 }
828 self.client.send_query_and_decode::<TouchSourceWatchRequest, Vec<TouchEvent>>(
829 (responses,),
830 0x38453127dd0fc7d,
831 fidl::encoding::DynamicFlags::empty(),
832 _decode,
833 )
834 }
835
836 type UpdateResponseResponseFut =
837 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
838 fn r#update_response(
839 &self,
840 mut interaction: &TouchInteractionId,
841 mut response: &TouchResponse,
842 ) -> Self::UpdateResponseResponseFut {
843 fn _decode(
844 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
845 ) -> Result<(), fidl::Error> {
846 let _response = fidl::client::decode_transaction_body::<
847 fidl::encoding::EmptyPayload,
848 fidl::encoding::DefaultFuchsiaResourceDialect,
849 0x6c746a313b39898a,
850 >(_buf?)?;
851 Ok(_response)
852 }
853 self.client.send_query_and_decode::<TouchSourceUpdateResponseRequest, ()>(
854 (interaction, response),
855 0x6c746a313b39898a,
856 fidl::encoding::DynamicFlags::empty(),
857 _decode,
858 )
859 }
860}
861
862pub struct TouchSourceEventStream {
863 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
864}
865
866impl std::marker::Unpin for TouchSourceEventStream {}
867
868impl futures::stream::FusedStream for TouchSourceEventStream {
869 fn is_terminated(&self) -> bool {
870 self.event_receiver.is_terminated()
871 }
872}
873
874impl futures::Stream for TouchSourceEventStream {
875 type Item = Result<TouchSourceEvent, fidl::Error>;
876
877 fn poll_next(
878 mut self: std::pin::Pin<&mut Self>,
879 cx: &mut std::task::Context<'_>,
880 ) -> std::task::Poll<Option<Self::Item>> {
881 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
882 &mut self.event_receiver,
883 cx
884 )?) {
885 Some(buf) => std::task::Poll::Ready(Some(TouchSourceEvent::decode(buf))),
886 None => std::task::Poll::Ready(None),
887 }
888 }
889}
890
891#[derive(Debug)]
892pub enum TouchSourceEvent {}
893
894impl TouchSourceEvent {
895 fn decode(
897 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
898 ) -> Result<TouchSourceEvent, fidl::Error> {
899 let (bytes, _handles) = buf.split_mut();
900 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
901 debug_assert_eq!(tx_header.tx_id, 0);
902 match tx_header.ordinal {
903 _ => Err(fidl::Error::UnknownOrdinal {
904 ordinal: tx_header.ordinal,
905 protocol_name: <TouchSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
906 }),
907 }
908 }
909}
910
911pub struct TouchSourceRequestStream {
913 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
914 is_terminated: bool,
915}
916
917impl std::marker::Unpin for TouchSourceRequestStream {}
918
919impl futures::stream::FusedStream for TouchSourceRequestStream {
920 fn is_terminated(&self) -> bool {
921 self.is_terminated
922 }
923}
924
925impl fidl::endpoints::RequestStream for TouchSourceRequestStream {
926 type Protocol = TouchSourceMarker;
927 type ControlHandle = TouchSourceControlHandle;
928
929 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
930 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
931 }
932
933 fn control_handle(&self) -> Self::ControlHandle {
934 TouchSourceControlHandle { inner: self.inner.clone() }
935 }
936
937 fn into_inner(
938 self,
939 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
940 {
941 (self.inner, self.is_terminated)
942 }
943
944 fn from_inner(
945 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
946 is_terminated: bool,
947 ) -> Self {
948 Self { inner, is_terminated }
949 }
950}
951
952impl futures::Stream for TouchSourceRequestStream {
953 type Item = Result<TouchSourceRequest, fidl::Error>;
954
955 fn poll_next(
956 mut self: std::pin::Pin<&mut Self>,
957 cx: &mut std::task::Context<'_>,
958 ) -> std::task::Poll<Option<Self::Item>> {
959 let this = &mut *self;
960 if this.inner.check_shutdown(cx) {
961 this.is_terminated = true;
962 return std::task::Poll::Ready(None);
963 }
964 if this.is_terminated {
965 panic!("polled TouchSourceRequestStream after completion");
966 }
967 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
968 |bytes, handles| {
969 match this.inner.channel().read_etc(cx, bytes, handles) {
970 std::task::Poll::Ready(Ok(())) => {}
971 std::task::Poll::Pending => return std::task::Poll::Pending,
972 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
973 this.is_terminated = true;
974 return std::task::Poll::Ready(None);
975 }
976 std::task::Poll::Ready(Err(e)) => {
977 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
978 e.into(),
979 ))))
980 }
981 }
982
983 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
985
986 std::task::Poll::Ready(Some(match header.ordinal {
987 0x38453127dd0fc7d => {
988 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
989 let mut req = fidl::new_empty!(
990 TouchSourceWatchRequest,
991 fidl::encoding::DefaultFuchsiaResourceDialect
992 );
993 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TouchSourceWatchRequest>(&header, _body_bytes, handles, &mut req)?;
994 let control_handle = TouchSourceControlHandle { inner: this.inner.clone() };
995 Ok(TouchSourceRequest::Watch {
996 responses: req.responses,
997
998 responder: TouchSourceWatchResponder {
999 control_handle: std::mem::ManuallyDrop::new(control_handle),
1000 tx_id: header.tx_id,
1001 },
1002 })
1003 }
1004 0x6c746a313b39898a => {
1005 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1006 let mut req = fidl::new_empty!(
1007 TouchSourceUpdateResponseRequest,
1008 fidl::encoding::DefaultFuchsiaResourceDialect
1009 );
1010 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TouchSourceUpdateResponseRequest>(&header, _body_bytes, handles, &mut req)?;
1011 let control_handle = TouchSourceControlHandle { inner: this.inner.clone() };
1012 Ok(TouchSourceRequest::UpdateResponse {
1013 interaction: req.interaction,
1014 response: req.response,
1015
1016 responder: TouchSourceUpdateResponseResponder {
1017 control_handle: std::mem::ManuallyDrop::new(control_handle),
1018 tx_id: header.tx_id,
1019 },
1020 })
1021 }
1022 _ => Err(fidl::Error::UnknownOrdinal {
1023 ordinal: header.ordinal,
1024 protocol_name:
1025 <TouchSourceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1026 }),
1027 }))
1028 },
1029 )
1030 }
1031}
1032
1033#[derive(Debug)]
1049pub enum TouchSourceRequest {
1050 Watch { responses: Vec<TouchResponse>, responder: TouchSourceWatchResponder },
1091 UpdateResponse {
1108 interaction: TouchInteractionId,
1109 response: TouchResponse,
1110 responder: TouchSourceUpdateResponseResponder,
1111 },
1112}
1113
1114impl TouchSourceRequest {
1115 #[allow(irrefutable_let_patterns)]
1116 pub fn into_watch(self) -> Option<(Vec<TouchResponse>, TouchSourceWatchResponder)> {
1117 if let TouchSourceRequest::Watch { responses, responder } = self {
1118 Some((responses, responder))
1119 } else {
1120 None
1121 }
1122 }
1123
1124 #[allow(irrefutable_let_patterns)]
1125 pub fn into_update_response(
1126 self,
1127 ) -> Option<(TouchInteractionId, TouchResponse, TouchSourceUpdateResponseResponder)> {
1128 if let TouchSourceRequest::UpdateResponse { interaction, response, responder } = self {
1129 Some((interaction, response, responder))
1130 } else {
1131 None
1132 }
1133 }
1134
1135 pub fn method_name(&self) -> &'static str {
1137 match *self {
1138 TouchSourceRequest::Watch { .. } => "watch",
1139 TouchSourceRequest::UpdateResponse { .. } => "update_response",
1140 }
1141 }
1142}
1143
1144#[derive(Debug, Clone)]
1145pub struct TouchSourceControlHandle {
1146 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1147}
1148
1149impl fidl::endpoints::ControlHandle for TouchSourceControlHandle {
1150 fn shutdown(&self) {
1151 self.inner.shutdown()
1152 }
1153 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1154 self.inner.shutdown_with_epitaph(status)
1155 }
1156
1157 fn is_closed(&self) -> bool {
1158 self.inner.channel().is_closed()
1159 }
1160 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1161 self.inner.channel().on_closed()
1162 }
1163
1164 #[cfg(target_os = "fuchsia")]
1165 fn signal_peer(
1166 &self,
1167 clear_mask: zx::Signals,
1168 set_mask: zx::Signals,
1169 ) -> Result<(), zx_status::Status> {
1170 use fidl::Peered;
1171 self.inner.channel().signal_peer(clear_mask, set_mask)
1172 }
1173}
1174
1175impl TouchSourceControlHandle {}
1176
1177#[must_use = "FIDL methods require a response to be sent"]
1178#[derive(Debug)]
1179pub struct TouchSourceWatchResponder {
1180 control_handle: std::mem::ManuallyDrop<TouchSourceControlHandle>,
1181 tx_id: u32,
1182}
1183
1184impl std::ops::Drop for TouchSourceWatchResponder {
1188 fn drop(&mut self) {
1189 self.control_handle.shutdown();
1190 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1192 }
1193}
1194
1195impl fidl::endpoints::Responder for TouchSourceWatchResponder {
1196 type ControlHandle = TouchSourceControlHandle;
1197
1198 fn control_handle(&self) -> &TouchSourceControlHandle {
1199 &self.control_handle
1200 }
1201
1202 fn drop_without_shutdown(mut self) {
1203 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1205 std::mem::forget(self);
1207 }
1208}
1209
1210impl TouchSourceWatchResponder {
1211 pub fn send(self, mut events: &[TouchEvent]) -> Result<(), fidl::Error> {
1215 let _result = self.send_raw(events);
1216 if _result.is_err() {
1217 self.control_handle.shutdown();
1218 }
1219 self.drop_without_shutdown();
1220 _result
1221 }
1222
1223 pub fn send_no_shutdown_on_err(self, mut events: &[TouchEvent]) -> Result<(), fidl::Error> {
1225 let _result = self.send_raw(events);
1226 self.drop_without_shutdown();
1227 _result
1228 }
1229
1230 fn send_raw(&self, mut events: &[TouchEvent]) -> Result<(), fidl::Error> {
1231 self.control_handle.inner.send::<TouchSourceWatchResponse>(
1232 (events,),
1233 self.tx_id,
1234 0x38453127dd0fc7d,
1235 fidl::encoding::DynamicFlags::empty(),
1236 )
1237 }
1238}
1239
1240#[must_use = "FIDL methods require a response to be sent"]
1241#[derive(Debug)]
1242pub struct TouchSourceUpdateResponseResponder {
1243 control_handle: std::mem::ManuallyDrop<TouchSourceControlHandle>,
1244 tx_id: u32,
1245}
1246
1247impl std::ops::Drop for TouchSourceUpdateResponseResponder {
1251 fn drop(&mut self) {
1252 self.control_handle.shutdown();
1253 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1255 }
1256}
1257
1258impl fidl::endpoints::Responder for TouchSourceUpdateResponseResponder {
1259 type ControlHandle = TouchSourceControlHandle;
1260
1261 fn control_handle(&self) -> &TouchSourceControlHandle {
1262 &self.control_handle
1263 }
1264
1265 fn drop_without_shutdown(mut self) {
1266 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1268 std::mem::forget(self);
1270 }
1271}
1272
1273impl TouchSourceUpdateResponseResponder {
1274 pub fn send(self) -> Result<(), fidl::Error> {
1278 let _result = self.send_raw();
1279 if _result.is_err() {
1280 self.control_handle.shutdown();
1281 }
1282 self.drop_without_shutdown();
1283 _result
1284 }
1285
1286 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
1288 let _result = self.send_raw();
1289 self.drop_without_shutdown();
1290 _result
1291 }
1292
1293 fn send_raw(&self) -> Result<(), fidl::Error> {
1294 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
1295 (),
1296 self.tx_id,
1297 0x6c746a313b39898a,
1298 fidl::encoding::DynamicFlags::empty(),
1299 )
1300 }
1301}
1302
1303mod internal {
1304 use super::*;
1305}