fidl_componentmanager_test/
fidl_componentmanager_test.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_componentmanager_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct TestOutcomeReportMarker;
16
17impl fidl::endpoints::ProtocolMarker for TestOutcomeReportMarker {
18 type Proxy = TestOutcomeReportProxy;
19 type RequestStream = TestOutcomeReportRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = TestOutcomeReportSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "componentmanager.test.TestOutcomeReport";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for TestOutcomeReportMarker {}
26
27pub trait TestOutcomeReportProxyInterface: Send + Sync {
28 type ReportResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
29 fn r#report(&self, backstop: i64, current_time: i64) -> Self::ReportResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct TestOutcomeReportSynchronousProxy {
34 client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for TestOutcomeReportSynchronousProxy {
39 type Proxy = TestOutcomeReportProxy;
40 type Protocol = TestOutcomeReportMarker;
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 TestOutcomeReportSynchronousProxy {
57 pub fn new(channel: fidl::Channel) -> Self {
58 let protocol_name =
59 <TestOutcomeReportMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
60 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
61 }
62
63 pub fn into_channel(self) -> fidl::Channel {
64 self.client.into_channel()
65 }
66
67 pub fn wait_for_event(
70 &self,
71 deadline: zx::MonotonicInstant,
72 ) -> Result<TestOutcomeReportEvent, fidl::Error> {
73 TestOutcomeReportEvent::decode(self.client.wait_for_event(deadline)?)
74 }
75
76 pub fn r#report(
77 &self,
78 mut backstop: i64,
79 mut current_time: i64,
80 ___deadline: zx::MonotonicInstant,
81 ) -> Result<(), fidl::Error> {
82 let _response = self
83 .client
84 .send_query::<TestOutcomeReportReportRequest, fidl::encoding::EmptyPayload>(
85 (backstop, current_time),
86 0xeab49d3f96e4950,
87 fidl::encoding::DynamicFlags::empty(),
88 ___deadline,
89 )?;
90 Ok(_response)
91 }
92}
93
94#[cfg(target_os = "fuchsia")]
95impl From<TestOutcomeReportSynchronousProxy> for zx::Handle {
96 fn from(value: TestOutcomeReportSynchronousProxy) -> Self {
97 value.into_channel().into()
98 }
99}
100
101#[cfg(target_os = "fuchsia")]
102impl From<fidl::Channel> for TestOutcomeReportSynchronousProxy {
103 fn from(value: fidl::Channel) -> Self {
104 Self::new(value)
105 }
106}
107
108#[derive(Debug, Clone)]
109pub struct TestOutcomeReportProxy {
110 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
111}
112
113impl fidl::endpoints::Proxy for TestOutcomeReportProxy {
114 type Protocol = TestOutcomeReportMarker;
115
116 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
117 Self::new(inner)
118 }
119
120 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
121 self.client.into_channel().map_err(|client| Self { client })
122 }
123
124 fn as_channel(&self) -> &::fidl::AsyncChannel {
125 self.client.as_channel()
126 }
127}
128
129impl TestOutcomeReportProxy {
130 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
132 let protocol_name =
133 <TestOutcomeReportMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
134 Self { client: fidl::client::Client::new(channel, protocol_name) }
135 }
136
137 pub fn take_event_stream(&self) -> TestOutcomeReportEventStream {
143 TestOutcomeReportEventStream { event_receiver: self.client.take_event_receiver() }
144 }
145
146 pub fn r#report(
147 &self,
148 mut backstop: i64,
149 mut current_time: i64,
150 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
151 TestOutcomeReportProxyInterface::r#report(self, backstop, current_time)
152 }
153}
154
155impl TestOutcomeReportProxyInterface for TestOutcomeReportProxy {
156 type ReportResponseFut =
157 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
158 fn r#report(&self, mut backstop: i64, mut current_time: i64) -> Self::ReportResponseFut {
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 0xeab49d3f96e4950,
166 >(_buf?)?;
167 Ok(_response)
168 }
169 self.client.send_query_and_decode::<TestOutcomeReportReportRequest, ()>(
170 (backstop, current_time),
171 0xeab49d3f96e4950,
172 fidl::encoding::DynamicFlags::empty(),
173 _decode,
174 )
175 }
176}
177
178pub struct TestOutcomeReportEventStream {
179 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
180}
181
182impl std::marker::Unpin for TestOutcomeReportEventStream {}
183
184impl futures::stream::FusedStream for TestOutcomeReportEventStream {
185 fn is_terminated(&self) -> bool {
186 self.event_receiver.is_terminated()
187 }
188}
189
190impl futures::Stream for TestOutcomeReportEventStream {
191 type Item = Result<TestOutcomeReportEvent, 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(TestOutcomeReportEvent::decode(buf))),
202 None => std::task::Poll::Ready(None),
203 }
204 }
205}
206
207#[derive(Debug)]
208pub enum TestOutcomeReportEvent {}
209
210impl TestOutcomeReportEvent {
211 fn decode(
213 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
214 ) -> Result<TestOutcomeReportEvent, 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:
222 <TestOutcomeReportMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
223 }),
224 }
225 }
226}
227
228pub struct TestOutcomeReportRequestStream {
230 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
231 is_terminated: bool,
232}
233
234impl std::marker::Unpin for TestOutcomeReportRequestStream {}
235
236impl futures::stream::FusedStream for TestOutcomeReportRequestStream {
237 fn is_terminated(&self) -> bool {
238 self.is_terminated
239 }
240}
241
242impl fidl::endpoints::RequestStream for TestOutcomeReportRequestStream {
243 type Protocol = TestOutcomeReportMarker;
244 type ControlHandle = TestOutcomeReportControlHandle;
245
246 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
247 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
248 }
249
250 fn control_handle(&self) -> Self::ControlHandle {
251 TestOutcomeReportControlHandle { inner: self.inner.clone() }
252 }
253
254 fn into_inner(
255 self,
256 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
257 {
258 (self.inner, self.is_terminated)
259 }
260
261 fn from_inner(
262 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
263 is_terminated: bool,
264 ) -> Self {
265 Self { inner, is_terminated }
266 }
267}
268
269impl futures::Stream for TestOutcomeReportRequestStream {
270 type Item = Result<TestOutcomeReportRequest, fidl::Error>;
271
272 fn poll_next(
273 mut self: std::pin::Pin<&mut Self>,
274 cx: &mut std::task::Context<'_>,
275 ) -> std::task::Poll<Option<Self::Item>> {
276 let this = &mut *self;
277 if this.inner.check_shutdown(cx) {
278 this.is_terminated = true;
279 return std::task::Poll::Ready(None);
280 }
281 if this.is_terminated {
282 panic!("polled TestOutcomeReportRequestStream after completion");
283 }
284 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
285 |bytes, handles| {
286 match this.inner.channel().read_etc(cx, bytes, handles) {
287 std::task::Poll::Ready(Ok(())) => {}
288 std::task::Poll::Pending => return std::task::Poll::Pending,
289 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
290 this.is_terminated = true;
291 return std::task::Poll::Ready(None);
292 }
293 std::task::Poll::Ready(Err(e)) => {
294 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
295 e.into(),
296 ))))
297 }
298 }
299
300 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
302
303 std::task::Poll::Ready(Some(match header.ordinal {
304 0xeab49d3f96e4950 => {
305 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
306 let mut req = fidl::new_empty!(
307 TestOutcomeReportReportRequest,
308 fidl::encoding::DefaultFuchsiaResourceDialect
309 );
310 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TestOutcomeReportReportRequest>(&header, _body_bytes, handles, &mut req)?;
311 let control_handle =
312 TestOutcomeReportControlHandle { inner: this.inner.clone() };
313 Ok(TestOutcomeReportRequest::Report {
314 backstop: req.backstop,
315 current_time: req.current_time,
316
317 responder: TestOutcomeReportReportResponder {
318 control_handle: std::mem::ManuallyDrop::new(control_handle),
319 tx_id: header.tx_id,
320 },
321 })
322 }
323 _ => Err(fidl::Error::UnknownOrdinal {
324 ordinal: header.ordinal,
325 protocol_name:
326 <TestOutcomeReportMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
327 }),
328 }))
329 },
330 )
331 }
332}
333
334#[derive(Debug)]
335pub enum TestOutcomeReportRequest {
336 Report { backstop: i64, current_time: i64, responder: TestOutcomeReportReportResponder },
337}
338
339impl TestOutcomeReportRequest {
340 #[allow(irrefutable_let_patterns)]
341 pub fn into_report(self) -> Option<(i64, i64, TestOutcomeReportReportResponder)> {
342 if let TestOutcomeReportRequest::Report { backstop, current_time, responder } = self {
343 Some((backstop, current_time, responder))
344 } else {
345 None
346 }
347 }
348
349 pub fn method_name(&self) -> &'static str {
351 match *self {
352 TestOutcomeReportRequest::Report { .. } => "report",
353 }
354 }
355}
356
357#[derive(Debug, Clone)]
358pub struct TestOutcomeReportControlHandle {
359 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
360}
361
362impl fidl::endpoints::ControlHandle for TestOutcomeReportControlHandle {
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 TestOutcomeReportControlHandle {}
389
390#[must_use = "FIDL methods require a response to be sent"]
391#[derive(Debug)]
392pub struct TestOutcomeReportReportResponder {
393 control_handle: std::mem::ManuallyDrop<TestOutcomeReportControlHandle>,
394 tx_id: u32,
395}
396
397impl std::ops::Drop for TestOutcomeReportReportResponder {
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 TestOutcomeReportReportResponder {
409 type ControlHandle = TestOutcomeReportControlHandle;
410
411 fn control_handle(&self) -> &TestOutcomeReportControlHandle {
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 TestOutcomeReportReportResponder {
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 0xeab49d3f96e4950,
448 fidl::encoding::DynamicFlags::empty(),
449 )
450 }
451}
452
453mod internal {
454 use super::*;
455}