pub struct ResourceTable { /* private fields */ }
Expand description

Map-like data structure storing Deno’s resources (equivalent to file descriptors).

Provides basic methods for element access. A resource can be of any type. Different types of resources can be stored in the same map, and provided with a name for description.

Each resource is identified through a resource ID (rid), which acts as the key in the map.

Implementations§

source§

impl ResourceTable

source

pub fn len(&self) -> usize

Returns the number of resources currently active in the resource table. Resources taken from the table do not contribute to this count.

source

pub fn is_empty(&self) -> bool

Returns whether this table is empty.

source

pub fn add<T: Resource>(&mut self, resource: T) -> ResourceId

Inserts resource into the resource table, which takes ownership of it.

The resource type is erased at runtime and must be statically known when retrieving it through get().

Returns a unique resource ID, which acts as a key for this resource.

source

pub fn add_rc<T: Resource>(&mut self, resource: Rc<T>) -> ResourceId

Inserts a Rc-wrapped resource into the resource table.

The resource type is erased at runtime and must be statically known when retrieving it through get().

Returns a unique resource ID, which acts as a key for this resource.

source

pub fn add_rc_dyn(&mut self, resource: Rc<dyn Resource>) -> ResourceId

source

pub fn has(&self, rid: ResourceId) -> bool

Returns true if any resource with the given rid exists.

source

pub fn get<T: Resource>(&self, rid: ResourceId) -> Result<Rc<T>, Error>

Returns a reference counted pointer to the resource of type T with the given rid. If rid is not present or has a type different than T, this function returns None.

source

pub fn get_any(&self, rid: ResourceId) -> Result<Rc<dyn Resource>, Error>

source

pub fn replace<T: Resource>(&mut self, rid: ResourceId, resource: T)

Replaces a resource with a new resource.

Panics if the resource does not exist.

source

pub fn take<T: Resource>(&mut self, rid: ResourceId) -> Result<Rc<T>, Error>

Removes a resource of type T from the resource table and returns it. If a resource with the given rid exists but its type does not match T, it is not removed from the resource table. Note that the resource’s close() method is not called.

Also note that there might be a case where the returned Rc<T> is referenced by other variables. That is, we cannot assume that Rc::strong_count(&returned_rc) is always equal to 1 on success. In particular, be really careful when you want to extract the inner value of type T from Rc<T>.

source

pub fn take_any(&mut self, rid: ResourceId) -> Result<Rc<dyn Resource>, Error>

Removes a resource from the resource table and returns it. Note that the resource’s close() method is not called.

Also note that there might be a case where the returned Rc<T> is referenced by other variables. That is, we cannot assume that Rc::strong_count(&returned_rc) is always equal to 1 on success. In particular, be really careful when you want to extract the inner value of type T from Rc<T>.

source

pub fn close(&mut self, rid: ResourceId) -> Result<(), Error>

👎Deprecated: This method may deadlock. Use take() and close() instead.

Removes the resource with the given rid from the resource table. If the only reference to this resource existed in the resource table, this will cause the resource to be dropped. However, since resources are reference counted, therefore pending ops are not automatically cancelled. A resource may implement the close() method to perform clean-ups such as canceling ops.

source

pub fn names(&self) -> impl Iterator<Item = (ResourceId, Cow<'_, str>)>

Returns an iterator that yields a (id, name) pair for every resource that’s currently in the resource table. This can be used for debugging purposes or to implement the op_resources op. Note that the order in which items appear is not specified.

§Example
let resource_names = resource_table.names().collect::<Vec<_>>();
source

pub fn get_fd(&self, rid: ResourceId) -> Result<ResourceHandleFd, Error>

Retrieves the ResourceHandleFd for a given resource, for potential optimization purposes within ops.

source

pub fn get_socket(&self, rid: ResourceId) -> Result<ResourceHandleSocket, Error>

Retrieves the ResourceHandleSocket for a given resource, for potential optimization purposes within ops.

source

pub fn get_handle(&self, rid: ResourceId) -> Result<ResourceHandle, Error>

Retrieves the ResourceHandle for a given resource, for potential optimization purposes within ops.

Trait Implementations§

source§

impl Default for ResourceTable

source§

fn default() -> ResourceTable

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.