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