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_netemul_guest_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct ControllerCreateGuestRequest {
16 pub name: String,
17 pub network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
18 pub mac: Option<Box<fidl_fuchsia_net::MacAddress>>,
19}
20
21impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
22 for ControllerCreateGuestRequest
23{
24}
25
26#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
27pub struct ControllerCreateGuestResponse {
28 pub s: fidl::endpoints::ClientEnd<GuestMarker>,
29}
30
31impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
32 for ControllerCreateGuestResponse
33{
34}
35
36#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
37pub struct ControllerMarker;
38
39impl fidl::endpoints::ProtocolMarker for ControllerMarker {
40 type Proxy = ControllerProxy;
41 type RequestStream = ControllerRequestStream;
42 #[cfg(target_os = "fuchsia")]
43 type SynchronousProxy = ControllerSynchronousProxy;
44
45 const DEBUG_NAME: &'static str = "fuchsia.netemul.guest.Controller";
46}
47impl fidl::endpoints::DiscoverableProtocolMarker for ControllerMarker {}
48pub type ControllerCreateGuestResult =
49 Result<fidl::endpoints::ClientEnd<GuestMarker>, ControllerCreateGuestError>;
50
51pub trait ControllerProxyInterface: Send + Sync {
52 type CreateGuestResponseFut: std::future::Future<Output = Result<ControllerCreateGuestResult, fidl::Error>>
53 + Send;
54 fn r#create_guest(
55 &self,
56 name: &str,
57 network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
58 mac: Option<&fidl_fuchsia_net::MacAddress>,
59 ) -> Self::CreateGuestResponseFut;
60}
61#[derive(Debug)]
62#[cfg(target_os = "fuchsia")]
63pub struct ControllerSynchronousProxy {
64 client: fidl::client::sync::Client,
65}
66
67#[cfg(target_os = "fuchsia")]
68impl fidl::endpoints::SynchronousProxy for ControllerSynchronousProxy {
69 type Proxy = ControllerProxy;
70 type Protocol = ControllerMarker;
71
72 fn from_channel(inner: fidl::Channel) -> Self {
73 Self::new(inner)
74 }
75
76 fn into_channel(self) -> fidl::Channel {
77 self.client.into_channel()
78 }
79
80 fn as_channel(&self) -> &fidl::Channel {
81 self.client.as_channel()
82 }
83}
84
85#[cfg(target_os = "fuchsia")]
86impl ControllerSynchronousProxy {
87 pub fn new(channel: fidl::Channel) -> Self {
88 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
89 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
90 }
91
92 pub fn into_channel(self) -> fidl::Channel {
93 self.client.into_channel()
94 }
95
96 pub fn wait_for_event(
99 &self,
100 deadline: zx::MonotonicInstant,
101 ) -> Result<ControllerEvent, fidl::Error> {
102 ControllerEvent::decode(self.client.wait_for_event(deadline)?)
103 }
104
105 pub fn r#create_guest(
119 &self,
120 mut name: &str,
121 mut network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
122 mut mac: Option<&fidl_fuchsia_net::MacAddress>,
123 ___deadline: zx::MonotonicInstant,
124 ) -> Result<ControllerCreateGuestResult, fidl::Error> {
125 let _response =
126 self.client.send_query::<ControllerCreateGuestRequest, fidl::encoding::ResultType<
127 ControllerCreateGuestResponse,
128 ControllerCreateGuestError,
129 >>(
130 (name, network, mac),
131 0x5c49cf5272f818c0,
132 fidl::encoding::DynamicFlags::empty(),
133 ___deadline,
134 )?;
135 Ok(_response.map(|x| x.s))
136 }
137}
138
139#[cfg(target_os = "fuchsia")]
140impl From<ControllerSynchronousProxy> for zx::Handle {
141 fn from(value: ControllerSynchronousProxy) -> Self {
142 value.into_channel().into()
143 }
144}
145
146#[cfg(target_os = "fuchsia")]
147impl From<fidl::Channel> for ControllerSynchronousProxy {
148 fn from(value: fidl::Channel) -> Self {
149 Self::new(value)
150 }
151}
152
153#[derive(Debug, Clone)]
154pub struct ControllerProxy {
155 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
156}
157
158impl fidl::endpoints::Proxy for ControllerProxy {
159 type Protocol = ControllerMarker;
160
161 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
162 Self::new(inner)
163 }
164
165 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
166 self.client.into_channel().map_err(|client| Self { client })
167 }
168
169 fn as_channel(&self) -> &::fidl::AsyncChannel {
170 self.client.as_channel()
171 }
172}
173
174impl ControllerProxy {
175 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
177 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
178 Self { client: fidl::client::Client::new(channel, protocol_name) }
179 }
180
181 pub fn take_event_stream(&self) -> ControllerEventStream {
187 ControllerEventStream { event_receiver: self.client.take_event_receiver() }
188 }
189
190 pub fn r#create_guest(
204 &self,
205 mut name: &str,
206 mut network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
207 mut mac: Option<&fidl_fuchsia_net::MacAddress>,
208 ) -> fidl::client::QueryResponseFut<
209 ControllerCreateGuestResult,
210 fidl::encoding::DefaultFuchsiaResourceDialect,
211 > {
212 ControllerProxyInterface::r#create_guest(self, name, network, mac)
213 }
214}
215
216impl ControllerProxyInterface for ControllerProxy {
217 type CreateGuestResponseFut = fidl::client::QueryResponseFut<
218 ControllerCreateGuestResult,
219 fidl::encoding::DefaultFuchsiaResourceDialect,
220 >;
221 fn r#create_guest(
222 &self,
223 mut name: &str,
224 mut network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
225 mut mac: Option<&fidl_fuchsia_net::MacAddress>,
226 ) -> Self::CreateGuestResponseFut {
227 fn _decode(
228 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
229 ) -> Result<ControllerCreateGuestResult, fidl::Error> {
230 let _response = fidl::client::decode_transaction_body::<
231 fidl::encoding::ResultType<
232 ControllerCreateGuestResponse,
233 ControllerCreateGuestError,
234 >,
235 fidl::encoding::DefaultFuchsiaResourceDialect,
236 0x5c49cf5272f818c0,
237 >(_buf?)?;
238 Ok(_response.map(|x| x.s))
239 }
240 self.client
241 .send_query_and_decode::<ControllerCreateGuestRequest, ControllerCreateGuestResult>(
242 (name, network, mac),
243 0x5c49cf5272f818c0,
244 fidl::encoding::DynamicFlags::empty(),
245 _decode,
246 )
247 }
248}
249
250pub struct ControllerEventStream {
251 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
252}
253
254impl std::marker::Unpin for ControllerEventStream {}
255
256impl futures::stream::FusedStream for ControllerEventStream {
257 fn is_terminated(&self) -> bool {
258 self.event_receiver.is_terminated()
259 }
260}
261
262impl futures::Stream for ControllerEventStream {
263 type Item = Result<ControllerEvent, fidl::Error>;
264
265 fn poll_next(
266 mut self: std::pin::Pin<&mut Self>,
267 cx: &mut std::task::Context<'_>,
268 ) -> std::task::Poll<Option<Self::Item>> {
269 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
270 &mut self.event_receiver,
271 cx
272 )?) {
273 Some(buf) => std::task::Poll::Ready(Some(ControllerEvent::decode(buf))),
274 None => std::task::Poll::Ready(None),
275 }
276 }
277}
278
279#[derive(Debug)]
280pub enum ControllerEvent {}
281
282impl ControllerEvent {
283 fn decode(
285 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
286 ) -> Result<ControllerEvent, fidl::Error> {
287 let (bytes, _handles) = buf.split_mut();
288 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
289 debug_assert_eq!(tx_header.tx_id, 0);
290 match tx_header.ordinal {
291 _ => Err(fidl::Error::UnknownOrdinal {
292 ordinal: tx_header.ordinal,
293 protocol_name: <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
294 }),
295 }
296 }
297}
298
299pub struct ControllerRequestStream {
301 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
302 is_terminated: bool,
303}
304
305impl std::marker::Unpin for ControllerRequestStream {}
306
307impl futures::stream::FusedStream for ControllerRequestStream {
308 fn is_terminated(&self) -> bool {
309 self.is_terminated
310 }
311}
312
313impl fidl::endpoints::RequestStream for ControllerRequestStream {
314 type Protocol = ControllerMarker;
315 type ControlHandle = ControllerControlHandle;
316
317 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
318 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
319 }
320
321 fn control_handle(&self) -> Self::ControlHandle {
322 ControllerControlHandle { inner: self.inner.clone() }
323 }
324
325 fn into_inner(
326 self,
327 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
328 {
329 (self.inner, self.is_terminated)
330 }
331
332 fn from_inner(
333 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
334 is_terminated: bool,
335 ) -> Self {
336 Self { inner, is_terminated }
337 }
338}
339
340impl futures::Stream for ControllerRequestStream {
341 type Item = Result<ControllerRequest, fidl::Error>;
342
343 fn poll_next(
344 mut self: std::pin::Pin<&mut Self>,
345 cx: &mut std::task::Context<'_>,
346 ) -> std::task::Poll<Option<Self::Item>> {
347 let this = &mut *self;
348 if this.inner.check_shutdown(cx) {
349 this.is_terminated = true;
350 return std::task::Poll::Ready(None);
351 }
352 if this.is_terminated {
353 panic!("polled ControllerRequestStream after completion");
354 }
355 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
356 |bytes, handles| {
357 match this.inner.channel().read_etc(cx, bytes, handles) {
358 std::task::Poll::Ready(Ok(())) => {}
359 std::task::Poll::Pending => return std::task::Poll::Pending,
360 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
361 this.is_terminated = true;
362 return std::task::Poll::Ready(None);
363 }
364 std::task::Poll::Ready(Err(e)) => {
365 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
366 e.into(),
367 ))))
368 }
369 }
370
371 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
373
374 std::task::Poll::Ready(Some(match header.ordinal {
375 0x5c49cf5272f818c0 => {
376 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
377 let mut req = fidl::new_empty!(
378 ControllerCreateGuestRequest,
379 fidl::encoding::DefaultFuchsiaResourceDialect
380 );
381 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerCreateGuestRequest>(&header, _body_bytes, handles, &mut req)?;
382 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
383 Ok(ControllerRequest::CreateGuest {
384 name: req.name,
385 network: req.network,
386 mac: req.mac,
387
388 responder: ControllerCreateGuestResponder {
389 control_handle: std::mem::ManuallyDrop::new(control_handle),
390 tx_id: header.tx_id,
391 },
392 })
393 }
394 _ => Err(fidl::Error::UnknownOrdinal {
395 ordinal: header.ordinal,
396 protocol_name:
397 <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
398 }),
399 }))
400 },
401 )
402 }
403}
404
405#[derive(Debug)]
407pub enum ControllerRequest {
408 CreateGuest {
422 name: String,
423 network: fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
424 mac: Option<Box<fidl_fuchsia_net::MacAddress>>,
425 responder: ControllerCreateGuestResponder,
426 },
427}
428
429impl ControllerRequest {
430 #[allow(irrefutable_let_patterns)]
431 pub fn into_create_guest(
432 self,
433 ) -> Option<(
434 String,
435 fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
436 Option<Box<fidl_fuchsia_net::MacAddress>>,
437 ControllerCreateGuestResponder,
438 )> {
439 if let ControllerRequest::CreateGuest { name, network, mac, responder } = self {
440 Some((name, network, mac, responder))
441 } else {
442 None
443 }
444 }
445
446 pub fn method_name(&self) -> &'static str {
448 match *self {
449 ControllerRequest::CreateGuest { .. } => "create_guest",
450 }
451 }
452}
453
454#[derive(Debug, Clone)]
455pub struct ControllerControlHandle {
456 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
457}
458
459impl fidl::endpoints::ControlHandle for ControllerControlHandle {
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 ControllerControlHandle {}
486
487#[must_use = "FIDL methods require a response to be sent"]
488#[derive(Debug)]
489pub struct ControllerCreateGuestResponder {
490 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
491 tx_id: u32,
492}
493
494impl std::ops::Drop for ControllerCreateGuestResponder {
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 ControllerCreateGuestResponder {
506 type ControlHandle = ControllerControlHandle;
507
508 fn control_handle(&self) -> &ControllerControlHandle {
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 ControllerCreateGuestResponder {
521 pub fn send(
525 self,
526 mut result: Result<fidl::endpoints::ClientEnd<GuestMarker>, ControllerCreateGuestError>,
527 ) -> Result<(), fidl::Error> {
528 let _result = self.send_raw(result);
529 if _result.is_err() {
530 self.control_handle.shutdown();
531 }
532 self.drop_without_shutdown();
533 _result
534 }
535
536 pub fn send_no_shutdown_on_err(
538 self,
539 mut result: Result<fidl::endpoints::ClientEnd<GuestMarker>, ControllerCreateGuestError>,
540 ) -> Result<(), fidl::Error> {
541 let _result = self.send_raw(result);
542 self.drop_without_shutdown();
543 _result
544 }
545
546 fn send_raw(
547 &self,
548 mut result: Result<fidl::endpoints::ClientEnd<GuestMarker>, ControllerCreateGuestError>,
549 ) -> Result<(), fidl::Error> {
550 self.control_handle.inner.send::<fidl::encoding::ResultType<
551 ControllerCreateGuestResponse,
552 ControllerCreateGuestError,
553 >>(
554 result.map(|s| (s,)),
555 self.tx_id,
556 0x5c49cf5272f818c0,
557 fidl::encoding::DynamicFlags::empty(),
558 )
559 }
560}
561
562#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
563pub struct GuestMarker;
564
565impl fidl::endpoints::ProtocolMarker for GuestMarker {
566 type Proxy = GuestProxy;
567 type RequestStream = GuestRequestStream;
568 #[cfg(target_os = "fuchsia")]
569 type SynchronousProxy = GuestSynchronousProxy;
570
571 const DEBUG_NAME: &'static str = "(anonymous) Guest";
572}
573
574pub trait GuestProxyInterface: Send + Sync {
575 type PutFileResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
576 fn r#put_file(
577 &self,
578 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
579 remote_path: &str,
580 ) -> Self::PutFileResponseFut;
581 type GetFileResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
582 fn r#get_file(
583 &self,
584 remote_path: &str,
585 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
586 ) -> Self::GetFileResponseFut;
587 fn r#execute_command(
588 &self,
589 command: &str,
590 env: &[fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable],
591 stdin: Option<fidl::Socket>,
592 stdout: Option<fidl::Socket>,
593 stderr: Option<fidl::Socket>,
594 command_listener: fidl::endpoints::ServerEnd<
595 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
596 >,
597 ) -> Result<(), fidl::Error>;
598 type ShutdownResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
599 fn r#shutdown(&self) -> Self::ShutdownResponseFut;
600}
601#[derive(Debug)]
602#[cfg(target_os = "fuchsia")]
603pub struct GuestSynchronousProxy {
604 client: fidl::client::sync::Client,
605}
606
607#[cfg(target_os = "fuchsia")]
608impl fidl::endpoints::SynchronousProxy for GuestSynchronousProxy {
609 type Proxy = GuestProxy;
610 type Protocol = GuestMarker;
611
612 fn from_channel(inner: fidl::Channel) -> Self {
613 Self::new(inner)
614 }
615
616 fn into_channel(self) -> fidl::Channel {
617 self.client.into_channel()
618 }
619
620 fn as_channel(&self) -> &fidl::Channel {
621 self.client.as_channel()
622 }
623}
624
625#[cfg(target_os = "fuchsia")]
626impl GuestSynchronousProxy {
627 pub fn new(channel: fidl::Channel) -> Self {
628 let protocol_name = <GuestMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
629 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
630 }
631
632 pub fn into_channel(self) -> fidl::Channel {
633 self.client.into_channel()
634 }
635
636 pub fn wait_for_event(
639 &self,
640 deadline: zx::MonotonicInstant,
641 ) -> Result<GuestEvent, fidl::Error> {
642 GuestEvent::decode(self.client.wait_for_event(deadline)?)
643 }
644
645 pub fn r#put_file(
648 &self,
649 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
650 mut remote_path: &str,
651 ___deadline: zx::MonotonicInstant,
652 ) -> Result<i32, fidl::Error> {
653 let _response = self.client.send_query::<
654 fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileRequest,
655 fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileResponse,
656 >(
657 (local_file, remote_path,),
658 0x223bc20da4a7cddd,
659 fidl::encoding::DynamicFlags::empty(),
660 ___deadline,
661 )?;
662 Ok(_response.status)
663 }
664
665 pub fn r#get_file(
668 &self,
669 mut remote_path: &str,
670 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
671 ___deadline: zx::MonotonicInstant,
672 ) -> Result<i32, fidl::Error> {
673 let _response = self.client.send_query::<
674 fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileRequest,
675 fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileResponse,
676 >(
677 (remote_path, local_file,),
678 0x7696bea472ca0f2d,
679 fidl::encoding::DynamicFlags::empty(),
680 ___deadline,
681 )?;
682 Ok(_response.status)
683 }
684
685 pub fn r#execute_command(
688 &self,
689 mut command: &str,
690 mut env: &[fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable],
691 mut stdin: Option<fidl::Socket>,
692 mut stdout: Option<fidl::Socket>,
693 mut stderr: Option<fidl::Socket>,
694 mut command_listener: fidl::endpoints::ServerEnd<
695 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
696 >,
697 ) -> Result<(), fidl::Error> {
698 self.client.send::<fidl_fuchsia_virtualization_guest_interaction::InteractionExecuteCommandRequest>(
699 (command, env, stdin, stdout, stderr, command_listener,),
700 0x612641220a1556d8,
701 fidl::encoding::DynamicFlags::empty(),
702 )
703 }
704
705 pub fn r#shutdown(&self, ___deadline: zx::MonotonicInstant) -> Result<(), fidl::Error> {
708 let _response =
709 self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
710 (),
711 0x287e71d61642d1cc,
712 fidl::encoding::DynamicFlags::empty(),
713 ___deadline,
714 )?;
715 Ok(_response)
716 }
717}
718
719#[cfg(target_os = "fuchsia")]
720impl From<GuestSynchronousProxy> for zx::Handle {
721 fn from(value: GuestSynchronousProxy) -> Self {
722 value.into_channel().into()
723 }
724}
725
726#[cfg(target_os = "fuchsia")]
727impl From<fidl::Channel> for GuestSynchronousProxy {
728 fn from(value: fidl::Channel) -> Self {
729 Self::new(value)
730 }
731}
732
733#[derive(Debug, Clone)]
734pub struct GuestProxy {
735 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
736}
737
738impl fidl::endpoints::Proxy for GuestProxy {
739 type Protocol = GuestMarker;
740
741 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
742 Self::new(inner)
743 }
744
745 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
746 self.client.into_channel().map_err(|client| Self { client })
747 }
748
749 fn as_channel(&self) -> &::fidl::AsyncChannel {
750 self.client.as_channel()
751 }
752}
753
754impl GuestProxy {
755 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
757 let protocol_name = <GuestMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
758 Self { client: fidl::client::Client::new(channel, protocol_name) }
759 }
760
761 pub fn take_event_stream(&self) -> GuestEventStream {
767 GuestEventStream { event_receiver: self.client.take_event_receiver() }
768 }
769
770 pub fn r#put_file(
773 &self,
774 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
775 mut remote_path: &str,
776 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
777 GuestProxyInterface::r#put_file(self, local_file, remote_path)
778 }
779
780 pub fn r#get_file(
783 &self,
784 mut remote_path: &str,
785 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
786 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
787 GuestProxyInterface::r#get_file(self, remote_path, local_file)
788 }
789
790 pub fn r#execute_command(
793 &self,
794 mut command: &str,
795 mut env: &[fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable],
796 mut stdin: Option<fidl::Socket>,
797 mut stdout: Option<fidl::Socket>,
798 mut stderr: Option<fidl::Socket>,
799 mut command_listener: fidl::endpoints::ServerEnd<
800 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
801 >,
802 ) -> Result<(), fidl::Error> {
803 GuestProxyInterface::r#execute_command(
804 self,
805 command,
806 env,
807 stdin,
808 stdout,
809 stderr,
810 command_listener,
811 )
812 }
813
814 pub fn r#shutdown(
817 &self,
818 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
819 GuestProxyInterface::r#shutdown(self)
820 }
821}
822
823impl GuestProxyInterface for GuestProxy {
824 type PutFileResponseFut =
825 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
826 fn r#put_file(
827 &self,
828 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
829 mut remote_path: &str,
830 ) -> Self::PutFileResponseFut {
831 fn _decode(
832 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
833 ) -> Result<i32, fidl::Error> {
834 let _response = fidl::client::decode_transaction_body::<
835 fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileResponse,
836 fidl::encoding::DefaultFuchsiaResourceDialect,
837 0x223bc20da4a7cddd,
838 >(_buf?)?;
839 Ok(_response.status)
840 }
841 self.client.send_query_and_decode::<
842 fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileRequest,
843 i32,
844 >(
845 (local_file, remote_path,),
846 0x223bc20da4a7cddd,
847 fidl::encoding::DynamicFlags::empty(),
848 _decode,
849 )
850 }
851
852 type GetFileResponseFut =
853 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
854 fn r#get_file(
855 &self,
856 mut remote_path: &str,
857 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
858 ) -> Self::GetFileResponseFut {
859 fn _decode(
860 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
861 ) -> Result<i32, fidl::Error> {
862 let _response = fidl::client::decode_transaction_body::<
863 fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileResponse,
864 fidl::encoding::DefaultFuchsiaResourceDialect,
865 0x7696bea472ca0f2d,
866 >(_buf?)?;
867 Ok(_response.status)
868 }
869 self.client.send_query_and_decode::<
870 fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileRequest,
871 i32,
872 >(
873 (remote_path, local_file,),
874 0x7696bea472ca0f2d,
875 fidl::encoding::DynamicFlags::empty(),
876 _decode,
877 )
878 }
879
880 fn r#execute_command(
881 &self,
882 mut command: &str,
883 mut env: &[fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable],
884 mut stdin: Option<fidl::Socket>,
885 mut stdout: Option<fidl::Socket>,
886 mut stderr: Option<fidl::Socket>,
887 mut command_listener: fidl::endpoints::ServerEnd<
888 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
889 >,
890 ) -> Result<(), fidl::Error> {
891 self.client.send::<fidl_fuchsia_virtualization_guest_interaction::InteractionExecuteCommandRequest>(
892 (command, env, stdin, stdout, stderr, command_listener,),
893 0x612641220a1556d8,
894 fidl::encoding::DynamicFlags::empty(),
895 )
896 }
897
898 type ShutdownResponseFut =
899 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
900 fn r#shutdown(&self) -> Self::ShutdownResponseFut {
901 fn _decode(
902 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
903 ) -> Result<(), fidl::Error> {
904 let _response = fidl::client::decode_transaction_body::<
905 fidl::encoding::EmptyPayload,
906 fidl::encoding::DefaultFuchsiaResourceDialect,
907 0x287e71d61642d1cc,
908 >(_buf?)?;
909 Ok(_response)
910 }
911 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
912 (),
913 0x287e71d61642d1cc,
914 fidl::encoding::DynamicFlags::empty(),
915 _decode,
916 )
917 }
918}
919
920pub struct GuestEventStream {
921 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
922}
923
924impl std::marker::Unpin for GuestEventStream {}
925
926impl futures::stream::FusedStream for GuestEventStream {
927 fn is_terminated(&self) -> bool {
928 self.event_receiver.is_terminated()
929 }
930}
931
932impl futures::Stream for GuestEventStream {
933 type Item = Result<GuestEvent, fidl::Error>;
934
935 fn poll_next(
936 mut self: std::pin::Pin<&mut Self>,
937 cx: &mut std::task::Context<'_>,
938 ) -> std::task::Poll<Option<Self::Item>> {
939 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
940 &mut self.event_receiver,
941 cx
942 )?) {
943 Some(buf) => std::task::Poll::Ready(Some(GuestEvent::decode(buf))),
944 None => std::task::Poll::Ready(None),
945 }
946 }
947}
948
949#[derive(Debug)]
950pub enum GuestEvent {}
951
952impl GuestEvent {
953 fn decode(
955 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
956 ) -> Result<GuestEvent, fidl::Error> {
957 let (bytes, _handles) = buf.split_mut();
958 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
959 debug_assert_eq!(tx_header.tx_id, 0);
960 match tx_header.ordinal {
961 _ => Err(fidl::Error::UnknownOrdinal {
962 ordinal: tx_header.ordinal,
963 protocol_name: <GuestMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
964 }),
965 }
966 }
967}
968
969pub struct GuestRequestStream {
971 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
972 is_terminated: bool,
973}
974
975impl std::marker::Unpin for GuestRequestStream {}
976
977impl futures::stream::FusedStream for GuestRequestStream {
978 fn is_terminated(&self) -> bool {
979 self.is_terminated
980 }
981}
982
983impl fidl::endpoints::RequestStream for GuestRequestStream {
984 type Protocol = GuestMarker;
985 type ControlHandle = GuestControlHandle;
986
987 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
988 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
989 }
990
991 fn control_handle(&self) -> Self::ControlHandle {
992 GuestControlHandle { inner: self.inner.clone() }
993 }
994
995 fn into_inner(
996 self,
997 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
998 {
999 (self.inner, self.is_terminated)
1000 }
1001
1002 fn from_inner(
1003 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1004 is_terminated: bool,
1005 ) -> Self {
1006 Self { inner, is_terminated }
1007 }
1008}
1009
1010impl futures::Stream for GuestRequestStream {
1011 type Item = Result<GuestRequest, fidl::Error>;
1012
1013 fn poll_next(
1014 mut self: std::pin::Pin<&mut Self>,
1015 cx: &mut std::task::Context<'_>,
1016 ) -> std::task::Poll<Option<Self::Item>> {
1017 let this = &mut *self;
1018 if this.inner.check_shutdown(cx) {
1019 this.is_terminated = true;
1020 return std::task::Poll::Ready(None);
1021 }
1022 if this.is_terminated {
1023 panic!("polled GuestRequestStream after completion");
1024 }
1025 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1026 |bytes, handles| {
1027 match this.inner.channel().read_etc(cx, bytes, handles) {
1028 std::task::Poll::Ready(Ok(())) => {}
1029 std::task::Poll::Pending => return std::task::Poll::Pending,
1030 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1031 this.is_terminated = true;
1032 return std::task::Poll::Ready(None);
1033 }
1034 std::task::Poll::Ready(Err(e)) => {
1035 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1036 e.into(),
1037 ))))
1038 }
1039 }
1040
1041 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1043
1044 std::task::Poll::Ready(Some(match header.ordinal {
1045 0x223bc20da4a7cddd => {
1046 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1047 let mut req = fidl::new_empty!(fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
1048 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileRequest>(&header, _body_bytes, handles, &mut req)?;
1049 let control_handle = GuestControlHandle { inner: this.inner.clone() };
1050 Ok(GuestRequest::PutFile {
1051 local_file: req.local_file,
1052 remote_path: req.remote_path,
1053
1054 responder: GuestPutFileResponder {
1055 control_handle: std::mem::ManuallyDrop::new(control_handle),
1056 tx_id: header.tx_id,
1057 },
1058 })
1059 }
1060 0x7696bea472ca0f2d => {
1061 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1062 let mut req = fidl::new_empty!(fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
1063 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileRequest>(&header, _body_bytes, handles, &mut req)?;
1064 let control_handle = GuestControlHandle { inner: this.inner.clone() };
1065 Ok(GuestRequest::GetFile {
1066 remote_path: req.remote_path,
1067 local_file: req.local_file,
1068
1069 responder: GuestGetFileResponder {
1070 control_handle: std::mem::ManuallyDrop::new(control_handle),
1071 tx_id: header.tx_id,
1072 },
1073 })
1074 }
1075 0x612641220a1556d8 => {
1076 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
1077 let mut req = fidl::new_empty!(fidl_fuchsia_virtualization_guest_interaction::InteractionExecuteCommandRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
1078 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_virtualization_guest_interaction::InteractionExecuteCommandRequest>(&header, _body_bytes, handles, &mut req)?;
1079 let control_handle = GuestControlHandle { inner: this.inner.clone() };
1080 Ok(GuestRequest::ExecuteCommand {
1081 command: req.command,
1082 env: req.env,
1083 stdin: req.stdin,
1084 stdout: req.stdout,
1085 stderr: req.stderr,
1086 command_listener: req.command_listener,
1087
1088 control_handle,
1089 })
1090 }
1091 0x287e71d61642d1cc => {
1092 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1093 let mut req = fidl::new_empty!(
1094 fidl::encoding::EmptyPayload,
1095 fidl::encoding::DefaultFuchsiaResourceDialect
1096 );
1097 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1098 let control_handle = GuestControlHandle { inner: this.inner.clone() };
1099 Ok(GuestRequest::Shutdown {
1100 responder: GuestShutdownResponder {
1101 control_handle: std::mem::ManuallyDrop::new(control_handle),
1102 tx_id: header.tx_id,
1103 },
1104 })
1105 }
1106 _ => Err(fidl::Error::UnknownOrdinal {
1107 ordinal: header.ordinal,
1108 protocol_name: <GuestMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1109 }),
1110 }))
1111 },
1112 )
1113 }
1114}
1115
1116#[derive(Debug)]
1125pub enum GuestRequest {
1126 PutFile {
1129 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1130 remote_path: String,
1131 responder: GuestPutFileResponder,
1132 },
1133 GetFile {
1136 remote_path: String,
1137 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1138 responder: GuestGetFileResponder,
1139 },
1140 ExecuteCommand {
1143 command: String,
1144 env: Vec<fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable>,
1145 stdin: Option<fidl::Socket>,
1146 stdout: Option<fidl::Socket>,
1147 stderr: Option<fidl::Socket>,
1148 command_listener: fidl::endpoints::ServerEnd<
1149 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
1150 >,
1151 control_handle: GuestControlHandle,
1152 },
1153 Shutdown { responder: GuestShutdownResponder },
1156}
1157
1158impl GuestRequest {
1159 #[allow(irrefutable_let_patterns)]
1160 pub fn into_put_file(
1161 self,
1162 ) -> Option<(
1163 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1164 String,
1165 GuestPutFileResponder,
1166 )> {
1167 if let GuestRequest::PutFile { local_file, remote_path, responder } = self {
1168 Some((local_file, remote_path, responder))
1169 } else {
1170 None
1171 }
1172 }
1173
1174 #[allow(irrefutable_let_patterns)]
1175 pub fn into_get_file(
1176 self,
1177 ) -> Option<(
1178 String,
1179 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1180 GuestGetFileResponder,
1181 )> {
1182 if let GuestRequest::GetFile { remote_path, local_file, responder } = self {
1183 Some((remote_path, local_file, responder))
1184 } else {
1185 None
1186 }
1187 }
1188
1189 #[allow(irrefutable_let_patterns)]
1190 pub fn into_execute_command(
1191 self,
1192 ) -> Option<(
1193 String,
1194 Vec<fidl_fuchsia_virtualization_guest_interaction::EnvironmentVariable>,
1195 Option<fidl::Socket>,
1196 Option<fidl::Socket>,
1197 Option<fidl::Socket>,
1198 fidl::endpoints::ServerEnd<
1199 fidl_fuchsia_virtualization_guest_interaction::CommandListenerMarker,
1200 >,
1201 GuestControlHandle,
1202 )> {
1203 if let GuestRequest::ExecuteCommand {
1204 command,
1205 env,
1206 stdin,
1207 stdout,
1208 stderr,
1209 command_listener,
1210 control_handle,
1211 } = self
1212 {
1213 Some((command, env, stdin, stdout, stderr, command_listener, control_handle))
1214 } else {
1215 None
1216 }
1217 }
1218
1219 #[allow(irrefutable_let_patterns)]
1220 pub fn into_shutdown(self) -> Option<(GuestShutdownResponder)> {
1221 if let GuestRequest::Shutdown { responder } = self {
1222 Some((responder))
1223 } else {
1224 None
1225 }
1226 }
1227
1228 pub fn method_name(&self) -> &'static str {
1230 match *self {
1231 GuestRequest::PutFile { .. } => "put_file",
1232 GuestRequest::GetFile { .. } => "get_file",
1233 GuestRequest::ExecuteCommand { .. } => "execute_command",
1234 GuestRequest::Shutdown { .. } => "shutdown",
1235 }
1236 }
1237}
1238
1239#[derive(Debug, Clone)]
1240pub struct GuestControlHandle {
1241 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1242}
1243
1244impl fidl::endpoints::ControlHandle for GuestControlHandle {
1245 fn shutdown(&self) {
1246 self.inner.shutdown()
1247 }
1248 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1249 self.inner.shutdown_with_epitaph(status)
1250 }
1251
1252 fn is_closed(&self) -> bool {
1253 self.inner.channel().is_closed()
1254 }
1255 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1256 self.inner.channel().on_closed()
1257 }
1258
1259 #[cfg(target_os = "fuchsia")]
1260 fn signal_peer(
1261 &self,
1262 clear_mask: zx::Signals,
1263 set_mask: zx::Signals,
1264 ) -> Result<(), zx_status::Status> {
1265 use fidl::Peered;
1266 self.inner.channel().signal_peer(clear_mask, set_mask)
1267 }
1268}
1269
1270impl GuestControlHandle {}
1271
1272#[must_use = "FIDL methods require a response to be sent"]
1273#[derive(Debug)]
1274pub struct GuestPutFileResponder {
1275 control_handle: std::mem::ManuallyDrop<GuestControlHandle>,
1276 tx_id: u32,
1277}
1278
1279impl std::ops::Drop for GuestPutFileResponder {
1283 fn drop(&mut self) {
1284 self.control_handle.shutdown();
1285 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1287 }
1288}
1289
1290impl fidl::endpoints::Responder for GuestPutFileResponder {
1291 type ControlHandle = GuestControlHandle;
1292
1293 fn control_handle(&self) -> &GuestControlHandle {
1294 &self.control_handle
1295 }
1296
1297 fn drop_without_shutdown(mut self) {
1298 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1300 std::mem::forget(self);
1302 }
1303}
1304
1305impl GuestPutFileResponder {
1306 pub fn send(self, mut status: i32) -> Result<(), fidl::Error> {
1310 let _result = self.send_raw(status);
1311 if _result.is_err() {
1312 self.control_handle.shutdown();
1313 }
1314 self.drop_without_shutdown();
1315 _result
1316 }
1317
1318 pub fn send_no_shutdown_on_err(self, mut status: i32) -> Result<(), fidl::Error> {
1320 let _result = self.send_raw(status);
1321 self.drop_without_shutdown();
1322 _result
1323 }
1324
1325 fn send_raw(&self, mut status: i32) -> Result<(), fidl::Error> {
1326 self.control_handle
1327 .inner
1328 .send::<fidl_fuchsia_virtualization_guest_interaction::InteractionPutFileResponse>(
1329 (status,),
1330 self.tx_id,
1331 0x223bc20da4a7cddd,
1332 fidl::encoding::DynamicFlags::empty(),
1333 )
1334 }
1335}
1336
1337#[must_use = "FIDL methods require a response to be sent"]
1338#[derive(Debug)]
1339pub struct GuestGetFileResponder {
1340 control_handle: std::mem::ManuallyDrop<GuestControlHandle>,
1341 tx_id: u32,
1342}
1343
1344impl std::ops::Drop for GuestGetFileResponder {
1348 fn drop(&mut self) {
1349 self.control_handle.shutdown();
1350 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1352 }
1353}
1354
1355impl fidl::endpoints::Responder for GuestGetFileResponder {
1356 type ControlHandle = GuestControlHandle;
1357
1358 fn control_handle(&self) -> &GuestControlHandle {
1359 &self.control_handle
1360 }
1361
1362 fn drop_without_shutdown(mut self) {
1363 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1365 std::mem::forget(self);
1367 }
1368}
1369
1370impl GuestGetFileResponder {
1371 pub fn send(self, mut status: i32) -> Result<(), fidl::Error> {
1375 let _result = self.send_raw(status);
1376 if _result.is_err() {
1377 self.control_handle.shutdown();
1378 }
1379 self.drop_without_shutdown();
1380 _result
1381 }
1382
1383 pub fn send_no_shutdown_on_err(self, mut status: i32) -> Result<(), fidl::Error> {
1385 let _result = self.send_raw(status);
1386 self.drop_without_shutdown();
1387 _result
1388 }
1389
1390 fn send_raw(&self, mut status: i32) -> Result<(), fidl::Error> {
1391 self.control_handle
1392 .inner
1393 .send::<fidl_fuchsia_virtualization_guest_interaction::InteractionGetFileResponse>(
1394 (status,),
1395 self.tx_id,
1396 0x7696bea472ca0f2d,
1397 fidl::encoding::DynamicFlags::empty(),
1398 )
1399 }
1400}
1401
1402#[must_use = "FIDL methods require a response to be sent"]
1403#[derive(Debug)]
1404pub struct GuestShutdownResponder {
1405 control_handle: std::mem::ManuallyDrop<GuestControlHandle>,
1406 tx_id: u32,
1407}
1408
1409impl std::ops::Drop for GuestShutdownResponder {
1413 fn drop(&mut self) {
1414 self.control_handle.shutdown();
1415 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1417 }
1418}
1419
1420impl fidl::endpoints::Responder for GuestShutdownResponder {
1421 type ControlHandle = GuestControlHandle;
1422
1423 fn control_handle(&self) -> &GuestControlHandle {
1424 &self.control_handle
1425 }
1426
1427 fn drop_without_shutdown(mut self) {
1428 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1430 std::mem::forget(self);
1432 }
1433}
1434
1435impl GuestShutdownResponder {
1436 pub fn send(self) -> Result<(), fidl::Error> {
1440 let _result = self.send_raw();
1441 if _result.is_err() {
1442 self.control_handle.shutdown();
1443 }
1444 self.drop_without_shutdown();
1445 _result
1446 }
1447
1448 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
1450 let _result = self.send_raw();
1451 self.drop_without_shutdown();
1452 _result
1453 }
1454
1455 fn send_raw(&self) -> Result<(), fidl::Error> {
1456 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
1457 (),
1458 self.tx_id,
1459 0x287e71d61642d1cc,
1460 fidl::encoding::DynamicFlags::empty(),
1461 )
1462 }
1463}
1464
1465mod internal {
1466 use super::*;
1467
1468 impl fidl::encoding::ResourceTypeMarker for ControllerCreateGuestRequest {
1469 type Borrowed<'a> = &'a mut Self;
1470 fn take_or_borrow<'a>(
1471 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1472 ) -> Self::Borrowed<'a> {
1473 value
1474 }
1475 }
1476
1477 unsafe impl fidl::encoding::TypeMarker for ControllerCreateGuestRequest {
1478 type Owned = Self;
1479
1480 #[inline(always)]
1481 fn inline_align(_context: fidl::encoding::Context) -> usize {
1482 8
1483 }
1484
1485 #[inline(always)]
1486 fn inline_size(_context: fidl::encoding::Context) -> usize {
1487 32
1488 }
1489 }
1490
1491 unsafe impl
1492 fidl::encoding::Encode<
1493 ControllerCreateGuestRequest,
1494 fidl::encoding::DefaultFuchsiaResourceDialect,
1495 > for &mut ControllerCreateGuestRequest
1496 {
1497 #[inline]
1498 unsafe fn encode(
1499 self,
1500 encoder: &mut fidl::encoding::Encoder<
1501 '_,
1502 fidl::encoding::DefaultFuchsiaResourceDialect,
1503 >,
1504 offset: usize,
1505 _depth: fidl::encoding::Depth,
1506 ) -> fidl::Result<()> {
1507 encoder.debug_check_bounds::<ControllerCreateGuestRequest>(offset);
1508 fidl::encoding::Encode::<ControllerCreateGuestRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1510 (
1511 <fidl::encoding::BoundedString<32> as fidl::encoding::ValueTypeMarker>::borrow(&self.name),
1512 <fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.network),
1513 <fidl::encoding::Boxed<fidl_fuchsia_net::MacAddress> as fidl::encoding::ValueTypeMarker>::borrow(&self.mac),
1514 ),
1515 encoder, offset, _depth
1516 )
1517 }
1518 }
1519 unsafe impl<
1520 T0: fidl::encoding::Encode<
1521 fidl::encoding::BoundedString<32>,
1522 fidl::encoding::DefaultFuchsiaResourceDialect,
1523 >,
1524 T1: fidl::encoding::Encode<
1525 fidl::encoding::Endpoint<
1526 fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
1527 >,
1528 fidl::encoding::DefaultFuchsiaResourceDialect,
1529 >,
1530 T2: fidl::encoding::Encode<
1531 fidl::encoding::Boxed<fidl_fuchsia_net::MacAddress>,
1532 fidl::encoding::DefaultFuchsiaResourceDialect,
1533 >,
1534 >
1535 fidl::encoding::Encode<
1536 ControllerCreateGuestRequest,
1537 fidl::encoding::DefaultFuchsiaResourceDialect,
1538 > for (T0, T1, T2)
1539 {
1540 #[inline]
1541 unsafe fn encode(
1542 self,
1543 encoder: &mut fidl::encoding::Encoder<
1544 '_,
1545 fidl::encoding::DefaultFuchsiaResourceDialect,
1546 >,
1547 offset: usize,
1548 depth: fidl::encoding::Depth,
1549 ) -> fidl::Result<()> {
1550 encoder.debug_check_bounds::<ControllerCreateGuestRequest>(offset);
1551 unsafe {
1554 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
1555 (ptr as *mut u64).write_unaligned(0);
1556 }
1557 self.0.encode(encoder, offset + 0, depth)?;
1559 self.1.encode(encoder, offset + 16, depth)?;
1560 self.2.encode(encoder, offset + 24, depth)?;
1561 Ok(())
1562 }
1563 }
1564
1565 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1566 for ControllerCreateGuestRequest
1567 {
1568 #[inline(always)]
1569 fn new_empty() -> Self {
1570 Self {
1571 name: fidl::new_empty!(
1572 fidl::encoding::BoundedString<32>,
1573 fidl::encoding::DefaultFuchsiaResourceDialect
1574 ),
1575 network: fidl::new_empty!(
1576 fidl::encoding::Endpoint<
1577 fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
1578 >,
1579 fidl::encoding::DefaultFuchsiaResourceDialect
1580 ),
1581 mac: fidl::new_empty!(
1582 fidl::encoding::Boxed<fidl_fuchsia_net::MacAddress>,
1583 fidl::encoding::DefaultFuchsiaResourceDialect
1584 ),
1585 }
1586 }
1587
1588 #[inline]
1589 unsafe fn decode(
1590 &mut self,
1591 decoder: &mut fidl::encoding::Decoder<
1592 '_,
1593 fidl::encoding::DefaultFuchsiaResourceDialect,
1594 >,
1595 offset: usize,
1596 _depth: fidl::encoding::Depth,
1597 ) -> fidl::Result<()> {
1598 decoder.debug_check_bounds::<Self>(offset);
1599 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
1601 let padval = unsafe { (ptr as *const u64).read_unaligned() };
1602 let mask = 0xffffffff00000000u64;
1603 let maskedval = padval & mask;
1604 if maskedval != 0 {
1605 return Err(fidl::Error::NonZeroPadding {
1606 padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
1607 });
1608 }
1609 fidl::decode!(
1610 fidl::encoding::BoundedString<32>,
1611 fidl::encoding::DefaultFuchsiaResourceDialect,
1612 &mut self.name,
1613 decoder,
1614 offset + 0,
1615 _depth
1616 )?;
1617 fidl::decode!(
1618 fidl::encoding::Endpoint<
1619 fidl::endpoints::ClientEnd<fidl_fuchsia_netemul_network::NetworkMarker>,
1620 >,
1621 fidl::encoding::DefaultFuchsiaResourceDialect,
1622 &mut self.network,
1623 decoder,
1624 offset + 16,
1625 _depth
1626 )?;
1627 fidl::decode!(
1628 fidl::encoding::Boxed<fidl_fuchsia_net::MacAddress>,
1629 fidl::encoding::DefaultFuchsiaResourceDialect,
1630 &mut self.mac,
1631 decoder,
1632 offset + 24,
1633 _depth
1634 )?;
1635 Ok(())
1636 }
1637 }
1638
1639 impl fidl::encoding::ResourceTypeMarker for ControllerCreateGuestResponse {
1640 type Borrowed<'a> = &'a mut Self;
1641 fn take_or_borrow<'a>(
1642 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1643 ) -> Self::Borrowed<'a> {
1644 value
1645 }
1646 }
1647
1648 unsafe impl fidl::encoding::TypeMarker for ControllerCreateGuestResponse {
1649 type Owned = Self;
1650
1651 #[inline(always)]
1652 fn inline_align(_context: fidl::encoding::Context) -> usize {
1653 4
1654 }
1655
1656 #[inline(always)]
1657 fn inline_size(_context: fidl::encoding::Context) -> usize {
1658 4
1659 }
1660 }
1661
1662 unsafe impl
1663 fidl::encoding::Encode<
1664 ControllerCreateGuestResponse,
1665 fidl::encoding::DefaultFuchsiaResourceDialect,
1666 > for &mut ControllerCreateGuestResponse
1667 {
1668 #[inline]
1669 unsafe fn encode(
1670 self,
1671 encoder: &mut fidl::encoding::Encoder<
1672 '_,
1673 fidl::encoding::DefaultFuchsiaResourceDialect,
1674 >,
1675 offset: usize,
1676 _depth: fidl::encoding::Depth,
1677 ) -> fidl::Result<()> {
1678 encoder.debug_check_bounds::<ControllerCreateGuestResponse>(offset);
1679 fidl::encoding::Encode::<ControllerCreateGuestResponse, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1681 (
1682 <fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<GuestMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.s),
1683 ),
1684 encoder, offset, _depth
1685 )
1686 }
1687 }
1688 unsafe impl<
1689 T0: fidl::encoding::Encode<
1690 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<GuestMarker>>,
1691 fidl::encoding::DefaultFuchsiaResourceDialect,
1692 >,
1693 >
1694 fidl::encoding::Encode<
1695 ControllerCreateGuestResponse,
1696 fidl::encoding::DefaultFuchsiaResourceDialect,
1697 > for (T0,)
1698 {
1699 #[inline]
1700 unsafe fn encode(
1701 self,
1702 encoder: &mut fidl::encoding::Encoder<
1703 '_,
1704 fidl::encoding::DefaultFuchsiaResourceDialect,
1705 >,
1706 offset: usize,
1707 depth: fidl::encoding::Depth,
1708 ) -> fidl::Result<()> {
1709 encoder.debug_check_bounds::<ControllerCreateGuestResponse>(offset);
1710 self.0.encode(encoder, offset + 0, depth)?;
1714 Ok(())
1715 }
1716 }
1717
1718 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1719 for ControllerCreateGuestResponse
1720 {
1721 #[inline(always)]
1722 fn new_empty() -> Self {
1723 Self {
1724 s: fidl::new_empty!(
1725 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<GuestMarker>>,
1726 fidl::encoding::DefaultFuchsiaResourceDialect
1727 ),
1728 }
1729 }
1730
1731 #[inline]
1732 unsafe fn decode(
1733 &mut self,
1734 decoder: &mut fidl::encoding::Decoder<
1735 '_,
1736 fidl::encoding::DefaultFuchsiaResourceDialect,
1737 >,
1738 offset: usize,
1739 _depth: fidl::encoding::Depth,
1740 ) -> fidl::Result<()> {
1741 decoder.debug_check_bounds::<Self>(offset);
1742 fidl::decode!(
1744 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<GuestMarker>>,
1745 fidl::encoding::DefaultFuchsiaResourceDialect,
1746 &mut self.s,
1747 decoder,
1748 offset + 0,
1749 _depth
1750 )?;
1751 Ok(())
1752 }
1753 }
1754}