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_keyboard_focus_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct ControllerNotifyRequest {
16 pub view_ref: fidl_fuchsia_ui_views::ViewRef,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for ControllerNotifyRequest {}
20
21#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
22pub struct ControllerMarker;
23
24impl fidl::endpoints::ProtocolMarker for ControllerMarker {
25 type Proxy = ControllerProxy;
26 type RequestStream = ControllerRequestStream;
27 #[cfg(target_os = "fuchsia")]
28 type SynchronousProxy = ControllerSynchronousProxy;
29
30 const DEBUG_NAME: &'static str = "fuchsia.ui.keyboard.focus.Controller";
31}
32impl fidl::endpoints::DiscoverableProtocolMarker for ControllerMarker {}
33
34pub trait ControllerProxyInterface: Send + Sync {
35 type NotifyResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
36 fn r#notify(&self, view_ref: fidl_fuchsia_ui_views::ViewRef) -> Self::NotifyResponseFut;
37}
38#[derive(Debug)]
39#[cfg(target_os = "fuchsia")]
40pub struct ControllerSynchronousProxy {
41 client: fidl::client::sync::Client,
42}
43
44#[cfg(target_os = "fuchsia")]
45impl fidl::endpoints::SynchronousProxy for ControllerSynchronousProxy {
46 type Proxy = ControllerProxy;
47 type Protocol = ControllerMarker;
48
49 fn from_channel(inner: fidl::Channel) -> Self {
50 Self::new(inner)
51 }
52
53 fn into_channel(self) -> fidl::Channel {
54 self.client.into_channel()
55 }
56
57 fn as_channel(&self) -> &fidl::Channel {
58 self.client.as_channel()
59 }
60}
61
62#[cfg(target_os = "fuchsia")]
63impl ControllerSynchronousProxy {
64 pub fn new(channel: fidl::Channel) -> Self {
65 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
66 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
67 }
68
69 pub fn into_channel(self) -> fidl::Channel {
70 self.client.into_channel()
71 }
72
73 pub fn wait_for_event(
76 &self,
77 deadline: zx::MonotonicInstant,
78 ) -> Result<ControllerEvent, fidl::Error> {
79 ControllerEvent::decode(self.client.wait_for_event(deadline)?)
80 }
81
82 pub fn r#notify(
97 &self,
98 mut view_ref: fidl_fuchsia_ui_views::ViewRef,
99 ___deadline: zx::MonotonicInstant,
100 ) -> Result<(), fidl::Error> {
101 let _response =
102 self.client.send_query::<ControllerNotifyRequest, fidl::encoding::EmptyPayload>(
103 (&mut view_ref,),
104 0xdab35302eed5de5,
105 fidl::encoding::DynamicFlags::empty(),
106 ___deadline,
107 )?;
108 Ok(_response)
109 }
110}
111
112#[cfg(target_os = "fuchsia")]
113impl From<ControllerSynchronousProxy> for zx::Handle {
114 fn from(value: ControllerSynchronousProxy) -> Self {
115 value.into_channel().into()
116 }
117}
118
119#[cfg(target_os = "fuchsia")]
120impl From<fidl::Channel> for ControllerSynchronousProxy {
121 fn from(value: fidl::Channel) -> Self {
122 Self::new(value)
123 }
124}
125
126#[derive(Debug, Clone)]
127pub struct ControllerProxy {
128 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
129}
130
131impl fidl::endpoints::Proxy for ControllerProxy {
132 type Protocol = ControllerMarker;
133
134 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
135 Self::new(inner)
136 }
137
138 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
139 self.client.into_channel().map_err(|client| Self { client })
140 }
141
142 fn as_channel(&self) -> &::fidl::AsyncChannel {
143 self.client.as_channel()
144 }
145}
146
147impl ControllerProxy {
148 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
150 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
151 Self { client: fidl::client::Client::new(channel, protocol_name) }
152 }
153
154 pub fn take_event_stream(&self) -> ControllerEventStream {
160 ControllerEventStream { event_receiver: self.client.take_event_receiver() }
161 }
162
163 pub fn r#notify(
178 &self,
179 mut view_ref: fidl_fuchsia_ui_views::ViewRef,
180 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
181 ControllerProxyInterface::r#notify(self, view_ref)
182 }
183}
184
185impl ControllerProxyInterface for ControllerProxy {
186 type NotifyResponseFut =
187 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
188 fn r#notify(&self, mut view_ref: fidl_fuchsia_ui_views::ViewRef) -> Self::NotifyResponseFut {
189 fn _decode(
190 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
191 ) -> Result<(), fidl::Error> {
192 let _response = fidl::client::decode_transaction_body::<
193 fidl::encoding::EmptyPayload,
194 fidl::encoding::DefaultFuchsiaResourceDialect,
195 0xdab35302eed5de5,
196 >(_buf?)?;
197 Ok(_response)
198 }
199 self.client.send_query_and_decode::<ControllerNotifyRequest, ()>(
200 (&mut view_ref,),
201 0xdab35302eed5de5,
202 fidl::encoding::DynamicFlags::empty(),
203 _decode,
204 )
205 }
206}
207
208pub struct ControllerEventStream {
209 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
210}
211
212impl std::marker::Unpin for ControllerEventStream {}
213
214impl futures::stream::FusedStream for ControllerEventStream {
215 fn is_terminated(&self) -> bool {
216 self.event_receiver.is_terminated()
217 }
218}
219
220impl futures::Stream for ControllerEventStream {
221 type Item = Result<ControllerEvent, fidl::Error>;
222
223 fn poll_next(
224 mut self: std::pin::Pin<&mut Self>,
225 cx: &mut std::task::Context<'_>,
226 ) -> std::task::Poll<Option<Self::Item>> {
227 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
228 &mut self.event_receiver,
229 cx
230 )?) {
231 Some(buf) => std::task::Poll::Ready(Some(ControllerEvent::decode(buf))),
232 None => std::task::Poll::Ready(None),
233 }
234 }
235}
236
237#[derive(Debug)]
238pub enum ControllerEvent {}
239
240impl ControllerEvent {
241 fn decode(
243 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
244 ) -> Result<ControllerEvent, fidl::Error> {
245 let (bytes, _handles) = buf.split_mut();
246 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
247 debug_assert_eq!(tx_header.tx_id, 0);
248 match tx_header.ordinal {
249 _ => Err(fidl::Error::UnknownOrdinal {
250 ordinal: tx_header.ordinal,
251 protocol_name: <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
252 }),
253 }
254 }
255}
256
257pub struct ControllerRequestStream {
259 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
260 is_terminated: bool,
261}
262
263impl std::marker::Unpin for ControllerRequestStream {}
264
265impl futures::stream::FusedStream for ControllerRequestStream {
266 fn is_terminated(&self) -> bool {
267 self.is_terminated
268 }
269}
270
271impl fidl::endpoints::RequestStream for ControllerRequestStream {
272 type Protocol = ControllerMarker;
273 type ControlHandle = ControllerControlHandle;
274
275 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
276 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
277 }
278
279 fn control_handle(&self) -> Self::ControlHandle {
280 ControllerControlHandle { inner: self.inner.clone() }
281 }
282
283 fn into_inner(
284 self,
285 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
286 {
287 (self.inner, self.is_terminated)
288 }
289
290 fn from_inner(
291 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
292 is_terminated: bool,
293 ) -> Self {
294 Self { inner, is_terminated }
295 }
296}
297
298impl futures::Stream for ControllerRequestStream {
299 type Item = Result<ControllerRequest, fidl::Error>;
300
301 fn poll_next(
302 mut self: std::pin::Pin<&mut Self>,
303 cx: &mut std::task::Context<'_>,
304 ) -> std::task::Poll<Option<Self::Item>> {
305 let this = &mut *self;
306 if this.inner.check_shutdown(cx) {
307 this.is_terminated = true;
308 return std::task::Poll::Ready(None);
309 }
310 if this.is_terminated {
311 panic!("polled ControllerRequestStream after completion");
312 }
313 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
314 |bytes, handles| {
315 match this.inner.channel().read_etc(cx, bytes, handles) {
316 std::task::Poll::Ready(Ok(())) => {}
317 std::task::Poll::Pending => return std::task::Poll::Pending,
318 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
319 this.is_terminated = true;
320 return std::task::Poll::Ready(None);
321 }
322 std::task::Poll::Ready(Err(e)) => {
323 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
324 e.into(),
325 ))))
326 }
327 }
328
329 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
331
332 std::task::Poll::Ready(Some(match header.ordinal {
333 0xdab35302eed5de5 => {
334 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
335 let mut req = fidl::new_empty!(
336 ControllerNotifyRequest,
337 fidl::encoding::DefaultFuchsiaResourceDialect
338 );
339 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerNotifyRequest>(&header, _body_bytes, handles, &mut req)?;
340 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
341 Ok(ControllerRequest::Notify {
342 view_ref: req.view_ref,
343
344 responder: ControllerNotifyResponder {
345 control_handle: std::mem::ManuallyDrop::new(control_handle),
346 tx_id: header.tx_id,
347 },
348 })
349 }
350 _ => Err(fidl::Error::UnknownOrdinal {
351 ordinal: header.ordinal,
352 protocol_name:
353 <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
354 }),
355 }))
356 },
357 )
358 }
359}
360
361#[derive(Debug)]
374pub enum ControllerRequest {
375 Notify { view_ref: fidl_fuchsia_ui_views::ViewRef, responder: ControllerNotifyResponder },
390}
391
392impl ControllerRequest {
393 #[allow(irrefutable_let_patterns)]
394 pub fn into_notify(
395 self,
396 ) -> Option<(fidl_fuchsia_ui_views::ViewRef, ControllerNotifyResponder)> {
397 if let ControllerRequest::Notify { view_ref, responder } = self {
398 Some((view_ref, responder))
399 } else {
400 None
401 }
402 }
403
404 pub fn method_name(&self) -> &'static str {
406 match *self {
407 ControllerRequest::Notify { .. } => "notify",
408 }
409 }
410}
411
412#[derive(Debug, Clone)]
413pub struct ControllerControlHandle {
414 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
415}
416
417impl fidl::endpoints::ControlHandle for ControllerControlHandle {
418 fn shutdown(&self) {
419 self.inner.shutdown()
420 }
421 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
422 self.inner.shutdown_with_epitaph(status)
423 }
424
425 fn is_closed(&self) -> bool {
426 self.inner.channel().is_closed()
427 }
428 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
429 self.inner.channel().on_closed()
430 }
431
432 #[cfg(target_os = "fuchsia")]
433 fn signal_peer(
434 &self,
435 clear_mask: zx::Signals,
436 set_mask: zx::Signals,
437 ) -> Result<(), zx_status::Status> {
438 use fidl::Peered;
439 self.inner.channel().signal_peer(clear_mask, set_mask)
440 }
441}
442
443impl ControllerControlHandle {}
444
445#[must_use = "FIDL methods require a response to be sent"]
446#[derive(Debug)]
447pub struct ControllerNotifyResponder {
448 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
449 tx_id: u32,
450}
451
452impl std::ops::Drop for ControllerNotifyResponder {
456 fn drop(&mut self) {
457 self.control_handle.shutdown();
458 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
460 }
461}
462
463impl fidl::endpoints::Responder for ControllerNotifyResponder {
464 type ControlHandle = ControllerControlHandle;
465
466 fn control_handle(&self) -> &ControllerControlHandle {
467 &self.control_handle
468 }
469
470 fn drop_without_shutdown(mut self) {
471 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
473 std::mem::forget(self);
475 }
476}
477
478impl ControllerNotifyResponder {
479 pub fn send(self) -> Result<(), fidl::Error> {
483 let _result = self.send_raw();
484 if _result.is_err() {
485 self.control_handle.shutdown();
486 }
487 self.drop_without_shutdown();
488 _result
489 }
490
491 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
493 let _result = self.send_raw();
494 self.drop_without_shutdown();
495 _result
496 }
497
498 fn send_raw(&self) -> Result<(), fidl::Error> {
499 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
500 (),
501 self.tx_id,
502 0xdab35302eed5de5,
503 fidl::encoding::DynamicFlags::empty(),
504 )
505 }
506}
507
508mod internal {
509 use super::*;
510
511 impl fidl::encoding::ResourceTypeMarker for ControllerNotifyRequest {
512 type Borrowed<'a> = &'a mut Self;
513 fn take_or_borrow<'a>(
514 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
515 ) -> Self::Borrowed<'a> {
516 value
517 }
518 }
519
520 unsafe impl fidl::encoding::TypeMarker for ControllerNotifyRequest {
521 type Owned = Self;
522
523 #[inline(always)]
524 fn inline_align(_context: fidl::encoding::Context) -> usize {
525 4
526 }
527
528 #[inline(always)]
529 fn inline_size(_context: fidl::encoding::Context) -> usize {
530 4
531 }
532 }
533
534 unsafe impl
535 fidl::encoding::Encode<
536 ControllerNotifyRequest,
537 fidl::encoding::DefaultFuchsiaResourceDialect,
538 > for &mut ControllerNotifyRequest
539 {
540 #[inline]
541 unsafe fn encode(
542 self,
543 encoder: &mut fidl::encoding::Encoder<
544 '_,
545 fidl::encoding::DefaultFuchsiaResourceDialect,
546 >,
547 offset: usize,
548 _depth: fidl::encoding::Depth,
549 ) -> fidl::Result<()> {
550 encoder.debug_check_bounds::<ControllerNotifyRequest>(offset);
551 fidl::encoding::Encode::<ControllerNotifyRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
553 (
554 <fidl_fuchsia_ui_views::ViewRef as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.view_ref),
555 ),
556 encoder, offset, _depth
557 )
558 }
559 }
560 unsafe impl<
561 T0: fidl::encoding::Encode<
562 fidl_fuchsia_ui_views::ViewRef,
563 fidl::encoding::DefaultFuchsiaResourceDialect,
564 >,
565 >
566 fidl::encoding::Encode<
567 ControllerNotifyRequest,
568 fidl::encoding::DefaultFuchsiaResourceDialect,
569 > for (T0,)
570 {
571 #[inline]
572 unsafe fn encode(
573 self,
574 encoder: &mut fidl::encoding::Encoder<
575 '_,
576 fidl::encoding::DefaultFuchsiaResourceDialect,
577 >,
578 offset: usize,
579 depth: fidl::encoding::Depth,
580 ) -> fidl::Result<()> {
581 encoder.debug_check_bounds::<ControllerNotifyRequest>(offset);
582 self.0.encode(encoder, offset + 0, depth)?;
586 Ok(())
587 }
588 }
589
590 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
591 for ControllerNotifyRequest
592 {
593 #[inline(always)]
594 fn new_empty() -> Self {
595 Self {
596 view_ref: fidl::new_empty!(
597 fidl_fuchsia_ui_views::ViewRef,
598 fidl::encoding::DefaultFuchsiaResourceDialect
599 ),
600 }
601 }
602
603 #[inline]
604 unsafe fn decode(
605 &mut self,
606 decoder: &mut fidl::encoding::Decoder<
607 '_,
608 fidl::encoding::DefaultFuchsiaResourceDialect,
609 >,
610 offset: usize,
611 _depth: fidl::encoding::Depth,
612 ) -> fidl::Result<()> {
613 decoder.debug_check_bounds::<Self>(offset);
614 fidl::decode!(
616 fidl_fuchsia_ui_views::ViewRef,
617 fidl::encoding::DefaultFuchsiaResourceDialect,
618 &mut self.view_ref,
619 decoder,
620 offset + 0,
621 _depth
622 )?;
623 Ok(())
624 }
625 }
626}