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