fidl_examples_canvas_baseline/
fidl_examples_canvas_baseline.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_examples_canvas_baseline_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.baseline.Instance";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for InstanceMarker {}
26
27pub trait InstanceProxyInterface: Send + Sync {
28 fn r#add_line(&self, line: &[Point; 2]) -> Result<(), fidl::Error>;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct InstanceSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for InstanceSynchronousProxy {
38 type Proxy = InstanceProxy;
39 type Protocol = InstanceMarker;
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 InstanceSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <InstanceMarker 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<InstanceEvent, fidl::Error> {
71 InstanceEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#add_line(&self, mut line: &[Point; 2]) -> Result<(), fidl::Error> {
76 self.client.send::<InstanceAddLineRequest>(
77 (line,),
78 0x3f5b799d54b4aa0,
79 fidl::encoding::DynamicFlags::FLEXIBLE,
80 )
81 }
82}
83
84#[cfg(target_os = "fuchsia")]
85impl From<InstanceSynchronousProxy> for zx::Handle {
86 fn from(value: InstanceSynchronousProxy) -> Self {
87 value.into_channel().into()
88 }
89}
90
91#[cfg(target_os = "fuchsia")]
92impl From<fidl::Channel> for InstanceSynchronousProxy {
93 fn from(value: fidl::Channel) -> Self {
94 Self::new(value)
95 }
96}
97
98#[derive(Debug, Clone)]
99pub struct InstanceProxy {
100 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
101}
102
103impl fidl::endpoints::Proxy for InstanceProxy {
104 type Protocol = InstanceMarker;
105
106 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
107 Self::new(inner)
108 }
109
110 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
111 self.client.into_channel().map_err(|client| Self { client })
112 }
113
114 fn as_channel(&self) -> &::fidl::AsyncChannel {
115 self.client.as_channel()
116 }
117}
118
119impl InstanceProxy {
120 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
122 let protocol_name = <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
123 Self { client: fidl::client::Client::new(channel, protocol_name) }
124 }
125
126 pub fn take_event_stream(&self) -> InstanceEventStream {
132 InstanceEventStream { event_receiver: self.client.take_event_receiver() }
133 }
134
135 pub fn r#add_line(&self, mut line: &[Point; 2]) -> Result<(), fidl::Error> {
137 InstanceProxyInterface::r#add_line(self, line)
138 }
139}
140
141impl InstanceProxyInterface for InstanceProxy {
142 fn r#add_line(&self, mut line: &[Point; 2]) -> Result<(), fidl::Error> {
143 self.client.send::<InstanceAddLineRequest>(
144 (line,),
145 0x3f5b799d54b4aa0,
146 fidl::encoding::DynamicFlags::FLEXIBLE,
147 )
148 }
149}
150
151pub struct InstanceEventStream {
152 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
153}
154
155impl std::marker::Unpin for InstanceEventStream {}
156
157impl futures::stream::FusedStream for InstanceEventStream {
158 fn is_terminated(&self) -> bool {
159 self.event_receiver.is_terminated()
160 }
161}
162
163impl futures::Stream for InstanceEventStream {
164 type Item = Result<InstanceEvent, fidl::Error>;
165
166 fn poll_next(
167 mut self: std::pin::Pin<&mut Self>,
168 cx: &mut std::task::Context<'_>,
169 ) -> std::task::Poll<Option<Self::Item>> {
170 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
171 &mut self.event_receiver,
172 cx
173 )?) {
174 Some(buf) => std::task::Poll::Ready(Some(InstanceEvent::decode(buf))),
175 None => std::task::Poll::Ready(None),
176 }
177 }
178}
179
180#[derive(Debug)]
181pub enum InstanceEvent {
182 OnDrawn {
183 top_left: Point,
184 bottom_right: Point,
185 },
186 #[non_exhaustive]
187 _UnknownEvent {
188 ordinal: u64,
190 },
191}
192
193impl InstanceEvent {
194 #[allow(irrefutable_let_patterns)]
195 pub fn into_on_drawn(self) -> Option<(Point, Point)> {
196 if let InstanceEvent::OnDrawn { top_left, bottom_right } = self {
197 Some((top_left, bottom_right))
198 } else {
199 None
200 }
201 }
202
203 fn decode(
205 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
206 ) -> Result<InstanceEvent, fidl::Error> {
207 let (bytes, _handles) = buf.split_mut();
208 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
209 debug_assert_eq!(tx_header.tx_id, 0);
210 match tx_header.ordinal {
211 0x2eeaa5f17200458d => {
212 let mut out =
213 fidl::new_empty!(BoundingBox, fidl::encoding::DefaultFuchsiaResourceDialect);
214 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<BoundingBox>(&tx_header, _body_bytes, _handles, &mut out)?;
215 Ok((InstanceEvent::OnDrawn {
216 top_left: out.top_left,
217 bottom_right: out.bottom_right,
218 }))
219 }
220 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
221 Ok(InstanceEvent::_UnknownEvent { ordinal: tx_header.ordinal })
222 }
223 _ => Err(fidl::Error::UnknownOrdinal {
224 ordinal: tx_header.ordinal,
225 protocol_name: <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
226 }),
227 }
228 }
229}
230
231pub struct InstanceRequestStream {
233 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
234 is_terminated: bool,
235}
236
237impl std::marker::Unpin for InstanceRequestStream {}
238
239impl futures::stream::FusedStream for InstanceRequestStream {
240 fn is_terminated(&self) -> bool {
241 self.is_terminated
242 }
243}
244
245impl fidl::endpoints::RequestStream for InstanceRequestStream {
246 type Protocol = InstanceMarker;
247 type ControlHandle = InstanceControlHandle;
248
249 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
250 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
251 }
252
253 fn control_handle(&self) -> Self::ControlHandle {
254 InstanceControlHandle { inner: self.inner.clone() }
255 }
256
257 fn into_inner(
258 self,
259 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
260 {
261 (self.inner, self.is_terminated)
262 }
263
264 fn from_inner(
265 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
266 is_terminated: bool,
267 ) -> Self {
268 Self { inner, is_terminated }
269 }
270}
271
272impl futures::Stream for InstanceRequestStream {
273 type Item = Result<InstanceRequest, fidl::Error>;
274
275 fn poll_next(
276 mut self: std::pin::Pin<&mut Self>,
277 cx: &mut std::task::Context<'_>,
278 ) -> std::task::Poll<Option<Self::Item>> {
279 let this = &mut *self;
280 if this.inner.check_shutdown(cx) {
281 this.is_terminated = true;
282 return std::task::Poll::Ready(None);
283 }
284 if this.is_terminated {
285 panic!("polled InstanceRequestStream after completion");
286 }
287 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
288 |bytes, handles| {
289 match this.inner.channel().read_etc(cx, bytes, handles) {
290 std::task::Poll::Ready(Ok(())) => {}
291 std::task::Poll::Pending => return std::task::Poll::Pending,
292 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
293 this.is_terminated = true;
294 return std::task::Poll::Ready(None);
295 }
296 std::task::Poll::Ready(Err(e)) => {
297 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
298 e.into(),
299 ))))
300 }
301 }
302
303 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
305
306 std::task::Poll::Ready(Some(match header.ordinal {
307 0x3f5b799d54b4aa0 => {
308 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
309 let mut req = fidl::new_empty!(
310 InstanceAddLineRequest,
311 fidl::encoding::DefaultFuchsiaResourceDialect
312 );
313 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InstanceAddLineRequest>(&header, _body_bytes, handles, &mut req)?;
314 let control_handle = InstanceControlHandle { inner: this.inner.clone() };
315 Ok(InstanceRequest::AddLine { line: req.line, control_handle })
316 }
317 _ if header.tx_id == 0
318 && header
319 .dynamic_flags()
320 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
321 {
322 Ok(InstanceRequest::_UnknownMethod {
323 ordinal: header.ordinal,
324 control_handle: InstanceControlHandle { inner: this.inner.clone() },
325 method_type: fidl::MethodType::OneWay,
326 })
327 }
328 _ if header
329 .dynamic_flags()
330 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
331 {
332 this.inner.send_framework_err(
333 fidl::encoding::FrameworkErr::UnknownMethod,
334 header.tx_id,
335 header.ordinal,
336 header.dynamic_flags(),
337 (bytes, handles),
338 )?;
339 Ok(InstanceRequest::_UnknownMethod {
340 ordinal: header.ordinal,
341 control_handle: InstanceControlHandle { inner: this.inner.clone() },
342 method_type: fidl::MethodType::TwoWay,
343 })
344 }
345 _ => Err(fidl::Error::UnknownOrdinal {
346 ordinal: header.ordinal,
347 protocol_name:
348 <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
349 }),
350 }))
351 },
352 )
353 }
354}
355
356#[derive(Debug)]
359pub enum InstanceRequest {
360 AddLine { line: [Point; 2], control_handle: InstanceControlHandle },
362 #[non_exhaustive]
364 _UnknownMethod {
365 ordinal: u64,
367 control_handle: InstanceControlHandle,
368 method_type: fidl::MethodType,
369 },
370}
371
372impl InstanceRequest {
373 #[allow(irrefutable_let_patterns)]
374 pub fn into_add_line(self) -> Option<([Point; 2], InstanceControlHandle)> {
375 if let InstanceRequest::AddLine { line, control_handle } = self {
376 Some((line, control_handle))
377 } else {
378 None
379 }
380 }
381
382 pub fn method_name(&self) -> &'static str {
384 match *self {
385 InstanceRequest::AddLine { .. } => "add_line",
386 InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
387 "unknown one-way method"
388 }
389 InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
390 "unknown two-way method"
391 }
392 }
393 }
394}
395
396#[derive(Debug, Clone)]
397pub struct InstanceControlHandle {
398 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
399}
400
401impl fidl::endpoints::ControlHandle for InstanceControlHandle {
402 fn shutdown(&self) {
403 self.inner.shutdown()
404 }
405 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
406 self.inner.shutdown_with_epitaph(status)
407 }
408
409 fn is_closed(&self) -> bool {
410 self.inner.channel().is_closed()
411 }
412 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
413 self.inner.channel().on_closed()
414 }
415
416 #[cfg(target_os = "fuchsia")]
417 fn signal_peer(
418 &self,
419 clear_mask: zx::Signals,
420 set_mask: zx::Signals,
421 ) -> Result<(), zx_status::Status> {
422 use fidl::Peered;
423 self.inner.channel().signal_peer(clear_mask, set_mask)
424 }
425}
426
427impl InstanceControlHandle {
428 pub fn send_on_drawn(
429 &self,
430 mut top_left: &Point,
431 mut bottom_right: &Point,
432 ) -> Result<(), fidl::Error> {
433 self.inner.send::<BoundingBox>(
434 (top_left, bottom_right),
435 0,
436 0x2eeaa5f17200458d,
437 fidl::encoding::DynamicFlags::FLEXIBLE,
438 )
439 }
440}
441
442mod internal {
443 use super::*;
444}