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_policy_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ExitControllerMarker;
16
17impl fidl::endpoints::ProtocolMarker for ExitControllerMarker {
18 type Proxy = ExitControllerProxy;
19 type RequestStream = ExitControllerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ExitControllerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "test.policy.ExitController";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ExitControllerMarker {}
26
27pub trait ExitControllerProxyInterface: Send + Sync {
28 fn r#exit(&self, code: i32) -> Result<(), fidl::Error>;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct ExitControllerSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for ExitControllerSynchronousProxy {
38 type Proxy = ExitControllerProxy;
39 type Protocol = ExitControllerMarker;
40
41 fn from_channel(inner: fidl::Channel) -> Self {
42 Self::new(inner)
43 }
44
45 fn into_channel(self) -> fidl::Channel {
46 self.client.into_channel()
47 }
48
49 fn as_channel(&self) -> &fidl::Channel {
50 self.client.as_channel()
51 }
52}
53
54#[cfg(target_os = "fuchsia")]
55impl ExitControllerSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <ExitControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
58 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
59 }
60
61 pub fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 pub fn wait_for_event(
68 &self,
69 deadline: zx::MonotonicInstant,
70 ) -> Result<ExitControllerEvent, fidl::Error> {
71 ExitControllerEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#exit(&self, mut code: i32) -> Result<(), fidl::Error> {
75 self.client.send::<ExitControllerExitRequest>(
76 (code,),
77 0x38305e3f46968321,
78 fidl::encoding::DynamicFlags::empty(),
79 )
80 }
81}
82
83#[cfg(target_os = "fuchsia")]
84impl From<ExitControllerSynchronousProxy> for zx::Handle {
85 fn from(value: ExitControllerSynchronousProxy) -> Self {
86 value.into_channel().into()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl From<fidl::Channel> for ExitControllerSynchronousProxy {
92 fn from(value: fidl::Channel) -> Self {
93 Self::new(value)
94 }
95}
96
97#[derive(Debug, Clone)]
98pub struct ExitControllerProxy {
99 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
100}
101
102impl fidl::endpoints::Proxy for ExitControllerProxy {
103 type Protocol = ExitControllerMarker;
104
105 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
106 Self::new(inner)
107 }
108
109 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
110 self.client.into_channel().map_err(|client| Self { client })
111 }
112
113 fn as_channel(&self) -> &::fidl::AsyncChannel {
114 self.client.as_channel()
115 }
116}
117
118impl ExitControllerProxy {
119 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
121 let protocol_name = <ExitControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
122 Self { client: fidl::client::Client::new(channel, protocol_name) }
123 }
124
125 pub fn take_event_stream(&self) -> ExitControllerEventStream {
131 ExitControllerEventStream { event_receiver: self.client.take_event_receiver() }
132 }
133
134 pub fn r#exit(&self, mut code: i32) -> Result<(), fidl::Error> {
135 ExitControllerProxyInterface::r#exit(self, code)
136 }
137}
138
139impl ExitControllerProxyInterface for ExitControllerProxy {
140 fn r#exit(&self, mut code: i32) -> Result<(), fidl::Error> {
141 self.client.send::<ExitControllerExitRequest>(
142 (code,),
143 0x38305e3f46968321,
144 fidl::encoding::DynamicFlags::empty(),
145 )
146 }
147}
148
149pub struct ExitControllerEventStream {
150 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
151}
152
153impl std::marker::Unpin for ExitControllerEventStream {}
154
155impl futures::stream::FusedStream for ExitControllerEventStream {
156 fn is_terminated(&self) -> bool {
157 self.event_receiver.is_terminated()
158 }
159}
160
161impl futures::Stream for ExitControllerEventStream {
162 type Item = Result<ExitControllerEvent, fidl::Error>;
163
164 fn poll_next(
165 mut self: std::pin::Pin<&mut Self>,
166 cx: &mut std::task::Context<'_>,
167 ) -> std::task::Poll<Option<Self::Item>> {
168 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
169 &mut self.event_receiver,
170 cx
171 )?) {
172 Some(buf) => std::task::Poll::Ready(Some(ExitControllerEvent::decode(buf))),
173 None => std::task::Poll::Ready(None),
174 }
175 }
176}
177
178#[derive(Debug)]
179pub enum ExitControllerEvent {}
180
181impl ExitControllerEvent {
182 fn decode(
184 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
185 ) -> Result<ExitControllerEvent, fidl::Error> {
186 let (bytes, _handles) = buf.split_mut();
187 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
188 debug_assert_eq!(tx_header.tx_id, 0);
189 match tx_header.ordinal {
190 _ => Err(fidl::Error::UnknownOrdinal {
191 ordinal: tx_header.ordinal,
192 protocol_name:
193 <ExitControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
194 }),
195 }
196 }
197}
198
199pub struct ExitControllerRequestStream {
201 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
202 is_terminated: bool,
203}
204
205impl std::marker::Unpin for ExitControllerRequestStream {}
206
207impl futures::stream::FusedStream for ExitControllerRequestStream {
208 fn is_terminated(&self) -> bool {
209 self.is_terminated
210 }
211}
212
213impl fidl::endpoints::RequestStream for ExitControllerRequestStream {
214 type Protocol = ExitControllerMarker;
215 type ControlHandle = ExitControllerControlHandle;
216
217 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
218 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
219 }
220
221 fn control_handle(&self) -> Self::ControlHandle {
222 ExitControllerControlHandle { inner: self.inner.clone() }
223 }
224
225 fn into_inner(
226 self,
227 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
228 {
229 (self.inner, self.is_terminated)
230 }
231
232 fn from_inner(
233 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
234 is_terminated: bool,
235 ) -> Self {
236 Self { inner, is_terminated }
237 }
238}
239
240impl futures::Stream for ExitControllerRequestStream {
241 type Item = Result<ExitControllerRequest, fidl::Error>;
242
243 fn poll_next(
244 mut self: std::pin::Pin<&mut Self>,
245 cx: &mut std::task::Context<'_>,
246 ) -> std::task::Poll<Option<Self::Item>> {
247 let this = &mut *self;
248 if this.inner.check_shutdown(cx) {
249 this.is_terminated = true;
250 return std::task::Poll::Ready(None);
251 }
252 if this.is_terminated {
253 panic!("polled ExitControllerRequestStream after completion");
254 }
255 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
256 |bytes, handles| {
257 match this.inner.channel().read_etc(cx, bytes, handles) {
258 std::task::Poll::Ready(Ok(())) => {}
259 std::task::Poll::Pending => return std::task::Poll::Pending,
260 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
261 this.is_terminated = true;
262 return std::task::Poll::Ready(None);
263 }
264 std::task::Poll::Ready(Err(e)) => {
265 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
266 e.into(),
267 ))))
268 }
269 }
270
271 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
273
274 std::task::Poll::Ready(Some(match header.ordinal {
275 0x38305e3f46968321 => {
276 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
277 let mut req = fidl::new_empty!(
278 ExitControllerExitRequest,
279 fidl::encoding::DefaultFuchsiaResourceDialect
280 );
281 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ExitControllerExitRequest>(&header, _body_bytes, handles, &mut req)?;
282 let control_handle =
283 ExitControllerControlHandle { inner: this.inner.clone() };
284 Ok(ExitControllerRequest::Exit { code: req.code, control_handle })
285 }
286 _ => Err(fidl::Error::UnknownOrdinal {
287 ordinal: header.ordinal,
288 protocol_name:
289 <ExitControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
290 }),
291 }))
292 },
293 )
294 }
295}
296
297#[derive(Debug)]
298pub enum ExitControllerRequest {
299 Exit { code: i32, control_handle: ExitControllerControlHandle },
300}
301
302impl ExitControllerRequest {
303 #[allow(irrefutable_let_patterns)]
304 pub fn into_exit(self) -> Option<(i32, ExitControllerControlHandle)> {
305 if let ExitControllerRequest::Exit { code, control_handle } = self {
306 Some((code, control_handle))
307 } else {
308 None
309 }
310 }
311
312 pub fn method_name(&self) -> &'static str {
314 match *self {
315 ExitControllerRequest::Exit { .. } => "exit",
316 }
317 }
318}
319
320#[derive(Debug, Clone)]
321pub struct ExitControllerControlHandle {
322 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
323}
324
325impl fidl::endpoints::ControlHandle for ExitControllerControlHandle {
326 fn shutdown(&self) {
327 self.inner.shutdown()
328 }
329 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
330 self.inner.shutdown_with_epitaph(status)
331 }
332
333 fn is_closed(&self) -> bool {
334 self.inner.channel().is_closed()
335 }
336 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
337 self.inner.channel().on_closed()
338 }
339
340 #[cfg(target_os = "fuchsia")]
341 fn signal_peer(
342 &self,
343 clear_mask: zx::Signals,
344 set_mask: zx::Signals,
345 ) -> Result<(), zx_status::Status> {
346 use fidl::Peered;
347 self.inner.channel().signal_peer(clear_mask, set_mask)
348 }
349}
350
351impl ExitControllerControlHandle {}
352
353mod internal {
354 use super::*;
355}