fidl_fuchsia_examples_colocated/
fidl_fuchsia_examples_colocated.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_colocated_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ColocatedMarker;
16
17impl fidl::endpoints::ProtocolMarker for ColocatedMarker {
18    type Proxy = ColocatedProxy;
19    type RequestStream = ColocatedRequestStream;
20    #[cfg(target_os = "fuchsia")]
21    type SynchronousProxy = ColocatedSynchronousProxy;
22
23    const DEBUG_NAME: &'static str = "fuchsia.examples.colocated.Colocated";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ColocatedMarker {}
26
27pub trait ColocatedProxyInterface: Send + Sync {
28    type GetVmosResponseFut: std::future::Future<Output = Result<Vec<u64>, fidl::Error>> + Send;
29    fn r#get_vmos(&self) -> Self::GetVmosResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct ColocatedSynchronousProxy {
34    client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for ColocatedSynchronousProxy {
39    type Proxy = ColocatedProxy;
40    type Protocol = ColocatedMarker;
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 ColocatedSynchronousProxy {
57    pub fn new(channel: fidl::Channel) -> Self {
58        let protocol_name = <ColocatedMarker 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    /// Waits until an event arrives and returns it. It is safe for other
67    /// threads to make concurrent requests while waiting for an event.
68    pub fn wait_for_event(
69        &self,
70        deadline: zx::MonotonicInstant,
71    ) -> Result<ColocatedEvent, fidl::Error> {
72        ColocatedEvent::decode(self.client.wait_for_event(deadline)?)
73    }
74
75    /// Returns a list of VMO Koids used by the component,
76    pub fn r#get_vmos(&self, ___deadline: zx::MonotonicInstant) -> Result<Vec<u64>, fidl::Error> {
77        let _response = self.client.send_query::<
78            fidl::encoding::EmptyPayload,
79            fidl::encoding::FlexibleType<ColocatedGetVmosResponse>,
80        >(
81            (),
82            0x6e0e1cca8af3632a,
83            fidl::encoding::DynamicFlags::FLEXIBLE,
84            ___deadline,
85        )?
86        .into_result::<ColocatedMarker>("get_vmos")?;
87        Ok(_response.vmos)
88    }
89}
90
91#[cfg(target_os = "fuchsia")]
92impl From<ColocatedSynchronousProxy> for zx::Handle {
93    fn from(value: ColocatedSynchronousProxy) -> Self {
94        value.into_channel().into()
95    }
96}
97
98#[cfg(target_os = "fuchsia")]
99impl From<fidl::Channel> for ColocatedSynchronousProxy {
100    fn from(value: fidl::Channel) -> Self {
101        Self::new(value)
102    }
103}
104
105#[derive(Debug, Clone)]
106pub struct ColocatedProxy {
107    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
108}
109
110impl fidl::endpoints::Proxy for ColocatedProxy {
111    type Protocol = ColocatedMarker;
112
113    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
114        Self::new(inner)
115    }
116
117    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
118        self.client.into_channel().map_err(|client| Self { client })
119    }
120
121    fn as_channel(&self) -> &::fidl::AsyncChannel {
122        self.client.as_channel()
123    }
124}
125
126impl ColocatedProxy {
127    /// Create a new Proxy for fuchsia.examples.colocated/Colocated.
128    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
129        let protocol_name = <ColocatedMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
130        Self { client: fidl::client::Client::new(channel, protocol_name) }
131    }
132
133    /// Get a Stream of events from the remote end of the protocol.
134    ///
135    /// # Panics
136    ///
137    /// Panics if the event stream was already taken.
138    pub fn take_event_stream(&self) -> ColocatedEventStream {
139        ColocatedEventStream { event_receiver: self.client.take_event_receiver() }
140    }
141
142    /// Returns a list of VMO Koids used by the component,
143    pub fn r#get_vmos(
144        &self,
145    ) -> fidl::client::QueryResponseFut<Vec<u64>, fidl::encoding::DefaultFuchsiaResourceDialect>
146    {
147        ColocatedProxyInterface::r#get_vmos(self)
148    }
149}
150
151impl ColocatedProxyInterface for ColocatedProxy {
152    type GetVmosResponseFut =
153        fidl::client::QueryResponseFut<Vec<u64>, fidl::encoding::DefaultFuchsiaResourceDialect>;
154    fn r#get_vmos(&self) -> Self::GetVmosResponseFut {
155        fn _decode(
156            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
157        ) -> Result<Vec<u64>, fidl::Error> {
158            let _response = fidl::client::decode_transaction_body::<
159                fidl::encoding::FlexibleType<ColocatedGetVmosResponse>,
160                fidl::encoding::DefaultFuchsiaResourceDialect,
161                0x6e0e1cca8af3632a,
162            >(_buf?)?
163            .into_result::<ColocatedMarker>("get_vmos")?;
164            Ok(_response.vmos)
165        }
166        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<u64>>(
167            (),
168            0x6e0e1cca8af3632a,
169            fidl::encoding::DynamicFlags::FLEXIBLE,
170            _decode,
171        )
172    }
173}
174
175pub struct ColocatedEventStream {
176    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
177}
178
179impl std::marker::Unpin for ColocatedEventStream {}
180
181impl futures::stream::FusedStream for ColocatedEventStream {
182    fn is_terminated(&self) -> bool {
183        self.event_receiver.is_terminated()
184    }
185}
186
187impl futures::Stream for ColocatedEventStream {
188    type Item = Result<ColocatedEvent, fidl::Error>;
189
190    fn poll_next(
191        mut self: std::pin::Pin<&mut Self>,
192        cx: &mut std::task::Context<'_>,
193    ) -> std::task::Poll<Option<Self::Item>> {
194        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
195            &mut self.event_receiver,
196            cx
197        )?) {
198            Some(buf) => std::task::Poll::Ready(Some(ColocatedEvent::decode(buf))),
199            None => std::task::Poll::Ready(None),
200        }
201    }
202}
203
204#[derive(Debug)]
205pub enum ColocatedEvent {
206    #[non_exhaustive]
207    _UnknownEvent {
208        /// Ordinal of the event that was sent.
209        ordinal: u64,
210    },
211}
212
213impl ColocatedEvent {
214    /// Decodes a message buffer as a [`ColocatedEvent`].
215    fn decode(
216        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
217    ) -> Result<ColocatedEvent, fidl::Error> {
218        let (bytes, _handles) = buf.split_mut();
219        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
220        debug_assert_eq!(tx_header.tx_id, 0);
221        match tx_header.ordinal {
222            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
223                Ok(ColocatedEvent::_UnknownEvent { ordinal: tx_header.ordinal })
224            }
225            _ => Err(fidl::Error::UnknownOrdinal {
226                ordinal: tx_header.ordinal,
227                protocol_name: <ColocatedMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
228            }),
229        }
230    }
231}
232
233/// A Stream of incoming requests for fuchsia.examples.colocated/Colocated.
234pub struct ColocatedRequestStream {
235    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
236    is_terminated: bool,
237}
238
239impl std::marker::Unpin for ColocatedRequestStream {}
240
241impl futures::stream::FusedStream for ColocatedRequestStream {
242    fn is_terminated(&self) -> bool {
243        self.is_terminated
244    }
245}
246
247impl fidl::endpoints::RequestStream for ColocatedRequestStream {
248    type Protocol = ColocatedMarker;
249    type ControlHandle = ColocatedControlHandle;
250
251    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
252        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
253    }
254
255    fn control_handle(&self) -> Self::ControlHandle {
256        ColocatedControlHandle { inner: self.inner.clone() }
257    }
258
259    fn into_inner(
260        self,
261    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
262    {
263        (self.inner, self.is_terminated)
264    }
265
266    fn from_inner(
267        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
268        is_terminated: bool,
269    ) -> Self {
270        Self { inner, is_terminated }
271    }
272}
273
274impl futures::Stream for ColocatedRequestStream {
275    type Item = Result<ColocatedRequest, fidl::Error>;
276
277    fn poll_next(
278        mut self: std::pin::Pin<&mut Self>,
279        cx: &mut std::task::Context<'_>,
280    ) -> std::task::Poll<Option<Self::Item>> {
281        let this = &mut *self;
282        if this.inner.check_shutdown(cx) {
283            this.is_terminated = true;
284            return std::task::Poll::Ready(None);
285        }
286        if this.is_terminated {
287            panic!("polled ColocatedRequestStream after completion");
288        }
289        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
290            |bytes, handles| {
291                match this.inner.channel().read_etc(cx, bytes, handles) {
292                    std::task::Poll::Ready(Ok(())) => {}
293                    std::task::Poll::Pending => return std::task::Poll::Pending,
294                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
295                        this.is_terminated = true;
296                        return std::task::Poll::Ready(None);
297                    }
298                    std::task::Poll::Ready(Err(e)) => {
299                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
300                            e.into(),
301                        ))))
302                    }
303                }
304
305                // A message has been received from the channel
306                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
307
308                std::task::Poll::Ready(Some(match header.ordinal {
309                    0x6e0e1cca8af3632a => {
310                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
311                        let mut req = fidl::new_empty!(
312                            fidl::encoding::EmptyPayload,
313                            fidl::encoding::DefaultFuchsiaResourceDialect
314                        );
315                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
316                        let control_handle = ColocatedControlHandle { inner: this.inner.clone() };
317                        Ok(ColocatedRequest::GetVmos {
318                            responder: ColocatedGetVmosResponder {
319                                control_handle: std::mem::ManuallyDrop::new(control_handle),
320                                tx_id: header.tx_id,
321                            },
322                        })
323                    }
324                    _ if header.tx_id == 0
325                        && header
326                            .dynamic_flags()
327                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
328                    {
329                        Ok(ColocatedRequest::_UnknownMethod {
330                            ordinal: header.ordinal,
331                            control_handle: ColocatedControlHandle { inner: this.inner.clone() },
332                            method_type: fidl::MethodType::OneWay,
333                        })
334                    }
335                    _ if header
336                        .dynamic_flags()
337                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
338                    {
339                        this.inner.send_framework_err(
340                            fidl::encoding::FrameworkErr::UnknownMethod,
341                            header.tx_id,
342                            header.ordinal,
343                            header.dynamic_flags(),
344                            (bytes, handles),
345                        )?;
346                        Ok(ColocatedRequest::_UnknownMethod {
347                            ordinal: header.ordinal,
348                            control_handle: ColocatedControlHandle { inner: this.inner.clone() },
349                            method_type: fidl::MethodType::TwoWay,
350                        })
351                    }
352                    _ => Err(fidl::Error::UnknownOrdinal {
353                        ordinal: header.ordinal,
354                        protocol_name:
355                            <ColocatedMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
356                    }),
357                }))
358            },
359        )
360    }
361}
362
363/// A protocol for reporting one's own VMO usage.
364///
365/// This protocol is used for integration testing.
366#[derive(Debug)]
367pub enum ColocatedRequest {
368    /// Returns a list of VMO Koids used by the component,
369    GetVmos { responder: ColocatedGetVmosResponder },
370    /// An interaction was received which does not match any known method.
371    #[non_exhaustive]
372    _UnknownMethod {
373        /// Ordinal of the method that was called.
374        ordinal: u64,
375        control_handle: ColocatedControlHandle,
376        method_type: fidl::MethodType,
377    },
378}
379
380impl ColocatedRequest {
381    #[allow(irrefutable_let_patterns)]
382    pub fn into_get_vmos(self) -> Option<(ColocatedGetVmosResponder)> {
383        if let ColocatedRequest::GetVmos { responder } = self {
384            Some((responder))
385        } else {
386            None
387        }
388    }
389
390    /// Name of the method defined in FIDL
391    pub fn method_name(&self) -> &'static str {
392        match *self {
393            ColocatedRequest::GetVmos { .. } => "get_vmos",
394            ColocatedRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
395                "unknown one-way method"
396            }
397            ColocatedRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
398                "unknown two-way method"
399            }
400        }
401    }
402}
403
404#[derive(Debug, Clone)]
405pub struct ColocatedControlHandle {
406    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
407}
408
409impl fidl::endpoints::ControlHandle for ColocatedControlHandle {
410    fn shutdown(&self) {
411        self.inner.shutdown()
412    }
413    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
414        self.inner.shutdown_with_epitaph(status)
415    }
416
417    fn is_closed(&self) -> bool {
418        self.inner.channel().is_closed()
419    }
420    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
421        self.inner.channel().on_closed()
422    }
423
424    #[cfg(target_os = "fuchsia")]
425    fn signal_peer(
426        &self,
427        clear_mask: zx::Signals,
428        set_mask: zx::Signals,
429    ) -> Result<(), zx_status::Status> {
430        use fidl::Peered;
431        self.inner.channel().signal_peer(clear_mask, set_mask)
432    }
433}
434
435impl ColocatedControlHandle {}
436
437#[must_use = "FIDL methods require a response to be sent"]
438#[derive(Debug)]
439pub struct ColocatedGetVmosResponder {
440    control_handle: std::mem::ManuallyDrop<ColocatedControlHandle>,
441    tx_id: u32,
442}
443
444/// Set the the channel to be shutdown (see [`ColocatedControlHandle::shutdown`])
445/// if the responder is dropped without sending a response, so that the client
446/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
447impl std::ops::Drop for ColocatedGetVmosResponder {
448    fn drop(&mut self) {
449        self.control_handle.shutdown();
450        // Safety: drops once, never accessed again
451        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
452    }
453}
454
455impl fidl::endpoints::Responder for ColocatedGetVmosResponder {
456    type ControlHandle = ColocatedControlHandle;
457
458    fn control_handle(&self) -> &ColocatedControlHandle {
459        &self.control_handle
460    }
461
462    fn drop_without_shutdown(mut self) {
463        // Safety: drops once, never accessed again due to mem::forget
464        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
465        // Prevent Drop from running (which would shut down the channel)
466        std::mem::forget(self);
467    }
468}
469
470impl ColocatedGetVmosResponder {
471    /// Sends a response to the FIDL transaction.
472    ///
473    /// Sets the channel to shutdown if an error occurs.
474    pub fn send(self, mut vmos: &[u64]) -> Result<(), fidl::Error> {
475        let _result = self.send_raw(vmos);
476        if _result.is_err() {
477            self.control_handle.shutdown();
478        }
479        self.drop_without_shutdown();
480        _result
481    }
482
483    /// Similar to "send" but does not shutdown the channel if an error occurs.
484    pub fn send_no_shutdown_on_err(self, mut vmos: &[u64]) -> Result<(), fidl::Error> {
485        let _result = self.send_raw(vmos);
486        self.drop_without_shutdown();
487        _result
488    }
489
490    fn send_raw(&self, mut vmos: &[u64]) -> Result<(), fidl::Error> {
491        self.control_handle.inner.send::<fidl::encoding::FlexibleType<ColocatedGetVmosResponse>>(
492            fidl::encoding::Flexible::new((vmos,)),
493            self.tx_id,
494            0x6e0e1cca8af3632a,
495            fidl::encoding::DynamicFlags::FLEXIBLE,
496        )
497    }
498}
499
500mod internal {
501    use super::*;
502}