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_examples_canvas_addlinemetered_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct InstanceMarker;
16
17impl fidl::endpoints::ProtocolMarker for InstanceMarker {
18 type Proxy = InstanceProxy;
19 type RequestStream = InstanceRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = InstanceSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "examples.canvas.addlinemetered.Instance";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for InstanceMarker {}
26
27pub trait InstanceProxyInterface: Send + Sync {
28 type AddLineResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
29 fn r#add_line(&self, line: &[Point; 2]) -> Self::AddLineResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct InstanceSynchronousProxy {
34 client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for InstanceSynchronousProxy {
39 type Proxy = InstanceProxy;
40 type Protocol = InstanceMarker;
41
42 fn from_channel(inner: fidl::Channel) -> Self {
43 Self::new(inner)
44 }
45
46 fn into_channel(self) -> fidl::Channel {
47 self.client.into_channel()
48 }
49
50 fn as_channel(&self) -> &fidl::Channel {
51 self.client.as_channel()
52 }
53}
54
55#[cfg(target_os = "fuchsia")]
56impl InstanceSynchronousProxy {
57 pub fn new(channel: fidl::Channel) -> Self {
58 let protocol_name = <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
59 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
60 }
61
62 pub fn into_channel(self) -> fidl::Channel {
63 self.client.into_channel()
64 }
65
66 pub fn wait_for_event(
69 &self,
70 deadline: zx::MonotonicInstant,
71 ) -> Result<InstanceEvent, fidl::Error> {
72 InstanceEvent::decode(self.client.wait_for_event(deadline)?)
73 }
74
75 pub fn r#add_line(
84 &self,
85 mut line: &[Point; 2],
86 ___deadline: zx::MonotonicInstant,
87 ) -> Result<(), fidl::Error> {
88 let _response = self.client.send_query::<
89 InstanceAddLineRequest,
90 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
91 >(
92 (line,),
93 0x4eff6e5348bfc151,
94 fidl::encoding::DynamicFlags::FLEXIBLE,
95 ___deadline,
96 )?
97 .into_result::<InstanceMarker>("add_line")?;
98 Ok(_response)
99 }
100}
101
102#[cfg(target_os = "fuchsia")]
103impl From<InstanceSynchronousProxy> for zx::Handle {
104 fn from(value: InstanceSynchronousProxy) -> Self {
105 value.into_channel().into()
106 }
107}
108
109#[cfg(target_os = "fuchsia")]
110impl From<fidl::Channel> for InstanceSynchronousProxy {
111 fn from(value: fidl::Channel) -> Self {
112 Self::new(value)
113 }
114}
115
116#[derive(Debug, Clone)]
117pub struct InstanceProxy {
118 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
119}
120
121impl fidl::endpoints::Proxy for InstanceProxy {
122 type Protocol = InstanceMarker;
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 InstanceProxy {
138 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
140 let protocol_name = <InstanceMarker 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) -> InstanceEventStream {
150 InstanceEventStream { event_receiver: self.client.take_event_receiver() }
151 }
152
153 pub fn r#add_line(
162 &self,
163 mut line: &[Point; 2],
164 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
165 InstanceProxyInterface::r#add_line(self, line)
166 }
167}
168
169impl InstanceProxyInterface for InstanceProxy {
170 type AddLineResponseFut =
171 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
172 fn r#add_line(&self, mut line: &[Point; 2]) -> Self::AddLineResponseFut {
173 fn _decode(
174 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
175 ) -> Result<(), fidl::Error> {
176 let _response = fidl::client::decode_transaction_body::<
177 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
178 fidl::encoding::DefaultFuchsiaResourceDialect,
179 0x4eff6e5348bfc151,
180 >(_buf?)?
181 .into_result::<InstanceMarker>("add_line")?;
182 Ok(_response)
183 }
184 self.client.send_query_and_decode::<InstanceAddLineRequest, ()>(
185 (line,),
186 0x4eff6e5348bfc151,
187 fidl::encoding::DynamicFlags::FLEXIBLE,
188 _decode,
189 )
190 }
191}
192
193pub struct InstanceEventStream {
194 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
195}
196
197impl std::marker::Unpin for InstanceEventStream {}
198
199impl futures::stream::FusedStream for InstanceEventStream {
200 fn is_terminated(&self) -> bool {
201 self.event_receiver.is_terminated()
202 }
203}
204
205impl futures::Stream for InstanceEventStream {
206 type Item = Result<InstanceEvent, fidl::Error>;
207
208 fn poll_next(
209 mut self: std::pin::Pin<&mut Self>,
210 cx: &mut std::task::Context<'_>,
211 ) -> std::task::Poll<Option<Self::Item>> {
212 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
213 &mut self.event_receiver,
214 cx
215 )?) {
216 Some(buf) => std::task::Poll::Ready(Some(InstanceEvent::decode(buf))),
217 None => std::task::Poll::Ready(None),
218 }
219 }
220}
221
222#[derive(Debug)]
223pub enum InstanceEvent {
224 OnDrawn {
225 top_left: Point,
226 bottom_right: Point,
227 },
228 #[non_exhaustive]
229 _UnknownEvent {
230 ordinal: u64,
232 },
233}
234
235impl InstanceEvent {
236 #[allow(irrefutable_let_patterns)]
237 pub fn into_on_drawn(self) -> Option<(Point, Point)> {
238 if let InstanceEvent::OnDrawn { top_left, bottom_right } = self {
239 Some((top_left, bottom_right))
240 } else {
241 None
242 }
243 }
244
245 fn decode(
247 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
248 ) -> Result<InstanceEvent, fidl::Error> {
249 let (bytes, _handles) = buf.split_mut();
250 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
251 debug_assert_eq!(tx_header.tx_id, 0);
252 match tx_header.ordinal {
253 0x2f9e344d1ce361b7 => {
254 let mut out =
255 fidl::new_empty!(BoundingBox, fidl::encoding::DefaultFuchsiaResourceDialect);
256 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<BoundingBox>(&tx_header, _body_bytes, _handles, &mut out)?;
257 Ok((InstanceEvent::OnDrawn {
258 top_left: out.top_left,
259 bottom_right: out.bottom_right,
260 }))
261 }
262 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
263 Ok(InstanceEvent::_UnknownEvent { ordinal: tx_header.ordinal })
264 }
265 _ => Err(fidl::Error::UnknownOrdinal {
266 ordinal: tx_header.ordinal,
267 protocol_name: <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
268 }),
269 }
270 }
271}
272
273pub struct InstanceRequestStream {
275 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
276 is_terminated: bool,
277}
278
279impl std::marker::Unpin for InstanceRequestStream {}
280
281impl futures::stream::FusedStream for InstanceRequestStream {
282 fn is_terminated(&self) -> bool {
283 self.is_terminated
284 }
285}
286
287impl fidl::endpoints::RequestStream for InstanceRequestStream {
288 type Protocol = InstanceMarker;
289 type ControlHandle = InstanceControlHandle;
290
291 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
292 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
293 }
294
295 fn control_handle(&self) -> Self::ControlHandle {
296 InstanceControlHandle { inner: self.inner.clone() }
297 }
298
299 fn into_inner(
300 self,
301 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
302 {
303 (self.inner, self.is_terminated)
304 }
305
306 fn from_inner(
307 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
308 is_terminated: bool,
309 ) -> Self {
310 Self { inner, is_terminated }
311 }
312}
313
314impl futures::Stream for InstanceRequestStream {
315 type Item = Result<InstanceRequest, fidl::Error>;
316
317 fn poll_next(
318 mut self: std::pin::Pin<&mut Self>,
319 cx: &mut std::task::Context<'_>,
320 ) -> std::task::Poll<Option<Self::Item>> {
321 let this = &mut *self;
322 if this.inner.check_shutdown(cx) {
323 this.is_terminated = true;
324 return std::task::Poll::Ready(None);
325 }
326 if this.is_terminated {
327 panic!("polled InstanceRequestStream after completion");
328 }
329 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
330 |bytes, handles| {
331 match this.inner.channel().read_etc(cx, bytes, handles) {
332 std::task::Poll::Ready(Ok(())) => {}
333 std::task::Poll::Pending => return std::task::Poll::Pending,
334 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
335 this.is_terminated = true;
336 return std::task::Poll::Ready(None);
337 }
338 std::task::Poll::Ready(Err(e)) => {
339 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
340 e.into(),
341 ))))
342 }
343 }
344
345 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
347
348 std::task::Poll::Ready(Some(match header.ordinal {
349 0x4eff6e5348bfc151 => {
350 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
351 let mut req = fidl::new_empty!(
352 InstanceAddLineRequest,
353 fidl::encoding::DefaultFuchsiaResourceDialect
354 );
355 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InstanceAddLineRequest>(&header, _body_bytes, handles, &mut req)?;
356 let control_handle = InstanceControlHandle { inner: this.inner.clone() };
357 Ok(InstanceRequest::AddLine {
358 line: req.line,
359
360 responder: InstanceAddLineResponder {
361 control_handle: std::mem::ManuallyDrop::new(control_handle),
362 tx_id: header.tx_id,
363 },
364 })
365 }
366 _ if header.tx_id == 0
367 && header
368 .dynamic_flags()
369 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
370 {
371 Ok(InstanceRequest::_UnknownMethod {
372 ordinal: header.ordinal,
373 control_handle: InstanceControlHandle { inner: this.inner.clone() },
374 method_type: fidl::MethodType::OneWay,
375 })
376 }
377 _ if header
378 .dynamic_flags()
379 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
380 {
381 this.inner.send_framework_err(
382 fidl::encoding::FrameworkErr::UnknownMethod,
383 header.tx_id,
384 header.ordinal,
385 header.dynamic_flags(),
386 (bytes, handles),
387 )?;
388 Ok(InstanceRequest::_UnknownMethod {
389 ordinal: header.ordinal,
390 control_handle: InstanceControlHandle { inner: this.inner.clone() },
391 method_type: fidl::MethodType::TwoWay,
392 })
393 }
394 _ => Err(fidl::Error::UnknownOrdinal {
395 ordinal: header.ordinal,
396 protocol_name:
397 <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
398 }),
399 }))
400 },
401 )
402 }
403}
404
405#[derive(Debug)]
408pub enum InstanceRequest {
409 AddLine { line: [Point; 2], responder: InstanceAddLineResponder },
418 #[non_exhaustive]
420 _UnknownMethod {
421 ordinal: u64,
423 control_handle: InstanceControlHandle,
424 method_type: fidl::MethodType,
425 },
426}
427
428impl InstanceRequest {
429 #[allow(irrefutable_let_patterns)]
430 pub fn into_add_line(self) -> Option<([Point; 2], InstanceAddLineResponder)> {
431 if let InstanceRequest::AddLine { line, responder } = self {
432 Some((line, responder))
433 } else {
434 None
435 }
436 }
437
438 pub fn method_name(&self) -> &'static str {
440 match *self {
441 InstanceRequest::AddLine { .. } => "add_line",
442 InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
443 "unknown one-way method"
444 }
445 InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
446 "unknown two-way method"
447 }
448 }
449 }
450}
451
452#[derive(Debug, Clone)]
453pub struct InstanceControlHandle {
454 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
455}
456
457impl fidl::endpoints::ControlHandle for InstanceControlHandle {
458 fn shutdown(&self) {
459 self.inner.shutdown()
460 }
461 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
462 self.inner.shutdown_with_epitaph(status)
463 }
464
465 fn is_closed(&self) -> bool {
466 self.inner.channel().is_closed()
467 }
468 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
469 self.inner.channel().on_closed()
470 }
471
472 #[cfg(target_os = "fuchsia")]
473 fn signal_peer(
474 &self,
475 clear_mask: zx::Signals,
476 set_mask: zx::Signals,
477 ) -> Result<(), zx_status::Status> {
478 use fidl::Peered;
479 self.inner.channel().signal_peer(clear_mask, set_mask)
480 }
481}
482
483impl InstanceControlHandle {
484 pub fn send_on_drawn(
485 &self,
486 mut top_left: &Point,
487 mut bottom_right: &Point,
488 ) -> Result<(), fidl::Error> {
489 self.inner.send::<BoundingBox>(
490 (top_left, bottom_right),
491 0,
492 0x2f9e344d1ce361b7,
493 fidl::encoding::DynamicFlags::FLEXIBLE,
494 )
495 }
496}
497
498#[must_use = "FIDL methods require a response to be sent"]
499#[derive(Debug)]
500pub struct InstanceAddLineResponder {
501 control_handle: std::mem::ManuallyDrop<InstanceControlHandle>,
502 tx_id: u32,
503}
504
505impl std::ops::Drop for InstanceAddLineResponder {
509 fn drop(&mut self) {
510 self.control_handle.shutdown();
511 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
513 }
514}
515
516impl fidl::endpoints::Responder for InstanceAddLineResponder {
517 type ControlHandle = InstanceControlHandle;
518
519 fn control_handle(&self) -> &InstanceControlHandle {
520 &self.control_handle
521 }
522
523 fn drop_without_shutdown(mut self) {
524 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
526 std::mem::forget(self);
528 }
529}
530
531impl InstanceAddLineResponder {
532 pub fn send(self) -> Result<(), fidl::Error> {
536 let _result = self.send_raw();
537 if _result.is_err() {
538 self.control_handle.shutdown();
539 }
540 self.drop_without_shutdown();
541 _result
542 }
543
544 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
546 let _result = self.send_raw();
547 self.drop_without_shutdown();
548 _result
549 }
550
551 fn send_raw(&self) -> Result<(), fidl::Error> {
552 self.control_handle.inner.send::<fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>>(
553 fidl::encoding::Flexible::new(()),
554 self.tx_id,
555 0x4eff6e5348bfc151,
556 fidl::encoding::DynamicFlags::FLEXIBLE,
557 )
558 }
559}
560
561mod internal {
562 use super::*;
563}