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_virtualization_guest_interaction_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct DiscoveryGetGuestRequest {
16 pub realm_name: Option<String>,
17 pub guest_name: String,
18 pub guest: fidl::endpoints::ServerEnd<InteractionMarker>,
19}
20
21impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DiscoveryGetGuestRequest {}
22
23#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
24pub struct InteractionExecuteCommandRequest {
25 pub command: String,
26 pub env: Vec<EnvironmentVariable>,
27 pub stdin: Option<fidl::Socket>,
28 pub stdout: Option<fidl::Socket>,
29 pub stderr: Option<fidl::Socket>,
30 pub command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
31}
32
33impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
34 for InteractionExecuteCommandRequest
35{
36}
37
38#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
39pub struct InteractionGetFileRequest {
40 pub remote_path: String,
41 pub local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
42}
43
44impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for InteractionGetFileRequest {}
45
46#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
47pub struct InteractionPutFileRequest {
48 pub local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
49 pub remote_path: String,
50}
51
52impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for InteractionPutFileRequest {}
53
54#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
55pub struct CommandListenerMarker;
56
57impl fidl::endpoints::ProtocolMarker for CommandListenerMarker {
58 type Proxy = CommandListenerProxy;
59 type RequestStream = CommandListenerRequestStream;
60 #[cfg(target_os = "fuchsia")]
61 type SynchronousProxy = CommandListenerSynchronousProxy;
62
63 const DEBUG_NAME: &'static str = "(anonymous) CommandListener";
64}
65
66pub trait CommandListenerProxyInterface: Send + Sync {}
67#[derive(Debug)]
68#[cfg(target_os = "fuchsia")]
69pub struct CommandListenerSynchronousProxy {
70 client: fidl::client::sync::Client,
71}
72
73#[cfg(target_os = "fuchsia")]
74impl fidl::endpoints::SynchronousProxy for CommandListenerSynchronousProxy {
75 type Proxy = CommandListenerProxy;
76 type Protocol = CommandListenerMarker;
77
78 fn from_channel(inner: fidl::Channel) -> Self {
79 Self::new(inner)
80 }
81
82 fn into_channel(self) -> fidl::Channel {
83 self.client.into_channel()
84 }
85
86 fn as_channel(&self) -> &fidl::Channel {
87 self.client.as_channel()
88 }
89}
90
91#[cfg(target_os = "fuchsia")]
92impl CommandListenerSynchronousProxy {
93 pub fn new(channel: fidl::Channel) -> Self {
94 let protocol_name = <CommandListenerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
95 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
96 }
97
98 pub fn into_channel(self) -> fidl::Channel {
99 self.client.into_channel()
100 }
101
102 pub fn wait_for_event(
105 &self,
106 deadline: zx::MonotonicInstant,
107 ) -> Result<CommandListenerEvent, fidl::Error> {
108 CommandListenerEvent::decode(self.client.wait_for_event(deadline)?)
109 }
110}
111
112#[cfg(target_os = "fuchsia")]
113impl From<CommandListenerSynchronousProxy> for zx::Handle {
114 fn from(value: CommandListenerSynchronousProxy) -> Self {
115 value.into_channel().into()
116 }
117}
118
119#[cfg(target_os = "fuchsia")]
120impl From<fidl::Channel> for CommandListenerSynchronousProxy {
121 fn from(value: fidl::Channel) -> Self {
122 Self::new(value)
123 }
124}
125
126#[derive(Debug, Clone)]
127pub struct CommandListenerProxy {
128 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
129}
130
131impl fidl::endpoints::Proxy for CommandListenerProxy {
132 type Protocol = CommandListenerMarker;
133
134 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
135 Self::new(inner)
136 }
137
138 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
139 self.client.into_channel().map_err(|client| Self { client })
140 }
141
142 fn as_channel(&self) -> &::fidl::AsyncChannel {
143 self.client.as_channel()
144 }
145}
146
147impl CommandListenerProxy {
148 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
150 let protocol_name = <CommandListenerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
151 Self { client: fidl::client::Client::new(channel, protocol_name) }
152 }
153
154 pub fn take_event_stream(&self) -> CommandListenerEventStream {
160 CommandListenerEventStream { event_receiver: self.client.take_event_receiver() }
161 }
162}
163
164impl CommandListenerProxyInterface for CommandListenerProxy {}
165
166pub struct CommandListenerEventStream {
167 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
168}
169
170impl std::marker::Unpin for CommandListenerEventStream {}
171
172impl futures::stream::FusedStream for CommandListenerEventStream {
173 fn is_terminated(&self) -> bool {
174 self.event_receiver.is_terminated()
175 }
176}
177
178impl futures::Stream for CommandListenerEventStream {
179 type Item = Result<CommandListenerEvent, fidl::Error>;
180
181 fn poll_next(
182 mut self: std::pin::Pin<&mut Self>,
183 cx: &mut std::task::Context<'_>,
184 ) -> std::task::Poll<Option<Self::Item>> {
185 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
186 &mut self.event_receiver,
187 cx
188 )?) {
189 Some(buf) => std::task::Poll::Ready(Some(CommandListenerEvent::decode(buf))),
190 None => std::task::Poll::Ready(None),
191 }
192 }
193}
194
195#[derive(Debug)]
196pub enum CommandListenerEvent {
197 OnStarted { status: i32 },
198 OnTerminated { status: i32, return_code: i32 },
199}
200
201impl CommandListenerEvent {
202 #[allow(irrefutable_let_patterns)]
203 pub fn into_on_started(self) -> Option<i32> {
204 if let CommandListenerEvent::OnStarted { status } = self {
205 Some((status))
206 } else {
207 None
208 }
209 }
210 #[allow(irrefutable_let_patterns)]
211 pub fn into_on_terminated(self) -> Option<(i32, i32)> {
212 if let CommandListenerEvent::OnTerminated { status, return_code } = self {
213 Some((status, return_code))
214 } else {
215 None
216 }
217 }
218
219 fn decode(
221 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
222 ) -> Result<CommandListenerEvent, fidl::Error> {
223 let (bytes, _handles) = buf.split_mut();
224 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
225 debug_assert_eq!(tx_header.tx_id, 0);
226 match tx_header.ordinal {
227 0x3a3693a7e54a5f09 => {
228 let mut out = fidl::new_empty!(
229 CommandListenerOnStartedRequest,
230 fidl::encoding::DefaultFuchsiaResourceDialect
231 );
232 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CommandListenerOnStartedRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
233 Ok((CommandListenerEvent::OnStarted { status: out.status }))
234 }
235 0x5a08413bdea2446a => {
236 let mut out = fidl::new_empty!(
237 CommandListenerOnTerminatedRequest,
238 fidl::encoding::DefaultFuchsiaResourceDialect
239 );
240 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CommandListenerOnTerminatedRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
241 Ok((CommandListenerEvent::OnTerminated {
242 status: out.status,
243 return_code: out.return_code,
244 }))
245 }
246 _ => Err(fidl::Error::UnknownOrdinal {
247 ordinal: tx_header.ordinal,
248 protocol_name:
249 <CommandListenerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
250 }),
251 }
252 }
253}
254
255pub struct CommandListenerRequestStream {
257 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
258 is_terminated: bool,
259}
260
261impl std::marker::Unpin for CommandListenerRequestStream {}
262
263impl futures::stream::FusedStream for CommandListenerRequestStream {
264 fn is_terminated(&self) -> bool {
265 self.is_terminated
266 }
267}
268
269impl fidl::endpoints::RequestStream for CommandListenerRequestStream {
270 type Protocol = CommandListenerMarker;
271 type ControlHandle = CommandListenerControlHandle;
272
273 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
274 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
275 }
276
277 fn control_handle(&self) -> Self::ControlHandle {
278 CommandListenerControlHandle { inner: self.inner.clone() }
279 }
280
281 fn into_inner(
282 self,
283 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
284 {
285 (self.inner, self.is_terminated)
286 }
287
288 fn from_inner(
289 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
290 is_terminated: bool,
291 ) -> Self {
292 Self { inner, is_terminated }
293 }
294}
295
296impl futures::Stream for CommandListenerRequestStream {
297 type Item = Result<CommandListenerRequest, fidl::Error>;
298
299 fn poll_next(
300 mut self: std::pin::Pin<&mut Self>,
301 cx: &mut std::task::Context<'_>,
302 ) -> std::task::Poll<Option<Self::Item>> {
303 let this = &mut *self;
304 if this.inner.check_shutdown(cx) {
305 this.is_terminated = true;
306 return std::task::Poll::Ready(None);
307 }
308 if this.is_terminated {
309 panic!("polled CommandListenerRequestStream after completion");
310 }
311 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
312 |bytes, handles| {
313 match this.inner.channel().read_etc(cx, bytes, handles) {
314 std::task::Poll::Ready(Ok(())) => {}
315 std::task::Poll::Pending => return std::task::Poll::Pending,
316 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
317 this.is_terminated = true;
318 return std::task::Poll::Ready(None);
319 }
320 std::task::Poll::Ready(Err(e)) => {
321 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
322 e.into(),
323 ))))
324 }
325 }
326
327 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
329
330 std::task::Poll::Ready(Some(match header.ordinal {
331 _ => Err(fidl::Error::UnknownOrdinal {
332 ordinal: header.ordinal,
333 protocol_name:
334 <CommandListenerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
335 }),
336 }))
337 },
338 )
339 }
340}
341
342#[derive(Debug)]
343pub enum CommandListenerRequest {}
344
345impl CommandListenerRequest {
346 pub fn method_name(&self) -> &'static str {
348 match *self {}
349 }
350}
351
352#[derive(Debug, Clone)]
353pub struct CommandListenerControlHandle {
354 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
355}
356
357impl fidl::endpoints::ControlHandle for CommandListenerControlHandle {
358 fn shutdown(&self) {
359 self.inner.shutdown()
360 }
361 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
362 self.inner.shutdown_with_epitaph(status)
363 }
364
365 fn is_closed(&self) -> bool {
366 self.inner.channel().is_closed()
367 }
368 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
369 self.inner.channel().on_closed()
370 }
371
372 #[cfg(target_os = "fuchsia")]
373 fn signal_peer(
374 &self,
375 clear_mask: zx::Signals,
376 set_mask: zx::Signals,
377 ) -> Result<(), zx_status::Status> {
378 use fidl::Peered;
379 self.inner.channel().signal_peer(clear_mask, set_mask)
380 }
381}
382
383impl CommandListenerControlHandle {
384 pub fn send_on_started(&self, mut status: i32) -> Result<(), fidl::Error> {
385 self.inner.send::<CommandListenerOnStartedRequest>(
386 (status,),
387 0,
388 0x3a3693a7e54a5f09,
389 fidl::encoding::DynamicFlags::empty(),
390 )
391 }
392
393 pub fn send_on_terminated(
394 &self,
395 mut status: i32,
396 mut return_code: i32,
397 ) -> Result<(), fidl::Error> {
398 self.inner.send::<CommandListenerOnTerminatedRequest>(
399 (status, return_code),
400 0,
401 0x5a08413bdea2446a,
402 fidl::encoding::DynamicFlags::empty(),
403 )
404 }
405}
406
407#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
408pub struct DiscoveryMarker;
409
410impl fidl::endpoints::ProtocolMarker for DiscoveryMarker {
411 type Proxy = DiscoveryProxy;
412 type RequestStream = DiscoveryRequestStream;
413 #[cfg(target_os = "fuchsia")]
414 type SynchronousProxy = DiscoverySynchronousProxy;
415
416 const DEBUG_NAME: &'static str = "fuchsia.virtualization.guest.interaction.Discovery";
417}
418impl fidl::endpoints::DiscoverableProtocolMarker for DiscoveryMarker {}
419
420pub trait DiscoveryProxyInterface: Send + Sync {
421 fn r#get_guest(
422 &self,
423 realm_name: Option<&str>,
424 guest_name: &str,
425 guest: fidl::endpoints::ServerEnd<InteractionMarker>,
426 ) -> Result<(), fidl::Error>;
427}
428#[derive(Debug)]
429#[cfg(target_os = "fuchsia")]
430pub struct DiscoverySynchronousProxy {
431 client: fidl::client::sync::Client,
432}
433
434#[cfg(target_os = "fuchsia")]
435impl fidl::endpoints::SynchronousProxy for DiscoverySynchronousProxy {
436 type Proxy = DiscoveryProxy;
437 type Protocol = DiscoveryMarker;
438
439 fn from_channel(inner: fidl::Channel) -> Self {
440 Self::new(inner)
441 }
442
443 fn into_channel(self) -> fidl::Channel {
444 self.client.into_channel()
445 }
446
447 fn as_channel(&self) -> &fidl::Channel {
448 self.client.as_channel()
449 }
450}
451
452#[cfg(target_os = "fuchsia")]
453impl DiscoverySynchronousProxy {
454 pub fn new(channel: fidl::Channel) -> Self {
455 let protocol_name = <DiscoveryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
456 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
457 }
458
459 pub fn into_channel(self) -> fidl::Channel {
460 self.client.into_channel()
461 }
462
463 pub fn wait_for_event(
466 &self,
467 deadline: zx::MonotonicInstant,
468 ) -> Result<DiscoveryEvent, fidl::Error> {
469 DiscoveryEvent::decode(self.client.wait_for_event(deadline)?)
470 }
471
472 pub fn r#get_guest(
476 &self,
477 mut realm_name: Option<&str>,
478 mut guest_name: &str,
479 mut guest: fidl::endpoints::ServerEnd<InteractionMarker>,
480 ) -> Result<(), fidl::Error> {
481 self.client.send::<DiscoveryGetGuestRequest>(
482 (realm_name, guest_name, guest),
483 0x60538587bdd80a32,
484 fidl::encoding::DynamicFlags::empty(),
485 )
486 }
487}
488
489#[cfg(target_os = "fuchsia")]
490impl From<DiscoverySynchronousProxy> for zx::Handle {
491 fn from(value: DiscoverySynchronousProxy) -> Self {
492 value.into_channel().into()
493 }
494}
495
496#[cfg(target_os = "fuchsia")]
497impl From<fidl::Channel> for DiscoverySynchronousProxy {
498 fn from(value: fidl::Channel) -> Self {
499 Self::new(value)
500 }
501}
502
503#[derive(Debug, Clone)]
504pub struct DiscoveryProxy {
505 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
506}
507
508impl fidl::endpoints::Proxy for DiscoveryProxy {
509 type Protocol = DiscoveryMarker;
510
511 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
512 Self::new(inner)
513 }
514
515 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
516 self.client.into_channel().map_err(|client| Self { client })
517 }
518
519 fn as_channel(&self) -> &::fidl::AsyncChannel {
520 self.client.as_channel()
521 }
522}
523
524impl DiscoveryProxy {
525 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
527 let protocol_name = <DiscoveryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
528 Self { client: fidl::client::Client::new(channel, protocol_name) }
529 }
530
531 pub fn take_event_stream(&self) -> DiscoveryEventStream {
537 DiscoveryEventStream { event_receiver: self.client.take_event_receiver() }
538 }
539
540 pub fn r#get_guest(
544 &self,
545 mut realm_name: Option<&str>,
546 mut guest_name: &str,
547 mut guest: fidl::endpoints::ServerEnd<InteractionMarker>,
548 ) -> Result<(), fidl::Error> {
549 DiscoveryProxyInterface::r#get_guest(self, realm_name, guest_name, guest)
550 }
551}
552
553impl DiscoveryProxyInterface for DiscoveryProxy {
554 fn r#get_guest(
555 &self,
556 mut realm_name: Option<&str>,
557 mut guest_name: &str,
558 mut guest: fidl::endpoints::ServerEnd<InteractionMarker>,
559 ) -> Result<(), fidl::Error> {
560 self.client.send::<DiscoveryGetGuestRequest>(
561 (realm_name, guest_name, guest),
562 0x60538587bdd80a32,
563 fidl::encoding::DynamicFlags::empty(),
564 )
565 }
566}
567
568pub struct DiscoveryEventStream {
569 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
570}
571
572impl std::marker::Unpin for DiscoveryEventStream {}
573
574impl futures::stream::FusedStream for DiscoveryEventStream {
575 fn is_terminated(&self) -> bool {
576 self.event_receiver.is_terminated()
577 }
578}
579
580impl futures::Stream for DiscoveryEventStream {
581 type Item = Result<DiscoveryEvent, fidl::Error>;
582
583 fn poll_next(
584 mut self: std::pin::Pin<&mut Self>,
585 cx: &mut std::task::Context<'_>,
586 ) -> std::task::Poll<Option<Self::Item>> {
587 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
588 &mut self.event_receiver,
589 cx
590 )?) {
591 Some(buf) => std::task::Poll::Ready(Some(DiscoveryEvent::decode(buf))),
592 None => std::task::Poll::Ready(None),
593 }
594 }
595}
596
597#[derive(Debug)]
598pub enum DiscoveryEvent {}
599
600impl DiscoveryEvent {
601 fn decode(
603 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
604 ) -> Result<DiscoveryEvent, fidl::Error> {
605 let (bytes, _handles) = buf.split_mut();
606 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
607 debug_assert_eq!(tx_header.tx_id, 0);
608 match tx_header.ordinal {
609 _ => Err(fidl::Error::UnknownOrdinal {
610 ordinal: tx_header.ordinal,
611 protocol_name: <DiscoveryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
612 }),
613 }
614 }
615}
616
617pub struct DiscoveryRequestStream {
619 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
620 is_terminated: bool,
621}
622
623impl std::marker::Unpin for DiscoveryRequestStream {}
624
625impl futures::stream::FusedStream for DiscoveryRequestStream {
626 fn is_terminated(&self) -> bool {
627 self.is_terminated
628 }
629}
630
631impl fidl::endpoints::RequestStream for DiscoveryRequestStream {
632 type Protocol = DiscoveryMarker;
633 type ControlHandle = DiscoveryControlHandle;
634
635 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
636 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
637 }
638
639 fn control_handle(&self) -> Self::ControlHandle {
640 DiscoveryControlHandle { inner: self.inner.clone() }
641 }
642
643 fn into_inner(
644 self,
645 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
646 {
647 (self.inner, self.is_terminated)
648 }
649
650 fn from_inner(
651 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
652 is_terminated: bool,
653 ) -> Self {
654 Self { inner, is_terminated }
655 }
656}
657
658impl futures::Stream for DiscoveryRequestStream {
659 type Item = Result<DiscoveryRequest, fidl::Error>;
660
661 fn poll_next(
662 mut self: std::pin::Pin<&mut Self>,
663 cx: &mut std::task::Context<'_>,
664 ) -> std::task::Poll<Option<Self::Item>> {
665 let this = &mut *self;
666 if this.inner.check_shutdown(cx) {
667 this.is_terminated = true;
668 return std::task::Poll::Ready(None);
669 }
670 if this.is_terminated {
671 panic!("polled DiscoveryRequestStream after completion");
672 }
673 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
674 |bytes, handles| {
675 match this.inner.channel().read_etc(cx, bytes, handles) {
676 std::task::Poll::Ready(Ok(())) => {}
677 std::task::Poll::Pending => return std::task::Poll::Pending,
678 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
679 this.is_terminated = true;
680 return std::task::Poll::Ready(None);
681 }
682 std::task::Poll::Ready(Err(e)) => {
683 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
684 e.into(),
685 ))))
686 }
687 }
688
689 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
691
692 std::task::Poll::Ready(Some(match header.ordinal {
693 0x60538587bdd80a32 => {
694 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
695 let mut req = fidl::new_empty!(
696 DiscoveryGetGuestRequest,
697 fidl::encoding::DefaultFuchsiaResourceDialect
698 );
699 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DiscoveryGetGuestRequest>(&header, _body_bytes, handles, &mut req)?;
700 let control_handle = DiscoveryControlHandle { inner: this.inner.clone() };
701 Ok(DiscoveryRequest::GetGuest {
702 realm_name: req.realm_name,
703 guest_name: req.guest_name,
704 guest: req.guest,
705
706 control_handle,
707 })
708 }
709 _ => Err(fidl::Error::UnknownOrdinal {
710 ordinal: header.ordinal,
711 protocol_name:
712 <DiscoveryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
713 }),
714 }))
715 },
716 )
717 }
718}
719
720#[derive(Debug)]
722pub enum DiscoveryRequest {
723 GetGuest {
727 realm_name: Option<String>,
728 guest_name: String,
729 guest: fidl::endpoints::ServerEnd<InteractionMarker>,
730 control_handle: DiscoveryControlHandle,
731 },
732}
733
734impl DiscoveryRequest {
735 #[allow(irrefutable_let_patterns)]
736 pub fn into_get_guest(
737 self,
738 ) -> Option<(
739 Option<String>,
740 String,
741 fidl::endpoints::ServerEnd<InteractionMarker>,
742 DiscoveryControlHandle,
743 )> {
744 if let DiscoveryRequest::GetGuest { realm_name, guest_name, guest, control_handle } = self {
745 Some((realm_name, guest_name, guest, control_handle))
746 } else {
747 None
748 }
749 }
750
751 pub fn method_name(&self) -> &'static str {
753 match *self {
754 DiscoveryRequest::GetGuest { .. } => "get_guest",
755 }
756 }
757}
758
759#[derive(Debug, Clone)]
760pub struct DiscoveryControlHandle {
761 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
762}
763
764impl fidl::endpoints::ControlHandle for DiscoveryControlHandle {
765 fn shutdown(&self) {
766 self.inner.shutdown()
767 }
768 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
769 self.inner.shutdown_with_epitaph(status)
770 }
771
772 fn is_closed(&self) -> bool {
773 self.inner.channel().is_closed()
774 }
775 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
776 self.inner.channel().on_closed()
777 }
778
779 #[cfg(target_os = "fuchsia")]
780 fn signal_peer(
781 &self,
782 clear_mask: zx::Signals,
783 set_mask: zx::Signals,
784 ) -> Result<(), zx_status::Status> {
785 use fidl::Peered;
786 self.inner.channel().signal_peer(clear_mask, set_mask)
787 }
788}
789
790impl DiscoveryControlHandle {}
791
792#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
793pub struct InteractionMarker;
794
795impl fidl::endpoints::ProtocolMarker for InteractionMarker {
796 type Proxy = InteractionProxy;
797 type RequestStream = InteractionRequestStream;
798 #[cfg(target_os = "fuchsia")]
799 type SynchronousProxy = InteractionSynchronousProxy;
800
801 const DEBUG_NAME: &'static str = "(anonymous) Interaction";
802}
803
804pub trait InteractionProxyInterface: Send + Sync {
805 type PutFileResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
806 fn r#put_file(
807 &self,
808 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
809 remote_path: &str,
810 ) -> Self::PutFileResponseFut;
811 type GetFileResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
812 fn r#get_file(
813 &self,
814 remote_path: &str,
815 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
816 ) -> Self::GetFileResponseFut;
817 fn r#execute_command(
818 &self,
819 command: &str,
820 env: &[EnvironmentVariable],
821 stdin: Option<fidl::Socket>,
822 stdout: Option<fidl::Socket>,
823 stderr: Option<fidl::Socket>,
824 command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
825 ) -> Result<(), fidl::Error>;
826}
827#[derive(Debug)]
828#[cfg(target_os = "fuchsia")]
829pub struct InteractionSynchronousProxy {
830 client: fidl::client::sync::Client,
831}
832
833#[cfg(target_os = "fuchsia")]
834impl fidl::endpoints::SynchronousProxy for InteractionSynchronousProxy {
835 type Proxy = InteractionProxy;
836 type Protocol = InteractionMarker;
837
838 fn from_channel(inner: fidl::Channel) -> Self {
839 Self::new(inner)
840 }
841
842 fn into_channel(self) -> fidl::Channel {
843 self.client.into_channel()
844 }
845
846 fn as_channel(&self) -> &fidl::Channel {
847 self.client.as_channel()
848 }
849}
850
851#[cfg(target_os = "fuchsia")]
852impl InteractionSynchronousProxy {
853 pub fn new(channel: fidl::Channel) -> Self {
854 let protocol_name = <InteractionMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
855 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
856 }
857
858 pub fn into_channel(self) -> fidl::Channel {
859 self.client.into_channel()
860 }
861
862 pub fn wait_for_event(
865 &self,
866 deadline: zx::MonotonicInstant,
867 ) -> Result<InteractionEvent, fidl::Error> {
868 InteractionEvent::decode(self.client.wait_for_event(deadline)?)
869 }
870
871 pub fn r#put_file(
874 &self,
875 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
876 mut remote_path: &str,
877 ___deadline: zx::MonotonicInstant,
878 ) -> Result<i32, fidl::Error> {
879 let _response =
880 self.client.send_query::<InteractionPutFileRequest, InteractionPutFileResponse>(
881 (local_file, remote_path),
882 0x223bc20da4a7cddd,
883 fidl::encoding::DynamicFlags::empty(),
884 ___deadline,
885 )?;
886 Ok(_response.status)
887 }
888
889 pub fn r#get_file(
892 &self,
893 mut remote_path: &str,
894 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
895 ___deadline: zx::MonotonicInstant,
896 ) -> Result<i32, fidl::Error> {
897 let _response =
898 self.client.send_query::<InteractionGetFileRequest, InteractionGetFileResponse>(
899 (remote_path, local_file),
900 0x7696bea472ca0f2d,
901 fidl::encoding::DynamicFlags::empty(),
902 ___deadline,
903 )?;
904 Ok(_response.status)
905 }
906
907 pub fn r#execute_command(
910 &self,
911 mut command: &str,
912 mut env: &[EnvironmentVariable],
913 mut stdin: Option<fidl::Socket>,
914 mut stdout: Option<fidl::Socket>,
915 mut stderr: Option<fidl::Socket>,
916 mut command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
917 ) -> Result<(), fidl::Error> {
918 self.client.send::<InteractionExecuteCommandRequest>(
919 (command, env, stdin, stdout, stderr, command_listener),
920 0x612641220a1556d8,
921 fidl::encoding::DynamicFlags::empty(),
922 )
923 }
924}
925
926#[cfg(target_os = "fuchsia")]
927impl From<InteractionSynchronousProxy> for zx::Handle {
928 fn from(value: InteractionSynchronousProxy) -> Self {
929 value.into_channel().into()
930 }
931}
932
933#[cfg(target_os = "fuchsia")]
934impl From<fidl::Channel> for InteractionSynchronousProxy {
935 fn from(value: fidl::Channel) -> Self {
936 Self::new(value)
937 }
938}
939
940#[derive(Debug, Clone)]
941pub struct InteractionProxy {
942 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
943}
944
945impl fidl::endpoints::Proxy for InteractionProxy {
946 type Protocol = InteractionMarker;
947
948 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
949 Self::new(inner)
950 }
951
952 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
953 self.client.into_channel().map_err(|client| Self { client })
954 }
955
956 fn as_channel(&self) -> &::fidl::AsyncChannel {
957 self.client.as_channel()
958 }
959}
960
961impl InteractionProxy {
962 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
964 let protocol_name = <InteractionMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
965 Self { client: fidl::client::Client::new(channel, protocol_name) }
966 }
967
968 pub fn take_event_stream(&self) -> InteractionEventStream {
974 InteractionEventStream { event_receiver: self.client.take_event_receiver() }
975 }
976
977 pub fn r#put_file(
980 &self,
981 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
982 mut remote_path: &str,
983 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
984 InteractionProxyInterface::r#put_file(self, local_file, remote_path)
985 }
986
987 pub fn r#get_file(
990 &self,
991 mut remote_path: &str,
992 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
993 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
994 InteractionProxyInterface::r#get_file(self, remote_path, local_file)
995 }
996
997 pub fn r#execute_command(
1000 &self,
1001 mut command: &str,
1002 mut env: &[EnvironmentVariable],
1003 mut stdin: Option<fidl::Socket>,
1004 mut stdout: Option<fidl::Socket>,
1005 mut stderr: Option<fidl::Socket>,
1006 mut command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
1007 ) -> Result<(), fidl::Error> {
1008 InteractionProxyInterface::r#execute_command(
1009 self,
1010 command,
1011 env,
1012 stdin,
1013 stdout,
1014 stderr,
1015 command_listener,
1016 )
1017 }
1018}
1019
1020impl InteractionProxyInterface for InteractionProxy {
1021 type PutFileResponseFut =
1022 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
1023 fn r#put_file(
1024 &self,
1025 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1026 mut remote_path: &str,
1027 ) -> Self::PutFileResponseFut {
1028 fn _decode(
1029 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1030 ) -> Result<i32, fidl::Error> {
1031 let _response = fidl::client::decode_transaction_body::<
1032 InteractionPutFileResponse,
1033 fidl::encoding::DefaultFuchsiaResourceDialect,
1034 0x223bc20da4a7cddd,
1035 >(_buf?)?;
1036 Ok(_response.status)
1037 }
1038 self.client.send_query_and_decode::<InteractionPutFileRequest, i32>(
1039 (local_file, remote_path),
1040 0x223bc20da4a7cddd,
1041 fidl::encoding::DynamicFlags::empty(),
1042 _decode,
1043 )
1044 }
1045
1046 type GetFileResponseFut =
1047 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
1048 fn r#get_file(
1049 &self,
1050 mut remote_path: &str,
1051 mut local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1052 ) -> Self::GetFileResponseFut {
1053 fn _decode(
1054 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1055 ) -> Result<i32, fidl::Error> {
1056 let _response = fidl::client::decode_transaction_body::<
1057 InteractionGetFileResponse,
1058 fidl::encoding::DefaultFuchsiaResourceDialect,
1059 0x7696bea472ca0f2d,
1060 >(_buf?)?;
1061 Ok(_response.status)
1062 }
1063 self.client.send_query_and_decode::<InteractionGetFileRequest, i32>(
1064 (remote_path, local_file),
1065 0x7696bea472ca0f2d,
1066 fidl::encoding::DynamicFlags::empty(),
1067 _decode,
1068 )
1069 }
1070
1071 fn r#execute_command(
1072 &self,
1073 mut command: &str,
1074 mut env: &[EnvironmentVariable],
1075 mut stdin: Option<fidl::Socket>,
1076 mut stdout: Option<fidl::Socket>,
1077 mut stderr: Option<fidl::Socket>,
1078 mut command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
1079 ) -> Result<(), fidl::Error> {
1080 self.client.send::<InteractionExecuteCommandRequest>(
1081 (command, env, stdin, stdout, stderr, command_listener),
1082 0x612641220a1556d8,
1083 fidl::encoding::DynamicFlags::empty(),
1084 )
1085 }
1086}
1087
1088pub struct InteractionEventStream {
1089 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
1090}
1091
1092impl std::marker::Unpin for InteractionEventStream {}
1093
1094impl futures::stream::FusedStream for InteractionEventStream {
1095 fn is_terminated(&self) -> bool {
1096 self.event_receiver.is_terminated()
1097 }
1098}
1099
1100impl futures::Stream for InteractionEventStream {
1101 type Item = Result<InteractionEvent, fidl::Error>;
1102
1103 fn poll_next(
1104 mut self: std::pin::Pin<&mut Self>,
1105 cx: &mut std::task::Context<'_>,
1106 ) -> std::task::Poll<Option<Self::Item>> {
1107 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
1108 &mut self.event_receiver,
1109 cx
1110 )?) {
1111 Some(buf) => std::task::Poll::Ready(Some(InteractionEvent::decode(buf))),
1112 None => std::task::Poll::Ready(None),
1113 }
1114 }
1115}
1116
1117#[derive(Debug)]
1118pub enum InteractionEvent {}
1119
1120impl InteractionEvent {
1121 fn decode(
1123 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1124 ) -> Result<InteractionEvent, fidl::Error> {
1125 let (bytes, _handles) = buf.split_mut();
1126 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1127 debug_assert_eq!(tx_header.tx_id, 0);
1128 match tx_header.ordinal {
1129 _ => Err(fidl::Error::UnknownOrdinal {
1130 ordinal: tx_header.ordinal,
1131 protocol_name: <InteractionMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1132 }),
1133 }
1134 }
1135}
1136
1137pub struct InteractionRequestStream {
1139 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1140 is_terminated: bool,
1141}
1142
1143impl std::marker::Unpin for InteractionRequestStream {}
1144
1145impl futures::stream::FusedStream for InteractionRequestStream {
1146 fn is_terminated(&self) -> bool {
1147 self.is_terminated
1148 }
1149}
1150
1151impl fidl::endpoints::RequestStream for InteractionRequestStream {
1152 type Protocol = InteractionMarker;
1153 type ControlHandle = InteractionControlHandle;
1154
1155 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1156 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1157 }
1158
1159 fn control_handle(&self) -> Self::ControlHandle {
1160 InteractionControlHandle { inner: self.inner.clone() }
1161 }
1162
1163 fn into_inner(
1164 self,
1165 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1166 {
1167 (self.inner, self.is_terminated)
1168 }
1169
1170 fn from_inner(
1171 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1172 is_terminated: bool,
1173 ) -> Self {
1174 Self { inner, is_terminated }
1175 }
1176}
1177
1178impl futures::Stream for InteractionRequestStream {
1179 type Item = Result<InteractionRequest, fidl::Error>;
1180
1181 fn poll_next(
1182 mut self: std::pin::Pin<&mut Self>,
1183 cx: &mut std::task::Context<'_>,
1184 ) -> std::task::Poll<Option<Self::Item>> {
1185 let this = &mut *self;
1186 if this.inner.check_shutdown(cx) {
1187 this.is_terminated = true;
1188 return std::task::Poll::Ready(None);
1189 }
1190 if this.is_terminated {
1191 panic!("polled InteractionRequestStream after completion");
1192 }
1193 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1194 |bytes, handles| {
1195 match this.inner.channel().read_etc(cx, bytes, handles) {
1196 std::task::Poll::Ready(Ok(())) => {}
1197 std::task::Poll::Pending => return std::task::Poll::Pending,
1198 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1199 this.is_terminated = true;
1200 return std::task::Poll::Ready(None);
1201 }
1202 std::task::Poll::Ready(Err(e)) => {
1203 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1204 e.into(),
1205 ))))
1206 }
1207 }
1208
1209 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1211
1212 std::task::Poll::Ready(Some(match header.ordinal {
1213 0x223bc20da4a7cddd => {
1214 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1215 let mut req = fidl::new_empty!(
1216 InteractionPutFileRequest,
1217 fidl::encoding::DefaultFuchsiaResourceDialect
1218 );
1219 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InteractionPutFileRequest>(&header, _body_bytes, handles, &mut req)?;
1220 let control_handle = InteractionControlHandle { inner: this.inner.clone() };
1221 Ok(InteractionRequest::PutFile {
1222 local_file: req.local_file,
1223 remote_path: req.remote_path,
1224
1225 responder: InteractionPutFileResponder {
1226 control_handle: std::mem::ManuallyDrop::new(control_handle),
1227 tx_id: header.tx_id,
1228 },
1229 })
1230 }
1231 0x7696bea472ca0f2d => {
1232 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1233 let mut req = fidl::new_empty!(
1234 InteractionGetFileRequest,
1235 fidl::encoding::DefaultFuchsiaResourceDialect
1236 );
1237 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InteractionGetFileRequest>(&header, _body_bytes, handles, &mut req)?;
1238 let control_handle = InteractionControlHandle { inner: this.inner.clone() };
1239 Ok(InteractionRequest::GetFile {
1240 remote_path: req.remote_path,
1241 local_file: req.local_file,
1242
1243 responder: InteractionGetFileResponder {
1244 control_handle: std::mem::ManuallyDrop::new(control_handle),
1245 tx_id: header.tx_id,
1246 },
1247 })
1248 }
1249 0x612641220a1556d8 => {
1250 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
1251 let mut req = fidl::new_empty!(
1252 InteractionExecuteCommandRequest,
1253 fidl::encoding::DefaultFuchsiaResourceDialect
1254 );
1255 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InteractionExecuteCommandRequest>(&header, _body_bytes, handles, &mut req)?;
1256 let control_handle = InteractionControlHandle { inner: this.inner.clone() };
1257 Ok(InteractionRequest::ExecuteCommand {
1258 command: req.command,
1259 env: req.env,
1260 stdin: req.stdin,
1261 stdout: req.stdout,
1262 stderr: req.stderr,
1263 command_listener: req.command_listener,
1264
1265 control_handle,
1266 })
1267 }
1268 _ => Err(fidl::Error::UnknownOrdinal {
1269 ordinal: header.ordinal,
1270 protocol_name:
1271 <InteractionMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1272 }),
1273 }))
1274 },
1275 )
1276 }
1277}
1278
1279#[derive(Debug)]
1280pub enum InteractionRequest {
1281 PutFile {
1284 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1285 remote_path: String,
1286 responder: InteractionPutFileResponder,
1287 },
1288 GetFile {
1291 remote_path: String,
1292 local_file: fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1293 responder: InteractionGetFileResponder,
1294 },
1295 ExecuteCommand {
1298 command: String,
1299 env: Vec<EnvironmentVariable>,
1300 stdin: Option<fidl::Socket>,
1301 stdout: Option<fidl::Socket>,
1302 stderr: Option<fidl::Socket>,
1303 command_listener: fidl::endpoints::ServerEnd<CommandListenerMarker>,
1304 control_handle: InteractionControlHandle,
1305 },
1306}
1307
1308impl InteractionRequest {
1309 #[allow(irrefutable_let_patterns)]
1310 pub fn into_put_file(
1311 self,
1312 ) -> Option<(
1313 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1314 String,
1315 InteractionPutFileResponder,
1316 )> {
1317 if let InteractionRequest::PutFile { local_file, remote_path, responder } = self {
1318 Some((local_file, remote_path, responder))
1319 } else {
1320 None
1321 }
1322 }
1323
1324 #[allow(irrefutable_let_patterns)]
1325 pub fn into_get_file(
1326 self,
1327 ) -> Option<(
1328 String,
1329 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
1330 InteractionGetFileResponder,
1331 )> {
1332 if let InteractionRequest::GetFile { remote_path, local_file, responder } = self {
1333 Some((remote_path, local_file, responder))
1334 } else {
1335 None
1336 }
1337 }
1338
1339 #[allow(irrefutable_let_patterns)]
1340 pub fn into_execute_command(
1341 self,
1342 ) -> Option<(
1343 String,
1344 Vec<EnvironmentVariable>,
1345 Option<fidl::Socket>,
1346 Option<fidl::Socket>,
1347 Option<fidl::Socket>,
1348 fidl::endpoints::ServerEnd<CommandListenerMarker>,
1349 InteractionControlHandle,
1350 )> {
1351 if let InteractionRequest::ExecuteCommand {
1352 command,
1353 env,
1354 stdin,
1355 stdout,
1356 stderr,
1357 command_listener,
1358 control_handle,
1359 } = self
1360 {
1361 Some((command, env, stdin, stdout, stderr, command_listener, control_handle))
1362 } else {
1363 None
1364 }
1365 }
1366
1367 pub fn method_name(&self) -> &'static str {
1369 match *self {
1370 InteractionRequest::PutFile { .. } => "put_file",
1371 InteractionRequest::GetFile { .. } => "get_file",
1372 InteractionRequest::ExecuteCommand { .. } => "execute_command",
1373 }
1374 }
1375}
1376
1377#[derive(Debug, Clone)]
1378pub struct InteractionControlHandle {
1379 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1380}
1381
1382impl fidl::endpoints::ControlHandle for InteractionControlHandle {
1383 fn shutdown(&self) {
1384 self.inner.shutdown()
1385 }
1386 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1387 self.inner.shutdown_with_epitaph(status)
1388 }
1389
1390 fn is_closed(&self) -> bool {
1391 self.inner.channel().is_closed()
1392 }
1393 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1394 self.inner.channel().on_closed()
1395 }
1396
1397 #[cfg(target_os = "fuchsia")]
1398 fn signal_peer(
1399 &self,
1400 clear_mask: zx::Signals,
1401 set_mask: zx::Signals,
1402 ) -> Result<(), zx_status::Status> {
1403 use fidl::Peered;
1404 self.inner.channel().signal_peer(clear_mask, set_mask)
1405 }
1406}
1407
1408impl InteractionControlHandle {}
1409
1410#[must_use = "FIDL methods require a response to be sent"]
1411#[derive(Debug)]
1412pub struct InteractionPutFileResponder {
1413 control_handle: std::mem::ManuallyDrop<InteractionControlHandle>,
1414 tx_id: u32,
1415}
1416
1417impl std::ops::Drop for InteractionPutFileResponder {
1421 fn drop(&mut self) {
1422 self.control_handle.shutdown();
1423 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1425 }
1426}
1427
1428impl fidl::endpoints::Responder for InteractionPutFileResponder {
1429 type ControlHandle = InteractionControlHandle;
1430
1431 fn control_handle(&self) -> &InteractionControlHandle {
1432 &self.control_handle
1433 }
1434
1435 fn drop_without_shutdown(mut self) {
1436 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1438 std::mem::forget(self);
1440 }
1441}
1442
1443impl InteractionPutFileResponder {
1444 pub fn send(self, mut status: i32) -> Result<(), fidl::Error> {
1448 let _result = self.send_raw(status);
1449 if _result.is_err() {
1450 self.control_handle.shutdown();
1451 }
1452 self.drop_without_shutdown();
1453 _result
1454 }
1455
1456 pub fn send_no_shutdown_on_err(self, mut status: i32) -> Result<(), fidl::Error> {
1458 let _result = self.send_raw(status);
1459 self.drop_without_shutdown();
1460 _result
1461 }
1462
1463 fn send_raw(&self, mut status: i32) -> Result<(), fidl::Error> {
1464 self.control_handle.inner.send::<InteractionPutFileResponse>(
1465 (status,),
1466 self.tx_id,
1467 0x223bc20da4a7cddd,
1468 fidl::encoding::DynamicFlags::empty(),
1469 )
1470 }
1471}
1472
1473#[must_use = "FIDL methods require a response to be sent"]
1474#[derive(Debug)]
1475pub struct InteractionGetFileResponder {
1476 control_handle: std::mem::ManuallyDrop<InteractionControlHandle>,
1477 tx_id: u32,
1478}
1479
1480impl std::ops::Drop for InteractionGetFileResponder {
1484 fn drop(&mut self) {
1485 self.control_handle.shutdown();
1486 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1488 }
1489}
1490
1491impl fidl::endpoints::Responder for InteractionGetFileResponder {
1492 type ControlHandle = InteractionControlHandle;
1493
1494 fn control_handle(&self) -> &InteractionControlHandle {
1495 &self.control_handle
1496 }
1497
1498 fn drop_without_shutdown(mut self) {
1499 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1501 std::mem::forget(self);
1503 }
1504}
1505
1506impl InteractionGetFileResponder {
1507 pub fn send(self, mut status: i32) -> Result<(), fidl::Error> {
1511 let _result = self.send_raw(status);
1512 if _result.is_err() {
1513 self.control_handle.shutdown();
1514 }
1515 self.drop_without_shutdown();
1516 _result
1517 }
1518
1519 pub fn send_no_shutdown_on_err(self, mut status: i32) -> Result<(), fidl::Error> {
1521 let _result = self.send_raw(status);
1522 self.drop_without_shutdown();
1523 _result
1524 }
1525
1526 fn send_raw(&self, mut status: i32) -> Result<(), fidl::Error> {
1527 self.control_handle.inner.send::<InteractionGetFileResponse>(
1528 (status,),
1529 self.tx_id,
1530 0x7696bea472ca0f2d,
1531 fidl::encoding::DynamicFlags::empty(),
1532 )
1533 }
1534}
1535
1536mod internal {
1537 use super::*;
1538
1539 impl fidl::encoding::ResourceTypeMarker for DiscoveryGetGuestRequest {
1540 type Borrowed<'a> = &'a mut Self;
1541 fn take_or_borrow<'a>(
1542 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1543 ) -> Self::Borrowed<'a> {
1544 value
1545 }
1546 }
1547
1548 unsafe impl fidl::encoding::TypeMarker for DiscoveryGetGuestRequest {
1549 type Owned = Self;
1550
1551 #[inline(always)]
1552 fn inline_align(_context: fidl::encoding::Context) -> usize {
1553 8
1554 }
1555
1556 #[inline(always)]
1557 fn inline_size(_context: fidl::encoding::Context) -> usize {
1558 40
1559 }
1560 }
1561
1562 unsafe impl
1563 fidl::encoding::Encode<
1564 DiscoveryGetGuestRequest,
1565 fidl::encoding::DefaultFuchsiaResourceDialect,
1566 > for &mut DiscoveryGetGuestRequest
1567 {
1568 #[inline]
1569 unsafe fn encode(
1570 self,
1571 encoder: &mut fidl::encoding::Encoder<
1572 '_,
1573 fidl::encoding::DefaultFuchsiaResourceDialect,
1574 >,
1575 offset: usize,
1576 _depth: fidl::encoding::Depth,
1577 ) -> fidl::Result<()> {
1578 encoder.debug_check_bounds::<DiscoveryGetGuestRequest>(offset);
1579 fidl::encoding::Encode::<DiscoveryGetGuestRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1581 (
1582 <fidl::encoding::Optional<fidl::encoding::BoundedString<1024>> as fidl::encoding::ValueTypeMarker>::borrow(&self.realm_name),
1583 <fidl::encoding::BoundedString<1024> as fidl::encoding::ValueTypeMarker>::borrow(&self.guest_name),
1584 <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InteractionMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.guest),
1585 ),
1586 encoder, offset, _depth
1587 )
1588 }
1589 }
1590 unsafe impl<
1591 T0: fidl::encoding::Encode<
1592 fidl::encoding::Optional<fidl::encoding::BoundedString<1024>>,
1593 fidl::encoding::DefaultFuchsiaResourceDialect,
1594 >,
1595 T1: fidl::encoding::Encode<
1596 fidl::encoding::BoundedString<1024>,
1597 fidl::encoding::DefaultFuchsiaResourceDialect,
1598 >,
1599 T2: fidl::encoding::Encode<
1600 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InteractionMarker>>,
1601 fidl::encoding::DefaultFuchsiaResourceDialect,
1602 >,
1603 >
1604 fidl::encoding::Encode<
1605 DiscoveryGetGuestRequest,
1606 fidl::encoding::DefaultFuchsiaResourceDialect,
1607 > for (T0, T1, T2)
1608 {
1609 #[inline]
1610 unsafe fn encode(
1611 self,
1612 encoder: &mut fidl::encoding::Encoder<
1613 '_,
1614 fidl::encoding::DefaultFuchsiaResourceDialect,
1615 >,
1616 offset: usize,
1617 depth: fidl::encoding::Depth,
1618 ) -> fidl::Result<()> {
1619 encoder.debug_check_bounds::<DiscoveryGetGuestRequest>(offset);
1620 unsafe {
1623 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(32);
1624 (ptr as *mut u64).write_unaligned(0);
1625 }
1626 self.0.encode(encoder, offset + 0, depth)?;
1628 self.1.encode(encoder, offset + 16, depth)?;
1629 self.2.encode(encoder, offset + 32, depth)?;
1630 Ok(())
1631 }
1632 }
1633
1634 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1635 for DiscoveryGetGuestRequest
1636 {
1637 #[inline(always)]
1638 fn new_empty() -> Self {
1639 Self {
1640 realm_name: fidl::new_empty!(
1641 fidl::encoding::Optional<fidl::encoding::BoundedString<1024>>,
1642 fidl::encoding::DefaultFuchsiaResourceDialect
1643 ),
1644 guest_name: fidl::new_empty!(
1645 fidl::encoding::BoundedString<1024>,
1646 fidl::encoding::DefaultFuchsiaResourceDialect
1647 ),
1648 guest: fidl::new_empty!(
1649 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InteractionMarker>>,
1650 fidl::encoding::DefaultFuchsiaResourceDialect
1651 ),
1652 }
1653 }
1654
1655 #[inline]
1656 unsafe fn decode(
1657 &mut self,
1658 decoder: &mut fidl::encoding::Decoder<
1659 '_,
1660 fidl::encoding::DefaultFuchsiaResourceDialect,
1661 >,
1662 offset: usize,
1663 _depth: fidl::encoding::Depth,
1664 ) -> fidl::Result<()> {
1665 decoder.debug_check_bounds::<Self>(offset);
1666 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(32) };
1668 let padval = unsafe { (ptr as *const u64).read_unaligned() };
1669 let mask = 0xffffffff00000000u64;
1670 let maskedval = padval & mask;
1671 if maskedval != 0 {
1672 return Err(fidl::Error::NonZeroPadding {
1673 padding_start: offset + 32 + ((mask as u64).trailing_zeros() / 8) as usize,
1674 });
1675 }
1676 fidl::decode!(
1677 fidl::encoding::Optional<fidl::encoding::BoundedString<1024>>,
1678 fidl::encoding::DefaultFuchsiaResourceDialect,
1679 &mut self.realm_name,
1680 decoder,
1681 offset + 0,
1682 _depth
1683 )?;
1684 fidl::decode!(
1685 fidl::encoding::BoundedString<1024>,
1686 fidl::encoding::DefaultFuchsiaResourceDialect,
1687 &mut self.guest_name,
1688 decoder,
1689 offset + 16,
1690 _depth
1691 )?;
1692 fidl::decode!(
1693 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InteractionMarker>>,
1694 fidl::encoding::DefaultFuchsiaResourceDialect,
1695 &mut self.guest,
1696 decoder,
1697 offset + 32,
1698 _depth
1699 )?;
1700 Ok(())
1701 }
1702 }
1703
1704 impl fidl::encoding::ResourceTypeMarker for InteractionExecuteCommandRequest {
1705 type Borrowed<'a> = &'a mut Self;
1706 fn take_or_borrow<'a>(
1707 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1708 ) -> Self::Borrowed<'a> {
1709 value
1710 }
1711 }
1712
1713 unsafe impl fidl::encoding::TypeMarker for InteractionExecuteCommandRequest {
1714 type Owned = Self;
1715
1716 #[inline(always)]
1717 fn inline_align(_context: fidl::encoding::Context) -> usize {
1718 8
1719 }
1720
1721 #[inline(always)]
1722 fn inline_size(_context: fidl::encoding::Context) -> usize {
1723 48
1724 }
1725 }
1726
1727 unsafe impl
1728 fidl::encoding::Encode<
1729 InteractionExecuteCommandRequest,
1730 fidl::encoding::DefaultFuchsiaResourceDialect,
1731 > for &mut InteractionExecuteCommandRequest
1732 {
1733 #[inline]
1734 unsafe fn encode(
1735 self,
1736 encoder: &mut fidl::encoding::Encoder<
1737 '_,
1738 fidl::encoding::DefaultFuchsiaResourceDialect,
1739 >,
1740 offset: usize,
1741 _depth: fidl::encoding::Depth,
1742 ) -> fidl::Result<()> {
1743 encoder.debug_check_bounds::<InteractionExecuteCommandRequest>(offset);
1744 fidl::encoding::Encode::<InteractionExecuteCommandRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1746 (
1747 <fidl::encoding::BoundedString<1024> as fidl::encoding::ValueTypeMarker>::borrow(&self.command),
1748 <fidl::encoding::Vector<EnvironmentVariable, 1024> as fidl::encoding::ValueTypeMarker>::borrow(&self.env),
1749 <fidl::encoding::Optional<fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.stdin),
1750 <fidl::encoding::Optional<fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.stdout),
1751 <fidl::encoding::Optional<fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.stderr),
1752 <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<CommandListenerMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.command_listener),
1753 ),
1754 encoder, offset, _depth
1755 )
1756 }
1757 }
1758 unsafe impl<
1759 T0: fidl::encoding::Encode<
1760 fidl::encoding::BoundedString<1024>,
1761 fidl::encoding::DefaultFuchsiaResourceDialect,
1762 >,
1763 T1: fidl::encoding::Encode<
1764 fidl::encoding::Vector<EnvironmentVariable, 1024>,
1765 fidl::encoding::DefaultFuchsiaResourceDialect,
1766 >,
1767 T2: fidl::encoding::Encode<
1768 fidl::encoding::Optional<
1769 fidl::encoding::HandleType<
1770 fidl::Socket,
1771 { fidl::ObjectType::SOCKET.into_raw() },
1772 2147483648,
1773 >,
1774 >,
1775 fidl::encoding::DefaultFuchsiaResourceDialect,
1776 >,
1777 T3: fidl::encoding::Encode<
1778 fidl::encoding::Optional<
1779 fidl::encoding::HandleType<
1780 fidl::Socket,
1781 { fidl::ObjectType::SOCKET.into_raw() },
1782 2147483648,
1783 >,
1784 >,
1785 fidl::encoding::DefaultFuchsiaResourceDialect,
1786 >,
1787 T4: fidl::encoding::Encode<
1788 fidl::encoding::Optional<
1789 fidl::encoding::HandleType<
1790 fidl::Socket,
1791 { fidl::ObjectType::SOCKET.into_raw() },
1792 2147483648,
1793 >,
1794 >,
1795 fidl::encoding::DefaultFuchsiaResourceDialect,
1796 >,
1797 T5: fidl::encoding::Encode<
1798 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<CommandListenerMarker>>,
1799 fidl::encoding::DefaultFuchsiaResourceDialect,
1800 >,
1801 >
1802 fidl::encoding::Encode<
1803 InteractionExecuteCommandRequest,
1804 fidl::encoding::DefaultFuchsiaResourceDialect,
1805 > for (T0, T1, T2, T3, T4, T5)
1806 {
1807 #[inline]
1808 unsafe fn encode(
1809 self,
1810 encoder: &mut fidl::encoding::Encoder<
1811 '_,
1812 fidl::encoding::DefaultFuchsiaResourceDialect,
1813 >,
1814 offset: usize,
1815 depth: fidl::encoding::Depth,
1816 ) -> fidl::Result<()> {
1817 encoder.debug_check_bounds::<InteractionExecuteCommandRequest>(offset);
1818 self.0.encode(encoder, offset + 0, depth)?;
1822 self.1.encode(encoder, offset + 16, depth)?;
1823 self.2.encode(encoder, offset + 32, depth)?;
1824 self.3.encode(encoder, offset + 36, depth)?;
1825 self.4.encode(encoder, offset + 40, depth)?;
1826 self.5.encode(encoder, offset + 44, depth)?;
1827 Ok(())
1828 }
1829 }
1830
1831 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1832 for InteractionExecuteCommandRequest
1833 {
1834 #[inline(always)]
1835 fn new_empty() -> Self {
1836 Self {
1837 command: fidl::new_empty!(
1838 fidl::encoding::BoundedString<1024>,
1839 fidl::encoding::DefaultFuchsiaResourceDialect
1840 ),
1841 env: fidl::new_empty!(fidl::encoding::Vector<EnvironmentVariable, 1024>, fidl::encoding::DefaultFuchsiaResourceDialect),
1842 stdin: fidl::new_empty!(
1843 fidl::encoding::Optional<
1844 fidl::encoding::HandleType<
1845 fidl::Socket,
1846 { fidl::ObjectType::SOCKET.into_raw() },
1847 2147483648,
1848 >,
1849 >,
1850 fidl::encoding::DefaultFuchsiaResourceDialect
1851 ),
1852 stdout: fidl::new_empty!(
1853 fidl::encoding::Optional<
1854 fidl::encoding::HandleType<
1855 fidl::Socket,
1856 { fidl::ObjectType::SOCKET.into_raw() },
1857 2147483648,
1858 >,
1859 >,
1860 fidl::encoding::DefaultFuchsiaResourceDialect
1861 ),
1862 stderr: fidl::new_empty!(
1863 fidl::encoding::Optional<
1864 fidl::encoding::HandleType<
1865 fidl::Socket,
1866 { fidl::ObjectType::SOCKET.into_raw() },
1867 2147483648,
1868 >,
1869 >,
1870 fidl::encoding::DefaultFuchsiaResourceDialect
1871 ),
1872 command_listener: fidl::new_empty!(
1873 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<CommandListenerMarker>>,
1874 fidl::encoding::DefaultFuchsiaResourceDialect
1875 ),
1876 }
1877 }
1878
1879 #[inline]
1880 unsafe fn decode(
1881 &mut self,
1882 decoder: &mut fidl::encoding::Decoder<
1883 '_,
1884 fidl::encoding::DefaultFuchsiaResourceDialect,
1885 >,
1886 offset: usize,
1887 _depth: fidl::encoding::Depth,
1888 ) -> fidl::Result<()> {
1889 decoder.debug_check_bounds::<Self>(offset);
1890 fidl::decode!(
1892 fidl::encoding::BoundedString<1024>,
1893 fidl::encoding::DefaultFuchsiaResourceDialect,
1894 &mut self.command,
1895 decoder,
1896 offset + 0,
1897 _depth
1898 )?;
1899 fidl::decode!(fidl::encoding::Vector<EnvironmentVariable, 1024>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.env, decoder, offset + 16, _depth)?;
1900 fidl::decode!(
1901 fidl::encoding::Optional<
1902 fidl::encoding::HandleType<
1903 fidl::Socket,
1904 { fidl::ObjectType::SOCKET.into_raw() },
1905 2147483648,
1906 >,
1907 >,
1908 fidl::encoding::DefaultFuchsiaResourceDialect,
1909 &mut self.stdin,
1910 decoder,
1911 offset + 32,
1912 _depth
1913 )?;
1914 fidl::decode!(
1915 fidl::encoding::Optional<
1916 fidl::encoding::HandleType<
1917 fidl::Socket,
1918 { fidl::ObjectType::SOCKET.into_raw() },
1919 2147483648,
1920 >,
1921 >,
1922 fidl::encoding::DefaultFuchsiaResourceDialect,
1923 &mut self.stdout,
1924 decoder,
1925 offset + 36,
1926 _depth
1927 )?;
1928 fidl::decode!(
1929 fidl::encoding::Optional<
1930 fidl::encoding::HandleType<
1931 fidl::Socket,
1932 { fidl::ObjectType::SOCKET.into_raw() },
1933 2147483648,
1934 >,
1935 >,
1936 fidl::encoding::DefaultFuchsiaResourceDialect,
1937 &mut self.stderr,
1938 decoder,
1939 offset + 40,
1940 _depth
1941 )?;
1942 fidl::decode!(
1943 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<CommandListenerMarker>>,
1944 fidl::encoding::DefaultFuchsiaResourceDialect,
1945 &mut self.command_listener,
1946 decoder,
1947 offset + 44,
1948 _depth
1949 )?;
1950 Ok(())
1951 }
1952 }
1953
1954 impl fidl::encoding::ResourceTypeMarker for InteractionGetFileRequest {
1955 type Borrowed<'a> = &'a mut Self;
1956 fn take_or_borrow<'a>(
1957 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1958 ) -> Self::Borrowed<'a> {
1959 value
1960 }
1961 }
1962
1963 unsafe impl fidl::encoding::TypeMarker for InteractionGetFileRequest {
1964 type Owned = Self;
1965
1966 #[inline(always)]
1967 fn inline_align(_context: fidl::encoding::Context) -> usize {
1968 8
1969 }
1970
1971 #[inline(always)]
1972 fn inline_size(_context: fidl::encoding::Context) -> usize {
1973 24
1974 }
1975 }
1976
1977 unsafe impl
1978 fidl::encoding::Encode<
1979 InteractionGetFileRequest,
1980 fidl::encoding::DefaultFuchsiaResourceDialect,
1981 > for &mut InteractionGetFileRequest
1982 {
1983 #[inline]
1984 unsafe fn encode(
1985 self,
1986 encoder: &mut fidl::encoding::Encoder<
1987 '_,
1988 fidl::encoding::DefaultFuchsiaResourceDialect,
1989 >,
1990 offset: usize,
1991 _depth: fidl::encoding::Depth,
1992 ) -> fidl::Result<()> {
1993 encoder.debug_check_bounds::<InteractionGetFileRequest>(offset);
1994 fidl::encoding::Encode::<InteractionGetFileRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1996 (
1997 <fidl::encoding::BoundedString<1024> as fidl::encoding::ValueTypeMarker>::borrow(&self.remote_path),
1998 <fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.local_file),
1999 ),
2000 encoder, offset, _depth
2001 )
2002 }
2003 }
2004 unsafe impl<
2005 T0: fidl::encoding::Encode<
2006 fidl::encoding::BoundedString<1024>,
2007 fidl::encoding::DefaultFuchsiaResourceDialect,
2008 >,
2009 T1: fidl::encoding::Encode<
2010 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>>,
2011 fidl::encoding::DefaultFuchsiaResourceDialect,
2012 >,
2013 >
2014 fidl::encoding::Encode<
2015 InteractionGetFileRequest,
2016 fidl::encoding::DefaultFuchsiaResourceDialect,
2017 > for (T0, T1)
2018 {
2019 #[inline]
2020 unsafe fn encode(
2021 self,
2022 encoder: &mut fidl::encoding::Encoder<
2023 '_,
2024 fidl::encoding::DefaultFuchsiaResourceDialect,
2025 >,
2026 offset: usize,
2027 depth: fidl::encoding::Depth,
2028 ) -> fidl::Result<()> {
2029 encoder.debug_check_bounds::<InteractionGetFileRequest>(offset);
2030 unsafe {
2033 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
2034 (ptr as *mut u64).write_unaligned(0);
2035 }
2036 self.0.encode(encoder, offset + 0, depth)?;
2038 self.1.encode(encoder, offset + 16, depth)?;
2039 Ok(())
2040 }
2041 }
2042
2043 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
2044 for InteractionGetFileRequest
2045 {
2046 #[inline(always)]
2047 fn new_empty() -> Self {
2048 Self {
2049 remote_path: fidl::new_empty!(
2050 fidl::encoding::BoundedString<1024>,
2051 fidl::encoding::DefaultFuchsiaResourceDialect
2052 ),
2053 local_file: fidl::new_empty!(
2054 fidl::encoding::Endpoint<
2055 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
2056 >,
2057 fidl::encoding::DefaultFuchsiaResourceDialect
2058 ),
2059 }
2060 }
2061
2062 #[inline]
2063 unsafe fn decode(
2064 &mut self,
2065 decoder: &mut fidl::encoding::Decoder<
2066 '_,
2067 fidl::encoding::DefaultFuchsiaResourceDialect,
2068 >,
2069 offset: usize,
2070 _depth: fidl::encoding::Depth,
2071 ) -> fidl::Result<()> {
2072 decoder.debug_check_bounds::<Self>(offset);
2073 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
2075 let padval = unsafe { (ptr as *const u64).read_unaligned() };
2076 let mask = 0xffffffff00000000u64;
2077 let maskedval = padval & mask;
2078 if maskedval != 0 {
2079 return Err(fidl::Error::NonZeroPadding {
2080 padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
2081 });
2082 }
2083 fidl::decode!(
2084 fidl::encoding::BoundedString<1024>,
2085 fidl::encoding::DefaultFuchsiaResourceDialect,
2086 &mut self.remote_path,
2087 decoder,
2088 offset + 0,
2089 _depth
2090 )?;
2091 fidl::decode!(
2092 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>>,
2093 fidl::encoding::DefaultFuchsiaResourceDialect,
2094 &mut self.local_file,
2095 decoder,
2096 offset + 16,
2097 _depth
2098 )?;
2099 Ok(())
2100 }
2101 }
2102
2103 impl fidl::encoding::ResourceTypeMarker for InteractionPutFileRequest {
2104 type Borrowed<'a> = &'a mut Self;
2105 fn take_or_borrow<'a>(
2106 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
2107 ) -> Self::Borrowed<'a> {
2108 value
2109 }
2110 }
2111
2112 unsafe impl fidl::encoding::TypeMarker for InteractionPutFileRequest {
2113 type Owned = Self;
2114
2115 #[inline(always)]
2116 fn inline_align(_context: fidl::encoding::Context) -> usize {
2117 8
2118 }
2119
2120 #[inline(always)]
2121 fn inline_size(_context: fidl::encoding::Context) -> usize {
2122 24
2123 }
2124 }
2125
2126 unsafe impl
2127 fidl::encoding::Encode<
2128 InteractionPutFileRequest,
2129 fidl::encoding::DefaultFuchsiaResourceDialect,
2130 > for &mut InteractionPutFileRequest
2131 {
2132 #[inline]
2133 unsafe fn encode(
2134 self,
2135 encoder: &mut fidl::encoding::Encoder<
2136 '_,
2137 fidl::encoding::DefaultFuchsiaResourceDialect,
2138 >,
2139 offset: usize,
2140 _depth: fidl::encoding::Depth,
2141 ) -> fidl::Result<()> {
2142 encoder.debug_check_bounds::<InteractionPutFileRequest>(offset);
2143 fidl::encoding::Encode::<InteractionPutFileRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
2145 (
2146 <fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.local_file),
2147 <fidl::encoding::BoundedString<1024> as fidl::encoding::ValueTypeMarker>::borrow(&self.remote_path),
2148 ),
2149 encoder, offset, _depth
2150 )
2151 }
2152 }
2153 unsafe impl<
2154 T0: fidl::encoding::Encode<
2155 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>>,
2156 fidl::encoding::DefaultFuchsiaResourceDialect,
2157 >,
2158 T1: fidl::encoding::Encode<
2159 fidl::encoding::BoundedString<1024>,
2160 fidl::encoding::DefaultFuchsiaResourceDialect,
2161 >,
2162 >
2163 fidl::encoding::Encode<
2164 InteractionPutFileRequest,
2165 fidl::encoding::DefaultFuchsiaResourceDialect,
2166 > for (T0, T1)
2167 {
2168 #[inline]
2169 unsafe fn encode(
2170 self,
2171 encoder: &mut fidl::encoding::Encoder<
2172 '_,
2173 fidl::encoding::DefaultFuchsiaResourceDialect,
2174 >,
2175 offset: usize,
2176 depth: fidl::encoding::Depth,
2177 ) -> fidl::Result<()> {
2178 encoder.debug_check_bounds::<InteractionPutFileRequest>(offset);
2179 unsafe {
2182 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
2183 (ptr as *mut u64).write_unaligned(0);
2184 }
2185 self.0.encode(encoder, offset + 0, depth)?;
2187 self.1.encode(encoder, offset + 8, depth)?;
2188 Ok(())
2189 }
2190 }
2191
2192 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
2193 for InteractionPutFileRequest
2194 {
2195 #[inline(always)]
2196 fn new_empty() -> Self {
2197 Self {
2198 local_file: fidl::new_empty!(
2199 fidl::encoding::Endpoint<
2200 fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>,
2201 >,
2202 fidl::encoding::DefaultFuchsiaResourceDialect
2203 ),
2204 remote_path: fidl::new_empty!(
2205 fidl::encoding::BoundedString<1024>,
2206 fidl::encoding::DefaultFuchsiaResourceDialect
2207 ),
2208 }
2209 }
2210
2211 #[inline]
2212 unsafe fn decode(
2213 &mut self,
2214 decoder: &mut fidl::encoding::Decoder<
2215 '_,
2216 fidl::encoding::DefaultFuchsiaResourceDialect,
2217 >,
2218 offset: usize,
2219 _depth: fidl::encoding::Depth,
2220 ) -> fidl::Result<()> {
2221 decoder.debug_check_bounds::<Self>(offset);
2222 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
2224 let padval = unsafe { (ptr as *const u64).read_unaligned() };
2225 let mask = 0xffffffff00000000u64;
2226 let maskedval = padval & mask;
2227 if maskedval != 0 {
2228 return Err(fidl::Error::NonZeroPadding {
2229 padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
2230 });
2231 }
2232 fidl::decode!(
2233 fidl::encoding::Endpoint<fidl::endpoints::ClientEnd<fidl_fuchsia_io::FileMarker>>,
2234 fidl::encoding::DefaultFuchsiaResourceDialect,
2235 &mut self.local_file,
2236 decoder,
2237 offset + 0,
2238 _depth
2239 )?;
2240 fidl::decode!(
2241 fidl::encoding::BoundedString<1024>,
2242 fidl::encoding::DefaultFuchsiaResourceDialect,
2243 &mut self.remote_path,
2244 decoder,
2245 offset + 8,
2246 _depth
2247 )?;
2248 Ok(())
2249 }
2250 }
2251}