implement table _async methods, test passes now

This commit is contained in:
Pat Hickey
2021-10-21 14:15:53 -07:00
parent 5aef8f47c8
commit 252ba39c27
2 changed files with 58 additions and 6 deletions

View File

@@ -436,6 +436,31 @@ impl Table {
Table::_new(store.as_context_mut().0, ty, init)
}
/// Async variant of [`Table::new`]. You must use this variant with [`Store`]s which have a
/// [`ResourceLimiterAsync`].
///
/// # Panics
///
/// This function will panic when used with a non-async [`Store`].
#[cfg(feature = "async")]
pub async fn new_async<T>(
mut store: impl AsContextMut<Data = T>,
ty: TableType,
init: Val,
) -> Result<Table>
where
T: Send,
{
let mut store = store.as_context_mut();
assert!(
store.0.async_support(),
"cannot use `new_async` without enabling async support on the config"
);
store
.on_fiber(|store| Table::_new(store.0, ty, init))
.await?
}
fn _new(store: &mut StoreOpaque, ty: TableType, init: Val) -> Result<Table> {
let wasmtime_export = generate_table_export(store, &ty)?;
let init = init.into_table_element(store, ty.element())?;
@@ -562,6 +587,31 @@ impl Table {
}
}
/// Async variant of [`Table::grow`]. Required when using a [`ResourceLimiterAsync`].
///
/// # Panics
///
/// This function will panic when used with a non-async [`Store`].
#[cfg(feature = "async")]
pub async fn grow_async<T>(
&self,
mut store: impl AsContextMut<Data = T>,
delta: u32,
init: Val,
) -> Result<u32>
where
T: Send,
{
let mut store = store.as_context_mut();
assert!(
store.0.async_support(),
"cannot use `grow_async` without enabling async support on the config"
);
store
.on_fiber(|store| self.grow(store, delta, init))
.await?
}
/// Copy `len` elements from `src_table[src_index..]` into
/// `dst_table[dst_index..]`.
///