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_fuchsia_power_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct CollaborativeRebootInitiatorMarker;
16
17impl fidl::endpoints::ProtocolMarker for CollaborativeRebootInitiatorMarker {
18 type Proxy = CollaborativeRebootInitiatorProxy;
19 type RequestStream = CollaborativeRebootInitiatorRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = CollaborativeRebootInitiatorSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.power.CollaborativeRebootInitiator";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for CollaborativeRebootInitiatorMarker {}
26
27pub trait CollaborativeRebootInitiatorProxyInterface: Send + Sync {
28 type PerformPendingRebootResponseFut: std::future::Future<
29 Output = Result<CollaborativeRebootInitiatorPerformPendingRebootResponse, fidl::Error>,
30 > + Send;
31 fn r#perform_pending_reboot(&self) -> Self::PerformPendingRebootResponseFut;
32}
33#[derive(Debug)]
34#[cfg(target_os = "fuchsia")]
35pub struct CollaborativeRebootInitiatorSynchronousProxy {
36 client: fidl::client::sync::Client,
37}
38
39#[cfg(target_os = "fuchsia")]
40impl fidl::endpoints::SynchronousProxy for CollaborativeRebootInitiatorSynchronousProxy {
41 type Proxy = CollaborativeRebootInitiatorProxy;
42 type Protocol = CollaborativeRebootInitiatorMarker;
43
44 fn from_channel(inner: fidl::Channel) -> Self {
45 Self::new(inner)
46 }
47
48 fn into_channel(self) -> fidl::Channel {
49 self.client.into_channel()
50 }
51
52 fn as_channel(&self) -> &fidl::Channel {
53 self.client.as_channel()
54 }
55}
56
57#[cfg(target_os = "fuchsia")]
58impl CollaborativeRebootInitiatorSynchronousProxy {
59 pub fn new(channel: fidl::Channel) -> Self {
60 let protocol_name =
61 <CollaborativeRebootInitiatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
62 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
63 }
64
65 pub fn into_channel(self) -> fidl::Channel {
66 self.client.into_channel()
67 }
68
69 pub fn wait_for_event(
72 &self,
73 deadline: zx::MonotonicInstant,
74 ) -> Result<CollaborativeRebootInitiatorEvent, fidl::Error> {
75 CollaborativeRebootInitiatorEvent::decode(self.client.wait_for_event(deadline)?)
76 }
77
78 pub fn r#perform_pending_reboot(
88 &self,
89 ___deadline: zx::MonotonicInstant,
90 ) -> Result<CollaborativeRebootInitiatorPerformPendingRebootResponse, fidl::Error> {
91 let _response = self.client.send_query::<
92 fidl::encoding::EmptyPayload,
93 CollaborativeRebootInitiatorPerformPendingRebootResponse,
94 >(
95 (),
96 0x6114c8f94a98f492,
97 fidl::encoding::DynamicFlags::empty(),
98 ___deadline,
99 )?;
100 Ok(_response)
101 }
102}
103
104#[cfg(target_os = "fuchsia")]
105impl From<CollaborativeRebootInitiatorSynchronousProxy> for zx::Handle {
106 fn from(value: CollaborativeRebootInitiatorSynchronousProxy) -> Self {
107 value.into_channel().into()
108 }
109}
110
111#[cfg(target_os = "fuchsia")]
112impl From<fidl::Channel> for CollaborativeRebootInitiatorSynchronousProxy {
113 fn from(value: fidl::Channel) -> Self {
114 Self::new(value)
115 }
116}
117
118#[derive(Debug, Clone)]
119pub struct CollaborativeRebootInitiatorProxy {
120 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
121}
122
123impl fidl::endpoints::Proxy for CollaborativeRebootInitiatorProxy {
124 type Protocol = CollaborativeRebootInitiatorMarker;
125
126 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
127 Self::new(inner)
128 }
129
130 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
131 self.client.into_channel().map_err(|client| Self { client })
132 }
133
134 fn as_channel(&self) -> &::fidl::AsyncChannel {
135 self.client.as_channel()
136 }
137}
138
139impl CollaborativeRebootInitiatorProxy {
140 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
142 let protocol_name =
143 <CollaborativeRebootInitiatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
144 Self { client: fidl::client::Client::new(channel, protocol_name) }
145 }
146
147 pub fn take_event_stream(&self) -> CollaborativeRebootInitiatorEventStream {
153 CollaborativeRebootInitiatorEventStream {
154 event_receiver: self.client.take_event_receiver(),
155 }
156 }
157
158 pub fn r#perform_pending_reboot(
168 &self,
169 ) -> fidl::client::QueryResponseFut<
170 CollaborativeRebootInitiatorPerformPendingRebootResponse,
171 fidl::encoding::DefaultFuchsiaResourceDialect,
172 > {
173 CollaborativeRebootInitiatorProxyInterface::r#perform_pending_reboot(self)
174 }
175}
176
177impl CollaborativeRebootInitiatorProxyInterface for CollaborativeRebootInitiatorProxy {
178 type PerformPendingRebootResponseFut = fidl::client::QueryResponseFut<
179 CollaborativeRebootInitiatorPerformPendingRebootResponse,
180 fidl::encoding::DefaultFuchsiaResourceDialect,
181 >;
182 fn r#perform_pending_reboot(&self) -> Self::PerformPendingRebootResponseFut {
183 fn _decode(
184 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
185 ) -> Result<CollaborativeRebootInitiatorPerformPendingRebootResponse, fidl::Error> {
186 let _response = fidl::client::decode_transaction_body::<
187 CollaborativeRebootInitiatorPerformPendingRebootResponse,
188 fidl::encoding::DefaultFuchsiaResourceDialect,
189 0x6114c8f94a98f492,
190 >(_buf?)?;
191 Ok(_response)
192 }
193 self.client.send_query_and_decode::<
194 fidl::encoding::EmptyPayload,
195 CollaborativeRebootInitiatorPerformPendingRebootResponse,
196 >(
197 (),
198 0x6114c8f94a98f492,
199 fidl::encoding::DynamicFlags::empty(),
200 _decode,
201 )
202 }
203}
204
205pub struct CollaborativeRebootInitiatorEventStream {
206 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
207}
208
209impl std::marker::Unpin for CollaborativeRebootInitiatorEventStream {}
210
211impl futures::stream::FusedStream for CollaborativeRebootInitiatorEventStream {
212 fn is_terminated(&self) -> bool {
213 self.event_receiver.is_terminated()
214 }
215}
216
217impl futures::Stream for CollaborativeRebootInitiatorEventStream {
218 type Item = Result<CollaborativeRebootInitiatorEvent, fidl::Error>;
219
220 fn poll_next(
221 mut self: std::pin::Pin<&mut Self>,
222 cx: &mut std::task::Context<'_>,
223 ) -> std::task::Poll<Option<Self::Item>> {
224 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
225 &mut self.event_receiver,
226 cx
227 )?) {
228 Some(buf) => {
229 std::task::Poll::Ready(Some(CollaborativeRebootInitiatorEvent::decode(buf)))
230 }
231 None => std::task::Poll::Ready(None),
232 }
233 }
234}
235
236#[derive(Debug)]
237pub enum CollaborativeRebootInitiatorEvent {}
238
239impl CollaborativeRebootInitiatorEvent {
240 fn decode(
242 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
243 ) -> Result<CollaborativeRebootInitiatorEvent, fidl::Error> {
244 let (bytes, _handles) = buf.split_mut();
245 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
246 debug_assert_eq!(tx_header.tx_id, 0);
247 match tx_header.ordinal {
248 _ => Err(fidl::Error::UnknownOrdinal {
249 ordinal: tx_header.ordinal,
250 protocol_name: <CollaborativeRebootInitiatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
251 })
252 }
253 }
254}
255
256pub struct CollaborativeRebootInitiatorRequestStream {
258 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
259 is_terminated: bool,
260}
261
262impl std::marker::Unpin for CollaborativeRebootInitiatorRequestStream {}
263
264impl futures::stream::FusedStream for CollaborativeRebootInitiatorRequestStream {
265 fn is_terminated(&self) -> bool {
266 self.is_terminated
267 }
268}
269
270impl fidl::endpoints::RequestStream for CollaborativeRebootInitiatorRequestStream {
271 type Protocol = CollaborativeRebootInitiatorMarker;
272 type ControlHandle = CollaborativeRebootInitiatorControlHandle;
273
274 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
275 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
276 }
277
278 fn control_handle(&self) -> Self::ControlHandle {
279 CollaborativeRebootInitiatorControlHandle { inner: self.inner.clone() }
280 }
281
282 fn into_inner(
283 self,
284 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
285 {
286 (self.inner, self.is_terminated)
287 }
288
289 fn from_inner(
290 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
291 is_terminated: bool,
292 ) -> Self {
293 Self { inner, is_terminated }
294 }
295}
296
297impl futures::Stream for CollaborativeRebootInitiatorRequestStream {
298 type Item = Result<CollaborativeRebootInitiatorRequest, fidl::Error>;
299
300 fn poll_next(
301 mut self: std::pin::Pin<&mut Self>,
302 cx: &mut std::task::Context<'_>,
303 ) -> std::task::Poll<Option<Self::Item>> {
304 let this = &mut *self;
305 if this.inner.check_shutdown(cx) {
306 this.is_terminated = true;
307 return std::task::Poll::Ready(None);
308 }
309 if this.is_terminated {
310 panic!("polled CollaborativeRebootInitiatorRequestStream after completion");
311 }
312 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
313 |bytes, handles| {
314 match this.inner.channel().read_etc(cx, bytes, handles) {
315 std::task::Poll::Ready(Ok(())) => {}
316 std::task::Poll::Pending => return std::task::Poll::Pending,
317 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
318 this.is_terminated = true;
319 return std::task::Poll::Ready(None);
320 }
321 std::task::Poll::Ready(Err(e)) => {
322 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
323 e.into(),
324 ))))
325 }
326 }
327
328 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
330
331 std::task::Poll::Ready(Some(match header.ordinal {
332 0x6114c8f94a98f492 => {
333 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
334 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
335 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
336 let control_handle = CollaborativeRebootInitiatorControlHandle {
337 inner: this.inner.clone(),
338 };
339 Ok(CollaborativeRebootInitiatorRequest::PerformPendingReboot {
340 responder: CollaborativeRebootInitiatorPerformPendingRebootResponder {
341 control_handle: std::mem::ManuallyDrop::new(control_handle),
342 tx_id: header.tx_id,
343 },
344 })
345 }
346 _ => Err(fidl::Error::UnknownOrdinal {
347 ordinal: header.ordinal,
348 protocol_name: <CollaborativeRebootInitiatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
349 }),
350 }))
351 },
352 )
353 }
354}
355
356#[derive(Debug)]
375pub enum CollaborativeRebootInitiatorRequest {
376 PerformPendingReboot { responder: CollaborativeRebootInitiatorPerformPendingRebootResponder },
386}
387
388impl CollaborativeRebootInitiatorRequest {
389 #[allow(irrefutable_let_patterns)]
390 pub fn into_perform_pending_reboot(
391 self,
392 ) -> Option<(CollaborativeRebootInitiatorPerformPendingRebootResponder)> {
393 if let CollaborativeRebootInitiatorRequest::PerformPendingReboot { responder } = self {
394 Some((responder))
395 } else {
396 None
397 }
398 }
399
400 pub fn method_name(&self) -> &'static str {
402 match *self {
403 CollaborativeRebootInitiatorRequest::PerformPendingReboot { .. } => {
404 "perform_pending_reboot"
405 }
406 }
407 }
408}
409
410#[derive(Debug, Clone)]
411pub struct CollaborativeRebootInitiatorControlHandle {
412 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
413}
414
415impl fidl::endpoints::ControlHandle for CollaborativeRebootInitiatorControlHandle {
416 fn shutdown(&self) {
417 self.inner.shutdown()
418 }
419 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
420 self.inner.shutdown_with_epitaph(status)
421 }
422
423 fn is_closed(&self) -> bool {
424 self.inner.channel().is_closed()
425 }
426 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
427 self.inner.channel().on_closed()
428 }
429
430 #[cfg(target_os = "fuchsia")]
431 fn signal_peer(
432 &self,
433 clear_mask: zx::Signals,
434 set_mask: zx::Signals,
435 ) -> Result<(), zx_status::Status> {
436 use fidl::Peered;
437 self.inner.channel().signal_peer(clear_mask, set_mask)
438 }
439}
440
441impl CollaborativeRebootInitiatorControlHandle {}
442
443#[must_use = "FIDL methods require a response to be sent"]
444#[derive(Debug)]
445pub struct CollaborativeRebootInitiatorPerformPendingRebootResponder {
446 control_handle: std::mem::ManuallyDrop<CollaborativeRebootInitiatorControlHandle>,
447 tx_id: u32,
448}
449
450impl std::ops::Drop for CollaborativeRebootInitiatorPerformPendingRebootResponder {
454 fn drop(&mut self) {
455 self.control_handle.shutdown();
456 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
458 }
459}
460
461impl fidl::endpoints::Responder for CollaborativeRebootInitiatorPerformPendingRebootResponder {
462 type ControlHandle = CollaborativeRebootInitiatorControlHandle;
463
464 fn control_handle(&self) -> &CollaborativeRebootInitiatorControlHandle {
465 &self.control_handle
466 }
467
468 fn drop_without_shutdown(mut self) {
469 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
471 std::mem::forget(self);
473 }
474}
475
476impl CollaborativeRebootInitiatorPerformPendingRebootResponder {
477 pub fn send(
481 self,
482 mut payload: &CollaborativeRebootInitiatorPerformPendingRebootResponse,
483 ) -> Result<(), fidl::Error> {
484 let _result = self.send_raw(payload);
485 if _result.is_err() {
486 self.control_handle.shutdown();
487 }
488 self.drop_without_shutdown();
489 _result
490 }
491
492 pub fn send_no_shutdown_on_err(
494 self,
495 mut payload: &CollaborativeRebootInitiatorPerformPendingRebootResponse,
496 ) -> Result<(), fidl::Error> {
497 let _result = self.send_raw(payload);
498 self.drop_without_shutdown();
499 _result
500 }
501
502 fn send_raw(
503 &self,
504 mut payload: &CollaborativeRebootInitiatorPerformPendingRebootResponse,
505 ) -> Result<(), fidl::Error> {
506 self.control_handle.inner.send::<CollaborativeRebootInitiatorPerformPendingRebootResponse>(
507 payload,
508 self.tx_id,
509 0x6114c8f94a98f492,
510 fidl::encoding::DynamicFlags::empty(),
511 )
512 }
513}
514
515mod internal {
516 use super::*;
517}