use wasm_bindgen::{JsValue, prelude::*};
use wasmer_types::{GlobalType, Mutability, RawValue, Type};
use crate::{
AsStoreMut, AsStoreRef, BackendGlobal, RuntimeError, Value,
js::vm::VMGlobal,
vm::{VMExtern, VMExternGlobal},
};
use js_sys::WebAssembly;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Global {
pub(crate) handle: VMGlobal,
}
impl Global {
pub(crate) fn to_vm_extern(&self) -> VMExtern {
VMExtern::Js(crate::js::vm::VMExtern::Global(self.handle.clone()))
}
pub(crate) fn from_value(
store: &mut impl AsStoreMut,
val: Value,
mutability: Mutability,
) -> Result<Self, RuntimeError> {
if !val.is_from_store(store) {
return Err(RuntimeError::new(
"cross-`WasmerEnv` values are not supported",
));
}
let global_ty = GlobalType {
mutability,
ty: val.ty(),
};
let descriptor = js_sys::Object::new();
let (type_str, value) = match val {
Value::I32(i) => ("i32", JsValue::from_f64(i as _)),
Value::I64(i) => ("i64", JsValue::from_f64(i as _)),
Value::F32(f) => ("f32", JsValue::from_f64(f as _)),
Value::F64(f) => ("f64", JsValue::from_f64(f)),
_ => unimplemented!("The type is not yet supported in the JS Global API"),
};
js_sys::Reflect::set(&descriptor, &"value".into(), &type_str.into())?;
js_sys::Reflect::set(
&descriptor,
&"mutable".into(),
&mutability.is_mutable().into(),
)?;
let js_global = WebAssembly::Global::new(&descriptor, &value).unwrap();
let vm_global = VMGlobal::new(js_global, global_ty);
Ok(Self::from_vm_extern(store, VMExternGlobal::Js(vm_global)))
}
pub fn ty(&self, _store: &impl AsStoreRef) -> GlobalType {
self.handle.ty
}
pub fn get(&self, store: &mut impl AsStoreMut) -> Value {
unsafe {
let value = self.handle.global.value();
let ty = self.handle.ty;
let raw = match ty.ty {
Type::I32 => RawValue {
i32: value.as_f64().unwrap_or_default() as _,
},
Type::I64 => RawValue {
i64: value.as_f64().unwrap_or_default() as _,
},
Type::F32 => RawValue {
f32: value.as_f64().unwrap_or_default() as _,
},
Type::F64 => RawValue {
f64: value.as_f64().unwrap_or_default(),
},
Type::V128 => RawValue {
u128: value.as_f64().unwrap_or_default() as _,
},
Type::FuncRef => {
unimplemented!();
}
Type::ExternRef => {
unimplemented!();
}
Type::ExceptionRef => {
unimplemented!();
}
};
Value::from_raw(store, ty.ty, raw)
}
}
pub fn set(&self, store: &mut impl AsStoreMut, val: Value) -> Result<(), RuntimeError> {
if !val.is_from_store(store) {
return Err(RuntimeError::new(
"cross-`WasmerEnv` values are not supported",
));
}
let global_ty = self.ty(&store);
if global_ty.mutability == Mutability::Const {
return Err(RuntimeError::new("The global is immutable".to_owned()));
}
if val.ty() != global_ty.ty {
return Err(RuntimeError::new("The types don't match".to_owned()));
}
let new_value = match val {
Value::I32(i) => JsValue::from_f64(i as _),
Value::I64(i) => JsValue::from_f64(i as _),
Value::F32(f) => JsValue::from_f64(f as _),
Value::F64(f) => JsValue::from_f64(f),
_ => {
return Err(RuntimeError::new(
"The type is not yet supported in the JS Global API".to_owned(),
));
}
};
self.handle.global.set_value(&new_value);
Ok(())
}
pub(crate) fn from_vm_extern(store: &mut impl AsStoreMut, vm_global: VMExternGlobal) -> Self {
use crate::js::store::StoreObject;
VMGlobal::list_mut(store.objects_mut().as_js_mut()).push(vm_global.as_js().clone());
Self {
handle: vm_global.into_js(),
}
}
pub fn is_from_store(&self, _store: &impl AsStoreRef) -> bool {
true
}
}
impl crate::Global {
pub fn into_js(self) -> crate::backend::js::global::Global {
match self.0 {
BackendGlobal::Js(s) => s,
_ => panic!("Not a `js` global!"),
}
}
pub fn as_js(&self) -> &crate::backend::js::global::Global {
match self.0 {
BackendGlobal::Js(ref s) => s,
_ => panic!("Not a `js` global!"),
}
}
pub fn as_js_mut(&mut self) -> &mut crate::backend::js::global::Global {
match self.0 {
BackendGlobal::Js(ref mut s) => s,
_ => panic!("Not a `js` global!"),
}
}
}