#![warn(clippy::all)]
#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
use bitflags::bitflags;
use fidl::client::QueryResponseFut;
use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
use fidl::endpoints::{ControlHandle as _, Responder as _};
use futures::future::{self, MaybeDone, TryFutureExt};
use zx_status;
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct DiagnosticsGetProcessHandleForInspectionResponse {
pub process: fidl::Process,
}
impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
for DiagnosticsGetProcessHandleForInspectionResponse
{
}
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct InterfacesGetPortRequest {
pub id: u64,
pub port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
}
impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for InterfacesGetPortRequest {}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct DiagnosticsMarker;
impl fidl::endpoints::ProtocolMarker for DiagnosticsMarker {
type Proxy = DiagnosticsProxy;
type RequestStream = DiagnosticsRequestStream;
#[cfg(target_os = "fuchsia")]
type SynchronousProxy = DiagnosticsSynchronousProxy;
const DEBUG_NAME: &'static str = "fuchsia.net.debug.Diagnostics";
}
impl fidl::endpoints::DiscoverableProtocolMarker for DiagnosticsMarker {}
pub trait DiagnosticsProxyInterface: Send + Sync {
type LogDebugInfoToSyslogResponseFut: std::future::Future<Output = Result<(), fidl::Error>>
+ Send;
fn r#log_debug_info_to_syslog(&self) -> Self::LogDebugInfoToSyslogResponseFut;
type GetProcessHandleForInspectionResponseFut: std::future::Future<Output = Result<fidl::Process, fidl::Error>>
+ Send;
fn r#get_process_handle_for_inspection(&self)
-> Self::GetProcessHandleForInspectionResponseFut;
}
#[derive(Debug)]
#[cfg(target_os = "fuchsia")]
pub struct DiagnosticsSynchronousProxy {
client: fidl::client::sync::Client,
}
#[cfg(target_os = "fuchsia")]
impl fidl::endpoints::SynchronousProxy for DiagnosticsSynchronousProxy {
type Proxy = DiagnosticsProxy;
type Protocol = DiagnosticsMarker;
fn from_channel(inner: fidl::Channel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
fn as_channel(&self) -> &fidl::Channel {
self.client.as_channel()
}
}
#[cfg(target_os = "fuchsia")]
impl DiagnosticsSynchronousProxy {
pub fn new(channel: fidl::Channel) -> Self {
let protocol_name = <DiagnosticsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
}
pub fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
pub fn wait_for_event(
&self,
deadline: zx::MonotonicInstant,
) -> Result<DiagnosticsEvent, fidl::Error> {
DiagnosticsEvent::decode(self.client.wait_for_event(deadline)?)
}
pub fn r#log_debug_info_to_syslog(
&self,
___deadline: zx::MonotonicInstant,
) -> Result<(), fidl::Error> {
let _response =
self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
(),
0x336c39330bd8e1ac,
fidl::encoding::DynamicFlags::empty(),
___deadline,
)?;
Ok(_response)
}
pub fn r#get_process_handle_for_inspection(
&self,
___deadline: zx::MonotonicInstant,
) -> Result<fidl::Process, fidl::Error> {
let _response = self.client.send_query::<
fidl::encoding::EmptyPayload,
DiagnosticsGetProcessHandleForInspectionResponse,
>(
(),
0x563e5df030f2f4d5,
fidl::encoding::DynamicFlags::empty(),
___deadline,
)?;
Ok(_response.process)
}
}
#[derive(Debug, Clone)]
pub struct DiagnosticsProxy {
client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl fidl::endpoints::Proxy for DiagnosticsProxy {
type Protocol = DiagnosticsMarker;
fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
self.client.into_channel().map_err(|client| Self { client })
}
fn as_channel(&self) -> &::fidl::AsyncChannel {
self.client.as_channel()
}
}
impl DiagnosticsProxy {
pub fn new(channel: ::fidl::AsyncChannel) -> Self {
let protocol_name = <DiagnosticsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::Client::new(channel, protocol_name) }
}
pub fn take_event_stream(&self) -> DiagnosticsEventStream {
DiagnosticsEventStream { event_receiver: self.client.take_event_receiver() }
}
pub fn r#log_debug_info_to_syslog(
&self,
) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
DiagnosticsProxyInterface::r#log_debug_info_to_syslog(self)
}
pub fn r#get_process_handle_for_inspection(
&self,
) -> fidl::client::QueryResponseFut<fidl::Process, fidl::encoding::DefaultFuchsiaResourceDialect>
{
DiagnosticsProxyInterface::r#get_process_handle_for_inspection(self)
}
}
impl DiagnosticsProxyInterface for DiagnosticsProxy {
type LogDebugInfoToSyslogResponseFut =
fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
fn r#log_debug_info_to_syslog(&self) -> Self::LogDebugInfoToSyslogResponseFut {
fn _decode(
mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
) -> Result<(), fidl::Error> {
let _response = fidl::client::decode_transaction_body::<
fidl::encoding::EmptyPayload,
fidl::encoding::DefaultFuchsiaResourceDialect,
0x336c39330bd8e1ac,
>(_buf?)?;
Ok(_response)
}
self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
(),
0x336c39330bd8e1ac,
fidl::encoding::DynamicFlags::empty(),
_decode,
)
}
type GetProcessHandleForInspectionResponseFut = fidl::client::QueryResponseFut<
fidl::Process,
fidl::encoding::DefaultFuchsiaResourceDialect,
>;
fn r#get_process_handle_for_inspection(
&self,
) -> Self::GetProcessHandleForInspectionResponseFut {
fn _decode(
mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
) -> Result<fidl::Process, fidl::Error> {
let _response = fidl::client::decode_transaction_body::<
DiagnosticsGetProcessHandleForInspectionResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
0x563e5df030f2f4d5,
>(_buf?)?;
Ok(_response.process)
}
self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, fidl::Process>(
(),
0x563e5df030f2f4d5,
fidl::encoding::DynamicFlags::empty(),
_decode,
)
}
}
pub struct DiagnosticsEventStream {
event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl std::marker::Unpin for DiagnosticsEventStream {}
impl futures::stream::FusedStream for DiagnosticsEventStream {
fn is_terminated(&self) -> bool {
self.event_receiver.is_terminated()
}
}
impl futures::Stream for DiagnosticsEventStream {
type Item = Result<DiagnosticsEvent, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
&mut self.event_receiver,
cx
)?) {
Some(buf) => std::task::Poll::Ready(Some(DiagnosticsEvent::decode(buf))),
None => std::task::Poll::Ready(None),
}
}
}
#[derive(Debug)]
pub enum DiagnosticsEvent {}
impl DiagnosticsEvent {
fn decode(
mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
) -> Result<DiagnosticsEvent, fidl::Error> {
let (bytes, _handles) = buf.split_mut();
let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
debug_assert_eq!(tx_header.tx_id, 0);
match tx_header.ordinal {
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: tx_header.ordinal,
protocol_name: <DiagnosticsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}
}
}
pub struct DiagnosticsRequestStream {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
}
impl std::marker::Unpin for DiagnosticsRequestStream {}
impl futures::stream::FusedStream for DiagnosticsRequestStream {
fn is_terminated(&self) -> bool {
self.is_terminated
}
}
impl fidl::endpoints::RequestStream for DiagnosticsRequestStream {
type Protocol = DiagnosticsMarker;
type ControlHandle = DiagnosticsControlHandle;
fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
}
fn control_handle(&self) -> Self::ControlHandle {
DiagnosticsControlHandle { inner: self.inner.clone() }
}
fn into_inner(
self,
) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
{
(self.inner, self.is_terminated)
}
fn from_inner(
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
) -> Self {
Self { inner, is_terminated }
}
}
impl futures::Stream for DiagnosticsRequestStream {
type Item = Result<DiagnosticsRequest, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
let this = &mut *self;
if this.inner.check_shutdown(cx) {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
if this.is_terminated {
panic!("polled DiagnosticsRequestStream after completion");
}
fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
|bytes, handles| {
match this.inner.channel().read_etc(cx, bytes, handles) {
std::task::Poll::Ready(Ok(())) => {}
std::task::Poll::Pending => return std::task::Poll::Pending,
std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
std::task::Poll::Ready(Err(e)) => {
return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
e.into(),
))))
}
}
let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
std::task::Poll::Ready(Some(match header.ordinal {
0x336c39330bd8e1ac => {
header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
let mut req = fidl::new_empty!(
fidl::encoding::EmptyPayload,
fidl::encoding::DefaultFuchsiaResourceDialect
);
fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
let control_handle = DiagnosticsControlHandle { inner: this.inner.clone() };
Ok(DiagnosticsRequest::LogDebugInfoToSyslog {
responder: DiagnosticsLogDebugInfoToSyslogResponder {
control_handle: std::mem::ManuallyDrop::new(control_handle),
tx_id: header.tx_id,
},
})
}
0x563e5df030f2f4d5 => {
header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
let mut req = fidl::new_empty!(
fidl::encoding::EmptyPayload,
fidl::encoding::DefaultFuchsiaResourceDialect
);
fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
let control_handle = DiagnosticsControlHandle { inner: this.inner.clone() };
Ok(DiagnosticsRequest::GetProcessHandleForInspection {
responder: DiagnosticsGetProcessHandleForInspectionResponder {
control_handle: std::mem::ManuallyDrop::new(control_handle),
tx_id: header.tx_id,
},
})
}
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: header.ordinal,
protocol_name:
<DiagnosticsMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}))
},
)
}
}
#[derive(Debug)]
pub enum DiagnosticsRequest {
LogDebugInfoToSyslog { responder: DiagnosticsLogDebugInfoToSyslogResponder },
GetProcessHandleForInspection { responder: DiagnosticsGetProcessHandleForInspectionResponder },
}
impl DiagnosticsRequest {
#[allow(irrefutable_let_patterns)]
pub fn into_log_debug_info_to_syslog(
self,
) -> Option<(DiagnosticsLogDebugInfoToSyslogResponder)> {
if let DiagnosticsRequest::LogDebugInfoToSyslog { responder } = self {
Some((responder))
} else {
None
}
}
#[allow(irrefutable_let_patterns)]
pub fn into_get_process_handle_for_inspection(
self,
) -> Option<(DiagnosticsGetProcessHandleForInspectionResponder)> {
if let DiagnosticsRequest::GetProcessHandleForInspection { responder } = self {
Some((responder))
} else {
None
}
}
pub fn method_name(&self) -> &'static str {
match *self {
DiagnosticsRequest::LogDebugInfoToSyslog { .. } => "log_debug_info_to_syslog",
DiagnosticsRequest::GetProcessHandleForInspection { .. } => {
"get_process_handle_for_inspection"
}
}
}
}
#[derive(Debug, Clone)]
pub struct DiagnosticsControlHandle {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
}
impl fidl::endpoints::ControlHandle for DiagnosticsControlHandle {
fn shutdown(&self) {
self.inner.shutdown()
}
fn shutdown_with_epitaph(&self, status: zx_status::Status) {
self.inner.shutdown_with_epitaph(status)
}
fn is_closed(&self) -> bool {
self.inner.channel().is_closed()
}
fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
self.inner.channel().on_closed()
}
#[cfg(target_os = "fuchsia")]
fn signal_peer(
&self,
clear_mask: zx::Signals,
set_mask: zx::Signals,
) -> Result<(), zx_status::Status> {
use fidl::Peered;
self.inner.channel().signal_peer(clear_mask, set_mask)
}
}
impl DiagnosticsControlHandle {}
#[must_use = "FIDL methods require a response to be sent"]
#[derive(Debug)]
pub struct DiagnosticsLogDebugInfoToSyslogResponder {
control_handle: std::mem::ManuallyDrop<DiagnosticsControlHandle>,
tx_id: u32,
}
impl std::ops::Drop for DiagnosticsLogDebugInfoToSyslogResponder {
fn drop(&mut self) {
self.control_handle.shutdown();
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
}
}
impl fidl::endpoints::Responder for DiagnosticsLogDebugInfoToSyslogResponder {
type ControlHandle = DiagnosticsControlHandle;
fn control_handle(&self) -> &DiagnosticsControlHandle {
&self.control_handle
}
fn drop_without_shutdown(mut self) {
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
std::mem::forget(self);
}
}
impl DiagnosticsLogDebugInfoToSyslogResponder {
pub fn send(self) -> Result<(), fidl::Error> {
let _result = self.send_raw();
if _result.is_err() {
self.control_handle.shutdown();
}
self.drop_without_shutdown();
_result
}
pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
let _result = self.send_raw();
self.drop_without_shutdown();
_result
}
fn send_raw(&self) -> Result<(), fidl::Error> {
self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
(),
self.tx_id,
0x336c39330bd8e1ac,
fidl::encoding::DynamicFlags::empty(),
)
}
}
#[must_use = "FIDL methods require a response to be sent"]
#[derive(Debug)]
pub struct DiagnosticsGetProcessHandleForInspectionResponder {
control_handle: std::mem::ManuallyDrop<DiagnosticsControlHandle>,
tx_id: u32,
}
impl std::ops::Drop for DiagnosticsGetProcessHandleForInspectionResponder {
fn drop(&mut self) {
self.control_handle.shutdown();
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
}
}
impl fidl::endpoints::Responder for DiagnosticsGetProcessHandleForInspectionResponder {
type ControlHandle = DiagnosticsControlHandle;
fn control_handle(&self) -> &DiagnosticsControlHandle {
&self.control_handle
}
fn drop_without_shutdown(mut self) {
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
std::mem::forget(self);
}
}
impl DiagnosticsGetProcessHandleForInspectionResponder {
pub fn send(self, mut process: fidl::Process) -> Result<(), fidl::Error> {
let _result = self.send_raw(process);
if _result.is_err() {
self.control_handle.shutdown();
}
self.drop_without_shutdown();
_result
}
pub fn send_no_shutdown_on_err(self, mut process: fidl::Process) -> Result<(), fidl::Error> {
let _result = self.send_raw(process);
self.drop_without_shutdown();
_result
}
fn send_raw(&self, mut process: fidl::Process) -> Result<(), fidl::Error> {
self.control_handle.inner.send::<DiagnosticsGetProcessHandleForInspectionResponse>(
(process,),
self.tx_id,
0x563e5df030f2f4d5,
fidl::encoding::DynamicFlags::empty(),
)
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct InterfacesMarker;
impl fidl::endpoints::ProtocolMarker for InterfacesMarker {
type Proxy = InterfacesProxy;
type RequestStream = InterfacesRequestStream;
#[cfg(target_os = "fuchsia")]
type SynchronousProxy = InterfacesSynchronousProxy;
const DEBUG_NAME: &'static str = "fuchsia.net.debug.Interfaces";
}
impl fidl::endpoints::DiscoverableProtocolMarker for InterfacesMarker {}
pub trait InterfacesProxyInterface: Send + Sync {
fn r#get_port(
&self,
id: u64,
port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
) -> Result<(), fidl::Error>;
}
#[derive(Debug)]
#[cfg(target_os = "fuchsia")]
pub struct InterfacesSynchronousProxy {
client: fidl::client::sync::Client,
}
#[cfg(target_os = "fuchsia")]
impl fidl::endpoints::SynchronousProxy for InterfacesSynchronousProxy {
type Proxy = InterfacesProxy;
type Protocol = InterfacesMarker;
fn from_channel(inner: fidl::Channel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
fn as_channel(&self) -> &fidl::Channel {
self.client.as_channel()
}
}
#[cfg(target_os = "fuchsia")]
impl InterfacesSynchronousProxy {
pub fn new(channel: fidl::Channel) -> Self {
let protocol_name = <InterfacesMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
}
pub fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
pub fn wait_for_event(
&self,
deadline: zx::MonotonicInstant,
) -> Result<InterfacesEvent, fidl::Error> {
InterfacesEvent::decode(self.client.wait_for_event(deadline)?)
}
pub fn r#get_port(
&self,
mut id: u64,
mut port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
) -> Result<(), fidl::Error> {
self.client.send::<InterfacesGetPortRequest>(
(id, port),
0xdd15c4df17fb148,
fidl::encoding::DynamicFlags::empty(),
)
}
}
#[derive(Debug, Clone)]
pub struct InterfacesProxy {
client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl fidl::endpoints::Proxy for InterfacesProxy {
type Protocol = InterfacesMarker;
fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
self.client.into_channel().map_err(|client| Self { client })
}
fn as_channel(&self) -> &::fidl::AsyncChannel {
self.client.as_channel()
}
}
impl InterfacesProxy {
pub fn new(channel: ::fidl::AsyncChannel) -> Self {
let protocol_name = <InterfacesMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::Client::new(channel, protocol_name) }
}
pub fn take_event_stream(&self) -> InterfacesEventStream {
InterfacesEventStream { event_receiver: self.client.take_event_receiver() }
}
pub fn r#get_port(
&self,
mut id: u64,
mut port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
) -> Result<(), fidl::Error> {
InterfacesProxyInterface::r#get_port(self, id, port)
}
}
impl InterfacesProxyInterface for InterfacesProxy {
fn r#get_port(
&self,
mut id: u64,
mut port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
) -> Result<(), fidl::Error> {
self.client.send::<InterfacesGetPortRequest>(
(id, port),
0xdd15c4df17fb148,
fidl::encoding::DynamicFlags::empty(),
)
}
}
pub struct InterfacesEventStream {
event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl std::marker::Unpin for InterfacesEventStream {}
impl futures::stream::FusedStream for InterfacesEventStream {
fn is_terminated(&self) -> bool {
self.event_receiver.is_terminated()
}
}
impl futures::Stream for InterfacesEventStream {
type Item = Result<InterfacesEvent, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
&mut self.event_receiver,
cx
)?) {
Some(buf) => std::task::Poll::Ready(Some(InterfacesEvent::decode(buf))),
None => std::task::Poll::Ready(None),
}
}
}
#[derive(Debug)]
pub enum InterfacesEvent {}
impl InterfacesEvent {
fn decode(
mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
) -> Result<InterfacesEvent, fidl::Error> {
let (bytes, _handles) = buf.split_mut();
let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
debug_assert_eq!(tx_header.tx_id, 0);
match tx_header.ordinal {
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: tx_header.ordinal,
protocol_name: <InterfacesMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}
}
}
pub struct InterfacesRequestStream {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
}
impl std::marker::Unpin for InterfacesRequestStream {}
impl futures::stream::FusedStream for InterfacesRequestStream {
fn is_terminated(&self) -> bool {
self.is_terminated
}
}
impl fidl::endpoints::RequestStream for InterfacesRequestStream {
type Protocol = InterfacesMarker;
type ControlHandle = InterfacesControlHandle;
fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
}
fn control_handle(&self) -> Self::ControlHandle {
InterfacesControlHandle { inner: self.inner.clone() }
}
fn into_inner(
self,
) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
{
(self.inner, self.is_terminated)
}
fn from_inner(
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
) -> Self {
Self { inner, is_terminated }
}
}
impl futures::Stream for InterfacesRequestStream {
type Item = Result<InterfacesRequest, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
let this = &mut *self;
if this.inner.check_shutdown(cx) {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
if this.is_terminated {
panic!("polled InterfacesRequestStream after completion");
}
fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
|bytes, handles| {
match this.inner.channel().read_etc(cx, bytes, handles) {
std::task::Poll::Ready(Ok(())) => {}
std::task::Poll::Pending => return std::task::Poll::Pending,
std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
std::task::Poll::Ready(Err(e)) => {
return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
e.into(),
))))
}
}
let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
std::task::Poll::Ready(Some(match header.ordinal {
0xdd15c4df17fb148 => {
header.validate_request_tx_id(fidl::MethodType::OneWay)?;
let mut req = fidl::new_empty!(
InterfacesGetPortRequest,
fidl::encoding::DefaultFuchsiaResourceDialect
);
fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InterfacesGetPortRequest>(&header, _body_bytes, handles, &mut req)?;
let control_handle = InterfacesControlHandle { inner: this.inner.clone() };
Ok(InterfacesRequest::GetPort {
id: req.id,
port: req.port,
control_handle,
})
}
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: header.ordinal,
protocol_name:
<InterfacesMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}))
},
)
}
}
#[derive(Debug)]
pub enum InterfacesRequest {
GetPort {
id: u64,
port: fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
control_handle: InterfacesControlHandle,
},
}
impl InterfacesRequest {
#[allow(irrefutable_let_patterns)]
pub fn into_get_port(
self,
) -> Option<(
u64,
fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
InterfacesControlHandle,
)> {
if let InterfacesRequest::GetPort { id, port, control_handle } = self {
Some((id, port, control_handle))
} else {
None
}
}
pub fn method_name(&self) -> &'static str {
match *self {
InterfacesRequest::GetPort { .. } => "get_port",
}
}
}
#[derive(Debug, Clone)]
pub struct InterfacesControlHandle {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
}
impl fidl::endpoints::ControlHandle for InterfacesControlHandle {
fn shutdown(&self) {
self.inner.shutdown()
}
fn shutdown_with_epitaph(&self, status: zx_status::Status) {
self.inner.shutdown_with_epitaph(status)
}
fn is_closed(&self) -> bool {
self.inner.channel().is_closed()
}
fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
self.inner.channel().on_closed()
}
#[cfg(target_os = "fuchsia")]
fn signal_peer(
&self,
clear_mask: zx::Signals,
set_mask: zx::Signals,
) -> Result<(), zx_status::Status> {
use fidl::Peered;
self.inner.channel().signal_peer(clear_mask, set_mask)
}
}
impl InterfacesControlHandle {}
mod internal {
use super::*;
impl fidl::encoding::ResourceTypeMarker for DiagnosticsGetProcessHandleForInspectionResponse {
type Borrowed<'a> = &'a mut Self;
fn take_or_borrow<'a>(
value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
) -> Self::Borrowed<'a> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for DiagnosticsGetProcessHandleForInspectionResponse {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
4
}
}
unsafe impl
fidl::encoding::Encode<
DiagnosticsGetProcessHandleForInspectionResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for &mut DiagnosticsGetProcessHandleForInspectionResponse
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<DiagnosticsGetProcessHandleForInspectionResponse>(offset);
fidl::encoding::Encode::<
DiagnosticsGetProcessHandleForInspectionResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
>::encode(
(<fidl::encoding::HandleType<
fidl::Process,
{ fidl::ObjectType::PROCESS.into_raw() },
32768,
> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
&mut self.process
),),
encoder,
offset,
_depth,
)
}
}
unsafe impl<
T0: fidl::encoding::Encode<
fidl::encoding::HandleType<
fidl::Process,
{ fidl::ObjectType::PROCESS.into_raw() },
32768,
>,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
>
fidl::encoding::Encode<
DiagnosticsGetProcessHandleForInspectionResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for (T0,)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<DiagnosticsGetProcessHandleForInspectionResponse>(offset);
self.0.encode(encoder, offset + 0, depth)?;
Ok(())
}
}
impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
for DiagnosticsGetProcessHandleForInspectionResponse
{
#[inline(always)]
fn new_empty() -> Self {
Self {
process: fidl::new_empty!(fidl::encoding::HandleType<fidl::Process, { fidl::ObjectType::PROCESS.into_raw() }, 32768>, fidl::encoding::DefaultFuchsiaResourceDialect),
}
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
fidl::decode!(fidl::encoding::HandleType<fidl::Process, { fidl::ObjectType::PROCESS.into_raw() }, 32768>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.process, decoder, offset + 0, _depth)?;
Ok(())
}
}
impl fidl::encoding::ResourceTypeMarker for InterfacesGetPortRequest {
type Borrowed<'a> = &'a mut Self;
fn take_or_borrow<'a>(
value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
) -> Self::Borrowed<'a> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for InterfacesGetPortRequest {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
8
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
16
}
}
unsafe impl
fidl::encoding::Encode<
InterfacesGetPortRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for &mut InterfacesGetPortRequest
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<InterfacesGetPortRequest>(offset);
fidl::encoding::Encode::<
InterfacesGetPortRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
>::encode(
(
<u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.id),
<fidl::encoding::Endpoint<
fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
&mut self.port
),
),
encoder,
offset,
_depth,
)
}
}
unsafe impl<
T0: fidl::encoding::Encode<u64, fidl::encoding::DefaultFuchsiaResourceDialect>,
T1: fidl::encoding::Encode<
fidl::encoding::Endpoint<
fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
>
fidl::encoding::Encode<
InterfacesGetPortRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for (T0, T1)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<InterfacesGetPortRequest>(offset);
unsafe {
let ptr = encoder.buf.as_mut_ptr().add(offset).offset(8);
(ptr as *mut u64).write_unaligned(0);
}
self.0.encode(encoder, offset + 0, depth)?;
self.1.encode(encoder, offset + 8, depth)?;
Ok(())
}
}
impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
for InterfacesGetPortRequest
{
#[inline(always)]
fn new_empty() -> Self {
Self {
id: fidl::new_empty!(u64, fidl::encoding::DefaultFuchsiaResourceDialect),
port: fidl::new_empty!(
fidl::encoding::Endpoint<
fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect
),
}
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(8) };
let padval = unsafe { (ptr as *const u64).read_unaligned() };
let mask = 0xffffffff00000000u64;
let maskedval = padval & mask;
if maskedval != 0 {
return Err(fidl::Error::NonZeroPadding {
padding_start: offset + 8 + ((mask as u64).trailing_zeros() / 8) as usize,
});
}
fidl::decode!(
u64,
fidl::encoding::DefaultFuchsiaResourceDialect,
&mut self.id,
decoder,
offset + 0,
_depth
)?;
fidl::decode!(
fidl::encoding::Endpoint<
fidl::endpoints::ServerEnd<fidl_fuchsia_hardware_network::PortMarker>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect,
&mut self.port,
decoder,
offset + 8,
_depth
)?;
Ok(())
}
}
}