fidl_fuchsia_examples_intl_wisdom/
fidl_fuchsia_examples_intl_wisdom.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_fuchsia_examples_intl_wisdom_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct IntlWisdomServer_Marker;
16
17impl fidl::endpoints::ProtocolMarker for IntlWisdomServer_Marker {
18 type Proxy = IntlWisdomServer_Proxy;
19 type RequestStream = IntlWisdomServer_RequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = IntlWisdomServer_SynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.examples.intl.wisdom.IntlWisdomServer";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for IntlWisdomServer_Marker {}
26
27pub trait IntlWisdomServer_ProxyInterface: Send + Sync {
28 type AskForWisdomResponseFut: std::future::Future<Output = Result<Option<String>, fidl::Error>>
29 + Send;
30 fn r#ask_for_wisdom(
31 &self,
32 intl_profile: &fidl_fuchsia_intl::Profile,
33 timestamp_ms: i64,
34 ) -> Self::AskForWisdomResponseFut;
35}
36#[derive(Debug)]
37#[cfg(target_os = "fuchsia")]
38pub struct IntlWisdomServer_SynchronousProxy {
39 client: fidl::client::sync::Client,
40}
41
42#[cfg(target_os = "fuchsia")]
43impl fidl::endpoints::SynchronousProxy for IntlWisdomServer_SynchronousProxy {
44 type Proxy = IntlWisdomServer_Proxy;
45 type Protocol = IntlWisdomServer_Marker;
46
47 fn from_channel(inner: fidl::Channel) -> Self {
48 Self::new(inner)
49 }
50
51 fn into_channel(self) -> fidl::Channel {
52 self.client.into_channel()
53 }
54
55 fn as_channel(&self) -> &fidl::Channel {
56 self.client.as_channel()
57 }
58}
59
60#[cfg(target_os = "fuchsia")]
61impl IntlWisdomServer_SynchronousProxy {
62 pub fn new(channel: fidl::Channel) -> Self {
63 let protocol_name =
64 <IntlWisdomServer_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
65 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
66 }
67
68 pub fn into_channel(self) -> fidl::Channel {
69 self.client.into_channel()
70 }
71
72 pub fn wait_for_event(
75 &self,
76 deadline: zx::MonotonicInstant,
77 ) -> Result<IntlWisdomServer_Event, fidl::Error> {
78 IntlWisdomServer_Event::decode(self.client.wait_for_event(deadline)?)
79 }
80
81 pub fn r#ask_for_wisdom(
88 &self,
89 mut intl_profile: &fidl_fuchsia_intl::Profile,
90 mut timestamp_ms: i64,
91 ___deadline: zx::MonotonicInstant,
92 ) -> Result<Option<String>, fidl::Error> {
93 let _response = self.client.send_query::<
94 IntlWisdomServerAskForWisdomRequest,
95 IntlWisdomServerAskForWisdomResponse,
96 >(
97 (intl_profile, timestamp_ms,),
98 0x5cf6236faa84a3cf,
99 fidl::encoding::DynamicFlags::empty(),
100 ___deadline,
101 )?;
102 Ok(_response.response)
103 }
104}
105
106#[cfg(target_os = "fuchsia")]
107impl From<IntlWisdomServer_SynchronousProxy> for zx::Handle {
108 fn from(value: IntlWisdomServer_SynchronousProxy) -> Self {
109 value.into_channel().into()
110 }
111}
112
113#[cfg(target_os = "fuchsia")]
114impl From<fidl::Channel> for IntlWisdomServer_SynchronousProxy {
115 fn from(value: fidl::Channel) -> Self {
116 Self::new(value)
117 }
118}
119
120#[derive(Debug, Clone)]
121pub struct IntlWisdomServer_Proxy {
122 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
123}
124
125impl fidl::endpoints::Proxy for IntlWisdomServer_Proxy {
126 type Protocol = IntlWisdomServer_Marker;
127
128 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
129 Self::new(inner)
130 }
131
132 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
133 self.client.into_channel().map_err(|client| Self { client })
134 }
135
136 fn as_channel(&self) -> &::fidl::AsyncChannel {
137 self.client.as_channel()
138 }
139}
140
141impl IntlWisdomServer_Proxy {
142 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
144 let protocol_name =
145 <IntlWisdomServer_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
146 Self { client: fidl::client::Client::new(channel, protocol_name) }
147 }
148
149 pub fn take_event_stream(&self) -> IntlWisdomServer_EventStream {
155 IntlWisdomServer_EventStream { event_receiver: self.client.take_event_receiver() }
156 }
157
158 pub fn r#ask_for_wisdom(
165 &self,
166 mut intl_profile: &fidl_fuchsia_intl::Profile,
167 mut timestamp_ms: i64,
168 ) -> fidl::client::QueryResponseFut<Option<String>, fidl::encoding::DefaultFuchsiaResourceDialect>
169 {
170 IntlWisdomServer_ProxyInterface::r#ask_for_wisdom(self, intl_profile, timestamp_ms)
171 }
172}
173
174impl IntlWisdomServer_ProxyInterface for IntlWisdomServer_Proxy {
175 type AskForWisdomResponseFut = fidl::client::QueryResponseFut<
176 Option<String>,
177 fidl::encoding::DefaultFuchsiaResourceDialect,
178 >;
179 fn r#ask_for_wisdom(
180 &self,
181 mut intl_profile: &fidl_fuchsia_intl::Profile,
182 mut timestamp_ms: i64,
183 ) -> Self::AskForWisdomResponseFut {
184 fn _decode(
185 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
186 ) -> Result<Option<String>, fidl::Error> {
187 let _response = fidl::client::decode_transaction_body::<
188 IntlWisdomServerAskForWisdomResponse,
189 fidl::encoding::DefaultFuchsiaResourceDialect,
190 0x5cf6236faa84a3cf,
191 >(_buf?)?;
192 Ok(_response.response)
193 }
194 self.client.send_query_and_decode::<IntlWisdomServerAskForWisdomRequest, Option<String>>(
195 (intl_profile, timestamp_ms),
196 0x5cf6236faa84a3cf,
197 fidl::encoding::DynamicFlags::empty(),
198 _decode,
199 )
200 }
201}
202
203pub struct IntlWisdomServer_EventStream {
204 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
205}
206
207impl std::marker::Unpin for IntlWisdomServer_EventStream {}
208
209impl futures::stream::FusedStream for IntlWisdomServer_EventStream {
210 fn is_terminated(&self) -> bool {
211 self.event_receiver.is_terminated()
212 }
213}
214
215impl futures::Stream for IntlWisdomServer_EventStream {
216 type Item = Result<IntlWisdomServer_Event, fidl::Error>;
217
218 fn poll_next(
219 mut self: std::pin::Pin<&mut Self>,
220 cx: &mut std::task::Context<'_>,
221 ) -> std::task::Poll<Option<Self::Item>> {
222 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
223 &mut self.event_receiver,
224 cx
225 )?) {
226 Some(buf) => std::task::Poll::Ready(Some(IntlWisdomServer_Event::decode(buf))),
227 None => std::task::Poll::Ready(None),
228 }
229 }
230}
231
232#[derive(Debug)]
233pub enum IntlWisdomServer_Event {}
234
235impl IntlWisdomServer_Event {
236 fn decode(
238 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
239 ) -> Result<IntlWisdomServer_Event, fidl::Error> {
240 let (bytes, _handles) = buf.split_mut();
241 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
242 debug_assert_eq!(tx_header.tx_id, 0);
243 match tx_header.ordinal {
244 _ => Err(fidl::Error::UnknownOrdinal {
245 ordinal: tx_header.ordinal,
246 protocol_name:
247 <IntlWisdomServer_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
248 }),
249 }
250 }
251}
252
253pub struct IntlWisdomServer_RequestStream {
255 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
256 is_terminated: bool,
257}
258
259impl std::marker::Unpin for IntlWisdomServer_RequestStream {}
260
261impl futures::stream::FusedStream for IntlWisdomServer_RequestStream {
262 fn is_terminated(&self) -> bool {
263 self.is_terminated
264 }
265}
266
267impl fidl::endpoints::RequestStream for IntlWisdomServer_RequestStream {
268 type Protocol = IntlWisdomServer_Marker;
269 type ControlHandle = IntlWisdomServer_ControlHandle;
270
271 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
272 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
273 }
274
275 fn control_handle(&self) -> Self::ControlHandle {
276 IntlWisdomServer_ControlHandle { inner: self.inner.clone() }
277 }
278
279 fn into_inner(
280 self,
281 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
282 {
283 (self.inner, self.is_terminated)
284 }
285
286 fn from_inner(
287 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
288 is_terminated: bool,
289 ) -> Self {
290 Self { inner, is_terminated }
291 }
292}
293
294impl futures::Stream for IntlWisdomServer_RequestStream {
295 type Item = Result<IntlWisdomServer_Request, fidl::Error>;
296
297 fn poll_next(
298 mut self: std::pin::Pin<&mut Self>,
299 cx: &mut std::task::Context<'_>,
300 ) -> std::task::Poll<Option<Self::Item>> {
301 let this = &mut *self;
302 if this.inner.check_shutdown(cx) {
303 this.is_terminated = true;
304 return std::task::Poll::Ready(None);
305 }
306 if this.is_terminated {
307 panic!("polled IntlWisdomServer_RequestStream after completion");
308 }
309 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
310 |bytes, handles| {
311 match this.inner.channel().read_etc(cx, bytes, handles) {
312 std::task::Poll::Ready(Ok(())) => {}
313 std::task::Poll::Pending => return std::task::Poll::Pending,
314 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
315 this.is_terminated = true;
316 return std::task::Poll::Ready(None);
317 }
318 std::task::Poll::Ready(Err(e)) => {
319 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
320 e.into(),
321 ))))
322 }
323 }
324
325 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
327
328 std::task::Poll::Ready(Some(match header.ordinal {
329 0x5cf6236faa84a3cf => {
330 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
331 let mut req = fidl::new_empty!(
332 IntlWisdomServerAskForWisdomRequest,
333 fidl::encoding::DefaultFuchsiaResourceDialect
334 );
335 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<IntlWisdomServerAskForWisdomRequest>(&header, _body_bytes, handles, &mut req)?;
336 let control_handle =
337 IntlWisdomServer_ControlHandle { inner: this.inner.clone() };
338 Ok(IntlWisdomServer_Request::AskForWisdom {
339 intl_profile: req.intl_profile,
340 timestamp_ms: req.timestamp_ms,
341
342 responder: IntlWisdomServer_AskForWisdomResponder {
343 control_handle: std::mem::ManuallyDrop::new(control_handle),
344 tx_id: header.tx_id,
345 },
346 })
347 }
348 _ => Err(fidl::Error::UnknownOrdinal {
349 ordinal: header.ordinal,
350 protocol_name:
351 <IntlWisdomServer_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
352 }),
353 }))
354 },
355 )
356 }
357}
358
359#[derive(Debug)]
362pub enum IntlWisdomServer_Request {
363 AskForWisdom {
370 intl_profile: fidl_fuchsia_intl::Profile,
371 timestamp_ms: i64,
372 responder: IntlWisdomServer_AskForWisdomResponder,
373 },
374}
375
376impl IntlWisdomServer_Request {
377 #[allow(irrefutable_let_patterns)]
378 pub fn into_ask_for_wisdom(
379 self,
380 ) -> Option<(fidl_fuchsia_intl::Profile, i64, IntlWisdomServer_AskForWisdomResponder)> {
381 if let IntlWisdomServer_Request::AskForWisdom { intl_profile, timestamp_ms, responder } =
382 self
383 {
384 Some((intl_profile, timestamp_ms, responder))
385 } else {
386 None
387 }
388 }
389
390 pub fn method_name(&self) -> &'static str {
392 match *self {
393 IntlWisdomServer_Request::AskForWisdom { .. } => "ask_for_wisdom",
394 }
395 }
396}
397
398#[derive(Debug, Clone)]
399pub struct IntlWisdomServer_ControlHandle {
400 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
401}
402
403impl fidl::endpoints::ControlHandle for IntlWisdomServer_ControlHandle {
404 fn shutdown(&self) {
405 self.inner.shutdown()
406 }
407 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
408 self.inner.shutdown_with_epitaph(status)
409 }
410
411 fn is_closed(&self) -> bool {
412 self.inner.channel().is_closed()
413 }
414 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
415 self.inner.channel().on_closed()
416 }
417
418 #[cfg(target_os = "fuchsia")]
419 fn signal_peer(
420 &self,
421 clear_mask: zx::Signals,
422 set_mask: zx::Signals,
423 ) -> Result<(), zx_status::Status> {
424 use fidl::Peered;
425 self.inner.channel().signal_peer(clear_mask, set_mask)
426 }
427}
428
429impl IntlWisdomServer_ControlHandle {}
430
431#[must_use = "FIDL methods require a response to be sent"]
432#[derive(Debug)]
433pub struct IntlWisdomServer_AskForWisdomResponder {
434 control_handle: std::mem::ManuallyDrop<IntlWisdomServer_ControlHandle>,
435 tx_id: u32,
436}
437
438impl std::ops::Drop for IntlWisdomServer_AskForWisdomResponder {
442 fn drop(&mut self) {
443 self.control_handle.shutdown();
444 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
446 }
447}
448
449impl fidl::endpoints::Responder for IntlWisdomServer_AskForWisdomResponder {
450 type ControlHandle = IntlWisdomServer_ControlHandle;
451
452 fn control_handle(&self) -> &IntlWisdomServer_ControlHandle {
453 &self.control_handle
454 }
455
456 fn drop_without_shutdown(mut self) {
457 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
459 std::mem::forget(self);
461 }
462}
463
464impl IntlWisdomServer_AskForWisdomResponder {
465 pub fn send(self, mut response: Option<&str>) -> Result<(), fidl::Error> {
469 let _result = self.send_raw(response);
470 if _result.is_err() {
471 self.control_handle.shutdown();
472 }
473 self.drop_without_shutdown();
474 _result
475 }
476
477 pub fn send_no_shutdown_on_err(self, mut response: Option<&str>) -> Result<(), fidl::Error> {
479 let _result = self.send_raw(response);
480 self.drop_without_shutdown();
481 _result
482 }
483
484 fn send_raw(&self, mut response: Option<&str>) -> Result<(), fidl::Error> {
485 self.control_handle.inner.send::<IntlWisdomServerAskForWisdomResponse>(
486 (response,),
487 self.tx_id,
488 0x5cf6236faa84a3cf,
489 fidl::encoding::DynamicFlags::empty(),
490 )
491 }
492}
493
494mod internal {
495 use super::*;
496}