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