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_mockrebootcontroller_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct MockRebootControllerMarker;
16
17impl fidl::endpoints::ProtocolMarker for MockRebootControllerMarker {
18 type Proxy = MockRebootControllerProxy;
19 type RequestStream = MockRebootControllerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = MockRebootControllerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.mockrebootcontroller.MockRebootController";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for MockRebootControllerMarker {}
26pub type MockRebootControllerTriggerRebootResult = Result<(), RebootError>;
27pub type MockRebootControllerCrashRebootChannelResult = Result<(), RebootError>;
28
29pub trait MockRebootControllerProxyInterface: Send + Sync {
30 type TriggerRebootResponseFut: std::future::Future<Output = Result<MockRebootControllerTriggerRebootResult, fidl::Error>>
31 + Send;
32 fn r#trigger_reboot(&self) -> Self::TriggerRebootResponseFut;
33 type CrashRebootChannelResponseFut: std::future::Future<
34 Output = Result<MockRebootControllerCrashRebootChannelResult, fidl::Error>,
35 > + Send;
36 fn r#crash_reboot_channel(&self) -> Self::CrashRebootChannelResponseFut;
37}
38#[derive(Debug)]
39#[cfg(target_os = "fuchsia")]
40pub struct MockRebootControllerSynchronousProxy {
41 client: fidl::client::sync::Client,
42}
43
44#[cfg(target_os = "fuchsia")]
45impl fidl::endpoints::SynchronousProxy for MockRebootControllerSynchronousProxy {
46 type Proxy = MockRebootControllerProxy;
47 type Protocol = MockRebootControllerMarker;
48
49 fn from_channel(inner: fidl::Channel) -> Self {
50 Self::new(inner)
51 }
52
53 fn into_channel(self) -> fidl::Channel {
54 self.client.into_channel()
55 }
56
57 fn as_channel(&self) -> &fidl::Channel {
58 self.client.as_channel()
59 }
60}
61
62#[cfg(target_os = "fuchsia")]
63impl MockRebootControllerSynchronousProxy {
64 pub fn new(channel: fidl::Channel) -> Self {
65 let protocol_name =
66 <MockRebootControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
67 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
68 }
69
70 pub fn into_channel(self) -> fidl::Channel {
71 self.client.into_channel()
72 }
73
74 pub fn wait_for_event(
77 &self,
78 deadline: zx::MonotonicInstant,
79 ) -> Result<MockRebootControllerEvent, fidl::Error> {
80 MockRebootControllerEvent::decode(self.client.wait_for_event(deadline)?)
81 }
82
83 pub fn r#trigger_reboot(
84 &self,
85 ___deadline: zx::MonotonicInstant,
86 ) -> Result<MockRebootControllerTriggerRebootResult, fidl::Error> {
87 let _response = self.client.send_query::<
88 fidl::encoding::EmptyPayload,
89 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RebootError>,
90 >(
91 (),
92 0x5e2a61aa7f881d13,
93 fidl::encoding::DynamicFlags::empty(),
94 ___deadline,
95 )?;
96 Ok(_response.map(|x| x))
97 }
98
99 pub fn r#crash_reboot_channel(
100 &self,
101 ___deadline: zx::MonotonicInstant,
102 ) -> Result<MockRebootControllerCrashRebootChannelResult, fidl::Error> {
103 let _response = self.client.send_query::<
104 fidl::encoding::EmptyPayload,
105 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RebootError>,
106 >(
107 (),
108 0x7d42f63d8d9ec3c3,
109 fidl::encoding::DynamicFlags::empty(),
110 ___deadline,
111 )?;
112 Ok(_response.map(|x| x))
113 }
114}
115
116#[cfg(target_os = "fuchsia")]
117impl From<MockRebootControllerSynchronousProxy> for zx::Handle {
118 fn from(value: MockRebootControllerSynchronousProxy) -> Self {
119 value.into_channel().into()
120 }
121}
122
123#[cfg(target_os = "fuchsia")]
124impl From<fidl::Channel> for MockRebootControllerSynchronousProxy {
125 fn from(value: fidl::Channel) -> Self {
126 Self::new(value)
127 }
128}
129
130#[derive(Debug, Clone)]
131pub struct MockRebootControllerProxy {
132 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
133}
134
135impl fidl::endpoints::Proxy for MockRebootControllerProxy {
136 type Protocol = MockRebootControllerMarker;
137
138 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
139 Self::new(inner)
140 }
141
142 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
143 self.client.into_channel().map_err(|client| Self { client })
144 }
145
146 fn as_channel(&self) -> &::fidl::AsyncChannel {
147 self.client.as_channel()
148 }
149}
150
151impl MockRebootControllerProxy {
152 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
154 let protocol_name =
155 <MockRebootControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
156 Self { client: fidl::client::Client::new(channel, protocol_name) }
157 }
158
159 pub fn take_event_stream(&self) -> MockRebootControllerEventStream {
165 MockRebootControllerEventStream { event_receiver: self.client.take_event_receiver() }
166 }
167
168 pub fn r#trigger_reboot(
169 &self,
170 ) -> fidl::client::QueryResponseFut<
171 MockRebootControllerTriggerRebootResult,
172 fidl::encoding::DefaultFuchsiaResourceDialect,
173 > {
174 MockRebootControllerProxyInterface::r#trigger_reboot(self)
175 }
176
177 pub fn r#crash_reboot_channel(
178 &self,
179 ) -> fidl::client::QueryResponseFut<
180 MockRebootControllerCrashRebootChannelResult,
181 fidl::encoding::DefaultFuchsiaResourceDialect,
182 > {
183 MockRebootControllerProxyInterface::r#crash_reboot_channel(self)
184 }
185}
186
187impl MockRebootControllerProxyInterface for MockRebootControllerProxy {
188 type TriggerRebootResponseFut = fidl::client::QueryResponseFut<
189 MockRebootControllerTriggerRebootResult,
190 fidl::encoding::DefaultFuchsiaResourceDialect,
191 >;
192 fn r#trigger_reboot(&self) -> Self::TriggerRebootResponseFut {
193 fn _decode(
194 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
195 ) -> Result<MockRebootControllerTriggerRebootResult, fidl::Error> {
196 let _response = fidl::client::decode_transaction_body::<
197 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RebootError>,
198 fidl::encoding::DefaultFuchsiaResourceDialect,
199 0x5e2a61aa7f881d13,
200 >(_buf?)?;
201 Ok(_response.map(|x| x))
202 }
203 self.client.send_query_and_decode::<
204 fidl::encoding::EmptyPayload,
205 MockRebootControllerTriggerRebootResult,
206 >(
207 (),
208 0x5e2a61aa7f881d13,
209 fidl::encoding::DynamicFlags::empty(),
210 _decode,
211 )
212 }
213
214 type CrashRebootChannelResponseFut = fidl::client::QueryResponseFut<
215 MockRebootControllerCrashRebootChannelResult,
216 fidl::encoding::DefaultFuchsiaResourceDialect,
217 >;
218 fn r#crash_reboot_channel(&self) -> Self::CrashRebootChannelResponseFut {
219 fn _decode(
220 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
221 ) -> Result<MockRebootControllerCrashRebootChannelResult, fidl::Error> {
222 let _response = fidl::client::decode_transaction_body::<
223 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RebootError>,
224 fidl::encoding::DefaultFuchsiaResourceDialect,
225 0x7d42f63d8d9ec3c3,
226 >(_buf?)?;
227 Ok(_response.map(|x| x))
228 }
229 self.client.send_query_and_decode::<
230 fidl::encoding::EmptyPayload,
231 MockRebootControllerCrashRebootChannelResult,
232 >(
233 (),
234 0x7d42f63d8d9ec3c3,
235 fidl::encoding::DynamicFlags::empty(),
236 _decode,
237 )
238 }
239}
240
241pub struct MockRebootControllerEventStream {
242 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
243}
244
245impl std::marker::Unpin for MockRebootControllerEventStream {}
246
247impl futures::stream::FusedStream for MockRebootControllerEventStream {
248 fn is_terminated(&self) -> bool {
249 self.event_receiver.is_terminated()
250 }
251}
252
253impl futures::Stream for MockRebootControllerEventStream {
254 type Item = Result<MockRebootControllerEvent, fidl::Error>;
255
256 fn poll_next(
257 mut self: std::pin::Pin<&mut Self>,
258 cx: &mut std::task::Context<'_>,
259 ) -> std::task::Poll<Option<Self::Item>> {
260 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
261 &mut self.event_receiver,
262 cx
263 )?) {
264 Some(buf) => std::task::Poll::Ready(Some(MockRebootControllerEvent::decode(buf))),
265 None => std::task::Poll::Ready(None),
266 }
267 }
268}
269
270#[derive(Debug)]
271pub enum MockRebootControllerEvent {}
272
273impl MockRebootControllerEvent {
274 fn decode(
276 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
277 ) -> Result<MockRebootControllerEvent, fidl::Error> {
278 let (bytes, _handles) = buf.split_mut();
279 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
280 debug_assert_eq!(tx_header.tx_id, 0);
281 match tx_header.ordinal {
282 _ => Err(fidl::Error::UnknownOrdinal {
283 ordinal: tx_header.ordinal,
284 protocol_name:
285 <MockRebootControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
286 }),
287 }
288 }
289}
290
291pub struct MockRebootControllerRequestStream {
293 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
294 is_terminated: bool,
295}
296
297impl std::marker::Unpin for MockRebootControllerRequestStream {}
298
299impl futures::stream::FusedStream for MockRebootControllerRequestStream {
300 fn is_terminated(&self) -> bool {
301 self.is_terminated
302 }
303}
304
305impl fidl::endpoints::RequestStream for MockRebootControllerRequestStream {
306 type Protocol = MockRebootControllerMarker;
307 type ControlHandle = MockRebootControllerControlHandle;
308
309 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
310 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
311 }
312
313 fn control_handle(&self) -> Self::ControlHandle {
314 MockRebootControllerControlHandle { inner: self.inner.clone() }
315 }
316
317 fn into_inner(
318 self,
319 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
320 {
321 (self.inner, self.is_terminated)
322 }
323
324 fn from_inner(
325 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
326 is_terminated: bool,
327 ) -> Self {
328 Self { inner, is_terminated }
329 }
330}
331
332impl futures::Stream for MockRebootControllerRequestStream {
333 type Item = Result<MockRebootControllerRequest, fidl::Error>;
334
335 fn poll_next(
336 mut self: std::pin::Pin<&mut Self>,
337 cx: &mut std::task::Context<'_>,
338 ) -> std::task::Poll<Option<Self::Item>> {
339 let this = &mut *self;
340 if this.inner.check_shutdown(cx) {
341 this.is_terminated = true;
342 return std::task::Poll::Ready(None);
343 }
344 if this.is_terminated {
345 panic!("polled MockRebootControllerRequestStream after completion");
346 }
347 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
348 |bytes, handles| {
349 match this.inner.channel().read_etc(cx, bytes, handles) {
350 std::task::Poll::Ready(Ok(())) => {}
351 std::task::Poll::Pending => return std::task::Poll::Pending,
352 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
353 this.is_terminated = true;
354 return std::task::Poll::Ready(None);
355 }
356 std::task::Poll::Ready(Err(e)) => {
357 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
358 e.into(),
359 ))))
360 }
361 }
362
363 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
365
366 std::task::Poll::Ready(Some(match header.ordinal {
367 0x5e2a61aa7f881d13 => {
368 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
369 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
370 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
371 let control_handle = MockRebootControllerControlHandle {
372 inner: this.inner.clone(),
373 };
374 Ok(MockRebootControllerRequest::TriggerReboot {
375 responder: MockRebootControllerTriggerRebootResponder {
376 control_handle: std::mem::ManuallyDrop::new(control_handle),
377 tx_id: header.tx_id,
378 },
379 })
380 }
381 0x7d42f63d8d9ec3c3 => {
382 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
383 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
384 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
385 let control_handle = MockRebootControllerControlHandle {
386 inner: this.inner.clone(),
387 };
388 Ok(MockRebootControllerRequest::CrashRebootChannel {
389 responder: MockRebootControllerCrashRebootChannelResponder {
390 control_handle: std::mem::ManuallyDrop::new(control_handle),
391 tx_id: header.tx_id,
392 },
393 })
394 }
395 _ => Err(fidl::Error::UnknownOrdinal {
396 ordinal: header.ordinal,
397 protocol_name: <MockRebootControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
398 }),
399 }))
400 },
401 )
402 }
403}
404
405#[derive(Debug)]
406pub enum MockRebootControllerRequest {
407 TriggerReboot { responder: MockRebootControllerTriggerRebootResponder },
408 CrashRebootChannel { responder: MockRebootControllerCrashRebootChannelResponder },
409}
410
411impl MockRebootControllerRequest {
412 #[allow(irrefutable_let_patterns)]
413 pub fn into_trigger_reboot(self) -> Option<(MockRebootControllerTriggerRebootResponder)> {
414 if let MockRebootControllerRequest::TriggerReboot { responder } = self {
415 Some((responder))
416 } else {
417 None
418 }
419 }
420
421 #[allow(irrefutable_let_patterns)]
422 pub fn into_crash_reboot_channel(
423 self,
424 ) -> Option<(MockRebootControllerCrashRebootChannelResponder)> {
425 if let MockRebootControllerRequest::CrashRebootChannel { responder } = self {
426 Some((responder))
427 } else {
428 None
429 }
430 }
431
432 pub fn method_name(&self) -> &'static str {
434 match *self {
435 MockRebootControllerRequest::TriggerReboot { .. } => "trigger_reboot",
436 MockRebootControllerRequest::CrashRebootChannel { .. } => "crash_reboot_channel",
437 }
438 }
439}
440
441#[derive(Debug, Clone)]
442pub struct MockRebootControllerControlHandle {
443 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
444}
445
446impl fidl::endpoints::ControlHandle for MockRebootControllerControlHandle {
447 fn shutdown(&self) {
448 self.inner.shutdown()
449 }
450 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
451 self.inner.shutdown_with_epitaph(status)
452 }
453
454 fn is_closed(&self) -> bool {
455 self.inner.channel().is_closed()
456 }
457 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
458 self.inner.channel().on_closed()
459 }
460
461 #[cfg(target_os = "fuchsia")]
462 fn signal_peer(
463 &self,
464 clear_mask: zx::Signals,
465 set_mask: zx::Signals,
466 ) -> Result<(), zx_status::Status> {
467 use fidl::Peered;
468 self.inner.channel().signal_peer(clear_mask, set_mask)
469 }
470}
471
472impl MockRebootControllerControlHandle {}
473
474#[must_use = "FIDL methods require a response to be sent"]
475#[derive(Debug)]
476pub struct MockRebootControllerTriggerRebootResponder {
477 control_handle: std::mem::ManuallyDrop<MockRebootControllerControlHandle>,
478 tx_id: u32,
479}
480
481impl std::ops::Drop for MockRebootControllerTriggerRebootResponder {
485 fn drop(&mut self) {
486 self.control_handle.shutdown();
487 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
489 }
490}
491
492impl fidl::endpoints::Responder for MockRebootControllerTriggerRebootResponder {
493 type ControlHandle = MockRebootControllerControlHandle;
494
495 fn control_handle(&self) -> &MockRebootControllerControlHandle {
496 &self.control_handle
497 }
498
499 fn drop_without_shutdown(mut self) {
500 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
502 std::mem::forget(self);
504 }
505}
506
507impl MockRebootControllerTriggerRebootResponder {
508 pub fn send(self, mut result: Result<(), RebootError>) -> Result<(), fidl::Error> {
512 let _result = self.send_raw(result);
513 if _result.is_err() {
514 self.control_handle.shutdown();
515 }
516 self.drop_without_shutdown();
517 _result
518 }
519
520 pub fn send_no_shutdown_on_err(
522 self,
523 mut result: Result<(), RebootError>,
524 ) -> Result<(), fidl::Error> {
525 let _result = self.send_raw(result);
526 self.drop_without_shutdown();
527 _result
528 }
529
530 fn send_raw(&self, mut result: Result<(), RebootError>) -> Result<(), fidl::Error> {
531 self.control_handle.inner.send::<fidl::encoding::ResultType<
532 fidl::encoding::EmptyStruct,
533 RebootError,
534 >>(
535 result,
536 self.tx_id,
537 0x5e2a61aa7f881d13,
538 fidl::encoding::DynamicFlags::empty(),
539 )
540 }
541}
542
543#[must_use = "FIDL methods require a response to be sent"]
544#[derive(Debug)]
545pub struct MockRebootControllerCrashRebootChannelResponder {
546 control_handle: std::mem::ManuallyDrop<MockRebootControllerControlHandle>,
547 tx_id: u32,
548}
549
550impl std::ops::Drop for MockRebootControllerCrashRebootChannelResponder {
554 fn drop(&mut self) {
555 self.control_handle.shutdown();
556 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
558 }
559}
560
561impl fidl::endpoints::Responder for MockRebootControllerCrashRebootChannelResponder {
562 type ControlHandle = MockRebootControllerControlHandle;
563
564 fn control_handle(&self) -> &MockRebootControllerControlHandle {
565 &self.control_handle
566 }
567
568 fn drop_without_shutdown(mut self) {
569 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
571 std::mem::forget(self);
573 }
574}
575
576impl MockRebootControllerCrashRebootChannelResponder {
577 pub fn send(self, mut result: Result<(), RebootError>) -> Result<(), fidl::Error> {
581 let _result = self.send_raw(result);
582 if _result.is_err() {
583 self.control_handle.shutdown();
584 }
585 self.drop_without_shutdown();
586 _result
587 }
588
589 pub fn send_no_shutdown_on_err(
591 self,
592 mut result: Result<(), RebootError>,
593 ) -> Result<(), fidl::Error> {
594 let _result = self.send_raw(result);
595 self.drop_without_shutdown();
596 _result
597 }
598
599 fn send_raw(&self, mut result: Result<(), RebootError>) -> Result<(), fidl::Error> {
600 self.control_handle.inner.send::<fidl::encoding::ResultType<
601 fidl::encoding::EmptyStruct,
602 RebootError,
603 >>(
604 result,
605 self.tx_id,
606 0x7d42f63d8d9ec3c3,
607 fidl::encoding::DynamicFlags::empty(),
608 )
609 }
610}
611
612mod internal {
613 use super::*;
614}