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