fidl_fuchsia_power_suspend/
fidl_fuchsia_power_suspend.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_power_suspend_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct StatsMarker;
16
17impl fidl::endpoints::ProtocolMarker for StatsMarker {
18 type Proxy = StatsProxy;
19 type RequestStream = StatsRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = StatsSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.power.suspend.Stats";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for StatsMarker {}
26
27pub trait StatsProxyInterface: Send + Sync {
28 type WatchResponseFut: std::future::Future<Output = Result<SuspendStats, fidl::Error>> + Send;
29 fn r#watch(&self) -> Self::WatchResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct StatsSynchronousProxy {
34 client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for StatsSynchronousProxy {
39 type Proxy = StatsProxy;
40 type Protocol = StatsMarker;
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 StatsSynchronousProxy {
57 pub fn new(channel: fidl::Channel) -> Self {
58 let protocol_name = <StatsMarker 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<StatsEvent, fidl::Error> {
72 StatsEvent::decode(self.client.wait_for_event(deadline)?)
73 }
74
75 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<SuspendStats, fidl::Error> {
81 let _response = self.client.send_query::<fidl::encoding::EmptyPayload, SuspendStats>(
82 (),
83 0x1c90507c87636a84,
84 fidl::encoding::DynamicFlags::empty(),
85 ___deadline,
86 )?;
87 Ok(_response)
88 }
89}
90
91#[cfg(target_os = "fuchsia")]
92impl From<StatsSynchronousProxy> for zx::Handle {
93 fn from(value: StatsSynchronousProxy) -> Self {
94 value.into_channel().into()
95 }
96}
97
98#[cfg(target_os = "fuchsia")]
99impl From<fidl::Channel> for StatsSynchronousProxy {
100 fn from(value: fidl::Channel) -> Self {
101 Self::new(value)
102 }
103}
104
105#[derive(Debug, Clone)]
106pub struct StatsProxy {
107 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
108}
109
110impl fidl::endpoints::Proxy for StatsProxy {
111 type Protocol = StatsMarker;
112
113 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
114 Self::new(inner)
115 }
116
117 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
118 self.client.into_channel().map_err(|client| Self { client })
119 }
120
121 fn as_channel(&self) -> &::fidl::AsyncChannel {
122 self.client.as_channel()
123 }
124}
125
126impl StatsProxy {
127 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
129 let protocol_name = <StatsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
130 Self { client: fidl::client::Client::new(channel, protocol_name) }
131 }
132
133 pub fn take_event_stream(&self) -> StatsEventStream {
139 StatsEventStream { event_receiver: self.client.take_event_receiver() }
140 }
141
142 pub fn r#watch(
148 &self,
149 ) -> fidl::client::QueryResponseFut<SuspendStats, fidl::encoding::DefaultFuchsiaResourceDialect>
150 {
151 StatsProxyInterface::r#watch(self)
152 }
153}
154
155impl StatsProxyInterface for StatsProxy {
156 type WatchResponseFut =
157 fidl::client::QueryResponseFut<SuspendStats, fidl::encoding::DefaultFuchsiaResourceDialect>;
158 fn r#watch(&self) -> Self::WatchResponseFut {
159 fn _decode(
160 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
161 ) -> Result<SuspendStats, fidl::Error> {
162 let _response = fidl::client::decode_transaction_body::<
163 SuspendStats,
164 fidl::encoding::DefaultFuchsiaResourceDialect,
165 0x1c90507c87636a84,
166 >(_buf?)?;
167 Ok(_response)
168 }
169 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, SuspendStats>(
170 (),
171 0x1c90507c87636a84,
172 fidl::encoding::DynamicFlags::empty(),
173 _decode,
174 )
175 }
176}
177
178pub struct StatsEventStream {
179 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
180}
181
182impl std::marker::Unpin for StatsEventStream {}
183
184impl futures::stream::FusedStream for StatsEventStream {
185 fn is_terminated(&self) -> bool {
186 self.event_receiver.is_terminated()
187 }
188}
189
190impl futures::Stream for StatsEventStream {
191 type Item = Result<StatsEvent, 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(StatsEvent::decode(buf))),
202 None => std::task::Poll::Ready(None),
203 }
204 }
205}
206
207#[derive(Debug)]
208pub enum StatsEvent {
209 #[non_exhaustive]
210 _UnknownEvent {
211 ordinal: u64,
213 },
214}
215
216impl StatsEvent {
217 fn decode(
219 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
220 ) -> Result<StatsEvent, fidl::Error> {
221 let (bytes, _handles) = buf.split_mut();
222 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
223 debug_assert_eq!(tx_header.tx_id, 0);
224 match tx_header.ordinal {
225 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
226 Ok(StatsEvent::_UnknownEvent { ordinal: tx_header.ordinal })
227 }
228 _ => Err(fidl::Error::UnknownOrdinal {
229 ordinal: tx_header.ordinal,
230 protocol_name: <StatsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
231 }),
232 }
233 }
234}
235
236pub struct StatsRequestStream {
238 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
239 is_terminated: bool,
240}
241
242impl std::marker::Unpin for StatsRequestStream {}
243
244impl futures::stream::FusedStream for StatsRequestStream {
245 fn is_terminated(&self) -> bool {
246 self.is_terminated
247 }
248}
249
250impl fidl::endpoints::RequestStream for StatsRequestStream {
251 type Protocol = StatsMarker;
252 type ControlHandle = StatsControlHandle;
253
254 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
255 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
256 }
257
258 fn control_handle(&self) -> Self::ControlHandle {
259 StatsControlHandle { inner: self.inner.clone() }
260 }
261
262 fn into_inner(
263 self,
264 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
265 {
266 (self.inner, self.is_terminated)
267 }
268
269 fn from_inner(
270 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
271 is_terminated: bool,
272 ) -> Self {
273 Self { inner, is_terminated }
274 }
275}
276
277impl futures::Stream for StatsRequestStream {
278 type Item = Result<StatsRequest, fidl::Error>;
279
280 fn poll_next(
281 mut self: std::pin::Pin<&mut Self>,
282 cx: &mut std::task::Context<'_>,
283 ) -> std::task::Poll<Option<Self::Item>> {
284 let this = &mut *self;
285 if this.inner.check_shutdown(cx) {
286 this.is_terminated = true;
287 return std::task::Poll::Ready(None);
288 }
289 if this.is_terminated {
290 panic!("polled StatsRequestStream after completion");
291 }
292 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
293 |bytes, handles| {
294 match this.inner.channel().read_etc(cx, bytes, handles) {
295 std::task::Poll::Ready(Ok(())) => {}
296 std::task::Poll::Pending => return std::task::Poll::Pending,
297 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
298 this.is_terminated = true;
299 return std::task::Poll::Ready(None);
300 }
301 std::task::Poll::Ready(Err(e)) => {
302 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
303 e.into(),
304 ))))
305 }
306 }
307
308 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
310
311 std::task::Poll::Ready(Some(match header.ordinal {
312 0x1c90507c87636a84 => {
313 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
314 let mut req = fidl::new_empty!(
315 fidl::encoding::EmptyPayload,
316 fidl::encoding::DefaultFuchsiaResourceDialect
317 );
318 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
319 let control_handle = StatsControlHandle { inner: this.inner.clone() };
320 Ok(StatsRequest::Watch {
321 responder: StatsWatchResponder {
322 control_handle: std::mem::ManuallyDrop::new(control_handle),
323 tx_id: header.tx_id,
324 },
325 })
326 }
327 _ if header.tx_id == 0
328 && header
329 .dynamic_flags()
330 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
331 {
332 Ok(StatsRequest::_UnknownMethod {
333 ordinal: header.ordinal,
334 control_handle: StatsControlHandle { inner: this.inner.clone() },
335 method_type: fidl::MethodType::OneWay,
336 })
337 }
338 _ if header
339 .dynamic_flags()
340 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
341 {
342 this.inner.send_framework_err(
343 fidl::encoding::FrameworkErr::UnknownMethod,
344 header.tx_id,
345 header.ordinal,
346 header.dynamic_flags(),
347 (bytes, handles),
348 )?;
349 Ok(StatsRequest::_UnknownMethod {
350 ordinal: header.ordinal,
351 control_handle: StatsControlHandle { inner: this.inner.clone() },
352 method_type: fidl::MethodType::TwoWay,
353 })
354 }
355 _ => Err(fidl::Error::UnknownOrdinal {
356 ordinal: header.ordinal,
357 protocol_name: <StatsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
358 }),
359 }))
360 },
361 )
362 }
363}
364
365#[derive(Debug)]
367pub enum StatsRequest {
368 Watch { responder: StatsWatchResponder },
374 #[non_exhaustive]
376 _UnknownMethod {
377 ordinal: u64,
379 control_handle: StatsControlHandle,
380 method_type: fidl::MethodType,
381 },
382}
383
384impl StatsRequest {
385 #[allow(irrefutable_let_patterns)]
386 pub fn into_watch(self) -> Option<(StatsWatchResponder)> {
387 if let StatsRequest::Watch { responder } = self {
388 Some((responder))
389 } else {
390 None
391 }
392 }
393
394 pub fn method_name(&self) -> &'static str {
396 match *self {
397 StatsRequest::Watch { .. } => "watch",
398 StatsRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
399 "unknown one-way method"
400 }
401 StatsRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
402 "unknown two-way method"
403 }
404 }
405 }
406}
407
408#[derive(Debug, Clone)]
409pub struct StatsControlHandle {
410 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
411}
412
413impl fidl::endpoints::ControlHandle for StatsControlHandle {
414 fn shutdown(&self) {
415 self.inner.shutdown()
416 }
417 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
418 self.inner.shutdown_with_epitaph(status)
419 }
420
421 fn is_closed(&self) -> bool {
422 self.inner.channel().is_closed()
423 }
424 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
425 self.inner.channel().on_closed()
426 }
427
428 #[cfg(target_os = "fuchsia")]
429 fn signal_peer(
430 &self,
431 clear_mask: zx::Signals,
432 set_mask: zx::Signals,
433 ) -> Result<(), zx_status::Status> {
434 use fidl::Peered;
435 self.inner.channel().signal_peer(clear_mask, set_mask)
436 }
437}
438
439impl StatsControlHandle {}
440
441#[must_use = "FIDL methods require a response to be sent"]
442#[derive(Debug)]
443pub struct StatsWatchResponder {
444 control_handle: std::mem::ManuallyDrop<StatsControlHandle>,
445 tx_id: u32,
446}
447
448impl std::ops::Drop for StatsWatchResponder {
452 fn drop(&mut self) {
453 self.control_handle.shutdown();
454 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
456 }
457}
458
459impl fidl::endpoints::Responder for StatsWatchResponder {
460 type ControlHandle = StatsControlHandle;
461
462 fn control_handle(&self) -> &StatsControlHandle {
463 &self.control_handle
464 }
465
466 fn drop_without_shutdown(mut self) {
467 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
469 std::mem::forget(self);
471 }
472}
473
474impl StatsWatchResponder {
475 pub fn send(self, mut payload: &SuspendStats) -> Result<(), fidl::Error> {
479 let _result = self.send_raw(payload);
480 if _result.is_err() {
481 self.control_handle.shutdown();
482 }
483 self.drop_without_shutdown();
484 _result
485 }
486
487 pub fn send_no_shutdown_on_err(self, mut payload: &SuspendStats) -> Result<(), fidl::Error> {
489 let _result = self.send_raw(payload);
490 self.drop_without_shutdown();
491 _result
492 }
493
494 fn send_raw(&self, mut payload: &SuspendStats) -> Result<(), fidl::Error> {
495 self.control_handle.inner.send::<SuspendStats>(
496 payload,
497 self.tx_id,
498 0x1c90507c87636a84,
499 fidl::encoding::DynamicFlags::empty(),
500 )
501 }
502}
503
504mod internal {
505 use super::*;
506}