pub struct CapabilityStoreSynchronousProxy { /* private fields */ }
Implementations§
source§impl CapabilityStoreSynchronousProxy
impl CapabilityStoreSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<CapabilityStoreEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<CapabilityStoreEvent, 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 duplicate(
&self,
id: u64,
dest_id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDuplicateResult, Error>
pub fn duplicate( &self, id: u64, dest_id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDuplicateResult, Error>
Duplicates the capability with id
to dest_id
.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.ID_ALREADY_EXISTS
if a capability withdest_id
already exists in this store.NOT_DUPLICATABLE
ifid
could not be duplicated.
sourcepub fn drop(
&self,
id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDropResult, Error>
pub fn drop( &self, id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDropResult, Error>
Drops the capability with id
from this [CapabilityStore
].
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.
sourcepub fn export(
&self,
id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreExportResult, Error>
pub fn export( &self, id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreExportResult, Error>
Exports the capability with the client-assigned identifier id
to
capability
. This operation removes the capability from the store. If
this is not desired, [Duplicate] the capability first.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.
sourcepub fn import(
&self,
id: u64,
capability: Capability,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreImportResult, Error>
pub fn import( &self, id: u64, capability: Capability, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreImportResult, Error>
Imports capability
into this store with the client-assigned id
.
Errors:
ID_ALREADY_EXISTS
if a capability withid
already exists in this store.BAD_CAPABILITY
ifcapability
was not a valid Capability.
sourcepub fn connector_create(
&self,
id: u64,
receiver: ClientEnd<ReceiverMarker>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreConnectorCreateResult, Error>
pub fn connector_create( &self, id: u64, receiver: ClientEnd<ReceiverMarker>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreConnectorCreateResult, Error>
sourcepub fn connector_open(
&self,
id: u64,
server_end: Channel,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreConnectorOpenResult, Error>
pub fn connector_open( &self, id: u64, server_end: Channel, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreConnectorOpenResult, Error>
Open a connection from the provided Connector capability that will be dispatched to the [Receiver] on the other end.
If there is an error, it will be reported as a zx.Status epitaph on server_end
.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a connector capability.
sourcepub fn dir_connector_create(
&self,
id: u64,
receiver: ClientEnd<DirReceiverMarker>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDirConnectorCreateResult, Error>
pub fn dir_connector_create( &self, id: u64, receiver: ClientEnd<DirReceiverMarker>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDirConnectorCreateResult, Error>
Creates a DirConnector from a [DirReceiver]. Incoming connections to the DirConnector will be dispatched to this [DirReceiver].
Errors:
ID_ALREADY_EXISTS
if a capability withid
already exists in this store.
sourcepub fn dir_connector_open(
&self,
id: u64,
server_end: ServerEnd<DirectoryMarker>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDirConnectorOpenResult, Error>
pub fn dir_connector_open( &self, id: u64, server_end: ServerEnd<DirectoryMarker>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDirConnectorOpenResult, Error>
Open a connection from the provided DirConnector capability that will be dispatched to the [DirReceiver] on the other end.
This method does not take Open
/Open3
parameters such as flags
or path
.
Clients that wish to specify these can get an initial connection from this method
and call fuchsia.io/Directory.Open
on it. See the [DirReceiver] documentation for
more information about the expectations of the server side.
If there was an error making the connection, it will be reported as a zx.Status
epitaph on server_end
.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a connector capability.
sourcepub fn dictionary_create(
&self,
id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryCreateResult, Error>
pub fn dictionary_create( &self, id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryCreateResult, Error>
Creates a new empty dictionary in this [CapabilityStore
] with client-assigned id
.
Errors:
ID_ALREADY_EXISTS
if a capability withid
already exists in this store.
sourcepub fn dictionary_legacy_import(
&self,
id: u64,
client_end: Channel,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryLegacyImportResult, Error>
pub fn dictionary_legacy_import( &self, id: u64, client_end: Channel, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryLegacyImportResult, Error>
Imports a dictionary in the form of a channel.
This is a legacy API to support backward compatibility with APIs that take a [Dictionary] channel.
Errors:
ID_ALREADY_EXISTS
if a capability withid
already exists in this store.BAD_CAPABILITY
ifclient_end
was not a valid dictionary channel.
sourcepub fn dictionary_legacy_export(
&self,
id: u64,
server_end: Channel,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryLegacyExportResult, Error>
pub fn dictionary_legacy_export( &self, id: u64, server_end: Channel, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryLegacyExportResult, Error>
Binds a channel to the dictionary with id
. The channel can
be re-imported into a [CapabilityStore] with [DictionaryImportLegacy].
This is a legacy API to support backward compatibility with APIs that take a [Dictionary] channel.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.
sourcepub fn dictionary_insert(
&self,
id: u64,
item: &DictionaryItem,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryInsertResult, Error>
pub fn dictionary_insert( &self, id: u64, item: &DictionaryItem, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryInsertResult, Error>
Inserts item
into the dictionary with id
. item.value
is moved into the dictionary and
its id is released if this call succeeds.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a dictionary.INVALID_KEY
ifitem.key
was invalid.ITEM_ALREADY_EXISTS
if the dictionary already contains an item withitem.key
.
sourcepub fn dictionary_get(
&self,
id: u64,
key: &str,
dest_id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryGetResult, Error>
pub fn dictionary_get( &self, id: u64, key: &str, dest_id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryGetResult, Error>
Get a duplicate of a capability from the dictionary with id
, which is
loaded into dest_id
.
Errors:
ID_NOT_FOUND
ifid
was not a recognized capability id in this store.ID_ALREADY_EXISTS
if a capability withdest_id
already exists in this store.WRONG_TYPE
ifid
was not a dictionary.INVALID_KEY
ifitem.key
was invalid.ITEM_NOT_FOUND
if the dictionary does not containkey
.NOT_DUPLICATABLE
if the capability could not be duplicated.
sourcepub fn dictionary_remove(
&self,
id: u64,
key: &str,
dest_id: Option<&WrappedCapabilityId>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryRemoveResult, Error>
pub fn dictionary_remove( &self, id: u64, key: &str, dest_id: Option<&WrappedCapabilityId>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryRemoveResult, Error>
Removes a key from the dictionary with id
. If dest_id
is present, loads the value
into it, otherwise discards the value.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.ID_ALREADY_EXISTS
if a capability withdest_id
already exists in this store.WRONG_TYPE
ifid
was not a dictionary.INVALID_KEY
ifkey
was invalid.ITEM_NOT_FOUND
if the dictionary does not contain the key.
sourcepub fn dictionary_copy(
&self,
id: u64,
dest_id: u64,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryCopyResult, Error>
pub fn dictionary_copy( &self, id: u64, dest_id: u64, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryCopyResult, Error>
Create a new dictionary that contains a duplicate of all the entries in
the dictionary with id
, assigning dest_id
to the new dictionary.
The runtime of this method is linear in the number of top-level entries
in the dictionary.
For example, if the dictionary contains nested dictionaries, the newly created dictionary will contain references to those same nested dictionaries because the entries are duplicated rather than deep-copied.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.ID_ALREADY_EXISTS
if a capability withdest_id
already exists in this store.WRONG_TYPE
ifid
was not a dictionary.NOT_DUPLICATABLE
if one of the capabilities inid
could not be duplicated.
sourcepub fn dictionary_keys(
&self,
id: u64,
iterator: ServerEnd<DictionaryKeysIteratorMarker>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryKeysResult, Error>
pub fn dictionary_keys( &self, id: u64, iterator: ServerEnd<DictionaryKeysIteratorMarker>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryKeysResult, Error>
Enumerates the keys in the dictionary with id
.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a dictionary.
sourcepub fn dictionary_enumerate(
&self,
id: u64,
iterator: ServerEnd<DictionaryEnumerateIteratorMarker>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryEnumerateResult, Error>
pub fn dictionary_enumerate( &self, id: u64, iterator: ServerEnd<DictionaryEnumerateIteratorMarker>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryEnumerateResult, Error>
Enumerates the items (keys and values) in the dictionary with id
.
Creates a duplicate of each value (capability). If a value could not be duplicated, the value will be null.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a dictionary.
sourcepub fn dictionary_drain(
&self,
id: u64,
iterator: Option<ServerEnd<DictionaryDrainIteratorMarker>>,
___deadline: MonotonicInstant,
) -> Result<CapabilityStoreDictionaryDrainResult, Error>
pub fn dictionary_drain( &self, id: u64, iterator: Option<ServerEnd<DictionaryDrainIteratorMarker>>, ___deadline: MonotonicInstant, ) -> Result<CapabilityStoreDictionaryDrainResult, Error>
Removes all the entries in this dictionary, returning them in contents
if provided.
If contents
is not provided, all the items are discarded without enumerating them.
Errors:
ID_NOT_FOUND
ifid
was not a valid capability id in this store.WRONG_TYPE
ifid
was not a dictionary.
Trait Implementations§
source§impl SynchronousProxy for CapabilityStoreSynchronousProxy
impl SynchronousProxy for CapabilityStoreSynchronousProxy
§type Proxy = CapabilityStoreProxy
type Proxy = CapabilityStoreProxy
§type Protocol = CapabilityStoreMarker
type Protocol = CapabilityStoreMarker
Proxy
controls.