pub struct DynamicDataSinkProxy { /* private fields */ }
Implementations§
Source§impl DynamicDataSinkProxy
impl DynamicDataSinkProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.paver/DynamicDataSink.
Sourcepub fn take_event_stream(&self) -> DynamicDataSinkEventStream
pub fn take_event_stream(&self) -> DynamicDataSinkEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn read_asset(
&self,
configuration: Configuration,
asset: Asset,
) -> QueryResponseFut<DataSinkReadAssetResult, DefaultFuchsiaResourceDialect>
pub fn read_asset( &self, configuration: Configuration, asset: Asset, ) -> QueryResponseFut<DataSinkReadAssetResult, DefaultFuchsiaResourceDialect>
Reads the partition corresponding to configuration
and asset
into a vmo and returns it.
The size field of the returned Buffer
will be the size of just the asset, if it can be
determined. Otherwise, it will be the size of the entire partition.
The size and stream size of the vmo in the returned Buffer
will always be the size of the
entire partition.
Sourcepub fn write_asset(
&self,
configuration: Configuration,
asset: Asset,
payload: Buffer,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn write_asset( &self, configuration: Configuration, asset: Asset, payload: Buffer, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Writes partition corresponding to configuration
and asset
with data from payload
.
payload
may need to be resized to the partition size, so the provided vmo must have
been created with ZX_VMO_RESIZABLE
or must be a child VMO that was created with
ZX_VMO_CHILD_RESIZABLE
. Will zero out rest of the partition if payload
is smaller
than the size of the partition being written.
Returns ZX_ERR_INVALID_ARGS
if configuration
specifies active configuration.
Sourcepub fn write_firmware(
&self,
configuration: Configuration,
type_: &str,
payload: Buffer,
) -> QueryResponseFut<WriteFirmwareResult, DefaultFuchsiaResourceDialect>
pub fn write_firmware( &self, configuration: Configuration, type_: &str, payload: Buffer, ) -> QueryResponseFut<WriteFirmwareResult, DefaultFuchsiaResourceDialect>
Writes firmware data from payload
.
configuration
represents the A/B/R configuration. For platforms that do not support
firmware A/B/R, the parameter will be ignored by the underlying device-specific logic .
type
is a device-specific string identifying the payload contents,
used to select the proper paving logic. For example, a device with
multiple bootloader stages might send them as separate calls to
WriteFirmware()
, differentiated by type
. An empty string
indicates the default type.
payload
may need to be resized to the partition size, so the provided
vmo must have been created with ZX_VMO_RESIZABLE
or must be a child
VMO that was created with ZX_VMO_CHILD_RESIZABLE
.
Sourcepub fn read_firmware(
&self,
configuration: Configuration,
type_: &str,
) -> QueryResponseFut<DataSinkReadFirmwareResult, DefaultFuchsiaResourceDialect>
pub fn read_firmware( &self, configuration: Configuration, type_: &str, ) -> QueryResponseFut<DataSinkReadFirmwareResult, DefaultFuchsiaResourceDialect>
Read firmware corresponding to configuration
and type
.
Parameter configuration
and type
are the same as WriteFirmware.
If ReadFirmware returns error, caller should assume that firmware image does not exist or is in a bad state, or firmware read is not defined for the product.
Sourcepub fn write_volumes(
&self,
payload: ClientEnd<PayloadStreamMarker>,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn write_volumes( &self, payload: ClientEnd<PayloadStreamMarker>, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Writes FVM with data from streamed via payload
. This potentially affects all
configurations.
Sourcepub fn write_opaque_volume(
&self,
payload: Buffer,
) -> QueryResponseFut<DataSinkWriteOpaqueVolumeResult, DefaultFuchsiaResourceDialect>
pub fn write_opaque_volume( &self, payload: Buffer, ) -> QueryResponseFut<DataSinkWriteOpaqueVolumeResult, DefaultFuchsiaResourceDialect>
Write a raw volume image to the device. The image will be passed as it is to the device partitioner backend to write. Therefore the format and write logic for the image is up to the product to define. It differs from WriteVolume(), which is specifically for writing the FVM sparse image, in that the paver will not perform any FVM related parsing or other operation of the image. Thus it is not dependent on the volume driver version and less susceptible to an outdated paver.
Returns ZX_ERR_NOT_SUPPORTED if the backend does not support opaque volume blobs.
Sourcepub fn write_sparse_volume(
&self,
payload: Buffer,
) -> QueryResponseFut<DataSinkWriteSparseVolumeResult, DefaultFuchsiaResourceDialect>
pub fn write_sparse_volume( &self, payload: Buffer, ) -> QueryResponseFut<DataSinkWriteSparseVolumeResult, DefaultFuchsiaResourceDialect>
Writes an image in the Android Sparse format. Identical in behaviour to
WriteOpaqueVolume
, except the contents of payload
are parsed as a sparse image and
unpacked before being written to disk.
Sourcepub fn flush(&self) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn flush(&self) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Flush all previously buffered writes to persistent storage.
Sourcepub fn initialize_partition_tables(
&self,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn initialize_partition_tables( &self, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Initializes partitions on given block device.
Currently only supported on devices which don’t support fastboot (which is the preferred mechanism for device setup).
WARNING: This API will wipe the existing partitions and data loss may occur. Non-Fuchsia partitions may be preserved, although this is behaviour is board-specific.
Sourcepub fn wipe_partition_tables(
&self,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn wipe_partition_tables( &self, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Wipes all entries from the partition table of the specified block device. Currently only supported on devices with a GPT.
WARNING: This API may destructively remove non-fuchsia maintained partitions from the block device.
Trait Implementations§
Source§impl Clone for DynamicDataSinkProxy
impl Clone for DynamicDataSinkProxy
Source§fn clone(&self) -> DynamicDataSinkProxy
fn clone(&self) -> DynamicDataSinkProxy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DynamicDataSinkProxy
impl Debug for DynamicDataSinkProxy
Source§impl DynamicDataSinkProxyInterface for DynamicDataSinkProxy
impl DynamicDataSinkProxyInterface for DynamicDataSinkProxy
type ReadAssetResponseFut = QueryResponseFut<Result<Buffer, i32>>
type WriteAssetResponseFut = QueryResponseFut<i32>
type WriteFirmwareResponseFut = QueryResponseFut<WriteFirmwareResult>
type ReadFirmwareResponseFut = QueryResponseFut<Result<Buffer, i32>>
type WriteVolumesResponseFut = QueryResponseFut<i32>
type WriteOpaqueVolumeResponseFut = QueryResponseFut<Result<(), i32>>
type WriteSparseVolumeResponseFut = QueryResponseFut<Result<(), i32>>
type FlushResponseFut = QueryResponseFut<i32>
type InitializePartitionTablesResponseFut = QueryResponseFut<i32>
type WipePartitionTablesResponseFut = QueryResponseFut<i32>
fn read_asset( &self, configuration: Configuration, asset: Asset, ) -> Self::ReadAssetResponseFut
fn write_asset( &self, configuration: Configuration, asset: Asset, payload: Buffer, ) -> Self::WriteAssetResponseFut
fn write_firmware( &self, configuration: Configuration, type_: &str, payload: Buffer, ) -> Self::WriteFirmwareResponseFut
fn read_firmware( &self, configuration: Configuration, type_: &str, ) -> Self::ReadFirmwareResponseFut
fn write_volumes( &self, payload: ClientEnd<PayloadStreamMarker>, ) -> Self::WriteVolumesResponseFut
fn write_opaque_volume( &self, payload: Buffer, ) -> Self::WriteOpaqueVolumeResponseFut
fn write_sparse_volume( &self, payload: Buffer, ) -> Self::WriteSparseVolumeResponseFut
fn flush(&self) -> Self::FlushResponseFut
fn initialize_partition_tables( &self, ) -> Self::InitializePartitionTablesResponseFut
fn wipe_partition_tables(&self) -> Self::WipePartitionTablesResponseFut
Source§impl Proxy for DynamicDataSinkProxy
impl Proxy for DynamicDataSinkProxy
Source§type Protocol = DynamicDataSinkMarker
type Protocol = DynamicDataSinkMarker
Proxy
controls.Source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Auto Trait Implementations§
impl Freeze for DynamicDataSinkProxy
impl !RefUnwindSafe for DynamicDataSinkProxy
impl Send for DynamicDataSinkProxy
impl Sync for DynamicDataSinkProxy
impl Unpin for DynamicDataSinkProxy
impl !UnwindSafe for DynamicDataSinkProxy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)