fidl_fuchsia_examples_calculator/
fidl_fuchsia_examples_calculator.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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_examples_calculator_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct CalculatorMarker;
16
17impl fidl::endpoints::ProtocolMarker for CalculatorMarker {
18    type Proxy = CalculatorProxy;
19    type RequestStream = CalculatorRequestStream;
20    #[cfg(target_os = "fuchsia")]
21    type SynchronousProxy = CalculatorSynchronousProxy;
22
23    const DEBUG_NAME: &'static str = "fuchsia.examples.calculator.Calculator";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for CalculatorMarker {}
26
27pub trait CalculatorProxyInterface: Send + Sync {
28    type AddResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
29    fn r#add(&self, a: f64, b: f64) -> Self::AddResponseFut;
30    type SubtractResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
31    fn r#subtract(&self, a: f64, b: f64) -> Self::SubtractResponseFut;
32    type MultiplyResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
33    fn r#multiply(&self, a: f64, b: f64) -> Self::MultiplyResponseFut;
34    type DivideResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
35    fn r#divide(&self, dividend: f64, divisor: f64) -> Self::DivideResponseFut;
36    type PowResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
37    fn r#pow(&self, base: f64, exponent: f64) -> Self::PowResponseFut;
38}
39#[derive(Debug)]
40#[cfg(target_os = "fuchsia")]
41pub struct CalculatorSynchronousProxy {
42    client: fidl::client::sync::Client,
43}
44
45#[cfg(target_os = "fuchsia")]
46impl fidl::endpoints::SynchronousProxy for CalculatorSynchronousProxy {
47    type Proxy = CalculatorProxy;
48    type Protocol = CalculatorMarker;
49
50    fn from_channel(inner: fidl::Channel) -> Self {
51        Self::new(inner)
52    }
53
54    fn into_channel(self) -> fidl::Channel {
55        self.client.into_channel()
56    }
57
58    fn as_channel(&self) -> &fidl::Channel {
59        self.client.as_channel()
60    }
61}
62
63#[cfg(target_os = "fuchsia")]
64impl CalculatorSynchronousProxy {
65    pub fn new(channel: fidl::Channel) -> Self {
66        let protocol_name = <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
67        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
68    }
69
70    pub fn into_channel(self) -> fidl::Channel {
71        self.client.into_channel()
72    }
73
74    /// Waits until an event arrives and returns it. It is safe for other
75    /// threads to make concurrent requests while waiting for an event.
76    pub fn wait_for_event(
77        &self,
78        deadline: zx::MonotonicInstant,
79    ) -> Result<CalculatorEvent, fidl::Error> {
80        CalculatorEvent::decode(self.client.wait_for_event(deadline)?)
81    }
82
83    /// Adds two numbers together and returns their `sum`.
84    ///
85    /// For example, with `a` being 4.5 and `b` being 3.2, the response `sum` is
86    /// 7.7.
87    ///
88    /// + request `a` the first number to be added.
89    /// + request `b` the second number to be added.
90    /// - response `sum` the sum of a and b.
91    pub fn r#add(
92        &self,
93        mut a: f64,
94        mut b: f64,
95        ___deadline: zx::MonotonicInstant,
96    ) -> Result<f64, fidl::Error> {
97        let _response = self.client.send_query::<CalculatorAddRequest, CalculatorAddResponse>(
98            (a, b),
99            0x5f2286171d9ff91e,
100            fidl::encoding::DynamicFlags::empty(),
101            ___deadline,
102        )?;
103        Ok(_response.sum)
104    }
105
106    /// Subtracts two numbers and returns their `difference`.
107    ///
108    /// For example, with `a` being 7.7 and `b` being 3.2, the response
109    /// `difference` is 4.5
110    ///
111    /// + request `a` the number to be subracted _from_.
112    /// + request `b` the number to subtract.
113    /// - response `difference` the difference between `a` and `b`.
114    pub fn r#subtract(
115        &self,
116        mut a: f64,
117        mut b: f64,
118        ___deadline: zx::MonotonicInstant,
119    ) -> Result<f64, fidl::Error> {
120        let _response =
121            self.client.send_query::<CalculatorSubtractRequest, CalculatorSubtractResponse>(
122                (a, b),
123                0x64ce8ff043420d78,
124                fidl::encoding::DynamicFlags::empty(),
125                ___deadline,
126            )?;
127        Ok(_response.difference)
128    }
129
130    /// Multiplies two numbers and returns their `product`.
131    ///
132    /// For example, with `a` being 1.5 and `b` being 2.0, the response
133    /// `product` is 3.0
134    ///
135    /// + request `a` the first number used to calculatorulate the `product`.
136    /// + request `b` the second number used to calculatorulate the `product`.
137    /// - response `product` the result of multiplying `a` and `b`.
138    pub fn r#multiply(
139        &self,
140        mut a: f64,
141        mut b: f64,
142        ___deadline: zx::MonotonicInstant,
143    ) -> Result<f64, fidl::Error> {
144        let _response =
145            self.client.send_query::<CalculatorMultiplyRequest, CalculatorMultiplyResponse>(
146                (a, b),
147                0x4d6fedd51609fc35,
148                fidl::encoding::DynamicFlags::empty(),
149                ___deadline,
150            )?;
151        Ok(_response.product)
152    }
153
154    /// Divides one number by another and return the `quotient`.
155    ///
156    /// For example with a `dividend` of 2.0 and a `divisor` of 4.0, the
157    /// response `quotient` is 0.5.
158    ///
159    /// + request `dividend` the number to divide with.
160    /// + request `divisor` the number to divide into.
161    /// - response `quotient` the result of dividing the `dividend` into the `divisor`.
162    pub fn r#divide(
163        &self,
164        mut dividend: f64,
165        mut divisor: f64,
166        ___deadline: zx::MonotonicInstant,
167    ) -> Result<f64, fidl::Error> {
168        let _response =
169            self.client.send_query::<CalculatorDivideRequest, CalculatorDivideResponse>(
170                (dividend, divisor),
171                0x4dc343d7222988ba,
172                fidl::encoding::DynamicFlags::empty(),
173                ___deadline,
174            )?;
175        Ok(_response.quotient)
176    }
177
178    /// Takes `base` to the `exponent` and returns the `power`.
179    ///
180    /// For example with a `base` of 3.0 and an `exponent` of 4.0, the response
181    /// `power` is 81.0.
182    ///
183    /// + request `base` the number to multiply by itself.
184    /// + request `exponent` the number of times to successively multiply
185    /// `base`.
186    /// - response `power` the result of multiplying `base` by itself `exponent`
187    /// times..
188    pub fn r#pow(
189        &self,
190        mut base: f64,
191        mut exponent: f64,
192        ___deadline: zx::MonotonicInstant,
193    ) -> Result<f64, fidl::Error> {
194        let _response = self.client.send_query::<CalculatorPowRequest, CalculatorPowResponse>(
195            (base, exponent),
196            0x3467780dee7ba196,
197            fidl::encoding::DynamicFlags::empty(),
198            ___deadline,
199        )?;
200        Ok(_response.power)
201    }
202}
203
204#[cfg(target_os = "fuchsia")]
205impl From<CalculatorSynchronousProxy> for zx::Handle {
206    fn from(value: CalculatorSynchronousProxy) -> Self {
207        value.into_channel().into()
208    }
209}
210
211#[cfg(target_os = "fuchsia")]
212impl From<fidl::Channel> for CalculatorSynchronousProxy {
213    fn from(value: fidl::Channel) -> Self {
214        Self::new(value)
215    }
216}
217
218#[derive(Debug, Clone)]
219pub struct CalculatorProxy {
220    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
221}
222
223impl fidl::endpoints::Proxy for CalculatorProxy {
224    type Protocol = CalculatorMarker;
225
226    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
227        Self::new(inner)
228    }
229
230    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
231        self.client.into_channel().map_err(|client| Self { client })
232    }
233
234    fn as_channel(&self) -> &::fidl::AsyncChannel {
235        self.client.as_channel()
236    }
237}
238
239impl CalculatorProxy {
240    /// Create a new Proxy for fuchsia.examples.calculator/Calculator.
241    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
242        let protocol_name = <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
243        Self { client: fidl::client::Client::new(channel, protocol_name) }
244    }
245
246    /// Get a Stream of events from the remote end of the protocol.
247    ///
248    /// # Panics
249    ///
250    /// Panics if the event stream was already taken.
251    pub fn take_event_stream(&self) -> CalculatorEventStream {
252        CalculatorEventStream { event_receiver: self.client.take_event_receiver() }
253    }
254
255    /// Adds two numbers together and returns their `sum`.
256    ///
257    /// For example, with `a` being 4.5 and `b` being 3.2, the response `sum` is
258    /// 7.7.
259    ///
260    /// + request `a` the first number to be added.
261    /// + request `b` the second number to be added.
262    /// - response `sum` the sum of a and b.
263    pub fn r#add(
264        &self,
265        mut a: f64,
266        mut b: f64,
267    ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
268        CalculatorProxyInterface::r#add(self, a, b)
269    }
270
271    /// Subtracts two numbers and returns their `difference`.
272    ///
273    /// For example, with `a` being 7.7 and `b` being 3.2, the response
274    /// `difference` is 4.5
275    ///
276    /// + request `a` the number to be subracted _from_.
277    /// + request `b` the number to subtract.
278    /// - response `difference` the difference between `a` and `b`.
279    pub fn r#subtract(
280        &self,
281        mut a: f64,
282        mut b: f64,
283    ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
284        CalculatorProxyInterface::r#subtract(self, a, b)
285    }
286
287    /// Multiplies two numbers and returns their `product`.
288    ///
289    /// For example, with `a` being 1.5 and `b` being 2.0, the response
290    /// `product` is 3.0
291    ///
292    /// + request `a` the first number used to calculatorulate the `product`.
293    /// + request `b` the second number used to calculatorulate the `product`.
294    /// - response `product` the result of multiplying `a` and `b`.
295    pub fn r#multiply(
296        &self,
297        mut a: f64,
298        mut b: f64,
299    ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
300        CalculatorProxyInterface::r#multiply(self, a, b)
301    }
302
303    /// Divides one number by another and return the `quotient`.
304    ///
305    /// For example with a `dividend` of 2.0 and a `divisor` of 4.0, the
306    /// response `quotient` is 0.5.
307    ///
308    /// + request `dividend` the number to divide with.
309    /// + request `divisor` the number to divide into.
310    /// - response `quotient` the result of dividing the `dividend` into the `divisor`.
311    pub fn r#divide(
312        &self,
313        mut dividend: f64,
314        mut divisor: f64,
315    ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
316        CalculatorProxyInterface::r#divide(self, dividend, divisor)
317    }
318
319    /// Takes `base` to the `exponent` and returns the `power`.
320    ///
321    /// For example with a `base` of 3.0 and an `exponent` of 4.0, the response
322    /// `power` is 81.0.
323    ///
324    /// + request `base` the number to multiply by itself.
325    /// + request `exponent` the number of times to successively multiply
326    /// `base`.
327    /// - response `power` the result of multiplying `base` by itself `exponent`
328    /// times..
329    pub fn r#pow(
330        &self,
331        mut base: f64,
332        mut exponent: f64,
333    ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
334        CalculatorProxyInterface::r#pow(self, base, exponent)
335    }
336}
337
338impl CalculatorProxyInterface for CalculatorProxy {
339    type AddResponseFut =
340        fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
341    fn r#add(&self, mut a: f64, mut b: f64) -> Self::AddResponseFut {
342        fn _decode(
343            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
344        ) -> Result<f64, fidl::Error> {
345            let _response = fidl::client::decode_transaction_body::<
346                CalculatorAddResponse,
347                fidl::encoding::DefaultFuchsiaResourceDialect,
348                0x5f2286171d9ff91e,
349            >(_buf?)?;
350            Ok(_response.sum)
351        }
352        self.client.send_query_and_decode::<CalculatorAddRequest, f64>(
353            (a, b),
354            0x5f2286171d9ff91e,
355            fidl::encoding::DynamicFlags::empty(),
356            _decode,
357        )
358    }
359
360    type SubtractResponseFut =
361        fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
362    fn r#subtract(&self, mut a: f64, mut b: f64) -> Self::SubtractResponseFut {
363        fn _decode(
364            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
365        ) -> Result<f64, fidl::Error> {
366            let _response = fidl::client::decode_transaction_body::<
367                CalculatorSubtractResponse,
368                fidl::encoding::DefaultFuchsiaResourceDialect,
369                0x64ce8ff043420d78,
370            >(_buf?)?;
371            Ok(_response.difference)
372        }
373        self.client.send_query_and_decode::<CalculatorSubtractRequest, f64>(
374            (a, b),
375            0x64ce8ff043420d78,
376            fidl::encoding::DynamicFlags::empty(),
377            _decode,
378        )
379    }
380
381    type MultiplyResponseFut =
382        fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
383    fn r#multiply(&self, mut a: f64, mut b: f64) -> Self::MultiplyResponseFut {
384        fn _decode(
385            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
386        ) -> Result<f64, fidl::Error> {
387            let _response = fidl::client::decode_transaction_body::<
388                CalculatorMultiplyResponse,
389                fidl::encoding::DefaultFuchsiaResourceDialect,
390                0x4d6fedd51609fc35,
391            >(_buf?)?;
392            Ok(_response.product)
393        }
394        self.client.send_query_and_decode::<CalculatorMultiplyRequest, f64>(
395            (a, b),
396            0x4d6fedd51609fc35,
397            fidl::encoding::DynamicFlags::empty(),
398            _decode,
399        )
400    }
401
402    type DivideResponseFut =
403        fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
404    fn r#divide(&self, mut dividend: f64, mut divisor: f64) -> Self::DivideResponseFut {
405        fn _decode(
406            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
407        ) -> Result<f64, fidl::Error> {
408            let _response = fidl::client::decode_transaction_body::<
409                CalculatorDivideResponse,
410                fidl::encoding::DefaultFuchsiaResourceDialect,
411                0x4dc343d7222988ba,
412            >(_buf?)?;
413            Ok(_response.quotient)
414        }
415        self.client.send_query_and_decode::<CalculatorDivideRequest, f64>(
416            (dividend, divisor),
417            0x4dc343d7222988ba,
418            fidl::encoding::DynamicFlags::empty(),
419            _decode,
420        )
421    }
422
423    type PowResponseFut =
424        fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
425    fn r#pow(&self, mut base: f64, mut exponent: f64) -> Self::PowResponseFut {
426        fn _decode(
427            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
428        ) -> Result<f64, fidl::Error> {
429            let _response = fidl::client::decode_transaction_body::<
430                CalculatorPowResponse,
431                fidl::encoding::DefaultFuchsiaResourceDialect,
432                0x3467780dee7ba196,
433            >(_buf?)?;
434            Ok(_response.power)
435        }
436        self.client.send_query_and_decode::<CalculatorPowRequest, f64>(
437            (base, exponent),
438            0x3467780dee7ba196,
439            fidl::encoding::DynamicFlags::empty(),
440            _decode,
441        )
442    }
443}
444
445pub struct CalculatorEventStream {
446    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
447}
448
449impl std::marker::Unpin for CalculatorEventStream {}
450
451impl futures::stream::FusedStream for CalculatorEventStream {
452    fn is_terminated(&self) -> bool {
453        self.event_receiver.is_terminated()
454    }
455}
456
457impl futures::Stream for CalculatorEventStream {
458    type Item = Result<CalculatorEvent, fidl::Error>;
459
460    fn poll_next(
461        mut self: std::pin::Pin<&mut Self>,
462        cx: &mut std::task::Context<'_>,
463    ) -> std::task::Poll<Option<Self::Item>> {
464        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
465            &mut self.event_receiver,
466            cx
467        )?) {
468            Some(buf) => std::task::Poll::Ready(Some(CalculatorEvent::decode(buf))),
469            None => std::task::Poll::Ready(None),
470        }
471    }
472}
473
474#[derive(Debug)]
475pub enum CalculatorEvent {}
476
477impl CalculatorEvent {
478    /// Decodes a message buffer as a [`CalculatorEvent`].
479    fn decode(
480        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
481    ) -> Result<CalculatorEvent, fidl::Error> {
482        let (bytes, _handles) = buf.split_mut();
483        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
484        debug_assert_eq!(tx_header.tx_id, 0);
485        match tx_header.ordinal {
486            _ => Err(fidl::Error::UnknownOrdinal {
487                ordinal: tx_header.ordinal,
488                protocol_name: <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
489            }),
490        }
491    }
492}
493
494/// A Stream of incoming requests for fuchsia.examples.calculator/Calculator.
495pub struct CalculatorRequestStream {
496    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
497    is_terminated: bool,
498}
499
500impl std::marker::Unpin for CalculatorRequestStream {}
501
502impl futures::stream::FusedStream for CalculatorRequestStream {
503    fn is_terminated(&self) -> bool {
504        self.is_terminated
505    }
506}
507
508impl fidl::endpoints::RequestStream for CalculatorRequestStream {
509    type Protocol = CalculatorMarker;
510    type ControlHandle = CalculatorControlHandle;
511
512    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
513        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
514    }
515
516    fn control_handle(&self) -> Self::ControlHandle {
517        CalculatorControlHandle { inner: self.inner.clone() }
518    }
519
520    fn into_inner(
521        self,
522    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
523    {
524        (self.inner, self.is_terminated)
525    }
526
527    fn from_inner(
528        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
529        is_terminated: bool,
530    ) -> Self {
531        Self { inner, is_terminated }
532    }
533}
534
535impl futures::Stream for CalculatorRequestStream {
536    type Item = Result<CalculatorRequest, fidl::Error>;
537
538    fn poll_next(
539        mut self: std::pin::Pin<&mut Self>,
540        cx: &mut std::task::Context<'_>,
541    ) -> std::task::Poll<Option<Self::Item>> {
542        let this = &mut *self;
543        if this.inner.check_shutdown(cx) {
544            this.is_terminated = true;
545            return std::task::Poll::Ready(None);
546        }
547        if this.is_terminated {
548            panic!("polled CalculatorRequestStream after completion");
549        }
550        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
551            |bytes, handles| {
552                match this.inner.channel().read_etc(cx, bytes, handles) {
553                    std::task::Poll::Ready(Ok(())) => {}
554                    std::task::Poll::Pending => return std::task::Poll::Pending,
555                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
556                        this.is_terminated = true;
557                        return std::task::Poll::Ready(None);
558                    }
559                    std::task::Poll::Ready(Err(e)) => {
560                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
561                            e.into(),
562                        ))))
563                    }
564                }
565
566                // A message has been received from the channel
567                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
568
569                std::task::Poll::Ready(Some(match header.ordinal {
570                    0x5f2286171d9ff91e => {
571                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
572                        let mut req = fidl::new_empty!(
573                            CalculatorAddRequest,
574                            fidl::encoding::DefaultFuchsiaResourceDialect
575                        );
576                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorAddRequest>(&header, _body_bytes, handles, &mut req)?;
577                        let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
578                        Ok(CalculatorRequest::Add {
579                            a: req.a,
580                            b: req.b,
581
582                            responder: CalculatorAddResponder {
583                                control_handle: std::mem::ManuallyDrop::new(control_handle),
584                                tx_id: header.tx_id,
585                            },
586                        })
587                    }
588                    0x64ce8ff043420d78 => {
589                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
590                        let mut req = fidl::new_empty!(
591                            CalculatorSubtractRequest,
592                            fidl::encoding::DefaultFuchsiaResourceDialect
593                        );
594                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorSubtractRequest>(&header, _body_bytes, handles, &mut req)?;
595                        let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
596                        Ok(CalculatorRequest::Subtract {
597                            a: req.a,
598                            b: req.b,
599
600                            responder: CalculatorSubtractResponder {
601                                control_handle: std::mem::ManuallyDrop::new(control_handle),
602                                tx_id: header.tx_id,
603                            },
604                        })
605                    }
606                    0x4d6fedd51609fc35 => {
607                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
608                        let mut req = fidl::new_empty!(
609                            CalculatorMultiplyRequest,
610                            fidl::encoding::DefaultFuchsiaResourceDialect
611                        );
612                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorMultiplyRequest>(&header, _body_bytes, handles, &mut req)?;
613                        let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
614                        Ok(CalculatorRequest::Multiply {
615                            a: req.a,
616                            b: req.b,
617
618                            responder: CalculatorMultiplyResponder {
619                                control_handle: std::mem::ManuallyDrop::new(control_handle),
620                                tx_id: header.tx_id,
621                            },
622                        })
623                    }
624                    0x4dc343d7222988ba => {
625                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
626                        let mut req = fidl::new_empty!(
627                            CalculatorDivideRequest,
628                            fidl::encoding::DefaultFuchsiaResourceDialect
629                        );
630                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorDivideRequest>(&header, _body_bytes, handles, &mut req)?;
631                        let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
632                        Ok(CalculatorRequest::Divide {
633                            dividend: req.dividend,
634                            divisor: req.divisor,
635
636                            responder: CalculatorDivideResponder {
637                                control_handle: std::mem::ManuallyDrop::new(control_handle),
638                                tx_id: header.tx_id,
639                            },
640                        })
641                    }
642                    0x3467780dee7ba196 => {
643                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
644                        let mut req = fidl::new_empty!(
645                            CalculatorPowRequest,
646                            fidl::encoding::DefaultFuchsiaResourceDialect
647                        );
648                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorPowRequest>(&header, _body_bytes, handles, &mut req)?;
649                        let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
650                        Ok(CalculatorRequest::Pow {
651                            base: req.base,
652                            exponent: req.exponent,
653
654                            responder: CalculatorPowResponder {
655                                control_handle: std::mem::ManuallyDrop::new(control_handle),
656                                tx_id: header.tx_id,
657                            },
658                        })
659                    }
660                    _ => Err(fidl::Error::UnknownOrdinal {
661                        ordinal: header.ordinal,
662                        protocol_name:
663                            <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
664                    }),
665                }))
666            },
667        )
668    }
669}
670
671/// A protocol for a simple calculator.
672///
673/// Supports the following operations:
674/// + [`fuchsia.examples.calculator/Calculator.Add`]
675/// + [`fuchsia.examples.calculator/Calculator.Subtract`]
676/// + [`fuchsia.examples.calculator/Calculator.Multiply`]
677/// + [`fuchsia.examples.calculator/Calculator.Divide`]
678/// + [`fuchsia.examples.calculator/Calculator.Pow`]
679#[derive(Debug)]
680pub enum CalculatorRequest {
681    /// Adds two numbers together and returns their `sum`.
682    ///
683    /// For example, with `a` being 4.5 and `b` being 3.2, the response `sum` is
684    /// 7.7.
685    ///
686    /// + request `a` the first number to be added.
687    /// + request `b` the second number to be added.
688    /// - response `sum` the sum of a and b.
689    Add { a: f64, b: f64, responder: CalculatorAddResponder },
690    /// Subtracts two numbers and returns their `difference`.
691    ///
692    /// For example, with `a` being 7.7 and `b` being 3.2, the response
693    /// `difference` is 4.5
694    ///
695    /// + request `a` the number to be subracted _from_.
696    /// + request `b` the number to subtract.
697    /// - response `difference` the difference between `a` and `b`.
698    Subtract { a: f64, b: f64, responder: CalculatorSubtractResponder },
699    /// Multiplies two numbers and returns their `product`.
700    ///
701    /// For example, with `a` being 1.5 and `b` being 2.0, the response
702    /// `product` is 3.0
703    ///
704    /// + request `a` the first number used to calculatorulate the `product`.
705    /// + request `b` the second number used to calculatorulate the `product`.
706    /// - response `product` the result of multiplying `a` and `b`.
707    Multiply { a: f64, b: f64, responder: CalculatorMultiplyResponder },
708    /// Divides one number by another and return the `quotient`.
709    ///
710    /// For example with a `dividend` of 2.0 and a `divisor` of 4.0, the
711    /// response `quotient` is 0.5.
712    ///
713    /// + request `dividend` the number to divide with.
714    /// + request `divisor` the number to divide into.
715    /// - response `quotient` the result of dividing the `dividend` into the `divisor`.
716    Divide { dividend: f64, divisor: f64, responder: CalculatorDivideResponder },
717    /// Takes `base` to the `exponent` and returns the `power`.
718    ///
719    /// For example with a `base` of 3.0 and an `exponent` of 4.0, the response
720    /// `power` is 81.0.
721    ///
722    /// + request `base` the number to multiply by itself.
723    /// + request `exponent` the number of times to successively multiply
724    /// `base`.
725    /// - response `power` the result of multiplying `base` by itself `exponent`
726    /// times..
727    Pow { base: f64, exponent: f64, responder: CalculatorPowResponder },
728}
729
730impl CalculatorRequest {
731    #[allow(irrefutable_let_patterns)]
732    pub fn into_add(self) -> Option<(f64, f64, CalculatorAddResponder)> {
733        if let CalculatorRequest::Add { a, b, responder } = self {
734            Some((a, b, responder))
735        } else {
736            None
737        }
738    }
739
740    #[allow(irrefutable_let_patterns)]
741    pub fn into_subtract(self) -> Option<(f64, f64, CalculatorSubtractResponder)> {
742        if let CalculatorRequest::Subtract { a, b, responder } = self {
743            Some((a, b, responder))
744        } else {
745            None
746        }
747    }
748
749    #[allow(irrefutable_let_patterns)]
750    pub fn into_multiply(self) -> Option<(f64, f64, CalculatorMultiplyResponder)> {
751        if let CalculatorRequest::Multiply { a, b, responder } = self {
752            Some((a, b, responder))
753        } else {
754            None
755        }
756    }
757
758    #[allow(irrefutable_let_patterns)]
759    pub fn into_divide(self) -> Option<(f64, f64, CalculatorDivideResponder)> {
760        if let CalculatorRequest::Divide { dividend, divisor, responder } = self {
761            Some((dividend, divisor, responder))
762        } else {
763            None
764        }
765    }
766
767    #[allow(irrefutable_let_patterns)]
768    pub fn into_pow(self) -> Option<(f64, f64, CalculatorPowResponder)> {
769        if let CalculatorRequest::Pow { base, exponent, responder } = self {
770            Some((base, exponent, responder))
771        } else {
772            None
773        }
774    }
775
776    /// Name of the method defined in FIDL
777    pub fn method_name(&self) -> &'static str {
778        match *self {
779            CalculatorRequest::Add { .. } => "add",
780            CalculatorRequest::Subtract { .. } => "subtract",
781            CalculatorRequest::Multiply { .. } => "multiply",
782            CalculatorRequest::Divide { .. } => "divide",
783            CalculatorRequest::Pow { .. } => "pow",
784        }
785    }
786}
787
788#[derive(Debug, Clone)]
789pub struct CalculatorControlHandle {
790    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
791}
792
793impl fidl::endpoints::ControlHandle for CalculatorControlHandle {
794    fn shutdown(&self) {
795        self.inner.shutdown()
796    }
797    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
798        self.inner.shutdown_with_epitaph(status)
799    }
800
801    fn is_closed(&self) -> bool {
802        self.inner.channel().is_closed()
803    }
804    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
805        self.inner.channel().on_closed()
806    }
807
808    #[cfg(target_os = "fuchsia")]
809    fn signal_peer(
810        &self,
811        clear_mask: zx::Signals,
812        set_mask: zx::Signals,
813    ) -> Result<(), zx_status::Status> {
814        use fidl::Peered;
815        self.inner.channel().signal_peer(clear_mask, set_mask)
816    }
817}
818
819impl CalculatorControlHandle {}
820
821#[must_use = "FIDL methods require a response to be sent"]
822#[derive(Debug)]
823pub struct CalculatorAddResponder {
824    control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
825    tx_id: u32,
826}
827
828/// Set the the channel to be shutdown (see [`CalculatorControlHandle::shutdown`])
829/// if the responder is dropped without sending a response, so that the client
830/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
831impl std::ops::Drop for CalculatorAddResponder {
832    fn drop(&mut self) {
833        self.control_handle.shutdown();
834        // Safety: drops once, never accessed again
835        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
836    }
837}
838
839impl fidl::endpoints::Responder for CalculatorAddResponder {
840    type ControlHandle = CalculatorControlHandle;
841
842    fn control_handle(&self) -> &CalculatorControlHandle {
843        &self.control_handle
844    }
845
846    fn drop_without_shutdown(mut self) {
847        // Safety: drops once, never accessed again due to mem::forget
848        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
849        // Prevent Drop from running (which would shut down the channel)
850        std::mem::forget(self);
851    }
852}
853
854impl CalculatorAddResponder {
855    /// Sends a response to the FIDL transaction.
856    ///
857    /// Sets the channel to shutdown if an error occurs.
858    pub fn send(self, mut sum: f64) -> Result<(), fidl::Error> {
859        let _result = self.send_raw(sum);
860        if _result.is_err() {
861            self.control_handle.shutdown();
862        }
863        self.drop_without_shutdown();
864        _result
865    }
866
867    /// Similar to "send" but does not shutdown the channel if an error occurs.
868    pub fn send_no_shutdown_on_err(self, mut sum: f64) -> Result<(), fidl::Error> {
869        let _result = self.send_raw(sum);
870        self.drop_without_shutdown();
871        _result
872    }
873
874    fn send_raw(&self, mut sum: f64) -> Result<(), fidl::Error> {
875        self.control_handle.inner.send::<CalculatorAddResponse>(
876            (sum,),
877            self.tx_id,
878            0x5f2286171d9ff91e,
879            fidl::encoding::DynamicFlags::empty(),
880        )
881    }
882}
883
884#[must_use = "FIDL methods require a response to be sent"]
885#[derive(Debug)]
886pub struct CalculatorSubtractResponder {
887    control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
888    tx_id: u32,
889}
890
891/// Set the the channel to be shutdown (see [`CalculatorControlHandle::shutdown`])
892/// if the responder is dropped without sending a response, so that the client
893/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
894impl std::ops::Drop for CalculatorSubtractResponder {
895    fn drop(&mut self) {
896        self.control_handle.shutdown();
897        // Safety: drops once, never accessed again
898        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
899    }
900}
901
902impl fidl::endpoints::Responder for CalculatorSubtractResponder {
903    type ControlHandle = CalculatorControlHandle;
904
905    fn control_handle(&self) -> &CalculatorControlHandle {
906        &self.control_handle
907    }
908
909    fn drop_without_shutdown(mut self) {
910        // Safety: drops once, never accessed again due to mem::forget
911        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
912        // Prevent Drop from running (which would shut down the channel)
913        std::mem::forget(self);
914    }
915}
916
917impl CalculatorSubtractResponder {
918    /// Sends a response to the FIDL transaction.
919    ///
920    /// Sets the channel to shutdown if an error occurs.
921    pub fn send(self, mut difference: f64) -> Result<(), fidl::Error> {
922        let _result = self.send_raw(difference);
923        if _result.is_err() {
924            self.control_handle.shutdown();
925        }
926        self.drop_without_shutdown();
927        _result
928    }
929
930    /// Similar to "send" but does not shutdown the channel if an error occurs.
931    pub fn send_no_shutdown_on_err(self, mut difference: f64) -> Result<(), fidl::Error> {
932        let _result = self.send_raw(difference);
933        self.drop_without_shutdown();
934        _result
935    }
936
937    fn send_raw(&self, mut difference: f64) -> Result<(), fidl::Error> {
938        self.control_handle.inner.send::<CalculatorSubtractResponse>(
939            (difference,),
940            self.tx_id,
941            0x64ce8ff043420d78,
942            fidl::encoding::DynamicFlags::empty(),
943        )
944    }
945}
946
947#[must_use = "FIDL methods require a response to be sent"]
948#[derive(Debug)]
949pub struct CalculatorMultiplyResponder {
950    control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
951    tx_id: u32,
952}
953
954/// Set the the channel to be shutdown (see [`CalculatorControlHandle::shutdown`])
955/// if the responder is dropped without sending a response, so that the client
956/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
957impl std::ops::Drop for CalculatorMultiplyResponder {
958    fn drop(&mut self) {
959        self.control_handle.shutdown();
960        // Safety: drops once, never accessed again
961        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
962    }
963}
964
965impl fidl::endpoints::Responder for CalculatorMultiplyResponder {
966    type ControlHandle = CalculatorControlHandle;
967
968    fn control_handle(&self) -> &CalculatorControlHandle {
969        &self.control_handle
970    }
971
972    fn drop_without_shutdown(mut self) {
973        // Safety: drops once, never accessed again due to mem::forget
974        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
975        // Prevent Drop from running (which would shut down the channel)
976        std::mem::forget(self);
977    }
978}
979
980impl CalculatorMultiplyResponder {
981    /// Sends a response to the FIDL transaction.
982    ///
983    /// Sets the channel to shutdown if an error occurs.
984    pub fn send(self, mut product: f64) -> Result<(), fidl::Error> {
985        let _result = self.send_raw(product);
986        if _result.is_err() {
987            self.control_handle.shutdown();
988        }
989        self.drop_without_shutdown();
990        _result
991    }
992
993    /// Similar to "send" but does not shutdown the channel if an error occurs.
994    pub fn send_no_shutdown_on_err(self, mut product: f64) -> Result<(), fidl::Error> {
995        let _result = self.send_raw(product);
996        self.drop_without_shutdown();
997        _result
998    }
999
1000    fn send_raw(&self, mut product: f64) -> Result<(), fidl::Error> {
1001        self.control_handle.inner.send::<CalculatorMultiplyResponse>(
1002            (product,),
1003            self.tx_id,
1004            0x4d6fedd51609fc35,
1005            fidl::encoding::DynamicFlags::empty(),
1006        )
1007    }
1008}
1009
1010#[must_use = "FIDL methods require a response to be sent"]
1011#[derive(Debug)]
1012pub struct CalculatorDivideResponder {
1013    control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
1014    tx_id: u32,
1015}
1016
1017/// Set the the channel to be shutdown (see [`CalculatorControlHandle::shutdown`])
1018/// if the responder is dropped without sending a response, so that the client
1019/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
1020impl std::ops::Drop for CalculatorDivideResponder {
1021    fn drop(&mut self) {
1022        self.control_handle.shutdown();
1023        // Safety: drops once, never accessed again
1024        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1025    }
1026}
1027
1028impl fidl::endpoints::Responder for CalculatorDivideResponder {
1029    type ControlHandle = CalculatorControlHandle;
1030
1031    fn control_handle(&self) -> &CalculatorControlHandle {
1032        &self.control_handle
1033    }
1034
1035    fn drop_without_shutdown(mut self) {
1036        // Safety: drops once, never accessed again due to mem::forget
1037        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1038        // Prevent Drop from running (which would shut down the channel)
1039        std::mem::forget(self);
1040    }
1041}
1042
1043impl CalculatorDivideResponder {
1044    /// Sends a response to the FIDL transaction.
1045    ///
1046    /// Sets the channel to shutdown if an error occurs.
1047    pub fn send(self, mut quotient: f64) -> Result<(), fidl::Error> {
1048        let _result = self.send_raw(quotient);
1049        if _result.is_err() {
1050            self.control_handle.shutdown();
1051        }
1052        self.drop_without_shutdown();
1053        _result
1054    }
1055
1056    /// Similar to "send" but does not shutdown the channel if an error occurs.
1057    pub fn send_no_shutdown_on_err(self, mut quotient: f64) -> Result<(), fidl::Error> {
1058        let _result = self.send_raw(quotient);
1059        self.drop_without_shutdown();
1060        _result
1061    }
1062
1063    fn send_raw(&self, mut quotient: f64) -> Result<(), fidl::Error> {
1064        self.control_handle.inner.send::<CalculatorDivideResponse>(
1065            (quotient,),
1066            self.tx_id,
1067            0x4dc343d7222988ba,
1068            fidl::encoding::DynamicFlags::empty(),
1069        )
1070    }
1071}
1072
1073#[must_use = "FIDL methods require a response to be sent"]
1074#[derive(Debug)]
1075pub struct CalculatorPowResponder {
1076    control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
1077    tx_id: u32,
1078}
1079
1080/// Set the the channel to be shutdown (see [`CalculatorControlHandle::shutdown`])
1081/// if the responder is dropped without sending a response, so that the client
1082/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
1083impl std::ops::Drop for CalculatorPowResponder {
1084    fn drop(&mut self) {
1085        self.control_handle.shutdown();
1086        // Safety: drops once, never accessed again
1087        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1088    }
1089}
1090
1091impl fidl::endpoints::Responder for CalculatorPowResponder {
1092    type ControlHandle = CalculatorControlHandle;
1093
1094    fn control_handle(&self) -> &CalculatorControlHandle {
1095        &self.control_handle
1096    }
1097
1098    fn drop_without_shutdown(mut self) {
1099        // Safety: drops once, never accessed again due to mem::forget
1100        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1101        // Prevent Drop from running (which would shut down the channel)
1102        std::mem::forget(self);
1103    }
1104}
1105
1106impl CalculatorPowResponder {
1107    /// Sends a response to the FIDL transaction.
1108    ///
1109    /// Sets the channel to shutdown if an error occurs.
1110    pub fn send(self, mut power: f64) -> Result<(), fidl::Error> {
1111        let _result = self.send_raw(power);
1112        if _result.is_err() {
1113            self.control_handle.shutdown();
1114        }
1115        self.drop_without_shutdown();
1116        _result
1117    }
1118
1119    /// Similar to "send" but does not shutdown the channel if an error occurs.
1120    pub fn send_no_shutdown_on_err(self, mut power: f64) -> Result<(), fidl::Error> {
1121        let _result = self.send_raw(power);
1122        self.drop_without_shutdown();
1123        _result
1124    }
1125
1126    fn send_raw(&self, mut power: f64) -> Result<(), fidl::Error> {
1127        self.control_handle.inner.send::<CalculatorPowResponse>(
1128            (power,),
1129            self.tx_id,
1130            0x3467780dee7ba196,
1131            fidl::encoding::DynamicFlags::empty(),
1132        )
1133    }
1134}
1135
1136mod internal {
1137    use super::*;
1138}