fidl_test_structuredconfig_receiver/
fidl_test_structuredconfig_receiver.rs
1#![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_test_structuredconfig_receiver_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ConfigReceiverPuppetMarker;
16
17impl fidl::endpoints::ProtocolMarker for ConfigReceiverPuppetMarker {
18 type Proxy = ConfigReceiverPuppetProxy;
19 type RequestStream = ConfigReceiverPuppetRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ConfigReceiverPuppetSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "test.structuredconfig.receiver.ConfigReceiverPuppet";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ConfigReceiverPuppetMarker {}
26
27pub trait ConfigReceiverPuppetProxyInterface: Send + Sync {
28 type GetConfigResponseFut: std::future::Future<Output = Result<ReceiverConfig, fidl::Error>>
29 + Send;
30 fn r#get_config(&self) -> Self::GetConfigResponseFut;
31}
32#[derive(Debug)]
33#[cfg(target_os = "fuchsia")]
34pub struct ConfigReceiverPuppetSynchronousProxy {
35 client: fidl::client::sync::Client,
36}
37
38#[cfg(target_os = "fuchsia")]
39impl fidl::endpoints::SynchronousProxy for ConfigReceiverPuppetSynchronousProxy {
40 type Proxy = ConfigReceiverPuppetProxy;
41 type Protocol = ConfigReceiverPuppetMarker;
42
43 fn from_channel(inner: fidl::Channel) -> Self {
44 Self::new(inner)
45 }
46
47 fn into_channel(self) -> fidl::Channel {
48 self.client.into_channel()
49 }
50
51 fn as_channel(&self) -> &fidl::Channel {
52 self.client.as_channel()
53 }
54}
55
56#[cfg(target_os = "fuchsia")]
57impl ConfigReceiverPuppetSynchronousProxy {
58 pub fn new(channel: fidl::Channel) -> Self {
59 let protocol_name =
60 <ConfigReceiverPuppetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
61 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
62 }
63
64 pub fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 pub fn wait_for_event(
71 &self,
72 deadline: zx::MonotonicInstant,
73 ) -> Result<ConfigReceiverPuppetEvent, fidl::Error> {
74 ConfigReceiverPuppetEvent::decode(self.client.wait_for_event(deadline)?)
75 }
76
77 pub fn r#get_config(
78 &self,
79 ___deadline: zx::MonotonicInstant,
80 ) -> Result<ReceiverConfig, fidl::Error> {
81 let _response = self
82 .client
83 .send_query::<fidl::encoding::EmptyPayload, ConfigReceiverPuppetGetConfigResponse>(
84 (),
85 0x243d8db8a2863b24,
86 fidl::encoding::DynamicFlags::empty(),
87 ___deadline,
88 )?;
89 Ok(_response.config)
90 }
91}
92
93#[cfg(target_os = "fuchsia")]
94impl From<ConfigReceiverPuppetSynchronousProxy> for zx::Handle {
95 fn from(value: ConfigReceiverPuppetSynchronousProxy) -> Self {
96 value.into_channel().into()
97 }
98}
99
100#[cfg(target_os = "fuchsia")]
101impl From<fidl::Channel> for ConfigReceiverPuppetSynchronousProxy {
102 fn from(value: fidl::Channel) -> Self {
103 Self::new(value)
104 }
105}
106
107#[derive(Debug, Clone)]
108pub struct ConfigReceiverPuppetProxy {
109 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
110}
111
112impl fidl::endpoints::Proxy for ConfigReceiverPuppetProxy {
113 type Protocol = ConfigReceiverPuppetMarker;
114
115 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
116 Self::new(inner)
117 }
118
119 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
120 self.client.into_channel().map_err(|client| Self { client })
121 }
122
123 fn as_channel(&self) -> &::fidl::AsyncChannel {
124 self.client.as_channel()
125 }
126}
127
128impl ConfigReceiverPuppetProxy {
129 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
131 let protocol_name =
132 <ConfigReceiverPuppetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
133 Self { client: fidl::client::Client::new(channel, protocol_name) }
134 }
135
136 pub fn take_event_stream(&self) -> ConfigReceiverPuppetEventStream {
142 ConfigReceiverPuppetEventStream { event_receiver: self.client.take_event_receiver() }
143 }
144
145 pub fn r#get_config(
146 &self,
147 ) -> fidl::client::QueryResponseFut<ReceiverConfig, fidl::encoding::DefaultFuchsiaResourceDialect>
148 {
149 ConfigReceiverPuppetProxyInterface::r#get_config(self)
150 }
151}
152
153impl ConfigReceiverPuppetProxyInterface for ConfigReceiverPuppetProxy {
154 type GetConfigResponseFut = fidl::client::QueryResponseFut<
155 ReceiverConfig,
156 fidl::encoding::DefaultFuchsiaResourceDialect,
157 >;
158 fn r#get_config(&self) -> Self::GetConfigResponseFut {
159 fn _decode(
160 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
161 ) -> Result<ReceiverConfig, fidl::Error> {
162 let _response = fidl::client::decode_transaction_body::<
163 ConfigReceiverPuppetGetConfigResponse,
164 fidl::encoding::DefaultFuchsiaResourceDialect,
165 0x243d8db8a2863b24,
166 >(_buf?)?;
167 Ok(_response.config)
168 }
169 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ReceiverConfig>(
170 (),
171 0x243d8db8a2863b24,
172 fidl::encoding::DynamicFlags::empty(),
173 _decode,
174 )
175 }
176}
177
178pub struct ConfigReceiverPuppetEventStream {
179 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
180}
181
182impl std::marker::Unpin for ConfigReceiverPuppetEventStream {}
183
184impl futures::stream::FusedStream for ConfigReceiverPuppetEventStream {
185 fn is_terminated(&self) -> bool {
186 self.event_receiver.is_terminated()
187 }
188}
189
190impl futures::Stream for ConfigReceiverPuppetEventStream {
191 type Item = Result<ConfigReceiverPuppetEvent, fidl::Error>;
192
193 fn poll_next(
194 mut self: std::pin::Pin<&mut Self>,
195 cx: &mut std::task::Context<'_>,
196 ) -> std::task::Poll<Option<Self::Item>> {
197 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
198 &mut self.event_receiver,
199 cx
200 )?) {
201 Some(buf) => std::task::Poll::Ready(Some(ConfigReceiverPuppetEvent::decode(buf))),
202 None => std::task::Poll::Ready(None),
203 }
204 }
205}
206
207#[derive(Debug)]
208pub enum ConfigReceiverPuppetEvent {}
209
210impl ConfigReceiverPuppetEvent {
211 fn decode(
213 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
214 ) -> Result<ConfigReceiverPuppetEvent, fidl::Error> {
215 let (bytes, _handles) = buf.split_mut();
216 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
217 debug_assert_eq!(tx_header.tx_id, 0);
218 match tx_header.ordinal {
219 _ => Err(fidl::Error::UnknownOrdinal {
220 ordinal: tx_header.ordinal,
221 protocol_name:
222 <ConfigReceiverPuppetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
223 }),
224 }
225 }
226}
227
228pub struct ConfigReceiverPuppetRequestStream {
230 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
231 is_terminated: bool,
232}
233
234impl std::marker::Unpin for ConfigReceiverPuppetRequestStream {}
235
236impl futures::stream::FusedStream for ConfigReceiverPuppetRequestStream {
237 fn is_terminated(&self) -> bool {
238 self.is_terminated
239 }
240}
241
242impl fidl::endpoints::RequestStream for ConfigReceiverPuppetRequestStream {
243 type Protocol = ConfigReceiverPuppetMarker;
244 type ControlHandle = ConfigReceiverPuppetControlHandle;
245
246 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
247 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
248 }
249
250 fn control_handle(&self) -> Self::ControlHandle {
251 ConfigReceiverPuppetControlHandle { inner: self.inner.clone() }
252 }
253
254 fn into_inner(
255 self,
256 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
257 {
258 (self.inner, self.is_terminated)
259 }
260
261 fn from_inner(
262 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
263 is_terminated: bool,
264 ) -> Self {
265 Self { inner, is_terminated }
266 }
267}
268
269impl futures::Stream for ConfigReceiverPuppetRequestStream {
270 type Item = Result<ConfigReceiverPuppetRequest, fidl::Error>;
271
272 fn poll_next(
273 mut self: std::pin::Pin<&mut Self>,
274 cx: &mut std::task::Context<'_>,
275 ) -> std::task::Poll<Option<Self::Item>> {
276 let this = &mut *self;
277 if this.inner.check_shutdown(cx) {
278 this.is_terminated = true;
279 return std::task::Poll::Ready(None);
280 }
281 if this.is_terminated {
282 panic!("polled ConfigReceiverPuppetRequestStream after completion");
283 }
284 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
285 |bytes, handles| {
286 match this.inner.channel().read_etc(cx, bytes, handles) {
287 std::task::Poll::Ready(Ok(())) => {}
288 std::task::Poll::Pending => return std::task::Poll::Pending,
289 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
290 this.is_terminated = true;
291 return std::task::Poll::Ready(None);
292 }
293 std::task::Poll::Ready(Err(e)) => {
294 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
295 e.into(),
296 ))))
297 }
298 }
299
300 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
302
303 std::task::Poll::Ready(Some(match header.ordinal {
304 0x243d8db8a2863b24 => {
305 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
306 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
307 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
308 let control_handle = ConfigReceiverPuppetControlHandle {
309 inner: this.inner.clone(),
310 };
311 Ok(ConfigReceiverPuppetRequest::GetConfig {
312 responder: ConfigReceiverPuppetGetConfigResponder {
313 control_handle: std::mem::ManuallyDrop::new(control_handle),
314 tx_id: header.tx_id,
315 },
316 })
317 }
318 _ => Err(fidl::Error::UnknownOrdinal {
319 ordinal: header.ordinal,
320 protocol_name: <ConfigReceiverPuppetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
321 }),
322 }))
323 },
324 )
325 }
326}
327
328#[derive(Debug)]
329pub enum ConfigReceiverPuppetRequest {
330 GetConfig { responder: ConfigReceiverPuppetGetConfigResponder },
331}
332
333impl ConfigReceiverPuppetRequest {
334 #[allow(irrefutable_let_patterns)]
335 pub fn into_get_config(self) -> Option<(ConfigReceiverPuppetGetConfigResponder)> {
336 if let ConfigReceiverPuppetRequest::GetConfig { responder } = self {
337 Some((responder))
338 } else {
339 None
340 }
341 }
342
343 pub fn method_name(&self) -> &'static str {
345 match *self {
346 ConfigReceiverPuppetRequest::GetConfig { .. } => "get_config",
347 }
348 }
349}
350
351#[derive(Debug, Clone)]
352pub struct ConfigReceiverPuppetControlHandle {
353 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
354}
355
356impl fidl::endpoints::ControlHandle for ConfigReceiverPuppetControlHandle {
357 fn shutdown(&self) {
358 self.inner.shutdown()
359 }
360 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
361 self.inner.shutdown_with_epitaph(status)
362 }
363
364 fn is_closed(&self) -> bool {
365 self.inner.channel().is_closed()
366 }
367 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
368 self.inner.channel().on_closed()
369 }
370
371 #[cfg(target_os = "fuchsia")]
372 fn signal_peer(
373 &self,
374 clear_mask: zx::Signals,
375 set_mask: zx::Signals,
376 ) -> Result<(), zx_status::Status> {
377 use fidl::Peered;
378 self.inner.channel().signal_peer(clear_mask, set_mask)
379 }
380}
381
382impl ConfigReceiverPuppetControlHandle {}
383
384#[must_use = "FIDL methods require a response to be sent"]
385#[derive(Debug)]
386pub struct ConfigReceiverPuppetGetConfigResponder {
387 control_handle: std::mem::ManuallyDrop<ConfigReceiverPuppetControlHandle>,
388 tx_id: u32,
389}
390
391impl std::ops::Drop for ConfigReceiverPuppetGetConfigResponder {
395 fn drop(&mut self) {
396 self.control_handle.shutdown();
397 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
399 }
400}
401
402impl fidl::endpoints::Responder for ConfigReceiverPuppetGetConfigResponder {
403 type ControlHandle = ConfigReceiverPuppetControlHandle;
404
405 fn control_handle(&self) -> &ConfigReceiverPuppetControlHandle {
406 &self.control_handle
407 }
408
409 fn drop_without_shutdown(mut self) {
410 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
412 std::mem::forget(self);
414 }
415}
416
417impl ConfigReceiverPuppetGetConfigResponder {
418 pub fn send(self, mut config: &ReceiverConfig) -> Result<(), fidl::Error> {
422 let _result = self.send_raw(config);
423 if _result.is_err() {
424 self.control_handle.shutdown();
425 }
426 self.drop_without_shutdown();
427 _result
428 }
429
430 pub fn send_no_shutdown_on_err(self, mut config: &ReceiverConfig) -> Result<(), fidl::Error> {
432 let _result = self.send_raw(config);
433 self.drop_without_shutdown();
434 _result
435 }
436
437 fn send_raw(&self, mut config: &ReceiverConfig) -> Result<(), fidl::Error> {
438 self.control_handle.inner.send::<ConfigReceiverPuppetGetConfigResponse>(
439 (config,),
440 self.tx_id,
441 0x243d8db8a2863b24,
442 fidl::encoding::DynamicFlags::empty(),
443 )
444 }
445}
446
447mod internal {
448 use super::*;
449}