pub struct CompositeSynchronousProxy { /* private fields */ }
Implementations§
Source§impl CompositeSynchronousProxy
impl CompositeSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<CompositeEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<CompositeEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn get_health_state(
&self,
___deadline: MonotonicInstant,
) -> Result<HealthState, Error>
pub fn get_health_state( &self, ___deadline: MonotonicInstant, ) -> Result<HealthState, Error>
Retrieves top level health state. A driver not responding promptly can be used as an indication of an unhealthy driver.
Sourcepub fn signal_processing_connect(
&self,
protocol: ServerEnd<SignalProcessingMarker>,
) -> Result<(), Error>
pub fn signal_processing_connect( &self, protocol: ServerEnd<SignalProcessingMarker>, ) -> Result<(), Error>
Connect to a SignalProcessing
protocol.
Multiple connections may be supported, if a new connection request is not supported, i.e.
the maximum number of connections have already been created, for instance one, then the
protocol
channel (not the channel upon which SignalProcessingConnect
is being called)
will be closed with a ZX_ERR_ALREADY_BOUND
epitaph.
If signal processing is not supported at all, then the protocol
channel (again, not the
channel upon which SignalProcessingConnect
is being called) will be closed with a
ZX_ERR_NOT_SUPPORTED
epitaph.
This method is named SignalProcessingConnect
instead of Connect
because this protocol
is intended to be composed, and hence the more verbose name allows differentiation and
improved clarity.
Sourcepub fn reset(
&self,
___deadline: MonotonicInstant,
) -> Result<CompositeResetResult, Error>
pub fn reset( &self, ___deadline: MonotonicInstant, ) -> Result<CompositeResetResult, Error>
Resets the hardware including all DAI interconnects and signal processing.
As a result, all channels obtained by CreateRingBuffer
will be closed.
Reset
returns when the hardware is fully reset. At this point, a client would need to
reconfigure any DAI interconnects, select a signal processing topology and reconfigure
any processing elements, and reconstruct any ring buffers.
If the driver can’t successfully reset the hardware, it will return an error and then close the protocol channel, in this case the client may obtain a new protocol channel and retry.
Sourcepub fn get_properties(
&self,
___deadline: MonotonicInstant,
) -> Result<CompositeProperties, Error>
pub fn get_properties( &self, ___deadline: MonotonicInstant, ) -> Result<CompositeProperties, Error>
Retrieves top level static properties.
Sourcepub fn get_ring_buffer_formats(
&self,
processing_element_id: u64,
___deadline: MonotonicInstant,
) -> Result<CompositeGetRingBufferFormatsResult, Error>
pub fn get_ring_buffer_formats( &self, processing_element_id: u64, ___deadline: MonotonicInstant, ) -> Result<CompositeGetRingBufferFormatsResult, Error>
Retrieves the ring buffer formats supported by a RING_BUFFER
processing element
in the topology supported by this driver as returned by GetElements
from
fuchsia.hardware.audio.signalprocessing.
Returns SHOULD_WAIT
if the ring buffer formats are not available at the time, the
client may retry at a later time.
Returns INVALID_ARGS
if the processing_element_id
does not match an id returned
by GetElements
.
Returns WRONG_TYPE
if the ElementType
of the element represented by the id is not
RING_BUFFER
.
Retrieving multiple SupportedFormats
allows for cases where exclusive combinations of
the parameters in SupportedFormats
may be supported.
Sourcepub fn create_ring_buffer(
&self,
processing_element_id: u64,
format: &Format,
ring_buffer: ServerEnd<RingBufferMarker>,
___deadline: MonotonicInstant,
) -> Result<CompositeCreateRingBufferResult, Error>
pub fn create_ring_buffer( &self, processing_element_id: u64, format: &Format, ring_buffer: ServerEnd<RingBufferMarker>, ___deadline: MonotonicInstant, ) -> Result<CompositeCreateRingBufferResult, Error>
CreateRingBuffer
is sent by clients to select a ring buffer format for the RING_BUFFER
processing element specified by processing_element_id
. The format is based on information
that the driver provides in GetRingBufferFormats
, what is supported by the client, and
any other requirement. The returned ring_buffer
channel is used to access and control the
audio buffer provided by the driver.
Returns INVALID_ARGS
if the processing_element_id
does not match an id returned
by GetElements
.
Returns WRONG_TYPE
if the ElementType
of the element represented by the id is not
RING_BUFFER
.
Sourcepub fn get_dai_formats(
&self,
processing_element_id: u64,
___deadline: MonotonicInstant,
) -> Result<CompositeGetDaiFormatsResult, Error>
pub fn get_dai_formats( &self, processing_element_id: u64, ___deadline: MonotonicInstant, ) -> Result<CompositeGetDaiFormatsResult, Error>
Retrieves the DAI formats supported by a DAI_INTERCONNECT
processing element
in the topology supported by this driver as returned by GetElements
from
fuchsia.hardware.audio.signalprocessing.
Returns SHOULD_WAIT
if the DAI formats are not available at the time, the client
may retry at a later time.
Returns INVALID_ARGS
if the processing_element_id
does not match an id returned
by GetElements
.
Returns WRONG_TYPE
if the ElementType
of the element represented by the id is not
DAI_INTERCONNECT
.
Retrieving multiple DaiSupportedFormats
allows for cases where exclusive combinations of
the parameters in SupportedFormats may be supported.
Sourcepub fn set_dai_format(
&self,
processing_element_id: u64,
format: &DaiFormat,
___deadline: MonotonicInstant,
) -> Result<CompositeSetDaiFormatResult, Error>
pub fn set_dai_format( &self, processing_element_id: u64, format: &DaiFormat, ___deadline: MonotonicInstant, ) -> Result<CompositeSetDaiFormatResult, Error>
SetDaiFormat
is sent by clients to select a DAI format for the DAI_INTERCONNECT
processing element specified by processing_element_id
. The format is based on information
that the driver provides in GetDaiFormats
, what is supported by the client, and any other
requirement.
Returns INVALID_ARGS
if the processing_element_id
does not match an id returned
by GetElements
.
Returns WRONG_TYPE
if the ElementType
of the element represented by the id is not
DAI_INTERCONNECT
.
Trait Implementations§
Source§impl Debug for CompositeSynchronousProxy
impl Debug for CompositeSynchronousProxy
Source§impl SynchronousProxy for CompositeSynchronousProxy
impl SynchronousProxy for CompositeSynchronousProxy
Source§type Proxy = CompositeProxy
type Proxy = CompositeProxy
Source§type Protocol = CompositeMarker
type Protocol = CompositeMarker
Proxy
controls.