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_pkg_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct RealmFactoryCreateRealmRequest {
16 pub options: RealmOptions,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for RealmFactoryCreateRealmRequest
21{
22}
23
24#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
25pub struct RealmFactoryCreateRealmResponse {
26 pub dictionary: fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
27}
28
29impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
30 for RealmFactoryCreateRealmResponse
31{
32}
33
34#[derive(Debug, Default, PartialEq)]
36pub struct RealmOptions {
37 pub pkg_directory_server: Option<fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>>,
38 #[doc(hidden)]
39 pub __source_breaking: fidl::marker::SourceBreaking,
40}
41
42impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {}
43
44#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
45pub struct RealmFactoryMarker;
46
47impl fidl::endpoints::ProtocolMarker for RealmFactoryMarker {
48 type Proxy = RealmFactoryProxy;
49 type RequestStream = RealmFactoryRequestStream;
50 #[cfg(target_os = "fuchsia")]
51 type SynchronousProxy = RealmFactorySynchronousProxy;
52
53 const DEBUG_NAME: &'static str = "fuchsia.pkg.test.RealmFactory";
54}
55impl fidl::endpoints::DiscoverableProtocolMarker for RealmFactoryMarker {}
56pub type RealmFactoryCreateRealmResult = Result<
57 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
58 fidl_fuchsia_testing_harness::OperationError,
59>;
60
61pub trait RealmFactoryProxyInterface: Send + Sync {
62 type CreateRealmResponseFut: std::future::Future<Output = Result<RealmFactoryCreateRealmResult, fidl::Error>>
63 + Send;
64 fn r#create_realm(&self, options: RealmOptions) -> Self::CreateRealmResponseFut;
65}
66#[derive(Debug)]
67#[cfg(target_os = "fuchsia")]
68pub struct RealmFactorySynchronousProxy {
69 client: fidl::client::sync::Client,
70}
71
72#[cfg(target_os = "fuchsia")]
73impl fidl::endpoints::SynchronousProxy for RealmFactorySynchronousProxy {
74 type Proxy = RealmFactoryProxy;
75 type Protocol = RealmFactoryMarker;
76
77 fn from_channel(inner: fidl::Channel) -> Self {
78 Self::new(inner)
79 }
80
81 fn into_channel(self) -> fidl::Channel {
82 self.client.into_channel()
83 }
84
85 fn as_channel(&self) -> &fidl::Channel {
86 self.client.as_channel()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl RealmFactorySynchronousProxy {
92 pub fn new(channel: fidl::Channel) -> Self {
93 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
94 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
95 }
96
97 pub fn into_channel(self) -> fidl::Channel {
98 self.client.into_channel()
99 }
100
101 pub fn wait_for_event(
104 &self,
105 deadline: zx::MonotonicInstant,
106 ) -> Result<RealmFactoryEvent, fidl::Error> {
107 RealmFactoryEvent::decode(self.client.wait_for_event(deadline)?)
108 }
109
110 pub fn r#create_realm(
112 &self,
113 mut options: RealmOptions,
114 ___deadline: zx::MonotonicInstant,
115 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
116 let _response = self
117 .client
118 .send_query::<RealmFactoryCreateRealmRequest, fidl::encoding::FlexibleResultType<
119 RealmFactoryCreateRealmResponse,
120 fidl_fuchsia_testing_harness::OperationError,
121 >>(
122 (&mut options,),
123 0x29ee78b460437125,
124 fidl::encoding::DynamicFlags::FLEXIBLE,
125 ___deadline,
126 )?
127 .into_result::<RealmFactoryMarker>("create_realm")?;
128 Ok(_response.map(|x| x.dictionary))
129 }
130}
131
132#[cfg(target_os = "fuchsia")]
133impl From<RealmFactorySynchronousProxy> for zx::Handle {
134 fn from(value: RealmFactorySynchronousProxy) -> Self {
135 value.into_channel().into()
136 }
137}
138
139#[cfg(target_os = "fuchsia")]
140impl From<fidl::Channel> for RealmFactorySynchronousProxy {
141 fn from(value: fidl::Channel) -> Self {
142 Self::new(value)
143 }
144}
145
146#[derive(Debug, Clone)]
147pub struct RealmFactoryProxy {
148 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
149}
150
151impl fidl::endpoints::Proxy for RealmFactoryProxy {
152 type Protocol = RealmFactoryMarker;
153
154 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
155 Self::new(inner)
156 }
157
158 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
159 self.client.into_channel().map_err(|client| Self { client })
160 }
161
162 fn as_channel(&self) -> &::fidl::AsyncChannel {
163 self.client.as_channel()
164 }
165}
166
167impl RealmFactoryProxy {
168 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
170 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
171 Self { client: fidl::client::Client::new(channel, protocol_name) }
172 }
173
174 pub fn take_event_stream(&self) -> RealmFactoryEventStream {
180 RealmFactoryEventStream { event_receiver: self.client.take_event_receiver() }
181 }
182
183 pub fn r#create_realm(
185 &self,
186 mut options: RealmOptions,
187 ) -> fidl::client::QueryResponseFut<
188 RealmFactoryCreateRealmResult,
189 fidl::encoding::DefaultFuchsiaResourceDialect,
190 > {
191 RealmFactoryProxyInterface::r#create_realm(self, options)
192 }
193}
194
195impl RealmFactoryProxyInterface for RealmFactoryProxy {
196 type CreateRealmResponseFut = fidl::client::QueryResponseFut<
197 RealmFactoryCreateRealmResult,
198 fidl::encoding::DefaultFuchsiaResourceDialect,
199 >;
200 fn r#create_realm(&self, mut options: RealmOptions) -> Self::CreateRealmResponseFut {
201 fn _decode(
202 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
203 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
204 let _response = fidl::client::decode_transaction_body::<
205 fidl::encoding::FlexibleResultType<
206 RealmFactoryCreateRealmResponse,
207 fidl_fuchsia_testing_harness::OperationError,
208 >,
209 fidl::encoding::DefaultFuchsiaResourceDialect,
210 0x29ee78b460437125,
211 >(_buf?)?
212 .into_result::<RealmFactoryMarker>("create_realm")?;
213 Ok(_response.map(|x| x.dictionary))
214 }
215 self.client
216 .send_query_and_decode::<RealmFactoryCreateRealmRequest, RealmFactoryCreateRealmResult>(
217 (&mut options,),
218 0x29ee78b460437125,
219 fidl::encoding::DynamicFlags::FLEXIBLE,
220 _decode,
221 )
222 }
223}
224
225pub struct RealmFactoryEventStream {
226 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
227}
228
229impl std::marker::Unpin for RealmFactoryEventStream {}
230
231impl futures::stream::FusedStream for RealmFactoryEventStream {
232 fn is_terminated(&self) -> bool {
233 self.event_receiver.is_terminated()
234 }
235}
236
237impl futures::Stream for RealmFactoryEventStream {
238 type Item = Result<RealmFactoryEvent, fidl::Error>;
239
240 fn poll_next(
241 mut self: std::pin::Pin<&mut Self>,
242 cx: &mut std::task::Context<'_>,
243 ) -> std::task::Poll<Option<Self::Item>> {
244 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
245 &mut self.event_receiver,
246 cx
247 )?) {
248 Some(buf) => std::task::Poll::Ready(Some(RealmFactoryEvent::decode(buf))),
249 None => std::task::Poll::Ready(None),
250 }
251 }
252}
253
254#[derive(Debug)]
255pub enum RealmFactoryEvent {
256 #[non_exhaustive]
257 _UnknownEvent {
258 ordinal: u64,
260 },
261}
262
263impl RealmFactoryEvent {
264 fn decode(
266 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
267 ) -> Result<RealmFactoryEvent, fidl::Error> {
268 let (bytes, _handles) = buf.split_mut();
269 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
270 debug_assert_eq!(tx_header.tx_id, 0);
271 match tx_header.ordinal {
272 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
273 Ok(RealmFactoryEvent::_UnknownEvent { ordinal: tx_header.ordinal })
274 }
275 _ => Err(fidl::Error::UnknownOrdinal {
276 ordinal: tx_header.ordinal,
277 protocol_name: <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
278 }),
279 }
280 }
281}
282
283pub struct RealmFactoryRequestStream {
285 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
286 is_terminated: bool,
287}
288
289impl std::marker::Unpin for RealmFactoryRequestStream {}
290
291impl futures::stream::FusedStream for RealmFactoryRequestStream {
292 fn is_terminated(&self) -> bool {
293 self.is_terminated
294 }
295}
296
297impl fidl::endpoints::RequestStream for RealmFactoryRequestStream {
298 type Protocol = RealmFactoryMarker;
299 type ControlHandle = RealmFactoryControlHandle;
300
301 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
302 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
303 }
304
305 fn control_handle(&self) -> Self::ControlHandle {
306 RealmFactoryControlHandle { inner: self.inner.clone() }
307 }
308
309 fn into_inner(
310 self,
311 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
312 {
313 (self.inner, self.is_terminated)
314 }
315
316 fn from_inner(
317 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
318 is_terminated: bool,
319 ) -> Self {
320 Self { inner, is_terminated }
321 }
322}
323
324impl futures::Stream for RealmFactoryRequestStream {
325 type Item = Result<RealmFactoryRequest, fidl::Error>;
326
327 fn poll_next(
328 mut self: std::pin::Pin<&mut Self>,
329 cx: &mut std::task::Context<'_>,
330 ) -> std::task::Poll<Option<Self::Item>> {
331 let this = &mut *self;
332 if this.inner.check_shutdown(cx) {
333 this.is_terminated = true;
334 return std::task::Poll::Ready(None);
335 }
336 if this.is_terminated {
337 panic!("polled RealmFactoryRequestStream after completion");
338 }
339 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
340 |bytes, handles| {
341 match this.inner.channel().read_etc(cx, bytes, handles) {
342 std::task::Poll::Ready(Ok(())) => {}
343 std::task::Poll::Pending => return std::task::Poll::Pending,
344 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
345 this.is_terminated = true;
346 return std::task::Poll::Ready(None);
347 }
348 std::task::Poll::Ready(Err(e)) => {
349 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
350 e.into(),
351 ))))
352 }
353 }
354
355 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
357
358 std::task::Poll::Ready(Some(match header.ordinal {
359 0x29ee78b460437125 => {
360 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
361 let mut req = fidl::new_empty!(
362 RealmFactoryCreateRealmRequest,
363 fidl::encoding::DefaultFuchsiaResourceDialect
364 );
365 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RealmFactoryCreateRealmRequest>(&header, _body_bytes, handles, &mut req)?;
366 let control_handle =
367 RealmFactoryControlHandle { inner: this.inner.clone() };
368 Ok(RealmFactoryRequest::CreateRealm {
369 options: req.options,
370
371 responder: RealmFactoryCreateRealmResponder {
372 control_handle: std::mem::ManuallyDrop::new(control_handle),
373 tx_id: header.tx_id,
374 },
375 })
376 }
377 _ if header.tx_id == 0
378 && header
379 .dynamic_flags()
380 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
381 {
382 Ok(RealmFactoryRequest::_UnknownMethod {
383 ordinal: header.ordinal,
384 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
385 method_type: fidl::MethodType::OneWay,
386 })
387 }
388 _ if header
389 .dynamic_flags()
390 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
391 {
392 this.inner.send_framework_err(
393 fidl::encoding::FrameworkErr::UnknownMethod,
394 header.tx_id,
395 header.ordinal,
396 header.dynamic_flags(),
397 (bytes, handles),
398 )?;
399 Ok(RealmFactoryRequest::_UnknownMethod {
400 ordinal: header.ordinal,
401 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
402 method_type: fidl::MethodType::TwoWay,
403 })
404 }
405 _ => Err(fidl::Error::UnknownOrdinal {
406 ordinal: header.ordinal,
407 protocol_name:
408 <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
409 }),
410 }))
411 },
412 )
413 }
414}
415
416#[derive(Debug)]
417pub enum RealmFactoryRequest {
418 CreateRealm { options: RealmOptions, responder: RealmFactoryCreateRealmResponder },
420 #[non_exhaustive]
422 _UnknownMethod {
423 ordinal: u64,
425 control_handle: RealmFactoryControlHandle,
426 method_type: fidl::MethodType,
427 },
428}
429
430impl RealmFactoryRequest {
431 #[allow(irrefutable_let_patterns)]
432 pub fn into_create_realm(self) -> Option<(RealmOptions, RealmFactoryCreateRealmResponder)> {
433 if let RealmFactoryRequest::CreateRealm { options, responder } = self {
434 Some((options, responder))
435 } else {
436 None
437 }
438 }
439
440 pub fn method_name(&self) -> &'static str {
442 match *self {
443 RealmFactoryRequest::CreateRealm { .. } => "create_realm",
444 RealmFactoryRequest::_UnknownMethod {
445 method_type: fidl::MethodType::OneWay, ..
446 } => "unknown one-way method",
447 RealmFactoryRequest::_UnknownMethod {
448 method_type: fidl::MethodType::TwoWay, ..
449 } => "unknown two-way method",
450 }
451 }
452}
453
454#[derive(Debug, Clone)]
455pub struct RealmFactoryControlHandle {
456 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
457}
458
459impl fidl::endpoints::ControlHandle for RealmFactoryControlHandle {
460 fn shutdown(&self) {
461 self.inner.shutdown()
462 }
463 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
464 self.inner.shutdown_with_epitaph(status)
465 }
466
467 fn is_closed(&self) -> bool {
468 self.inner.channel().is_closed()
469 }
470 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
471 self.inner.channel().on_closed()
472 }
473
474 #[cfg(target_os = "fuchsia")]
475 fn signal_peer(
476 &self,
477 clear_mask: zx::Signals,
478 set_mask: zx::Signals,
479 ) -> Result<(), zx_status::Status> {
480 use fidl::Peered;
481 self.inner.channel().signal_peer(clear_mask, set_mask)
482 }
483}
484
485impl RealmFactoryControlHandle {}
486
487#[must_use = "FIDL methods require a response to be sent"]
488#[derive(Debug)]
489pub struct RealmFactoryCreateRealmResponder {
490 control_handle: std::mem::ManuallyDrop<RealmFactoryControlHandle>,
491 tx_id: u32,
492}
493
494impl std::ops::Drop for RealmFactoryCreateRealmResponder {
498 fn drop(&mut self) {
499 self.control_handle.shutdown();
500 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
502 }
503}
504
505impl fidl::endpoints::Responder for RealmFactoryCreateRealmResponder {
506 type ControlHandle = RealmFactoryControlHandle;
507
508 fn control_handle(&self) -> &RealmFactoryControlHandle {
509 &self.control_handle
510 }
511
512 fn drop_without_shutdown(mut self) {
513 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
515 std::mem::forget(self);
517 }
518}
519
520impl RealmFactoryCreateRealmResponder {
521 pub fn send(
525 self,
526 mut result: Result<
527 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
528 fidl_fuchsia_testing_harness::OperationError,
529 >,
530 ) -> Result<(), fidl::Error> {
531 let _result = self.send_raw(result);
532 if _result.is_err() {
533 self.control_handle.shutdown();
534 }
535 self.drop_without_shutdown();
536 _result
537 }
538
539 pub fn send_no_shutdown_on_err(
541 self,
542 mut result: Result<
543 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
544 fidl_fuchsia_testing_harness::OperationError,
545 >,
546 ) -> Result<(), fidl::Error> {
547 let _result = self.send_raw(result);
548 self.drop_without_shutdown();
549 _result
550 }
551
552 fn send_raw(
553 &self,
554 mut result: Result<
555 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
556 fidl_fuchsia_testing_harness::OperationError,
557 >,
558 ) -> Result<(), fidl::Error> {
559 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
560 RealmFactoryCreateRealmResponse,
561 fidl_fuchsia_testing_harness::OperationError,
562 >>(
563 fidl::encoding::FlexibleResult::new(result.map(|dictionary| (dictionary,))),
564 self.tx_id,
565 0x29ee78b460437125,
566 fidl::encoding::DynamicFlags::FLEXIBLE,
567 )
568 }
569}
570
571mod internal {
572 use super::*;
573
574 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmRequest {
575 type Borrowed<'a> = &'a mut Self;
576 fn take_or_borrow<'a>(
577 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
578 ) -> Self::Borrowed<'a> {
579 value
580 }
581 }
582
583 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmRequest {
584 type Owned = Self;
585
586 #[inline(always)]
587 fn inline_align(_context: fidl::encoding::Context) -> usize {
588 8
589 }
590
591 #[inline(always)]
592 fn inline_size(_context: fidl::encoding::Context) -> usize {
593 16
594 }
595 }
596
597 unsafe impl
598 fidl::encoding::Encode<
599 RealmFactoryCreateRealmRequest,
600 fidl::encoding::DefaultFuchsiaResourceDialect,
601 > for &mut RealmFactoryCreateRealmRequest
602 {
603 #[inline]
604 unsafe fn encode(
605 self,
606 encoder: &mut fidl::encoding::Encoder<
607 '_,
608 fidl::encoding::DefaultFuchsiaResourceDialect,
609 >,
610 offset: usize,
611 _depth: fidl::encoding::Depth,
612 ) -> fidl::Result<()> {
613 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
614 fidl::encoding::Encode::<
616 RealmFactoryCreateRealmRequest,
617 fidl::encoding::DefaultFuchsiaResourceDialect,
618 >::encode(
619 (<RealmOptions as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
620 &mut self.options,
621 ),),
622 encoder,
623 offset,
624 _depth,
625 )
626 }
627 }
628 unsafe impl<
629 T0: fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>,
630 >
631 fidl::encoding::Encode<
632 RealmFactoryCreateRealmRequest,
633 fidl::encoding::DefaultFuchsiaResourceDialect,
634 > for (T0,)
635 {
636 #[inline]
637 unsafe fn encode(
638 self,
639 encoder: &mut fidl::encoding::Encoder<
640 '_,
641 fidl::encoding::DefaultFuchsiaResourceDialect,
642 >,
643 offset: usize,
644 depth: fidl::encoding::Depth,
645 ) -> fidl::Result<()> {
646 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
647 self.0.encode(encoder, offset + 0, depth)?;
651 Ok(())
652 }
653 }
654
655 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
656 for RealmFactoryCreateRealmRequest
657 {
658 #[inline(always)]
659 fn new_empty() -> Self {
660 Self {
661 options: fidl::new_empty!(
662 RealmOptions,
663 fidl::encoding::DefaultFuchsiaResourceDialect
664 ),
665 }
666 }
667
668 #[inline]
669 unsafe fn decode(
670 &mut self,
671 decoder: &mut fidl::encoding::Decoder<
672 '_,
673 fidl::encoding::DefaultFuchsiaResourceDialect,
674 >,
675 offset: usize,
676 _depth: fidl::encoding::Depth,
677 ) -> fidl::Result<()> {
678 decoder.debug_check_bounds::<Self>(offset);
679 fidl::decode!(
681 RealmOptions,
682 fidl::encoding::DefaultFuchsiaResourceDialect,
683 &mut self.options,
684 decoder,
685 offset + 0,
686 _depth
687 )?;
688 Ok(())
689 }
690 }
691
692 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmResponse {
693 type Borrowed<'a> = &'a mut Self;
694 fn take_or_borrow<'a>(
695 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
696 ) -> Self::Borrowed<'a> {
697 value
698 }
699 }
700
701 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmResponse {
702 type Owned = Self;
703
704 #[inline(always)]
705 fn inline_align(_context: fidl::encoding::Context) -> usize {
706 4
707 }
708
709 #[inline(always)]
710 fn inline_size(_context: fidl::encoding::Context) -> usize {
711 4
712 }
713 }
714
715 unsafe impl
716 fidl::encoding::Encode<
717 RealmFactoryCreateRealmResponse,
718 fidl::encoding::DefaultFuchsiaResourceDialect,
719 > for &mut RealmFactoryCreateRealmResponse
720 {
721 #[inline]
722 unsafe fn encode(
723 self,
724 encoder: &mut fidl::encoding::Encoder<
725 '_,
726 fidl::encoding::DefaultFuchsiaResourceDialect,
727 >,
728 offset: usize,
729 _depth: fidl::encoding::Depth,
730 ) -> fidl::Result<()> {
731 encoder.debug_check_bounds::<RealmFactoryCreateRealmResponse>(offset);
732 fidl::encoding::Encode::<
734 RealmFactoryCreateRealmResponse,
735 fidl::encoding::DefaultFuchsiaResourceDialect,
736 >::encode(
737 (<fidl::encoding::Endpoint<
738 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
739 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
740 &mut self.dictionary
741 ),),
742 encoder,
743 offset,
744 _depth,
745 )
746 }
747 }
748 unsafe impl<
749 T0: fidl::encoding::Encode<
750 fidl::encoding::Endpoint<
751 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
752 >,
753 fidl::encoding::DefaultFuchsiaResourceDialect,
754 >,
755 >
756 fidl::encoding::Encode<
757 RealmFactoryCreateRealmResponse,
758 fidl::encoding::DefaultFuchsiaResourceDialect,
759 > for (T0,)
760 {
761 #[inline]
762 unsafe fn encode(
763 self,
764 encoder: &mut fidl::encoding::Encoder<
765 '_,
766 fidl::encoding::DefaultFuchsiaResourceDialect,
767 >,
768 offset: usize,
769 depth: fidl::encoding::Depth,
770 ) -> fidl::Result<()> {
771 encoder.debug_check_bounds::<RealmFactoryCreateRealmResponse>(offset);
772 self.0.encode(encoder, offset + 0, depth)?;
776 Ok(())
777 }
778 }
779
780 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
781 for RealmFactoryCreateRealmResponse
782 {
783 #[inline(always)]
784 fn new_empty() -> Self {
785 Self {
786 dictionary: fidl::new_empty!(
787 fidl::encoding::Endpoint<
788 fidl::endpoints::ClientEnd<
789 fidl_fuchsia_component_sandbox::DictionaryMarker,
790 >,
791 >,
792 fidl::encoding::DefaultFuchsiaResourceDialect
793 ),
794 }
795 }
796
797 #[inline]
798 unsafe fn decode(
799 &mut self,
800 decoder: &mut fidl::encoding::Decoder<
801 '_,
802 fidl::encoding::DefaultFuchsiaResourceDialect,
803 >,
804 offset: usize,
805 _depth: fidl::encoding::Depth,
806 ) -> fidl::Result<()> {
807 decoder.debug_check_bounds::<Self>(offset);
808 fidl::decode!(
810 fidl::encoding::Endpoint<
811 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
812 >,
813 fidl::encoding::DefaultFuchsiaResourceDialect,
814 &mut self.dictionary,
815 decoder,
816 offset + 0,
817 _depth
818 )?;
819 Ok(())
820 }
821 }
822
823 impl RealmOptions {
824 #[inline(always)]
825 fn max_ordinal_present(&self) -> u64 {
826 if let Some(_) = self.pkg_directory_server {
827 return 1;
828 }
829 0
830 }
831 }
832
833 impl fidl::encoding::ResourceTypeMarker for RealmOptions {
834 type Borrowed<'a> = &'a mut Self;
835 fn take_or_borrow<'a>(
836 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
837 ) -> Self::Borrowed<'a> {
838 value
839 }
840 }
841
842 unsafe impl fidl::encoding::TypeMarker for RealmOptions {
843 type Owned = Self;
844
845 #[inline(always)]
846 fn inline_align(_context: fidl::encoding::Context) -> usize {
847 8
848 }
849
850 #[inline(always)]
851 fn inline_size(_context: fidl::encoding::Context) -> usize {
852 16
853 }
854 }
855
856 unsafe impl fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>
857 for &mut RealmOptions
858 {
859 unsafe fn encode(
860 self,
861 encoder: &mut fidl::encoding::Encoder<
862 '_,
863 fidl::encoding::DefaultFuchsiaResourceDialect,
864 >,
865 offset: usize,
866 mut depth: fidl::encoding::Depth,
867 ) -> fidl::Result<()> {
868 encoder.debug_check_bounds::<RealmOptions>(offset);
869 let max_ordinal: u64 = self.max_ordinal_present();
871 encoder.write_num(max_ordinal, offset);
872 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
873 if max_ordinal == 0 {
875 return Ok(());
876 }
877 depth.increment()?;
878 let envelope_size = 8;
879 let bytes_len = max_ordinal as usize * envelope_size;
880 #[allow(unused_variables)]
881 let offset = encoder.out_of_line_offset(bytes_len);
882 let mut _prev_end_offset: usize = 0;
883 if 1 > max_ordinal {
884 return Ok(());
885 }
886
887 let cur_offset: usize = (1 - 1) * envelope_size;
890
891 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
893
894 fidl::encoding::encode_in_envelope_optional::<
899 fidl::encoding::Endpoint<
900 fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
901 >,
902 fidl::encoding::DefaultFuchsiaResourceDialect,
903 >(
904 self.pkg_directory_server.as_mut().map(
905 <fidl::encoding::Endpoint<
906 fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
907 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
908 ),
909 encoder,
910 offset + cur_offset,
911 depth,
912 )?;
913
914 _prev_end_offset = cur_offset + envelope_size;
915
916 Ok(())
917 }
918 }
919
920 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {
921 #[inline(always)]
922 fn new_empty() -> Self {
923 Self::default()
924 }
925
926 unsafe fn decode(
927 &mut self,
928 decoder: &mut fidl::encoding::Decoder<
929 '_,
930 fidl::encoding::DefaultFuchsiaResourceDialect,
931 >,
932 offset: usize,
933 mut depth: fidl::encoding::Depth,
934 ) -> fidl::Result<()> {
935 decoder.debug_check_bounds::<Self>(offset);
936 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
937 None => return Err(fidl::Error::NotNullable),
938 Some(len) => len,
939 };
940 if len == 0 {
942 return Ok(());
943 };
944 depth.increment()?;
945 let envelope_size = 8;
946 let bytes_len = len * envelope_size;
947 let offset = decoder.out_of_line_offset(bytes_len)?;
948 let mut _next_ordinal_to_read = 0;
950 let mut next_offset = offset;
951 let end_offset = offset + bytes_len;
952 _next_ordinal_to_read += 1;
953 if next_offset >= end_offset {
954 return Ok(());
955 }
956
957 while _next_ordinal_to_read < 1 {
959 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
960 _next_ordinal_to_read += 1;
961 next_offset += envelope_size;
962 }
963
964 let next_out_of_line = decoder.next_out_of_line();
965 let handles_before = decoder.remaining_handles();
966 if let Some((inlined, num_bytes, num_handles)) =
967 fidl::encoding::decode_envelope_header(decoder, next_offset)?
968 {
969 let member_inline_size = <fidl::encoding::Endpoint<
970 fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
971 > as fidl::encoding::TypeMarker>::inline_size(
972 decoder.context
973 );
974 if inlined != (member_inline_size <= 4) {
975 return Err(fidl::Error::InvalidInlineBitInEnvelope);
976 }
977 let inner_offset;
978 let mut inner_depth = depth.clone();
979 if inlined {
980 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
981 inner_offset = next_offset;
982 } else {
983 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
984 inner_depth.increment()?;
985 }
986 let val_ref = self.pkg_directory_server.get_or_insert_with(|| {
987 fidl::new_empty!(
988 fidl::encoding::Endpoint<
989 fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
990 >,
991 fidl::encoding::DefaultFuchsiaResourceDialect
992 )
993 });
994 fidl::decode!(
995 fidl::encoding::Endpoint<
996 fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
997 >,
998 fidl::encoding::DefaultFuchsiaResourceDialect,
999 val_ref,
1000 decoder,
1001 inner_offset,
1002 inner_depth
1003 )?;
1004 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1005 {
1006 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1007 }
1008 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1009 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1010 }
1011 }
1012
1013 next_offset += envelope_size;
1014
1015 while next_offset < end_offset {
1017 _next_ordinal_to_read += 1;
1018 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1019 next_offset += envelope_size;
1020 }
1021
1022 Ok(())
1023 }
1024 }
1025}