fidl_fuchsia_component_tests/
fidl_fuchsia_component_tests.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_component_tests_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ShutdownerMarker;
16
17impl fidl::endpoints::ProtocolMarker for ShutdownerMarker {
18 type Proxy = ShutdownerProxy;
19 type RequestStream = ShutdownerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ShutdownerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.component.tests.Shutdowner";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ShutdownerMarker {}
26
27pub trait ShutdownerProxyInterface: Send + Sync {
28 fn r#shutdown(&self) -> Result<(), fidl::Error>;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct ShutdownerSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for ShutdownerSynchronousProxy {
38 type Proxy = ShutdownerProxy;
39 type Protocol = ShutdownerMarker;
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 ShutdownerSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <ShutdownerMarker 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<ShutdownerEvent, fidl::Error> {
71 ShutdownerEvent::decode(self.client.wait_for_event(deadline)?)
72 }
73
74 pub fn r#shutdown(&self) -> Result<(), fidl::Error> {
75 self.client.send::<fidl::encoding::EmptyPayload>(
76 (),
77 0x4da8a4e818bef187,
78 fidl::encoding::DynamicFlags::empty(),
79 )
80 }
81}
82
83#[cfg(target_os = "fuchsia")]
84impl From<ShutdownerSynchronousProxy> for zx::Handle {
85 fn from(value: ShutdownerSynchronousProxy) -> Self {
86 value.into_channel().into()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl From<fidl::Channel> for ShutdownerSynchronousProxy {
92 fn from(value: fidl::Channel) -> Self {
93 Self::new(value)
94 }
95}
96
97#[derive(Debug, Clone)]
98pub struct ShutdownerProxy {
99 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
100}
101
102impl fidl::endpoints::Proxy for ShutdownerProxy {
103 type Protocol = ShutdownerMarker;
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 ShutdownerProxy {
119 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
121 let protocol_name = <ShutdownerMarker 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) -> ShutdownerEventStream {
131 ShutdownerEventStream { event_receiver: self.client.take_event_receiver() }
132 }
133
134 pub fn r#shutdown(&self) -> Result<(), fidl::Error> {
135 ShutdownerProxyInterface::r#shutdown(self)
136 }
137}
138
139impl ShutdownerProxyInterface for ShutdownerProxy {
140 fn r#shutdown(&self) -> Result<(), fidl::Error> {
141 self.client.send::<fidl::encoding::EmptyPayload>(
142 (),
143 0x4da8a4e818bef187,
144 fidl::encoding::DynamicFlags::empty(),
145 )
146 }
147}
148
149pub struct ShutdownerEventStream {
150 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
151}
152
153impl std::marker::Unpin for ShutdownerEventStream {}
154
155impl futures::stream::FusedStream for ShutdownerEventStream {
156 fn is_terminated(&self) -> bool {
157 self.event_receiver.is_terminated()
158 }
159}
160
161impl futures::Stream for ShutdownerEventStream {
162 type Item = Result<ShutdownerEvent, 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(ShutdownerEvent::decode(buf))),
173 None => std::task::Poll::Ready(None),
174 }
175 }
176}
177
178#[derive(Debug)]
179pub enum ShutdownerEvent {}
180
181impl ShutdownerEvent {
182 fn decode(
184 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
185 ) -> Result<ShutdownerEvent, 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: <ShutdownerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
193 }),
194 }
195 }
196}
197
198pub struct ShutdownerRequestStream {
200 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
201 is_terminated: bool,
202}
203
204impl std::marker::Unpin for ShutdownerRequestStream {}
205
206impl futures::stream::FusedStream for ShutdownerRequestStream {
207 fn is_terminated(&self) -> bool {
208 self.is_terminated
209 }
210}
211
212impl fidl::endpoints::RequestStream for ShutdownerRequestStream {
213 type Protocol = ShutdownerMarker;
214 type ControlHandle = ShutdownerControlHandle;
215
216 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
217 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
218 }
219
220 fn control_handle(&self) -> Self::ControlHandle {
221 ShutdownerControlHandle { inner: self.inner.clone() }
222 }
223
224 fn into_inner(
225 self,
226 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
227 {
228 (self.inner, self.is_terminated)
229 }
230
231 fn from_inner(
232 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
233 is_terminated: bool,
234 ) -> Self {
235 Self { inner, is_terminated }
236 }
237}
238
239impl futures::Stream for ShutdownerRequestStream {
240 type Item = Result<ShutdownerRequest, fidl::Error>;
241
242 fn poll_next(
243 mut self: std::pin::Pin<&mut Self>,
244 cx: &mut std::task::Context<'_>,
245 ) -> std::task::Poll<Option<Self::Item>> {
246 let this = &mut *self;
247 if this.inner.check_shutdown(cx) {
248 this.is_terminated = true;
249 return std::task::Poll::Ready(None);
250 }
251 if this.is_terminated {
252 panic!("polled ShutdownerRequestStream after completion");
253 }
254 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
255 |bytes, handles| {
256 match this.inner.channel().read_etc(cx, bytes, handles) {
257 std::task::Poll::Ready(Ok(())) => {}
258 std::task::Poll::Pending => return std::task::Poll::Pending,
259 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
260 this.is_terminated = true;
261 return std::task::Poll::Ready(None);
262 }
263 std::task::Poll::Ready(Err(e)) => {
264 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
265 e.into(),
266 ))))
267 }
268 }
269
270 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
272
273 std::task::Poll::Ready(Some(match header.ordinal {
274 0x4da8a4e818bef187 => {
275 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
276 let mut req = fidl::new_empty!(
277 fidl::encoding::EmptyPayload,
278 fidl::encoding::DefaultFuchsiaResourceDialect
279 );
280 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
281 let control_handle = ShutdownerControlHandle { inner: this.inner.clone() };
282 Ok(ShutdownerRequest::Shutdown { control_handle })
283 }
284 _ => Err(fidl::Error::UnknownOrdinal {
285 ordinal: header.ordinal,
286 protocol_name:
287 <ShutdownerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
288 }),
289 }))
290 },
291 )
292 }
293}
294
295#[derive(Debug)]
297pub enum ShutdownerRequest {
298 Shutdown { control_handle: ShutdownerControlHandle },
299}
300
301impl ShutdownerRequest {
302 #[allow(irrefutable_let_patterns)]
303 pub fn into_shutdown(self) -> Option<(ShutdownerControlHandle)> {
304 if let ShutdownerRequest::Shutdown { control_handle } = self {
305 Some((control_handle))
306 } else {
307 None
308 }
309 }
310
311 pub fn method_name(&self) -> &'static str {
313 match *self {
314 ShutdownerRequest::Shutdown { .. } => "shutdown",
315 }
316 }
317}
318
319#[derive(Debug, Clone)]
320pub struct ShutdownerControlHandle {
321 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
322}
323
324impl fidl::endpoints::ControlHandle for ShutdownerControlHandle {
325 fn shutdown(&self) {
326 self.inner.shutdown()
327 }
328 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
329 self.inner.shutdown_with_epitaph(status)
330 }
331
332 fn is_closed(&self) -> bool {
333 self.inner.channel().is_closed()
334 }
335 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
336 self.inner.channel().on_closed()
337 }
338
339 #[cfg(target_os = "fuchsia")]
340 fn signal_peer(
341 &self,
342 clear_mask: zx::Signals,
343 set_mask: zx::Signals,
344 ) -> Result<(), zx_status::Status> {
345 use fidl::Peered;
346 self.inner.channel().signal_peer(clear_mask, set_mask)
347 }
348}
349
350impl ShutdownerControlHandle {}
351
352mod internal {
353 use super::*;
354}