use crate::errors::RuntimeError;
use crate::store::{AsStoreMut, AsStoreRef};
use crate::value::Value;
use crate::vm::VMExternTable;
use crate::vm::{VMExtern, VMFunction, VMTable};
use crate::{FunctionType, TableType};
use rusty_jsc::{JSObject, JSValue};
#[derive(Debug, Clone, PartialEq)]
pub struct Table {
pub(crate) handle: VMTable,
}
fn set_table_item(table: &VMTable, item_index: u32, item: &JSObject) -> Result<(), RuntimeError> {
unimplemented!();
}
fn get_function(store: &mut impl AsStoreMut, val: Value) -> Result<JSObject, RuntimeError> {
unimplemented!();
}
impl Table {
pub fn new(
store: &mut impl AsStoreMut,
ty: TableType,
init: Value,
) -> Result<Self, RuntimeError> {
let store_mut = store.as_store_mut();
let engine = store_mut.engine();
let context = engine.0.context();
let mut descriptor = JSObject::new(&context);
descriptor.set_property(
&context,
"initial".to_string(),
JSValue::number(&context, ty.minimum.into()),
);
if let Some(max) = ty.maximum {
descriptor.set_property(
&context,
"maximum".to_string(),
JSValue::number(&context, max.into()),
);
}
descriptor.set_property(
&context,
"element".to_string(),
JSValue::string(&context, "anyfunc".to_string()),
);
let js_table = engine
.0
.wasm_table_type()
.construct(&context, &[descriptor.to_jsvalue()])
.map_err(|e| <JSValue as Into<RuntimeError>>::into(e))?;
let vm_table = VMTable::new(js_table, ty);
Ok(Self::from_vm_extern(store, vm_table))
}
pub fn to_vm_extern(&self) -> VMExtern {
VMExtern::Table(self.handle.clone())
}
pub fn ty(&self, _store: &impl AsStoreRef) -> TableType {
self.handle.ty
}
pub fn get(&self, store: &mut impl AsStoreMut, index: u32) -> Option<Value> {
unimplemented!();
}
pub fn set(
&self,
store: &mut impl AsStoreMut,
index: u32,
val: Value,
) -> Result<(), RuntimeError> {
unimplemented!();
}
pub fn size(&self, store: &impl AsStoreRef) -> u32 {
let store_mut = store.as_store_ref();
let engine = store_mut.engine();
let context = engine.0.context();
self.handle
.table
.get_property(&context, "length".to_string())
.to_number(&context)
.unwrap() as _
}
pub fn grow(
&self,
store: &mut impl AsStoreMut,
delta: u32,
_init: Value,
) -> Result<u32, RuntimeError> {
let store_mut = store.as_store_mut();
let engine = store_mut.engine();
let context = engine.0.context();
let func = self
.handle
.table
.get_property(&context, "grow".to_string())
.to_object(&context)
.unwrap();
match func.call(
&context,
Some(&self.handle.table),
&[JSValue::number(&context, delta as _)],
) {
Ok(val) => Ok(val.to_number(&context).unwrap() as _),
Err(e) => Err(<JSValue as Into<RuntimeError>>::into(e)),
}
}
pub fn copy(
_store: &mut impl AsStoreMut,
_dst_table: &Self,
_dst_index: u32,
_src_table: &Self,
_src_index: u32,
_len: u32,
) -> Result<(), RuntimeError> {
unimplemented!("Table.copy is not natively supported in Javascript");
}
pub(crate) fn from_vm_extern(_store: &mut impl AsStoreMut, vm_extern: VMExternTable) -> Self {
Self { handle: vm_extern }
}
pub fn is_from_store(&self, _store: &impl AsStoreRef) -> bool {
true
}
}