pub struct VolumeAndNodeSynchronousProxy { /* private fields */ }
Implementations§
source§impl VolumeAndNodeSynchronousProxy
impl VolumeAndNodeSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<VolumeAndNodeEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<VolumeAndNodeEvent, 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_info(
&self,
___deadline: MonotonicInstant,
) -> Result<BlockGetInfoResult, Error>
pub fn get_info( &self, ___deadline: MonotonicInstant, ) -> Result<BlockGetInfoResult, Error>
Get information about the underlying block device.
sourcepub fn get_stats(
&self,
clear: bool,
___deadline: MonotonicInstant,
) -> Result<BlockGetStatsResult, Error>
pub fn get_stats( &self, clear: bool, ___deadline: MonotonicInstant, ) -> Result<BlockGetStatsResult, Error>
Returns stats about block device operations. Setting clear
will reset stats counters.
sourcepub fn open_session(
&self,
session: ServerEnd<SessionMarker>,
) -> Result<(), Error>
pub fn open_session( &self, session: ServerEnd<SessionMarker>, ) -> Result<(), Error>
Opens a new FIFO-based session on the block device.
sourcepub fn get_type_guid(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, Option<Box<Guid>>), Error>
pub fn get_type_guid( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, Option<Box<Guid>>), Error>
Gets the type GUID of the partition (if one exists). If the partition has no type GUID, ZX_ERR_NOT_SUPPORTED is returned.
sourcepub fn get_instance_guid(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, Option<Box<Guid>>), Error>
pub fn get_instance_guid( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, Option<Box<Guid>>), Error>
Gets the instance GUID of the partition (if one exists). If the partition has no instance GUID, ZX_ERR_NOT_SUPPORTED is returned.
sourcepub fn get_name(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, Option<String>), Error>
pub fn get_name( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, Option<String>), Error>
Gets the name of the partition (if one exists). If the partition has no name, ZX_ERR_NOT_SUPPORTED is returned.
sourcepub fn query_slices(
&self,
start_slices: &[u64],
___deadline: MonotonicInstant,
) -> Result<(i32, [VsliceRange; 16], u64), Error>
pub fn query_slices( &self, start_slices: &[u64], ___deadline: MonotonicInstant, ) -> Result<(i32, [VsliceRange; 16], u64), Error>
Returns the number of contiguous allocated (or unallocated) vslices starting from each vslice.
sourcepub fn get_volume_info(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, Option<Box<VolumeManagerInfo>>, Option<Box<VolumeInfo>>), Error>
pub fn get_volume_info( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, Option<Box<VolumeManagerInfo>>, Option<Box<VolumeInfo>>), Error>
Returns the information about this volume and the volume manager it is embedded in.
sourcepub fn extend(
&self,
start_slice: u64,
slice_count: u64,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn extend( &self, start_slice: u64, slice_count: u64, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Extends the mapping of this partition.
The ability to extend the partition is dependent on having sufficient free space on the underlying device, having sufficient free slots for tracking the bytes in the volume manager header, and the partition limit (see VolumeManager.SetPartitionLimit).
sourcepub fn shrink(
&self,
start_slice: u64,
slice_count: u64,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn shrink( &self, start_slice: u64, slice_count: u64, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Shrinks a virtual partition. Returns ZX_OK
if ANY slices are
freed, even if part of the requested range contains unallocated slices.
sourcepub fn destroy(&self, ___deadline: MonotonicInstant) -> Result<i32, Error>
pub fn destroy(&self, ___deadline: MonotonicInstant) -> Result<i32, Error>
Destroys the current partition, removing it from the VolumeManager, and freeing all underlying storage. The connection to the volume is also closed.
sourcepub fn clone(
&self,
flags: OpenFlags,
object: ServerEnd<NodeMarker>,
) -> Result<(), Error>
pub fn clone( &self, flags: OpenFlags, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>
Create another connection to the same remote object.
flags
may be any of:
OpenFlags.RIGHT_*
OpenFlags.APPEND
OpenFlags.DESCRIBE
OpenFlags.CLONE_SAME_RIGHTS
All other flags are ignored.
The OpenFlags.RIGHT_*
bits in flags
request corresponding rights over the resulting
cloned object.
The cloned object must have rights less than or equal to the original object, otherwise
returns ZX_ERR_ACCESS_DENIED
.
Alternatively, pass OpenFlags.CLONE_SAME_RIGHTS
to inherit the rights on the source connection.
It is invalid to pass any of the OpenFlags.RIGHT_*
flags together with
OpenFlags.CLONE_SAME_RIGHTS
.
sourcepub fn get_attr(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, NodeAttributes), Error>
pub fn get_attr( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, NodeAttributes), Error>
Acquires information about the node.
This method does not require any rights.
sourcepub fn set_attr(
&self,
flags: NodeAttributeFlags,
attributes: &NodeAttributes,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn set_attr( &self, flags: NodeAttributeFlags, attributes: &NodeAttributes, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Updates information about the node.
Returns ZX_ERR_NOT_SUPPORTED
if any attributes specified by [flags
] are not supported.
This method requires following rights: OpenFlags.RIGHT_WRITABLE
, otherwise returns
ZX_ERR_BAD_HANDLE
.
sourcepub fn get_flags(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, OpenFlags), Error>
pub fn get_flags( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, OpenFlags), Error>
Acquires the Directory.Open
rights and flags used to access this file.
This method does not require any rights.
sourcepub fn set_flags(
&self,
flags: OpenFlags,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn set_flags( &self, flags: OpenFlags, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Changes the Directory.Open
flags used to access the file.
Supported flags which can be turned on / off:
OpenFlags.APPEND
This method does not require any rights.
sourcepub fn query_filesystem(
&self,
___deadline: MonotonicInstant,
) -> Result<(i32, Option<Box<FilesystemInfo>>), Error>
pub fn query_filesystem( &self, ___deadline: MonotonicInstant, ) -> Result<(i32, Option<Box<FilesystemInfo>>), Error>
Query the filesystem for filesystem-specific information.
sourcepub fn close(
&self,
___deadline: MonotonicInstant,
) -> Result<CloseableCloseResult, Error>
pub fn close( &self, ___deadline: MonotonicInstant, ) -> Result<CloseableCloseResult, Error>
Terminates the connection.
After calling Close
, the client must not send any other requests.
Servers, after sending the status response, should close the connection regardless of status and without sending an epitaph.
Closing the client end of the channel should be semantically equivalent
to calling Close
without knowing when the close has completed or its
status.
pub fn query(&self, ___deadline: MonotonicInstant) -> Result<Vec<u8>, Error>
sourcepub fn reopen(
&self,
rights_request: &RightsRequest,
object_request: ServerEnd<NodeMarker>,
) -> Result<(), Error>
pub fn reopen( &self, rights_request: &RightsRequest, object_request: ServerEnd<NodeMarker>, ) -> Result<(), Error>
Creates another connection to the same node.
sourcepub fn get_connection_info(
&self,
___deadline: MonotonicInstant,
) -> Result<ConnectionInfo, Error>
pub fn get_connection_info( &self, ___deadline: MonotonicInstant, ) -> Result<ConnectionInfo, Error>
Acquires information about the connection.
This method does not require any rights.
sourcepub fn get_attributes(
&self,
query: NodeAttributesQuery,
___deadline: MonotonicInstant,
) -> Result<Node2GetAttributesResult, Error>
pub fn get_attributes( &self, query: NodeAttributesQuery, ___deadline: MonotonicInstant, ) -> Result<Node2GetAttributesResult, Error>
Acquires information about the node.
The attributes of a node should be stable, independent of the specific protocol used to access it.
If a particular attribute is not applicable or not supported, filesystems should leave the corresponding field absent.
query
a bit-mask specifying which attributes to fetch. The server should not return more than necessary.
attributes
the returned attributes.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn update_attributes(
&self,
payload: &MutableNodeAttributes,
___deadline: MonotonicInstant,
) -> Result<Node2UpdateAttributesResult, Error>
pub fn update_attributes( &self, payload: &MutableNodeAttributes, ___deadline: MonotonicInstant, ) -> Result<Node2UpdateAttributesResult, Error>
Updates information about the node.
attributes
the presence of a table field inattributes
indicates the intent to update the corresponding attribute.
Returns ZX_ERR_NOT_SUPPORTED
if the node does not support any of the specified attributes.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn sync(
&self,
___deadline: MonotonicInstant,
) -> Result<Node2SyncResult, Error>
pub fn sync( &self, ___deadline: MonotonicInstant, ) -> Result<Node2SyncResult, Error>
Synchronizes updates to the node to the underlying media, if it exists.
This method will return when the filesystem server has flushed the
relevant updates to the underlying media, but does not guarantee the
underlying media has persisted the information, nor that any information
is committed to hardware. Clients may use Sync
to ensure ordering
between operations.
This method does not require any rights.
sourcepub fn list_extended_attributes(
&self,
iterator: ServerEnd<ExtendedAttributeIteratorMarker>,
) -> Result<(), Error>
pub fn list_extended_attributes( &self, iterator: ServerEnd<ExtendedAttributeIteratorMarker>, ) -> Result<(), Error>
Creates an iterator over all the extended attribute names associated with this node. If an error occurs it is returned as an epitaph on the iterator request channel, and then the channel is closed.
GetExtendedAttributes can be used with any of these names to retrieve the associated value.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn get_extended_attribute(
&self,
name: &[u8],
___deadline: MonotonicInstant,
) -> Result<Node2GetExtendedAttributeResult, Error>
pub fn get_extended_attribute( &self, name: &[u8], ___deadline: MonotonicInstant, ) -> Result<Node2GetExtendedAttributeResult, Error>
Get the value associated with the given attribute name
for this node.
Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No particular structure is imposed on them.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn set_extended_attribute(
&self,
name: &[u8],
value: ExtendedAttributeValue,
mode: SetExtendedAttributeMode,
___deadline: MonotonicInstant,
) -> Result<Node2SetExtendedAttributeResult, Error>
pub fn set_extended_attribute( &self, name: &[u8], value: ExtendedAttributeValue, mode: SetExtendedAttributeMode, ___deadline: MonotonicInstant, ) -> Result<Node2SetExtendedAttributeResult, Error>
Set the value for the given attribute name
to value
for this node.
The attribute name may exist, in which case the attribute is updated. If the attribute doesn’t exist, it is created. The name should have no null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn remove_extended_attribute(
&self,
name: &[u8],
___deadline: MonotonicInstant,
) -> Result<Node2RemoveExtendedAttributeResult, Error>
pub fn remove_extended_attribute( &self, name: &[u8], ___deadline: MonotonicInstant, ) -> Result<Node2RemoveExtendedAttributeResult, Error>
Remove the specified extended attribute.
If the attribute doesn’t exist, ZX_ERR_NOT_FOUND is returned.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn connect_to_device_fidl(&self, server: Channel) -> Result<(), Error>
pub fn connect_to_device_fidl(&self, server: Channel) -> Result<(), Error>
Connect to the underlying device’s FIDL protocol. This connection will not be multiplexed with fuchsia.device.Controller or fuchsia.io.Node.
sourcepub fn connect_to_controller(
&self,
server: ServerEnd<ControllerMarker>,
) -> Result<(), Error>
pub fn connect_to_controller( &self, server: ServerEnd<ControllerMarker>, ) -> Result<(), Error>
Connect to the same Controller FIDL protocol.
sourcepub fn bind(
&self,
driver: &str,
___deadline: MonotonicInstant,
) -> Result<ControllerBindResult, Error>
pub fn bind( &self, driver: &str, ___deadline: MonotonicInstant, ) -> Result<ControllerBindResult, Error>
Attempt to bind a driver to this device.
- request
driver
This represents the suffix of a driver URL (e.g: “fvm.cm”). If this is non-empty, then the only drivers that will try to bind are ones that match this url suffix.
sourcepub fn rebind(
&self,
driver: &str,
___deadline: MonotonicInstant,
) -> Result<ControllerRebindResult, Error>
pub fn rebind( &self, driver: &str, ___deadline: MonotonicInstant, ) -> Result<ControllerRebindResult, Error>
Unbind all the children of this device, and then attempt to bind a driver to the device. This will not return until the bind completes.
- request
driver
This represents the suffix of a driver URL (e.g: “fvm.cm”). If this is non-empty, then the only drivers that will try to bind are ones that match this url suffix.
sourcepub fn unbind_children(
&self,
___deadline: MonotonicInstant,
) -> Result<ControllerUnbindChildrenResult, Error>
pub fn unbind_children( &self, ___deadline: MonotonicInstant, ) -> Result<ControllerUnbindChildrenResult, Error>
This api will unbind all the children of this device synchronously. This will avoid watching for device removal by the clients.
sourcepub fn schedule_unbind(
&self,
___deadline: MonotonicInstant,
) -> Result<ControllerScheduleUnbindResult, Error>
pub fn schedule_unbind( &self, ___deadline: MonotonicInstant, ) -> Result<ControllerScheduleUnbindResult, Error>
Disconnect this device and allow its parent to be bound again. This may not complete before it returns.
sourcepub fn get_topological_path(
&self,
___deadline: MonotonicInstant,
) -> Result<ControllerGetTopologicalPathResult, Error>
pub fn get_topological_path( &self, ___deadline: MonotonicInstant, ) -> Result<ControllerGetTopologicalPathResult, Error>
Return the topological path for this device
Trait Implementations§
source§impl SynchronousProxy for VolumeAndNodeSynchronousProxy
impl SynchronousProxy for VolumeAndNodeSynchronousProxy
§type Proxy = VolumeAndNodeProxy
type Proxy = VolumeAndNodeProxy
§type Protocol = VolumeAndNodeMarker
type Protocol = VolumeAndNodeMarker
Proxy
controls.