fidl_fuchsia_ui_observation_geometry/
fidl_fuchsia_ui_observation_geometry.rs1#![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_geometry_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ViewTreeWatcherMarker;
16
17impl fidl::endpoints::ProtocolMarker for ViewTreeWatcherMarker {
18 type Proxy = ViewTreeWatcherProxy;
19 type RequestStream = ViewTreeWatcherRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ViewTreeWatcherSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) ViewTreeWatcher";
24}
25
26pub trait ViewTreeWatcherProxyInterface: Send + Sync {
27 type WatchResponseFut: std::future::Future<Output = Result<WatchResponse, fidl::Error>> + Send;
28 fn r#watch(&self) -> Self::WatchResponseFut;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct ViewTreeWatcherSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for ViewTreeWatcherSynchronousProxy {
38 type Proxy = ViewTreeWatcherProxy;
39 type Protocol = ViewTreeWatcherMarker;
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 ViewTreeWatcherSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <ViewTreeWatcherMarker 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<ViewTreeWatcherEvent, fidl::Error> {
71 ViewTreeWatcherEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<WatchResponse, fidl::Error> {
92 let _response = self.client.send_query::<fidl::encoding::EmptyPayload, WatchResponse>(
93 (),
94 0x3c7670983418477b,
95 fidl::encoding::DynamicFlags::empty(),
96 ___deadline,
97 )?;
98 Ok(_response)
99 }
100}
101
102#[cfg(target_os = "fuchsia")]
103impl From<ViewTreeWatcherSynchronousProxy> for zx::Handle {
104 fn from(value: ViewTreeWatcherSynchronousProxy) -> Self {
105 value.into_channel().into()
106 }
107}
108
109#[cfg(target_os = "fuchsia")]
110impl From<fidl::Channel> for ViewTreeWatcherSynchronousProxy {
111 fn from(value: fidl::Channel) -> Self {
112 Self::new(value)
113 }
114}
115
116#[derive(Debug, Clone)]
117pub struct ViewTreeWatcherProxy {
118 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
119}
120
121impl fidl::endpoints::Proxy for ViewTreeWatcherProxy {
122 type Protocol = ViewTreeWatcherMarker;
123
124 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
125 Self::new(inner)
126 }
127
128 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
129 self.client.into_channel().map_err(|client| Self { client })
130 }
131
132 fn as_channel(&self) -> &::fidl::AsyncChannel {
133 self.client.as_channel()
134 }
135}
136
137impl ViewTreeWatcherProxy {
138 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
140 let protocol_name = <ViewTreeWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
141 Self { client: fidl::client::Client::new(channel, protocol_name) }
142 }
143
144 pub fn take_event_stream(&self) -> ViewTreeWatcherEventStream {
150 ViewTreeWatcherEventStream { event_receiver: self.client.take_event_receiver() }
151 }
152
153 pub fn r#watch(
171 &self,
172 ) -> fidl::client::QueryResponseFut<WatchResponse, fidl::encoding::DefaultFuchsiaResourceDialect>
173 {
174 ViewTreeWatcherProxyInterface::r#watch(self)
175 }
176}
177
178impl ViewTreeWatcherProxyInterface for ViewTreeWatcherProxy {
179 type WatchResponseFut = fidl::client::QueryResponseFut<
180 WatchResponse,
181 fidl::encoding::DefaultFuchsiaResourceDialect,
182 >;
183 fn r#watch(&self) -> Self::WatchResponseFut {
184 fn _decode(
185 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
186 ) -> Result<WatchResponse, fidl::Error> {
187 let _response = fidl::client::decode_transaction_body::<
188 WatchResponse,
189 fidl::encoding::DefaultFuchsiaResourceDialect,
190 0x3c7670983418477b,
191 >(_buf?)?;
192 Ok(_response)
193 }
194 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, WatchResponse>(
195 (),
196 0x3c7670983418477b,
197 fidl::encoding::DynamicFlags::empty(),
198 _decode,
199 )
200 }
201}
202
203pub struct ViewTreeWatcherEventStream {
204 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
205}
206
207impl std::marker::Unpin for ViewTreeWatcherEventStream {}
208
209impl futures::stream::FusedStream for ViewTreeWatcherEventStream {
210 fn is_terminated(&self) -> bool {
211 self.event_receiver.is_terminated()
212 }
213}
214
215impl futures::Stream for ViewTreeWatcherEventStream {
216 type Item = Result<ViewTreeWatcherEvent, fidl::Error>;
217
218 fn poll_next(
219 mut self: std::pin::Pin<&mut Self>,
220 cx: &mut std::task::Context<'_>,
221 ) -> std::task::Poll<Option<Self::Item>> {
222 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
223 &mut self.event_receiver,
224 cx
225 )?) {
226 Some(buf) => std::task::Poll::Ready(Some(ViewTreeWatcherEvent::decode(buf))),
227 None => std::task::Poll::Ready(None),
228 }
229 }
230}
231
232#[derive(Debug)]
233pub enum ViewTreeWatcherEvent {}
234
235impl ViewTreeWatcherEvent {
236 fn decode(
238 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
239 ) -> Result<ViewTreeWatcherEvent, fidl::Error> {
240 let (bytes, _handles) = buf.split_mut();
241 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
242 debug_assert_eq!(tx_header.tx_id, 0);
243 match tx_header.ordinal {
244 _ => Err(fidl::Error::UnknownOrdinal {
245 ordinal: tx_header.ordinal,
246 protocol_name:
247 <ViewTreeWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
248 }),
249 }
250 }
251}
252
253pub struct ViewTreeWatcherRequestStream {
255 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
256 is_terminated: bool,
257}
258
259impl std::marker::Unpin for ViewTreeWatcherRequestStream {}
260
261impl futures::stream::FusedStream for ViewTreeWatcherRequestStream {
262 fn is_terminated(&self) -> bool {
263 self.is_terminated
264 }
265}
266
267impl fidl::endpoints::RequestStream for ViewTreeWatcherRequestStream {
268 type Protocol = ViewTreeWatcherMarker;
269 type ControlHandle = ViewTreeWatcherControlHandle;
270
271 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
272 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
273 }
274
275 fn control_handle(&self) -> Self::ControlHandle {
276 ViewTreeWatcherControlHandle { inner: self.inner.clone() }
277 }
278
279 fn into_inner(
280 self,
281 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
282 {
283 (self.inner, self.is_terminated)
284 }
285
286 fn from_inner(
287 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
288 is_terminated: bool,
289 ) -> Self {
290 Self { inner, is_terminated }
291 }
292}
293
294impl futures::Stream for ViewTreeWatcherRequestStream {
295 type Item = Result<ViewTreeWatcherRequest, fidl::Error>;
296
297 fn poll_next(
298 mut self: std::pin::Pin<&mut Self>,
299 cx: &mut std::task::Context<'_>,
300 ) -> std::task::Poll<Option<Self::Item>> {
301 let this = &mut *self;
302 if this.inner.check_shutdown(cx) {
303 this.is_terminated = true;
304 return std::task::Poll::Ready(None);
305 }
306 if this.is_terminated {
307 panic!("polled ViewTreeWatcherRequestStream after completion");
308 }
309 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
310 |bytes, handles| {
311 match this.inner.channel().read_etc(cx, bytes, handles) {
312 std::task::Poll::Ready(Ok(())) => {}
313 std::task::Poll::Pending => return std::task::Poll::Pending,
314 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
315 this.is_terminated = true;
316 return std::task::Poll::Ready(None);
317 }
318 std::task::Poll::Ready(Err(e)) => {
319 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
320 e.into(),
321 ))))
322 }
323 }
324
325 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
327
328 std::task::Poll::Ready(Some(match header.ordinal {
329 0x3c7670983418477b => {
330 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
331 let mut req = fidl::new_empty!(
332 fidl::encoding::EmptyPayload,
333 fidl::encoding::DefaultFuchsiaResourceDialect
334 );
335 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
336 let control_handle =
337 ViewTreeWatcherControlHandle { inner: this.inner.clone() };
338 Ok(ViewTreeWatcherRequest::Watch {
339 responder: ViewTreeWatcherWatchResponder {
340 control_handle: std::mem::ManuallyDrop::new(control_handle),
341 tx_id: header.tx_id,
342 },
343 })
344 }
345 _ => Err(fidl::Error::UnknownOrdinal {
346 ordinal: header.ordinal,
347 protocol_name:
348 <ViewTreeWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
349 }),
350 }))
351 },
352 )
353 }
354}
355
356#[derive(Debug)]
390pub enum ViewTreeWatcherRequest {
391 Watch { responder: ViewTreeWatcherWatchResponder },
409}
410
411impl ViewTreeWatcherRequest {
412 #[allow(irrefutable_let_patterns)]
413 pub fn into_watch(self) -> Option<(ViewTreeWatcherWatchResponder)> {
414 if let ViewTreeWatcherRequest::Watch { responder } = self {
415 Some((responder))
416 } else {
417 None
418 }
419 }
420
421 pub fn method_name(&self) -> &'static str {
423 match *self {
424 ViewTreeWatcherRequest::Watch { .. } => "watch",
425 }
426 }
427}
428
429#[derive(Debug, Clone)]
430pub struct ViewTreeWatcherControlHandle {
431 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
432}
433
434impl fidl::endpoints::ControlHandle for ViewTreeWatcherControlHandle {
435 fn shutdown(&self) {
436 self.inner.shutdown()
437 }
438 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
439 self.inner.shutdown_with_epitaph(status)
440 }
441
442 fn is_closed(&self) -> bool {
443 self.inner.channel().is_closed()
444 }
445 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
446 self.inner.channel().on_closed()
447 }
448
449 #[cfg(target_os = "fuchsia")]
450 fn signal_peer(
451 &self,
452 clear_mask: zx::Signals,
453 set_mask: zx::Signals,
454 ) -> Result<(), zx_status::Status> {
455 use fidl::Peered;
456 self.inner.channel().signal_peer(clear_mask, set_mask)
457 }
458}
459
460impl ViewTreeWatcherControlHandle {}
461
462#[must_use = "FIDL methods require a response to be sent"]
463#[derive(Debug)]
464pub struct ViewTreeWatcherWatchResponder {
465 control_handle: std::mem::ManuallyDrop<ViewTreeWatcherControlHandle>,
466 tx_id: u32,
467}
468
469impl std::ops::Drop for ViewTreeWatcherWatchResponder {
473 fn drop(&mut self) {
474 self.control_handle.shutdown();
475 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
477 }
478}
479
480impl fidl::endpoints::Responder for ViewTreeWatcherWatchResponder {
481 type ControlHandle = ViewTreeWatcherControlHandle;
482
483 fn control_handle(&self) -> &ViewTreeWatcherControlHandle {
484 &self.control_handle
485 }
486
487 fn drop_without_shutdown(mut self) {
488 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
490 std::mem::forget(self);
492 }
493}
494
495impl ViewTreeWatcherWatchResponder {
496 pub fn send(self, mut payload: &WatchResponse) -> Result<(), fidl::Error> {
500 let _result = self.send_raw(payload);
501 if _result.is_err() {
502 self.control_handle.shutdown();
503 }
504 self.drop_without_shutdown();
505 _result
506 }
507
508 pub fn send_no_shutdown_on_err(self, mut payload: &WatchResponse) -> Result<(), fidl::Error> {
510 let _result = self.send_raw(payload);
511 self.drop_without_shutdown();
512 _result
513 }
514
515 fn send_raw(&self, mut payload: &WatchResponse) -> Result<(), fidl::Error> {
516 self.control_handle.inner.send::<WatchResponse>(
517 payload,
518 self.tx_id,
519 0x3c7670983418477b,
520 fidl::encoding::DynamicFlags::empty(),
521 )
522 }
523}
524
525mod internal {
526 use super::*;
527}