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_componentmanager_stresstests_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ChildRealmMarker;
16
17impl fidl::endpoints::ProtocolMarker for ChildRealmMarker {
18 type Proxy = ChildRealmProxy;
19 type RequestStream = ChildRealmRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ChildRealmSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "test.componentmanager.stresstests.ChildRealm";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ChildRealmMarker {}
26
27pub trait ChildRealmProxyInterface: Send + Sync {
28 fn r#stop(&self) -> Result<(), fidl::Error>;
29 type StopChildrenResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
30 fn r#stop_children(&self) -> Self::StopChildrenResponseFut;
31 type CreateChildrenResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
32 fn r#create_children(
33 &self,
34 direct_children: u16,
35 tree_height: u16,
36 ) -> Self::CreateChildrenResponseFut;
37}
38#[derive(Debug)]
39#[cfg(target_os = "fuchsia")]
40pub struct ChildRealmSynchronousProxy {
41 client: fidl::client::sync::Client,
42}
43
44#[cfg(target_os = "fuchsia")]
45impl fidl::endpoints::SynchronousProxy for ChildRealmSynchronousProxy {
46 type Proxy = ChildRealmProxy;
47 type Protocol = ChildRealmMarker;
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 ChildRealmSynchronousProxy {
64 pub fn new(channel: fidl::Channel) -> Self {
65 let protocol_name = <ChildRealmMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
66 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
67 }
68
69 pub fn into_channel(self) -> fidl::Channel {
70 self.client.into_channel()
71 }
72
73 pub fn wait_for_event(
76 &self,
77 deadline: zx::MonotonicInstant,
78 ) -> Result<ChildRealmEvent, fidl::Error> {
79 ChildRealmEvent::decode(self.client.wait_for_event(deadline)?)
80 }
81
82 pub fn r#stop(&self) -> Result<(), fidl::Error> {
84 self.client.send::<fidl::encoding::EmptyPayload>(
85 (),
86 0x36c34aa66f2a56ab,
87 fidl::encoding::DynamicFlags::empty(),
88 )
89 }
90
91 pub fn r#stop_children(&self, ___deadline: zx::MonotonicInstant) -> Result<(), fidl::Error> {
92 let _response =
93 self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
94 (),
95 0x61c8762c3aa05df7,
96 fidl::encoding::DynamicFlags::empty(),
97 ___deadline,
98 )?;
99 Ok(_response)
100 }
101
102 pub fn r#create_children(
107 &self,
108 mut direct_children: u16,
109 mut tree_height: u16,
110 ___deadline: zx::MonotonicInstant,
111 ) -> Result<(), fidl::Error> {
112 let _response = self
113 .client
114 .send_query::<ChildRealmCreateChildrenRequest, fidl::encoding::EmptyPayload>(
115 (direct_children, tree_height),
116 0x37a93e012377095c,
117 fidl::encoding::DynamicFlags::empty(),
118 ___deadline,
119 )?;
120 Ok(_response)
121 }
122}
123
124#[cfg(target_os = "fuchsia")]
125impl From<ChildRealmSynchronousProxy> for zx::Handle {
126 fn from(value: ChildRealmSynchronousProxy) -> Self {
127 value.into_channel().into()
128 }
129}
130
131#[cfg(target_os = "fuchsia")]
132impl From<fidl::Channel> for ChildRealmSynchronousProxy {
133 fn from(value: fidl::Channel) -> Self {
134 Self::new(value)
135 }
136}
137
138#[derive(Debug, Clone)]
139pub struct ChildRealmProxy {
140 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
141}
142
143impl fidl::endpoints::Proxy for ChildRealmProxy {
144 type Protocol = ChildRealmMarker;
145
146 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
147 Self::new(inner)
148 }
149
150 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
151 self.client.into_channel().map_err(|client| Self { client })
152 }
153
154 fn as_channel(&self) -> &::fidl::AsyncChannel {
155 self.client.as_channel()
156 }
157}
158
159impl ChildRealmProxy {
160 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
162 let protocol_name = <ChildRealmMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
163 Self { client: fidl::client::Client::new(channel, protocol_name) }
164 }
165
166 pub fn take_event_stream(&self) -> ChildRealmEventStream {
172 ChildRealmEventStream { event_receiver: self.client.take_event_receiver() }
173 }
174
175 pub fn r#stop(&self) -> Result<(), fidl::Error> {
177 ChildRealmProxyInterface::r#stop(self)
178 }
179
180 pub fn r#stop_children(
181 &self,
182 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
183 ChildRealmProxyInterface::r#stop_children(self)
184 }
185
186 pub fn r#create_children(
191 &self,
192 mut direct_children: u16,
193 mut tree_height: u16,
194 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
195 ChildRealmProxyInterface::r#create_children(self, direct_children, tree_height)
196 }
197}
198
199impl ChildRealmProxyInterface for ChildRealmProxy {
200 fn r#stop(&self) -> Result<(), fidl::Error> {
201 self.client.send::<fidl::encoding::EmptyPayload>(
202 (),
203 0x36c34aa66f2a56ab,
204 fidl::encoding::DynamicFlags::empty(),
205 )
206 }
207
208 type StopChildrenResponseFut =
209 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
210 fn r#stop_children(&self) -> Self::StopChildrenResponseFut {
211 fn _decode(
212 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
213 ) -> Result<(), fidl::Error> {
214 let _response = fidl::client::decode_transaction_body::<
215 fidl::encoding::EmptyPayload,
216 fidl::encoding::DefaultFuchsiaResourceDialect,
217 0x61c8762c3aa05df7,
218 >(_buf?)?;
219 Ok(_response)
220 }
221 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
222 (),
223 0x61c8762c3aa05df7,
224 fidl::encoding::DynamicFlags::empty(),
225 _decode,
226 )
227 }
228
229 type CreateChildrenResponseFut =
230 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
231 fn r#create_children(
232 &self,
233 mut direct_children: u16,
234 mut tree_height: u16,
235 ) -> Self::CreateChildrenResponseFut {
236 fn _decode(
237 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
238 ) -> Result<(), fidl::Error> {
239 let _response = fidl::client::decode_transaction_body::<
240 fidl::encoding::EmptyPayload,
241 fidl::encoding::DefaultFuchsiaResourceDialect,
242 0x37a93e012377095c,
243 >(_buf?)?;
244 Ok(_response)
245 }
246 self.client.send_query_and_decode::<ChildRealmCreateChildrenRequest, ()>(
247 (direct_children, tree_height),
248 0x37a93e012377095c,
249 fidl::encoding::DynamicFlags::empty(),
250 _decode,
251 )
252 }
253}
254
255pub struct ChildRealmEventStream {
256 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
257}
258
259impl std::marker::Unpin for ChildRealmEventStream {}
260
261impl futures::stream::FusedStream for ChildRealmEventStream {
262 fn is_terminated(&self) -> bool {
263 self.event_receiver.is_terminated()
264 }
265}
266
267impl futures::Stream for ChildRealmEventStream {
268 type Item = Result<ChildRealmEvent, fidl::Error>;
269
270 fn poll_next(
271 mut self: std::pin::Pin<&mut Self>,
272 cx: &mut std::task::Context<'_>,
273 ) -> std::task::Poll<Option<Self::Item>> {
274 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
275 &mut self.event_receiver,
276 cx
277 )?) {
278 Some(buf) => std::task::Poll::Ready(Some(ChildRealmEvent::decode(buf))),
279 None => std::task::Poll::Ready(None),
280 }
281 }
282}
283
284#[derive(Debug)]
285pub enum ChildRealmEvent {
286 OnConnected {},
287}
288
289impl ChildRealmEvent {
290 #[allow(irrefutable_let_patterns)]
291 pub fn into_on_connected(self) -> Option<()> {
292 if let ChildRealmEvent::OnConnected {} = self {
293 Some(())
294 } else {
295 None
296 }
297 }
298
299 fn decode(
301 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
302 ) -> Result<ChildRealmEvent, fidl::Error> {
303 let (bytes, _handles) = buf.split_mut();
304 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
305 debug_assert_eq!(tx_header.tx_id, 0);
306 match tx_header.ordinal {
307 0x68a2f3384c114a61 => {
308 let mut out = fidl::new_empty!(
309 fidl::encoding::EmptyPayload,
310 fidl::encoding::DefaultFuchsiaResourceDialect
311 );
312 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&tx_header, _body_bytes, _handles, &mut out)?;
313 Ok((ChildRealmEvent::OnConnected {}))
314 }
315 _ => Err(fidl::Error::UnknownOrdinal {
316 ordinal: tx_header.ordinal,
317 protocol_name: <ChildRealmMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
318 }),
319 }
320 }
321}
322
323pub struct ChildRealmRequestStream {
325 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
326 is_terminated: bool,
327}
328
329impl std::marker::Unpin for ChildRealmRequestStream {}
330
331impl futures::stream::FusedStream for ChildRealmRequestStream {
332 fn is_terminated(&self) -> bool {
333 self.is_terminated
334 }
335}
336
337impl fidl::endpoints::RequestStream for ChildRealmRequestStream {
338 type Protocol = ChildRealmMarker;
339 type ControlHandle = ChildRealmControlHandle;
340
341 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
342 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
343 }
344
345 fn control_handle(&self) -> Self::ControlHandle {
346 ChildRealmControlHandle { inner: self.inner.clone() }
347 }
348
349 fn into_inner(
350 self,
351 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
352 {
353 (self.inner, self.is_terminated)
354 }
355
356 fn from_inner(
357 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
358 is_terminated: bool,
359 ) -> Self {
360 Self { inner, is_terminated }
361 }
362}
363
364impl futures::Stream for ChildRealmRequestStream {
365 type Item = Result<ChildRealmRequest, fidl::Error>;
366
367 fn poll_next(
368 mut self: std::pin::Pin<&mut Self>,
369 cx: &mut std::task::Context<'_>,
370 ) -> std::task::Poll<Option<Self::Item>> {
371 let this = &mut *self;
372 if this.inner.check_shutdown(cx) {
373 this.is_terminated = true;
374 return std::task::Poll::Ready(None);
375 }
376 if this.is_terminated {
377 panic!("polled ChildRealmRequestStream after completion");
378 }
379 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
380 |bytes, handles| {
381 match this.inner.channel().read_etc(cx, bytes, handles) {
382 std::task::Poll::Ready(Ok(())) => {}
383 std::task::Poll::Pending => return std::task::Poll::Pending,
384 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
385 this.is_terminated = true;
386 return std::task::Poll::Ready(None);
387 }
388 std::task::Poll::Ready(Err(e)) => {
389 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
390 e.into(),
391 ))))
392 }
393 }
394
395 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
397
398 std::task::Poll::Ready(Some(match header.ordinal {
399 0x36c34aa66f2a56ab => {
400 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
401 let mut req = fidl::new_empty!(
402 fidl::encoding::EmptyPayload,
403 fidl::encoding::DefaultFuchsiaResourceDialect
404 );
405 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
406 let control_handle = ChildRealmControlHandle { inner: this.inner.clone() };
407 Ok(ChildRealmRequest::Stop { control_handle })
408 }
409 0x61c8762c3aa05df7 => {
410 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
411 let mut req = fidl::new_empty!(
412 fidl::encoding::EmptyPayload,
413 fidl::encoding::DefaultFuchsiaResourceDialect
414 );
415 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
416 let control_handle = ChildRealmControlHandle { inner: this.inner.clone() };
417 Ok(ChildRealmRequest::StopChildren {
418 responder: ChildRealmStopChildrenResponder {
419 control_handle: std::mem::ManuallyDrop::new(control_handle),
420 tx_id: header.tx_id,
421 },
422 })
423 }
424 0x37a93e012377095c => {
425 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
426 let mut req = fidl::new_empty!(
427 ChildRealmCreateChildrenRequest,
428 fidl::encoding::DefaultFuchsiaResourceDialect
429 );
430 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ChildRealmCreateChildrenRequest>(&header, _body_bytes, handles, &mut req)?;
431 let control_handle = ChildRealmControlHandle { inner: this.inner.clone() };
432 Ok(ChildRealmRequest::CreateChildren {
433 direct_children: req.direct_children,
434 tree_height: req.tree_height,
435
436 responder: ChildRealmCreateChildrenResponder {
437 control_handle: std::mem::ManuallyDrop::new(control_handle),
438 tx_id: header.tx_id,
439 },
440 })
441 }
442 _ => Err(fidl::Error::UnknownOrdinal {
443 ordinal: header.ordinal,
444 protocol_name:
445 <ChildRealmMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
446 }),
447 }))
448 },
449 )
450 }
451}
452
453#[derive(Debug)]
455pub enum ChildRealmRequest {
456 Stop {
458 control_handle: ChildRealmControlHandle,
459 },
460 StopChildren {
461 responder: ChildRealmStopChildrenResponder,
462 },
463 CreateChildren {
468 direct_children: u16,
469 tree_height: u16,
470 responder: ChildRealmCreateChildrenResponder,
471 },
472}
473
474impl ChildRealmRequest {
475 #[allow(irrefutable_let_patterns)]
476 pub fn into_stop(self) -> Option<(ChildRealmControlHandle)> {
477 if let ChildRealmRequest::Stop { control_handle } = self {
478 Some((control_handle))
479 } else {
480 None
481 }
482 }
483
484 #[allow(irrefutable_let_patterns)]
485 pub fn into_stop_children(self) -> Option<(ChildRealmStopChildrenResponder)> {
486 if let ChildRealmRequest::StopChildren { responder } = self {
487 Some((responder))
488 } else {
489 None
490 }
491 }
492
493 #[allow(irrefutable_let_patterns)]
494 pub fn into_create_children(self) -> Option<(u16, u16, ChildRealmCreateChildrenResponder)> {
495 if let ChildRealmRequest::CreateChildren { direct_children, tree_height, responder } = self
496 {
497 Some((direct_children, tree_height, responder))
498 } else {
499 None
500 }
501 }
502
503 pub fn method_name(&self) -> &'static str {
505 match *self {
506 ChildRealmRequest::Stop { .. } => "stop",
507 ChildRealmRequest::StopChildren { .. } => "stop_children",
508 ChildRealmRequest::CreateChildren { .. } => "create_children",
509 }
510 }
511}
512
513#[derive(Debug, Clone)]
514pub struct ChildRealmControlHandle {
515 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
516}
517
518impl fidl::endpoints::ControlHandle for ChildRealmControlHandle {
519 fn shutdown(&self) {
520 self.inner.shutdown()
521 }
522 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
523 self.inner.shutdown_with_epitaph(status)
524 }
525
526 fn is_closed(&self) -> bool {
527 self.inner.channel().is_closed()
528 }
529 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
530 self.inner.channel().on_closed()
531 }
532
533 #[cfg(target_os = "fuchsia")]
534 fn signal_peer(
535 &self,
536 clear_mask: zx::Signals,
537 set_mask: zx::Signals,
538 ) -> Result<(), zx_status::Status> {
539 use fidl::Peered;
540 self.inner.channel().signal_peer(clear_mask, set_mask)
541 }
542}
543
544impl ChildRealmControlHandle {
545 pub fn send_on_connected(&self) -> Result<(), fidl::Error> {
546 self.inner.send::<fidl::encoding::EmptyPayload>(
547 (),
548 0,
549 0x68a2f3384c114a61,
550 fidl::encoding::DynamicFlags::empty(),
551 )
552 }
553}
554
555#[must_use = "FIDL methods require a response to be sent"]
556#[derive(Debug)]
557pub struct ChildRealmStopChildrenResponder {
558 control_handle: std::mem::ManuallyDrop<ChildRealmControlHandle>,
559 tx_id: u32,
560}
561
562impl std::ops::Drop for ChildRealmStopChildrenResponder {
566 fn drop(&mut self) {
567 self.control_handle.shutdown();
568 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
570 }
571}
572
573impl fidl::endpoints::Responder for ChildRealmStopChildrenResponder {
574 type ControlHandle = ChildRealmControlHandle;
575
576 fn control_handle(&self) -> &ChildRealmControlHandle {
577 &self.control_handle
578 }
579
580 fn drop_without_shutdown(mut self) {
581 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
583 std::mem::forget(self);
585 }
586}
587
588impl ChildRealmStopChildrenResponder {
589 pub fn send(self) -> Result<(), fidl::Error> {
593 let _result = self.send_raw();
594 if _result.is_err() {
595 self.control_handle.shutdown();
596 }
597 self.drop_without_shutdown();
598 _result
599 }
600
601 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
603 let _result = self.send_raw();
604 self.drop_without_shutdown();
605 _result
606 }
607
608 fn send_raw(&self) -> Result<(), fidl::Error> {
609 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
610 (),
611 self.tx_id,
612 0x61c8762c3aa05df7,
613 fidl::encoding::DynamicFlags::empty(),
614 )
615 }
616}
617
618#[must_use = "FIDL methods require a response to be sent"]
619#[derive(Debug)]
620pub struct ChildRealmCreateChildrenResponder {
621 control_handle: std::mem::ManuallyDrop<ChildRealmControlHandle>,
622 tx_id: u32,
623}
624
625impl std::ops::Drop for ChildRealmCreateChildrenResponder {
629 fn drop(&mut self) {
630 self.control_handle.shutdown();
631 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
633 }
634}
635
636impl fidl::endpoints::Responder for ChildRealmCreateChildrenResponder {
637 type ControlHandle = ChildRealmControlHandle;
638
639 fn control_handle(&self) -> &ChildRealmControlHandle {
640 &self.control_handle
641 }
642
643 fn drop_without_shutdown(mut self) {
644 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
646 std::mem::forget(self);
648 }
649}
650
651impl ChildRealmCreateChildrenResponder {
652 pub fn send(self) -> Result<(), fidl::Error> {
656 let _result = self.send_raw();
657 if _result.is_err() {
658 self.control_handle.shutdown();
659 }
660 self.drop_without_shutdown();
661 _result
662 }
663
664 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
666 let _result = self.send_raw();
667 self.drop_without_shutdown();
668 _result
669 }
670
671 fn send_raw(&self) -> Result<(), fidl::Error> {
672 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
673 (),
674 self.tx_id,
675 0x37a93e012377095c,
676 fidl::encoding::DynamicFlags::empty(),
677 )
678 }
679}
680
681mod internal {
682 use super::*;
683}