mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 12:48:20 +00:00
95 lines
2.5 KiB
Rust
95 lines
2.5 KiB
Rust
pub(crate) mod function;
|
|
mod global;
|
|
mod memory;
|
|
mod table;
|
|
|
|
pub use self::function::{FromToNativeWasmType, Function, HostFunction, WasmTypeList};
|
|
pub use self::global::Global;
|
|
pub use self::memory::Memory;
|
|
pub use self::table::Table;
|
|
|
|
use crate::exports::{ExportError, Exportable};
|
|
use crate::store::{Store, StoreObject};
|
|
use crate::ExternType;
|
|
use wasmer_runtime::Export;
|
|
|
|
#[derive(Clone)]
|
|
pub enum Extern {
|
|
Function(Function),
|
|
Global(Global),
|
|
Table(Table),
|
|
Memory(Memory),
|
|
}
|
|
|
|
impl Extern {
|
|
pub fn ty(&self) -> ExternType {
|
|
match self {
|
|
Extern::Function(ft) => ExternType::Function(ft.ty().clone()),
|
|
Extern::Memory(ft) => ExternType::Memory(*ft.ty()),
|
|
Extern::Table(tt) => ExternType::Table(*tt.ty()),
|
|
Extern::Global(gt) => ExternType::Global(*gt.ty()),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn from_export(store: &Store, export: Export) -> Extern {
|
|
match export {
|
|
Export::Function(f) => Extern::Function(Function::from_export(store, f)),
|
|
Export::Memory(m) => Extern::Memory(Memory::from_export(store, m)),
|
|
Export::Global(g) => Extern::Global(Global::from_export(store, g)),
|
|
Export::Table(t) => Extern::Table(Table::from_export(store, t)),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a> Exportable<'a> for Extern {
|
|
fn to_export(&self) -> Export {
|
|
match self {
|
|
Extern::Function(f) => f.to_export(),
|
|
Extern::Global(g) => g.to_export(),
|
|
Extern::Memory(m) => m.to_export(),
|
|
Extern::Table(t) => t.to_export(),
|
|
}
|
|
}
|
|
|
|
fn get_self_from_extern(_extern: &'a Extern) -> Result<&'a Self, ExportError> {
|
|
// Since this is already an extern, we can just return it.
|
|
Ok(_extern)
|
|
}
|
|
}
|
|
|
|
impl StoreObject for Extern {
|
|
fn comes_from_same_store(&self, store: &Store) -> bool {
|
|
let my_store = match self {
|
|
Extern::Function(f) => f.store(),
|
|
Extern::Global(g) => g.store(),
|
|
Extern::Memory(m) => m.store(),
|
|
Extern::Table(t) => t.store(),
|
|
};
|
|
Store::same(my_store, store)
|
|
}
|
|
}
|
|
|
|
impl From<Function> for Extern {
|
|
fn from(r: Function) -> Self {
|
|
Extern::Function(r)
|
|
}
|
|
}
|
|
|
|
impl From<Global> for Extern {
|
|
fn from(r: Global) -> Self {
|
|
Extern::Global(r)
|
|
}
|
|
}
|
|
|
|
impl From<Memory> for Extern {
|
|
fn from(r: Memory) -> Self {
|
|
Extern::Memory(r)
|
|
}
|
|
}
|
|
|
|
impl From<Table> for Extern {
|
|
fn from(r: Table) -> Self {
|
|
Extern::Table(r)
|
|
}
|
|
}
|