fidl_fuchsia_ui_pointer/
fidl_fuchsia_ui_pointer.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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    /// Waits until an event arrives and returns it. It is safe for other
66    /// threads to make concurrent requests while waiting for an event.
67    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    /// A method for a client to receive mouse pointer events.
75    ///
76    /// This call is formulated as a "hanging get" pattern: the client asks for
77    /// a set of recent events, and receives them via the callback. This
78    /// pull-based approach ensures that clients consume events at their own
79    /// pace; events don't clog up the channel in an unbounded manner.
80    ///
81    /// Flow control. The caller is allowed at most one in-flight |Watch| call
82    /// at a time; it is a logical error to have concurrent calls to |Watch|.
83    /// Non-compliance results in channel closure.
84    ///
85    /// Client pacing. The server will dispatch events to the caller on a FIFO,
86    /// lossless, best-effort basis, but the caller must allocate enough time to
87    /// keep up with new events.
88    ///
89    /// Event times. The timestamps on each event in the event vector are *not*
90    /// guaranteed monotonic; events from different devices may be injected into
91    /// Scenic at different times. Generally, events from a single device are
92    /// expected to have monotonically increasing timestamps.
93    ///
94    /// View parameters. Occasionally, changes in view or viewport require
95    /// notifying the client. If a |MouseEvent| carries |ViewParameters|, these
96    /// parameters apply to successive |MousePointerSample|s until the next
97    /// |ViewParameters|.
98    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    /// Create a new Proxy for fuchsia.ui.pointer/MouseSource.
150    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    /// Get a Stream of events from the remote end of the protocol.
156    ///
157    /// # Panics
158    ///
159    /// Panics if the event stream was already taken.
160    pub fn take_event_stream(&self) -> MouseSourceEventStream {
161        MouseSourceEventStream { event_receiver: self.client.take_event_receiver() }
162    }
163
164    /// A method for a client to receive mouse pointer events.
165    ///
166    /// This call is formulated as a "hanging get" pattern: the client asks for
167    /// a set of recent events, and receives them via the callback. This
168    /// pull-based approach ensures that clients consume events at their own
169    /// pace; events don't clog up the channel in an unbounded manner.
170    ///
171    /// Flow control. The caller is allowed at most one in-flight |Watch| call
172    /// at a time; it is a logical error to have concurrent calls to |Watch|.
173    /// Non-compliance results in channel closure.
174    ///
175    /// Client pacing. The server will dispatch events to the caller on a FIFO,
176    /// lossless, best-effort basis, but the caller must allocate enough time to
177    /// keep up with new events.
178    ///
179    /// Event times. The timestamps on each event in the event vector are *not*
180    /// guaranteed monotonic; events from different devices may be injected into
181    /// Scenic at different times. Generally, events from a single device are
182    /// expected to have monotonically increasing timestamps.
183    ///
184    /// View parameters. Occasionally, changes in view or viewport require
185    /// notifying the client. If a |MouseEvent| carries |ViewParameters|, these
186    /// parameters apply to successive |MousePointerSample|s until the next
187    /// |ViewParameters|.
188    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    /// Decodes a message buffer as a [`MouseSourceEvent`].
257    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
272/// A Stream of incoming requests for fuchsia.ui.pointer/MouseSource.
273pub 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                // A message has been received from the channel
345                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/// A method for a client to receive mouse pointer events.
375///
376/// The position of a pointer event is defined in the context of a viewport,
377/// situated in the view. The dimensions of the view and viewport, and their
378/// spatial relationship (defined with a transform matrix), are supplied
379/// synchronously in a |ViewParameter| table. A view may retrieve a pointer's
380/// position in its local coordinate system by applying the viewport-to-view
381/// transform matrix.
382///
383/// The viewport is embedded in an independent and stable coordinate system,
384/// suitable for interpreting pointer events in a scale-independent manner;
385/// mouse movement will be observed at a constant scale, even under effects such
386/// as magnification or panning. However, other effects, such as enlargening the
387/// view's clip bounds, may trigger a change in the viewport extents.
388#[derive(Debug)]
389pub enum MouseSourceRequest {
390    /// A method for a client to receive mouse pointer events.
391    ///
392    /// This call is formulated as a "hanging get" pattern: the client asks for
393    /// a set of recent events, and receives them via the callback. This
394    /// pull-based approach ensures that clients consume events at their own
395    /// pace; events don't clog up the channel in an unbounded manner.
396    ///
397    /// Flow control. The caller is allowed at most one in-flight |Watch| call
398    /// at a time; it is a logical error to have concurrent calls to |Watch|.
399    /// Non-compliance results in channel closure.
400    ///
401    /// Client pacing. The server will dispatch events to the caller on a FIFO,
402    /// lossless, best-effort basis, but the caller must allocate enough time to
403    /// keep up with new events.
404    ///
405    /// Event times. The timestamps on each event in the event vector are *not*
406    /// guaranteed monotonic; events from different devices may be injected into
407    /// Scenic at different times. Generally, events from a single device are
408    /// expected to have monotonically increasing timestamps.
409    ///
410    /// View parameters. Occasionally, changes in view or viewport require
411    /// notifying the client. If a |MouseEvent| carries |ViewParameters|, these
412    /// parameters apply to successive |MousePointerSample|s until the next
413    /// |ViewParameters|.
414    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    /// Name of the method defined in FIDL
428    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
475/// Set the the channel to be shutdown (see [`MouseSourceControlHandle::shutdown`])
476/// if the responder is dropped without sending a response, so that the client
477/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
478impl std::ops::Drop for MouseSourceWatchResponder {
479    fn drop(&mut self) {
480        self.control_handle.shutdown();
481        // Safety: drops once, never accessed again
482        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        // Safety: drops once, never accessed again due to mem::forget
495        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
496        // Prevent Drop from running (which would shut down the channel)
497        std::mem::forget(self);
498    }
499}
500
501impl MouseSourceWatchResponder {
502    /// Sends a response to the FIDL transaction.
503    ///
504    /// Sets the channel to shutdown if an error occurs.
505    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    /// Similar to "send" but does not shutdown the channel if an error occurs.
515    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    /// Waits until an event arrives and returns it. It is safe for other
589    /// threads to make concurrent requests while waiting for an event.
590    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    /// A method for a client to receive touch pointer events.
598    ///
599    /// This call is formulated as a "hanging get" pattern: the client asks for
600    /// a set of recent events, and receives them via the callback. This
601    /// pull-based approach ensures that clients consume events at their own
602    /// pace; events don't clog up the channel in an unbounded manner.
603    ///
604    /// Flow control. The caller is allowed at most one in-flight |Watch| call
605    /// at a time; it is a logical error to have concurrent calls to |Watch|.
606    /// Non-compliance results in channel closure.
607    ///
608    /// Client pacing. The server will dispatch events to the caller on a FIFO,
609    /// lossless, best-effort basis, but the caller must allocate enough time to
610    /// keep up with new events. An unresponsive client may be categorized as
611    /// "App Not Responding" and targeted for channel closure.
612    ///
613    /// Responses. The gesture disambiguation scheme relies on the server
614    /// receiving a |TouchResponse| for each |TouchEvent|.|TouchPointerSample|;
615    /// non-sample events should return an empty |TouchResponse| table to the
616    /// server. Responses for *previous* events are fed to the server on the
617    /// *next* call of |Watch| [1]. Each element in the |responses| vector is
618    /// interpreted as the pairwise response to the event in the previous
619    /// |events| vector; the vector lengths must match. Note that the client's
620    /// contract to respond to events starts as soon as it registers its
621    /// endpoint with scenic, NOT when it first calls `Watch()`.
622    ///
623    /// Initial response. The first call to |Watch| must be an empty vector.
624    ///
625    /// Event times. The timestamps on each event in the event vector are *not*
626    /// guaranteed monotonic; touch events from different devices may be
627    /// injected into Scenic at different times. Generally, events from a single
628    /// device are expected to have monotonically increasing timestamps.
629    ///
630    /// View parameters. Occasionally, changes in view or viewport require
631    /// notifying the client. If a |TouchEvent| carries |ViewParameters|, these
632    /// parameters apply to successive |TouchPointerSample|s until the next
633    /// |ViewParameters|.
634    ///
635    /// [1] The hanging get pattern enables straightforward API evolution, but
636    /// unfortunately does not admit an idiomatic matching of response to event.
637    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    /// The gesture protocol allows a client to enact a "hold" on an open
653    /// interaction of touch events; it prevents resolution of interaction
654    /// ownership, even after the interaction closes. This method updates the
655    /// client's previous "hold" by replacing it with a response that allows
656    /// ownership resolution to proceed.
657    ///
658    /// See |TouchInteractionId| for how a stream is structured into
659    /// interactions.
660    ///
661    /// Flow control. The caller is allowed at most one |UpdateResponse| call
662    /// per interaction, and it must be on a closed interaction. It is a logical
663    /// error to call |UpdateResponse| when a normal response is possible with
664    /// the |Watch| call.
665    ///
666    /// Validity. This TouchResponse must not be another "hold" response, and
667    /// the overwritten response is expected to be a "hold" response.
668    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    /// Create a new Proxy for fuchsia.ui.pointer/TouchSource.
723    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    /// Get a Stream of events from the remote end of the protocol.
729    ///
730    /// # Panics
731    ///
732    /// Panics if the event stream was already taken.
733    pub fn take_event_stream(&self) -> TouchSourceEventStream {
734        TouchSourceEventStream { event_receiver: self.client.take_event_receiver() }
735    }
736
737    /// A method for a client to receive touch pointer events.
738    ///
739    /// This call is formulated as a "hanging get" pattern: the client asks for
740    /// a set of recent events, and receives them via the callback. This
741    /// pull-based approach ensures that clients consume events at their own
742    /// pace; events don't clog up the channel in an unbounded manner.
743    ///
744    /// Flow control. The caller is allowed at most one in-flight |Watch| call
745    /// at a time; it is a logical error to have concurrent calls to |Watch|.
746    /// Non-compliance results in channel closure.
747    ///
748    /// Client pacing. The server will dispatch events to the caller on a FIFO,
749    /// lossless, best-effort basis, but the caller must allocate enough time to
750    /// keep up with new events. An unresponsive client may be categorized as
751    /// "App Not Responding" and targeted for channel closure.
752    ///
753    /// Responses. The gesture disambiguation scheme relies on the server
754    /// receiving a |TouchResponse| for each |TouchEvent|.|TouchPointerSample|;
755    /// non-sample events should return an empty |TouchResponse| table to the
756    /// server. Responses for *previous* events are fed to the server on the
757    /// *next* call of |Watch| [1]. Each element in the |responses| vector is
758    /// interpreted as the pairwise response to the event in the previous
759    /// |events| vector; the vector lengths must match. Note that the client's
760    /// contract to respond to events starts as soon as it registers its
761    /// endpoint with scenic, NOT when it first calls `Watch()`.
762    ///
763    /// Initial response. The first call to |Watch| must be an empty vector.
764    ///
765    /// Event times. The timestamps on each event in the event vector are *not*
766    /// guaranteed monotonic; touch events from different devices may be
767    /// injected into Scenic at different times. Generally, events from a single
768    /// device are expected to have monotonically increasing timestamps.
769    ///
770    /// View parameters. Occasionally, changes in view or viewport require
771    /// notifying the client. If a |TouchEvent| carries |ViewParameters|, these
772    /// parameters apply to successive |TouchPointerSample|s until the next
773    /// |ViewParameters|.
774    ///
775    /// [1] The hanging get pattern enables straightforward API evolution, but
776    /// unfortunately does not admit an idiomatic matching of response to event.
777    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    /// The gesture protocol allows a client to enact a "hold" on an open
788    /// interaction of touch events; it prevents resolution of interaction
789    /// ownership, even after the interaction closes. This method updates the
790    /// client's previous "hold" by replacing it with a response that allows
791    /// ownership resolution to proceed.
792    ///
793    /// See |TouchInteractionId| for how a stream is structured into
794    /// interactions.
795    ///
796    /// Flow control. The caller is allowed at most one |UpdateResponse| call
797    /// per interaction, and it must be on a closed interaction. It is a logical
798    /// error to call |UpdateResponse| when a normal response is possible with
799    /// the |Watch| call.
800    ///
801    /// Validity. This TouchResponse must not be another "hold" response, and
802    /// the overwritten response is expected to be a "hold" response.
803    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    /// Decodes a message buffer as a [`TouchSourceEvent`].
896    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
911/// A Stream of incoming requests for fuchsia.ui.pointer/TouchSource.
912pub 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                // A message has been received from the channel
984                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/// A method for a client to receive touch events and respond in a global
1034/// gesture disambiguation protocol.
1035///
1036/// The position of a touch event is defined in the context of a viewport,
1037/// situated in the view. The dimensions of the view and viewport, and their
1038/// spatial relationship (defined with a transform matrix), are supplied
1039/// synchronously in a |ViewParameter| table. A view may retrieve a pointer's
1040/// position in its local coordinate system by applying the viewport-to-view
1041/// transform matrix.
1042///
1043/// The viewport is embedded in an independent and stable coordinate system,
1044/// suitable for interpreting touch events in a scale-independent manner; a
1045/// swipe will be observed at a constant scale, even under effects such as
1046/// magnification or panning. However, other effects, such as enlargening the
1047/// view's clip bounds, may trigger a change in the viewport extents.
1048#[derive(Debug)]
1049pub enum TouchSourceRequest {
1050    /// A method for a client to receive touch pointer events.
1051    ///
1052    /// This call is formulated as a "hanging get" pattern: the client asks for
1053    /// a set of recent events, and receives them via the callback. This
1054    /// pull-based approach ensures that clients consume events at their own
1055    /// pace; events don't clog up the channel in an unbounded manner.
1056    ///
1057    /// Flow control. The caller is allowed at most one in-flight |Watch| call
1058    /// at a time; it is a logical error to have concurrent calls to |Watch|.
1059    /// Non-compliance results in channel closure.
1060    ///
1061    /// Client pacing. The server will dispatch events to the caller on a FIFO,
1062    /// lossless, best-effort basis, but the caller must allocate enough time to
1063    /// keep up with new events. An unresponsive client may be categorized as
1064    /// "App Not Responding" and targeted for channel closure.
1065    ///
1066    /// Responses. The gesture disambiguation scheme relies on the server
1067    /// receiving a |TouchResponse| for each |TouchEvent|.|TouchPointerSample|;
1068    /// non-sample events should return an empty |TouchResponse| table to the
1069    /// server. Responses for *previous* events are fed to the server on the
1070    /// *next* call of |Watch| [1]. Each element in the |responses| vector is
1071    /// interpreted as the pairwise response to the event in the previous
1072    /// |events| vector; the vector lengths must match. Note that the client's
1073    /// contract to respond to events starts as soon as it registers its
1074    /// endpoint with scenic, NOT when it first calls `Watch()`.
1075    ///
1076    /// Initial response. The first call to |Watch| must be an empty vector.
1077    ///
1078    /// Event times. The timestamps on each event in the event vector are *not*
1079    /// guaranteed monotonic; touch events from different devices may be
1080    /// injected into Scenic at different times. Generally, events from a single
1081    /// device are expected to have monotonically increasing timestamps.
1082    ///
1083    /// View parameters. Occasionally, changes in view or viewport require
1084    /// notifying the client. If a |TouchEvent| carries |ViewParameters|, these
1085    /// parameters apply to successive |TouchPointerSample|s until the next
1086    /// |ViewParameters|.
1087    ///
1088    /// [1] The hanging get pattern enables straightforward API evolution, but
1089    /// unfortunately does not admit an idiomatic matching of response to event.
1090    Watch { responses: Vec<TouchResponse>, responder: TouchSourceWatchResponder },
1091    /// The gesture protocol allows a client to enact a "hold" on an open
1092    /// interaction of touch events; it prevents resolution of interaction
1093    /// ownership, even after the interaction closes. This method updates the
1094    /// client's previous "hold" by replacing it with a response that allows
1095    /// ownership resolution to proceed.
1096    ///
1097    /// See |TouchInteractionId| for how a stream is structured into
1098    /// interactions.
1099    ///
1100    /// Flow control. The caller is allowed at most one |UpdateResponse| call
1101    /// per interaction, and it must be on a closed interaction. It is a logical
1102    /// error to call |UpdateResponse| when a normal response is possible with
1103    /// the |Watch| call.
1104    ///
1105    /// Validity. This TouchResponse must not be another "hold" response, and
1106    /// the overwritten response is expected to be a "hold" response.
1107    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    /// Name of the method defined in FIDL
1136    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
1184/// Set the the channel to be shutdown (see [`TouchSourceControlHandle::shutdown`])
1185/// if the responder is dropped without sending a response, so that the client
1186/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
1187impl std::ops::Drop for TouchSourceWatchResponder {
1188    fn drop(&mut self) {
1189        self.control_handle.shutdown();
1190        // Safety: drops once, never accessed again
1191        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        // Safety: drops once, never accessed again due to mem::forget
1204        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1205        // Prevent Drop from running (which would shut down the channel)
1206        std::mem::forget(self);
1207    }
1208}
1209
1210impl TouchSourceWatchResponder {
1211    /// Sends a response to the FIDL transaction.
1212    ///
1213    /// Sets the channel to shutdown if an error occurs.
1214    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    /// Similar to "send" but does not shutdown the channel if an error occurs.
1224    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
1247/// Set the the channel to be shutdown (see [`TouchSourceControlHandle::shutdown`])
1248/// if the responder is dropped without sending a response, so that the client
1249/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
1250impl std::ops::Drop for TouchSourceUpdateResponseResponder {
1251    fn drop(&mut self) {
1252        self.control_handle.shutdown();
1253        // Safety: drops once, never accessed again
1254        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        // Safety: drops once, never accessed again due to mem::forget
1267        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1268        // Prevent Drop from running (which would shut down the channel)
1269        std::mem::forget(self);
1270    }
1271}
1272
1273impl TouchSourceUpdateResponseResponder {
1274    /// Sends a response to the FIDL transaction.
1275    ///
1276    /// Sets the channel to shutdown if an error occurs.
1277    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    /// Similar to "send" but does not shutdown the channel if an error occurs.
1287    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}