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_lowpan_bootstrap_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct ThreadImportSettingsRequest {
16 pub thread_settings_json: fidl_fuchsia_mem::Buffer,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for ThreadImportSettingsRequest
21{
22}
23
24#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
25pub struct ThreadMarker;
26
27impl fidl::endpoints::ProtocolMarker for ThreadMarker {
28 type Proxy = ThreadProxy;
29 type RequestStream = ThreadRequestStream;
30 #[cfg(target_os = "fuchsia")]
31 type SynchronousProxy = ThreadSynchronousProxy;
32
33 const DEBUG_NAME: &'static str = "fuchsia.lowpan.bootstrap.Thread";
34}
35impl fidl::endpoints::DiscoverableProtocolMarker for ThreadMarker {}
36
37pub trait ThreadProxyInterface: Send + Sync {
38 type ImportSettingsResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
39 fn r#import_settings(
40 &self,
41 thread_settings_json: fidl_fuchsia_mem::Buffer,
42 ) -> Self::ImportSettingsResponseFut;
43}
44#[derive(Debug)]
45#[cfg(target_os = "fuchsia")]
46pub struct ThreadSynchronousProxy {
47 client: fidl::client::sync::Client,
48}
49
50#[cfg(target_os = "fuchsia")]
51impl fidl::endpoints::SynchronousProxy for ThreadSynchronousProxy {
52 type Proxy = ThreadProxy;
53 type Protocol = ThreadMarker;
54
55 fn from_channel(inner: fidl::Channel) -> Self {
56 Self::new(inner)
57 }
58
59 fn into_channel(self) -> fidl::Channel {
60 self.client.into_channel()
61 }
62
63 fn as_channel(&self) -> &fidl::Channel {
64 self.client.as_channel()
65 }
66}
67
68#[cfg(target_os = "fuchsia")]
69impl ThreadSynchronousProxy {
70 pub fn new(channel: fidl::Channel) -> Self {
71 let protocol_name = <ThreadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
72 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
73 }
74
75 pub fn into_channel(self) -> fidl::Channel {
76 self.client.into_channel()
77 }
78
79 pub fn wait_for_event(
82 &self,
83 deadline: zx::MonotonicInstant,
84 ) -> Result<ThreadEvent, fidl::Error> {
85 ThreadEvent::decode(self.client.wait_for_event(deadline)?)
86 }
87
88 pub fn r#import_settings(
118 &self,
119 mut thread_settings_json: fidl_fuchsia_mem::Buffer,
120 ___deadline: zx::MonotonicInstant,
121 ) -> Result<(), fidl::Error> {
122 let _response =
123 self.client.send_query::<ThreadImportSettingsRequest, fidl::encoding::EmptyPayload>(
124 (&mut thread_settings_json,),
125 0x5ac61a4908e85bbd,
126 fidl::encoding::DynamicFlags::empty(),
127 ___deadline,
128 )?;
129 Ok(_response)
130 }
131}
132
133#[cfg(target_os = "fuchsia")]
134impl From<ThreadSynchronousProxy> for zx::Handle {
135 fn from(value: ThreadSynchronousProxy) -> Self {
136 value.into_channel().into()
137 }
138}
139
140#[cfg(target_os = "fuchsia")]
141impl From<fidl::Channel> for ThreadSynchronousProxy {
142 fn from(value: fidl::Channel) -> Self {
143 Self::new(value)
144 }
145}
146
147#[derive(Debug, Clone)]
148pub struct ThreadProxy {
149 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
150}
151
152impl fidl::endpoints::Proxy for ThreadProxy {
153 type Protocol = ThreadMarker;
154
155 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
156 Self::new(inner)
157 }
158
159 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
160 self.client.into_channel().map_err(|client| Self { client })
161 }
162
163 fn as_channel(&self) -> &::fidl::AsyncChannel {
164 self.client.as_channel()
165 }
166}
167
168impl ThreadProxy {
169 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
171 let protocol_name = <ThreadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
172 Self { client: fidl::client::Client::new(channel, protocol_name) }
173 }
174
175 pub fn take_event_stream(&self) -> ThreadEventStream {
181 ThreadEventStream { event_receiver: self.client.take_event_receiver() }
182 }
183
184 pub fn r#import_settings(
214 &self,
215 mut thread_settings_json: fidl_fuchsia_mem::Buffer,
216 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
217 ThreadProxyInterface::r#import_settings(self, thread_settings_json)
218 }
219}
220
221impl ThreadProxyInterface for ThreadProxy {
222 type ImportSettingsResponseFut =
223 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
224 fn r#import_settings(
225 &self,
226 mut thread_settings_json: fidl_fuchsia_mem::Buffer,
227 ) -> Self::ImportSettingsResponseFut {
228 fn _decode(
229 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
230 ) -> Result<(), fidl::Error> {
231 let _response = fidl::client::decode_transaction_body::<
232 fidl::encoding::EmptyPayload,
233 fidl::encoding::DefaultFuchsiaResourceDialect,
234 0x5ac61a4908e85bbd,
235 >(_buf?)?;
236 Ok(_response)
237 }
238 self.client.send_query_and_decode::<ThreadImportSettingsRequest, ()>(
239 (&mut thread_settings_json,),
240 0x5ac61a4908e85bbd,
241 fidl::encoding::DynamicFlags::empty(),
242 _decode,
243 )
244 }
245}
246
247pub struct ThreadEventStream {
248 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
249}
250
251impl std::marker::Unpin for ThreadEventStream {}
252
253impl futures::stream::FusedStream for ThreadEventStream {
254 fn is_terminated(&self) -> bool {
255 self.event_receiver.is_terminated()
256 }
257}
258
259impl futures::Stream for ThreadEventStream {
260 type Item = Result<ThreadEvent, fidl::Error>;
261
262 fn poll_next(
263 mut self: std::pin::Pin<&mut Self>,
264 cx: &mut std::task::Context<'_>,
265 ) -> std::task::Poll<Option<Self::Item>> {
266 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
267 &mut self.event_receiver,
268 cx
269 )?) {
270 Some(buf) => std::task::Poll::Ready(Some(ThreadEvent::decode(buf))),
271 None => std::task::Poll::Ready(None),
272 }
273 }
274}
275
276#[derive(Debug)]
277pub enum ThreadEvent {}
278
279impl ThreadEvent {
280 fn decode(
282 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
283 ) -> Result<ThreadEvent, fidl::Error> {
284 let (bytes, _handles) = buf.split_mut();
285 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
286 debug_assert_eq!(tx_header.tx_id, 0);
287 match tx_header.ordinal {
288 _ => Err(fidl::Error::UnknownOrdinal {
289 ordinal: tx_header.ordinal,
290 protocol_name: <ThreadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
291 }),
292 }
293 }
294}
295
296pub struct ThreadRequestStream {
298 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
299 is_terminated: bool,
300}
301
302impl std::marker::Unpin for ThreadRequestStream {}
303
304impl futures::stream::FusedStream for ThreadRequestStream {
305 fn is_terminated(&self) -> bool {
306 self.is_terminated
307 }
308}
309
310impl fidl::endpoints::RequestStream for ThreadRequestStream {
311 type Protocol = ThreadMarker;
312 type ControlHandle = ThreadControlHandle;
313
314 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
315 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
316 }
317
318 fn control_handle(&self) -> Self::ControlHandle {
319 ThreadControlHandle { inner: self.inner.clone() }
320 }
321
322 fn into_inner(
323 self,
324 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
325 {
326 (self.inner, self.is_terminated)
327 }
328
329 fn from_inner(
330 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
331 is_terminated: bool,
332 ) -> Self {
333 Self { inner, is_terminated }
334 }
335}
336
337impl futures::Stream for ThreadRequestStream {
338 type Item = Result<ThreadRequest, fidl::Error>;
339
340 fn poll_next(
341 mut self: std::pin::Pin<&mut Self>,
342 cx: &mut std::task::Context<'_>,
343 ) -> std::task::Poll<Option<Self::Item>> {
344 let this = &mut *self;
345 if this.inner.check_shutdown(cx) {
346 this.is_terminated = true;
347 return std::task::Poll::Ready(None);
348 }
349 if this.is_terminated {
350 panic!("polled ThreadRequestStream after completion");
351 }
352 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
353 |bytes, handles| {
354 match this.inner.channel().read_etc(cx, bytes, handles) {
355 std::task::Poll::Ready(Ok(())) => {}
356 std::task::Poll::Pending => return std::task::Poll::Pending,
357 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
358 this.is_terminated = true;
359 return std::task::Poll::Ready(None);
360 }
361 std::task::Poll::Ready(Err(e)) => {
362 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
363 e.into(),
364 ))))
365 }
366 }
367
368 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
370
371 std::task::Poll::Ready(Some(match header.ordinal {
372 0x5ac61a4908e85bbd => {
373 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
374 let mut req = fidl::new_empty!(
375 ThreadImportSettingsRequest,
376 fidl::encoding::DefaultFuchsiaResourceDialect
377 );
378 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ThreadImportSettingsRequest>(&header, _body_bytes, handles, &mut req)?;
379 let control_handle = ThreadControlHandle { inner: this.inner.clone() };
380 Ok(ThreadRequest::ImportSettings {
381 thread_settings_json: req.thread_settings_json,
382
383 responder: ThreadImportSettingsResponder {
384 control_handle: std::mem::ManuallyDrop::new(control_handle),
385 tx_id: header.tx_id,
386 },
387 })
388 }
389 _ => Err(fidl::Error::UnknownOrdinal {
390 ordinal: header.ordinal,
391 protocol_name:
392 <ThreadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
393 }),
394 }))
395 },
396 )
397 }
398}
399
400#[derive(Debug)]
404pub enum ThreadRequest {
405 ImportSettings {
435 thread_settings_json: fidl_fuchsia_mem::Buffer,
436 responder: ThreadImportSettingsResponder,
437 },
438}
439
440impl ThreadRequest {
441 #[allow(irrefutable_let_patterns)]
442 pub fn into_import_settings(
443 self,
444 ) -> Option<(fidl_fuchsia_mem::Buffer, ThreadImportSettingsResponder)> {
445 if let ThreadRequest::ImportSettings { thread_settings_json, responder } = self {
446 Some((thread_settings_json, responder))
447 } else {
448 None
449 }
450 }
451
452 pub fn method_name(&self) -> &'static str {
454 match *self {
455 ThreadRequest::ImportSettings { .. } => "import_settings",
456 }
457 }
458}
459
460#[derive(Debug, Clone)]
461pub struct ThreadControlHandle {
462 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
463}
464
465impl fidl::endpoints::ControlHandle for ThreadControlHandle {
466 fn shutdown(&self) {
467 self.inner.shutdown()
468 }
469 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
470 self.inner.shutdown_with_epitaph(status)
471 }
472
473 fn is_closed(&self) -> bool {
474 self.inner.channel().is_closed()
475 }
476 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
477 self.inner.channel().on_closed()
478 }
479
480 #[cfg(target_os = "fuchsia")]
481 fn signal_peer(
482 &self,
483 clear_mask: zx::Signals,
484 set_mask: zx::Signals,
485 ) -> Result<(), zx_status::Status> {
486 use fidl::Peered;
487 self.inner.channel().signal_peer(clear_mask, set_mask)
488 }
489}
490
491impl ThreadControlHandle {}
492
493#[must_use = "FIDL methods require a response to be sent"]
494#[derive(Debug)]
495pub struct ThreadImportSettingsResponder {
496 control_handle: std::mem::ManuallyDrop<ThreadControlHandle>,
497 tx_id: u32,
498}
499
500impl std::ops::Drop for ThreadImportSettingsResponder {
504 fn drop(&mut self) {
505 self.control_handle.shutdown();
506 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
508 }
509}
510
511impl fidl::endpoints::Responder for ThreadImportSettingsResponder {
512 type ControlHandle = ThreadControlHandle;
513
514 fn control_handle(&self) -> &ThreadControlHandle {
515 &self.control_handle
516 }
517
518 fn drop_without_shutdown(mut self) {
519 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
521 std::mem::forget(self);
523 }
524}
525
526impl ThreadImportSettingsResponder {
527 pub fn send(self) -> Result<(), fidl::Error> {
531 let _result = self.send_raw();
532 if _result.is_err() {
533 self.control_handle.shutdown();
534 }
535 self.drop_without_shutdown();
536 _result
537 }
538
539 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
541 let _result = self.send_raw();
542 self.drop_without_shutdown();
543 _result
544 }
545
546 fn send_raw(&self) -> Result<(), fidl::Error> {
547 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
548 (),
549 self.tx_id,
550 0x5ac61a4908e85bbd,
551 fidl::encoding::DynamicFlags::empty(),
552 )
553 }
554}
555
556mod internal {
557 use super::*;
558
559 impl fidl::encoding::ResourceTypeMarker for ThreadImportSettingsRequest {
560 type Borrowed<'a> = &'a mut Self;
561 fn take_or_borrow<'a>(
562 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
563 ) -> Self::Borrowed<'a> {
564 value
565 }
566 }
567
568 unsafe impl fidl::encoding::TypeMarker for ThreadImportSettingsRequest {
569 type Owned = Self;
570
571 #[inline(always)]
572 fn inline_align(_context: fidl::encoding::Context) -> usize {
573 8
574 }
575
576 #[inline(always)]
577 fn inline_size(_context: fidl::encoding::Context) -> usize {
578 16
579 }
580 }
581
582 unsafe impl
583 fidl::encoding::Encode<
584 ThreadImportSettingsRequest,
585 fidl::encoding::DefaultFuchsiaResourceDialect,
586 > for &mut ThreadImportSettingsRequest
587 {
588 #[inline]
589 unsafe fn encode(
590 self,
591 encoder: &mut fidl::encoding::Encoder<
592 '_,
593 fidl::encoding::DefaultFuchsiaResourceDialect,
594 >,
595 offset: usize,
596 _depth: fidl::encoding::Depth,
597 ) -> fidl::Result<()> {
598 encoder.debug_check_bounds::<ThreadImportSettingsRequest>(offset);
599 fidl::encoding::Encode::<
601 ThreadImportSettingsRequest,
602 fidl::encoding::DefaultFuchsiaResourceDialect,
603 >::encode(
604 (<fidl_fuchsia_mem::Buffer as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
605 &mut self.thread_settings_json,
606 ),),
607 encoder,
608 offset,
609 _depth,
610 )
611 }
612 }
613 unsafe impl<
614 T0: fidl::encoding::Encode<
615 fidl_fuchsia_mem::Buffer,
616 fidl::encoding::DefaultFuchsiaResourceDialect,
617 >,
618 >
619 fidl::encoding::Encode<
620 ThreadImportSettingsRequest,
621 fidl::encoding::DefaultFuchsiaResourceDialect,
622 > for (T0,)
623 {
624 #[inline]
625 unsafe fn encode(
626 self,
627 encoder: &mut fidl::encoding::Encoder<
628 '_,
629 fidl::encoding::DefaultFuchsiaResourceDialect,
630 >,
631 offset: usize,
632 depth: fidl::encoding::Depth,
633 ) -> fidl::Result<()> {
634 encoder.debug_check_bounds::<ThreadImportSettingsRequest>(offset);
635 self.0.encode(encoder, offset + 0, depth)?;
639 Ok(())
640 }
641 }
642
643 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
644 for ThreadImportSettingsRequest
645 {
646 #[inline(always)]
647 fn new_empty() -> Self {
648 Self {
649 thread_settings_json: fidl::new_empty!(
650 fidl_fuchsia_mem::Buffer,
651 fidl::encoding::DefaultFuchsiaResourceDialect
652 ),
653 }
654 }
655
656 #[inline]
657 unsafe fn decode(
658 &mut self,
659 decoder: &mut fidl::encoding::Decoder<
660 '_,
661 fidl::encoding::DefaultFuchsiaResourceDialect,
662 >,
663 offset: usize,
664 _depth: fidl::encoding::Depth,
665 ) -> fidl::Result<()> {
666 decoder.debug_check_bounds::<Self>(offset);
667 fidl::decode!(
669 fidl_fuchsia_mem::Buffer,
670 fidl::encoding::DefaultFuchsiaResourceDialect,
671 &mut self.thread_settings_json,
672 decoder,
673 offset + 0,
674 _depth
675 )?;
676 Ok(())
677 }
678 }
679}