Enum fidl_fuchsia_io::SymlinkRequest
source · pub enum SymlinkRequest {
Show 20 variants
LinkInto {
dst_parent_token: Event,
dst: String,
responder: SymlinkLinkIntoResponder,
},
Clone2 {
request: ServerEnd<CloneableMarker>,
control_handle: SymlinkControlHandle,
},
Close {
responder: SymlinkCloseResponder,
},
Query {
responder: SymlinkQueryResponder,
},
Clone {
flags: OpenFlags,
object: ServerEnd<NodeMarker>,
control_handle: SymlinkControlHandle,
},
GetAttr {
responder: SymlinkGetAttrResponder,
},
SetAttr {
flags: NodeAttributeFlags,
attributes: NodeAttributes,
responder: SymlinkSetAttrResponder,
},
GetFlags {
responder: SymlinkGetFlagsResponder,
},
SetFlags {
flags: OpenFlags,
responder: SymlinkSetFlagsResponder,
},
QueryFilesystem {
responder: SymlinkQueryFilesystemResponder,
},
GetConnectionInfo {
responder: SymlinkGetConnectionInfoResponder,
},
GetAttributes {
query: NodeAttributesQuery,
responder: SymlinkGetAttributesResponder,
},
UpdateAttributes {
payload: MutableNodeAttributes,
responder: SymlinkUpdateAttributesResponder,
},
Sync {
responder: SymlinkSyncResponder,
},
ListExtendedAttributes {
iterator: ServerEnd<ExtendedAttributeIteratorMarker>,
control_handle: SymlinkControlHandle,
},
GetExtendedAttribute {
name: Vec<u8>,
responder: SymlinkGetExtendedAttributeResponder,
},
SetExtendedAttribute {
name: Vec<u8>,
value: ExtendedAttributeValue,
mode: SetExtendedAttributeMode,
responder: SymlinkSetExtendedAttributeResponder,
},
RemoveExtendedAttribute {
name: Vec<u8>,
responder: SymlinkRemoveExtendedAttributeResponder,
},
Describe {
responder: SymlinkDescribeResponder,
},
_UnknownMethod {
ordinal: u64,
control_handle: SymlinkControlHandle,
method_type: MethodType,
},
}
Expand description
A [‘Node’] which contains a symbolic link.
Variants§
LinkInto
Creates a link to this this object with name dst
in the directory represented by
dst_parent_token
.
dst
must be a resolved object name. Including “/” in the string will return
ZX_ERR_INVALID_ARGS
.
This method requires the maximal set of rights supported by the filesystem for this object.
For files this would typically be [Rights.READ_BYTES
], [Rights.WRITE_BYTES
],
[Rights.GET_ATTRIBUTES
] and [Rights.UPDATE_ATTRIBUTES
]. Some filesystems might also
support the [Rights.EXECUTE
] right. Insufficient rights will result in
ZX_ERR_ACCESS_DENIED
.
If this object has no links, it will fail with ZX_ERR_NOT_FOUND
.
This method does not have the same atomicity properties has the Directory::Link
method,
which means that calling Open
then LinkInto
is not equivalent to Directory::Link
because LinkInto
will not prevent the source from being renamed or unlinked.
Clone2
Close
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.
Fields
responder: SymlinkCloseResponder
Query
Fields
responder: SymlinkQueryResponder
Clone
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
.
GetAttr
Acquires information about the node.
This method does not require any rights.
Fields
responder: SymlinkGetAttrResponder
SetAttr
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
.
GetFlags
Acquires the Directory.Open
rights and flags used to access this file.
This method does not require any rights.
Fields
responder: SymlinkGetFlagsResponder
SetFlags
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.
QueryFilesystem
Query the filesystem for filesystem-specific information.
Fields
responder: SymlinkQueryFilesystemResponder
GetConnectionInfo
Acquires information about the connection.
This method does not require any rights.
Fields
responder: SymlinkGetConnectionInfoResponder
GetAttributes
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.
UpdateAttributes
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.
Sync
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.
Fields
responder: SymlinkSyncResponder
ListExtendedAttributes
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.
GetExtendedAttribute
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.
SetExtendedAttribute
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.
RemoveExtendedAttribute
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.
Describe
Fields
responder: SymlinkDescribeResponder
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
control_handle: SymlinkControlHandle
method_type: MethodType
Implementations§
source§impl SymlinkRequest
impl SymlinkRequest
pub fn into_link_into(self) -> Option<(Event, String, SymlinkLinkIntoResponder)>
pub fn into_clone2( self, ) -> Option<(ServerEnd<CloneableMarker>, SymlinkControlHandle)>
pub fn into_close(self) -> Option<SymlinkCloseResponder>
pub fn into_query(self) -> Option<SymlinkQueryResponder>
pub fn into_clone( self, ) -> Option<(OpenFlags, ServerEnd<NodeMarker>, SymlinkControlHandle)>
pub fn into_get_attr(self) -> Option<SymlinkGetAttrResponder>
pub fn into_set_attr( self, ) -> Option<(NodeAttributeFlags, NodeAttributes, SymlinkSetAttrResponder)>
pub fn into_get_flags(self) -> Option<SymlinkGetFlagsResponder>
pub fn into_set_flags(self) -> Option<(OpenFlags, SymlinkSetFlagsResponder)>
pub fn into_query_filesystem(self) -> Option<SymlinkQueryFilesystemResponder>
pub fn into_get_connection_info( self, ) -> Option<SymlinkGetConnectionInfoResponder>
pub fn into_get_attributes( self, ) -> Option<(NodeAttributesQuery, SymlinkGetAttributesResponder)>
pub fn into_update_attributes( self, ) -> Option<(MutableNodeAttributes, SymlinkUpdateAttributesResponder)>
pub fn into_sync(self) -> Option<SymlinkSyncResponder>
pub fn into_list_extended_attributes( self, ) -> Option<(ServerEnd<ExtendedAttributeIteratorMarker>, SymlinkControlHandle)>
pub fn into_get_extended_attribute( self, ) -> Option<(Vec<u8>, SymlinkGetExtendedAttributeResponder)>
pub fn into_set_extended_attribute( self, ) -> Option<(Vec<u8>, ExtendedAttributeValue, SetExtendedAttributeMode, SymlinkSetExtendedAttributeResponder)>
pub fn into_remove_extended_attribute( self, ) -> Option<(Vec<u8>, SymlinkRemoveExtendedAttributeResponder)>
pub fn into_describe(self) -> Option<SymlinkDescribeResponder>
sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL