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