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_configexample_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ConfigUserMarker;
16
17impl fidl::endpoints::ProtocolMarker for ConfigUserMarker {
18 type Proxy = ConfigUserProxy;
19 type RequestStream = ConfigUserRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ConfigUserSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "test.configexample.ConfigUser";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ConfigUserMarker {}
26
27pub trait ConfigUserProxyInterface: Send + Sync {
28 type IsManagingPowerResponseFut: std::future::Future<Output = Result<bool, fidl::Error>> + Send;
29 fn r#is_managing_power(&self) -> Self::IsManagingPowerResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct ConfigUserSynchronousProxy {
34 client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for ConfigUserSynchronousProxy {
39 type Proxy = ConfigUserProxy;
40 type Protocol = ConfigUserMarker;
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 ConfigUserSynchronousProxy {
57 pub fn new(channel: fidl::Channel) -> Self {
58 let protocol_name = <ConfigUserMarker 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<ConfigUserEvent, fidl::Error> {
72 ConfigUserEvent::decode(self.client.wait_for_event(deadline)?)
73 }
74
75 pub fn r#is_managing_power(
76 &self,
77 ___deadline: zx::MonotonicInstant,
78 ) -> Result<bool, fidl::Error> {
79 let _response = self.client.send_query::<
80 fidl::encoding::EmptyPayload,
81 fidl::encoding::FlexibleType<ConfigUserIsManagingPowerResponse>,
82 >(
83 (),
84 0x3ed8a6f9f9f9fae7,
85 fidl::encoding::DynamicFlags::FLEXIBLE,
86 ___deadline,
87 )?
88 .into_result::<ConfigUserMarker>("is_managing_power")?;
89 Ok(_response.is_managing_power)
90 }
91}
92
93#[cfg(target_os = "fuchsia")]
94impl From<ConfigUserSynchronousProxy> for zx::Handle {
95 fn from(value: ConfigUserSynchronousProxy) -> Self {
96 value.into_channel().into()
97 }
98}
99
100#[cfg(target_os = "fuchsia")]
101impl From<fidl::Channel> for ConfigUserSynchronousProxy {
102 fn from(value: fidl::Channel) -> Self {
103 Self::new(value)
104 }
105}
106
107#[derive(Debug, Clone)]
108pub struct ConfigUserProxy {
109 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
110}
111
112impl fidl::endpoints::Proxy for ConfigUserProxy {
113 type Protocol = ConfigUserMarker;
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 ConfigUserProxy {
129 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
131 let protocol_name = <ConfigUserMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
132 Self { client: fidl::client::Client::new(channel, protocol_name) }
133 }
134
135 pub fn take_event_stream(&self) -> ConfigUserEventStream {
141 ConfigUserEventStream { event_receiver: self.client.take_event_receiver() }
142 }
143
144 pub fn r#is_managing_power(
145 &self,
146 ) -> fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect> {
147 ConfigUserProxyInterface::r#is_managing_power(self)
148 }
149}
150
151impl ConfigUserProxyInterface for ConfigUserProxy {
152 type IsManagingPowerResponseFut =
153 fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect>;
154 fn r#is_managing_power(&self) -> Self::IsManagingPowerResponseFut {
155 fn _decode(
156 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
157 ) -> Result<bool, fidl::Error> {
158 let _response = fidl::client::decode_transaction_body::<
159 fidl::encoding::FlexibleType<ConfigUserIsManagingPowerResponse>,
160 fidl::encoding::DefaultFuchsiaResourceDialect,
161 0x3ed8a6f9f9f9fae7,
162 >(_buf?)?
163 .into_result::<ConfigUserMarker>("is_managing_power")?;
164 Ok(_response.is_managing_power)
165 }
166 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, bool>(
167 (),
168 0x3ed8a6f9f9f9fae7,
169 fidl::encoding::DynamicFlags::FLEXIBLE,
170 _decode,
171 )
172 }
173}
174
175pub struct ConfigUserEventStream {
176 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
177}
178
179impl std::marker::Unpin for ConfigUserEventStream {}
180
181impl futures::stream::FusedStream for ConfigUserEventStream {
182 fn is_terminated(&self) -> bool {
183 self.event_receiver.is_terminated()
184 }
185}
186
187impl futures::Stream for ConfigUserEventStream {
188 type Item = Result<ConfigUserEvent, 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(ConfigUserEvent::decode(buf))),
199 None => std::task::Poll::Ready(None),
200 }
201 }
202}
203
204#[derive(Debug)]
205pub enum ConfigUserEvent {
206 #[non_exhaustive]
207 _UnknownEvent {
208 ordinal: u64,
210 },
211}
212
213impl ConfigUserEvent {
214 fn decode(
216 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
217 ) -> Result<ConfigUserEvent, 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(ConfigUserEvent::_UnknownEvent { ordinal: tx_header.ordinal })
224 }
225 _ => Err(fidl::Error::UnknownOrdinal {
226 ordinal: tx_header.ordinal,
227 protocol_name: <ConfigUserMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
228 }),
229 }
230 }
231}
232
233pub struct ConfigUserRequestStream {
235 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
236 is_terminated: bool,
237}
238
239impl std::marker::Unpin for ConfigUserRequestStream {}
240
241impl futures::stream::FusedStream for ConfigUserRequestStream {
242 fn is_terminated(&self) -> bool {
243 self.is_terminated
244 }
245}
246
247impl fidl::endpoints::RequestStream for ConfigUserRequestStream {
248 type Protocol = ConfigUserMarker;
249 type ControlHandle = ConfigUserControlHandle;
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 ConfigUserControlHandle { 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 ConfigUserRequestStream {
275 type Item = Result<ConfigUserRequest, 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 ConfigUserRequestStream 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 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
307
308 std::task::Poll::Ready(Some(match header.ordinal {
309 0x3ed8a6f9f9f9fae7 => {
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 = ConfigUserControlHandle { inner: this.inner.clone() };
317 Ok(ConfigUserRequest::IsManagingPower {
318 responder: ConfigUserIsManagingPowerResponder {
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(ConfigUserRequest::_UnknownMethod {
330 ordinal: header.ordinal,
331 control_handle: ConfigUserControlHandle { 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(ConfigUserRequest::_UnknownMethod {
347 ordinal: header.ordinal,
348 control_handle: ConfigUserControlHandle { 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 <ConfigUserMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
356 }),
357 }))
358 },
359 )
360 }
361}
362
363#[derive(Debug)]
368pub enum ConfigUserRequest {
369 IsManagingPower {
370 responder: ConfigUserIsManagingPowerResponder,
371 },
372 #[non_exhaustive]
374 _UnknownMethod {
375 ordinal: u64,
377 control_handle: ConfigUserControlHandle,
378 method_type: fidl::MethodType,
379 },
380}
381
382impl ConfigUserRequest {
383 #[allow(irrefutable_let_patterns)]
384 pub fn into_is_managing_power(self) -> Option<(ConfigUserIsManagingPowerResponder)> {
385 if let ConfigUserRequest::IsManagingPower { responder } = self {
386 Some((responder))
387 } else {
388 None
389 }
390 }
391
392 pub fn method_name(&self) -> &'static str {
394 match *self {
395 ConfigUserRequest::IsManagingPower { .. } => "is_managing_power",
396 ConfigUserRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
397 "unknown one-way method"
398 }
399 ConfigUserRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
400 "unknown two-way method"
401 }
402 }
403 }
404}
405
406#[derive(Debug, Clone)]
407pub struct ConfigUserControlHandle {
408 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
409}
410
411impl fidl::endpoints::ControlHandle for ConfigUserControlHandle {
412 fn shutdown(&self) {
413 self.inner.shutdown()
414 }
415 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
416 self.inner.shutdown_with_epitaph(status)
417 }
418
419 fn is_closed(&self) -> bool {
420 self.inner.channel().is_closed()
421 }
422 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
423 self.inner.channel().on_closed()
424 }
425
426 #[cfg(target_os = "fuchsia")]
427 fn signal_peer(
428 &self,
429 clear_mask: zx::Signals,
430 set_mask: zx::Signals,
431 ) -> Result<(), zx_status::Status> {
432 use fidl::Peered;
433 self.inner.channel().signal_peer(clear_mask, set_mask)
434 }
435}
436
437impl ConfigUserControlHandle {}
438
439#[must_use = "FIDL methods require a response to be sent"]
440#[derive(Debug)]
441pub struct ConfigUserIsManagingPowerResponder {
442 control_handle: std::mem::ManuallyDrop<ConfigUserControlHandle>,
443 tx_id: u32,
444}
445
446impl std::ops::Drop for ConfigUserIsManagingPowerResponder {
450 fn drop(&mut self) {
451 self.control_handle.shutdown();
452 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
454 }
455}
456
457impl fidl::endpoints::Responder for ConfigUserIsManagingPowerResponder {
458 type ControlHandle = ConfigUserControlHandle;
459
460 fn control_handle(&self) -> &ConfigUserControlHandle {
461 &self.control_handle
462 }
463
464 fn drop_without_shutdown(mut self) {
465 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
467 std::mem::forget(self);
469 }
470}
471
472impl ConfigUserIsManagingPowerResponder {
473 pub fn send(self, mut is_managing_power: bool) -> Result<(), fidl::Error> {
477 let _result = self.send_raw(is_managing_power);
478 if _result.is_err() {
479 self.control_handle.shutdown();
480 }
481 self.drop_without_shutdown();
482 _result
483 }
484
485 pub fn send_no_shutdown_on_err(self, mut is_managing_power: bool) -> Result<(), fidl::Error> {
487 let _result = self.send_raw(is_managing_power);
488 self.drop_without_shutdown();
489 _result
490 }
491
492 fn send_raw(&self, mut is_managing_power: bool) -> Result<(), fidl::Error> {
493 self.control_handle
494 .inner
495 .send::<fidl::encoding::FlexibleType<ConfigUserIsManagingPowerResponse>>(
496 fidl::encoding::Flexible::new((is_managing_power,)),
497 self.tx_id,
498 0x3ed8a6f9f9f9fae7,
499 fidl::encoding::DynamicFlags::FLEXIBLE,
500 )
501 }
502}
503
504mod internal {
505 use super::*;
506}