2019-01-11 03:59:57 +00:00
|
|
|
use crate::{
|
2019-01-29 18:16:39 +00:00
|
|
|
global::Global, instance::InstanceInner, memory::Memory, module::ExportIndex,
|
|
|
|
module::ModuleInner, table::Table, types::FuncSig, vm,
|
2019-01-11 03:59:57 +00:00
|
|
|
};
|
2019-01-12 22:52:14 +00:00
|
|
|
use hashbrown::hash_map;
|
2019-01-29 18:16:39 +00:00
|
|
|
use std::sync::Arc;
|
2019-01-11 03:59:57 +00:00
|
|
|
|
2019-01-12 21:24:17 +00:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2019-01-11 03:59:57 +00:00
|
|
|
pub enum Context {
|
|
|
|
External(*mut vm::Ctx),
|
|
|
|
Internal,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum Export {
|
|
|
|
Function {
|
2019-01-12 22:52:14 +00:00
|
|
|
func: FuncPointer,
|
2019-01-11 03:59:57 +00:00
|
|
|
ctx: Context,
|
2019-01-29 18:16:39 +00:00
|
|
|
signature: Arc<FuncSig>,
|
2019-01-11 03:59:57 +00:00
|
|
|
},
|
2019-01-25 23:28:54 +00:00
|
|
|
Memory(Memory),
|
2019-01-29 18:16:39 +00:00
|
|
|
Table(Table),
|
2019-01-28 19:55:44 +00:00
|
|
|
Global(Global),
|
2019-01-11 03:59:57 +00:00
|
|
|
}
|
2019-01-12 22:52:14 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct FuncPointer(*const vm::Func);
|
|
|
|
|
|
|
|
impl FuncPointer {
|
|
|
|
/// This needs to be unsafe because there is
|
|
|
|
/// no way to check whether the passed function
|
|
|
|
/// is valid and has the right signature.
|
|
|
|
pub unsafe fn new(f: *const vm::Func) -> Self {
|
|
|
|
FuncPointer(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn inner(&self) -> *const vm::Func {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ExportIter<'a> {
|
2019-04-10 19:17:16 +00:00
|
|
|
inner: &'a InstanceInner,
|
2019-01-12 22:52:14 +00:00
|
|
|
iter: hash_map::Iter<'a, String, ExportIndex>,
|
2019-01-13 21:44:14 +00:00
|
|
|
module: &'a ModuleInner,
|
2019-01-12 22:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ExportIter<'a> {
|
2019-04-10 19:17:16 +00:00
|
|
|
pub(crate) fn new(module: &'a ModuleInner, inner: &'a InstanceInner) -> Self {
|
2019-01-12 22:52:14 +00:00
|
|
|
Self {
|
2019-01-13 21:44:14 +00:00
|
|
|
inner,
|
2019-02-07 00:26:45 +00:00
|
|
|
iter: module.info.exports.iter(),
|
2019-01-19 07:03:07 +00:00
|
|
|
module,
|
2019-01-12 22:52:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Iterator for ExportIter<'a> {
|
|
|
|
type Item = (String, Export);
|
|
|
|
fn next(&mut self) -> Option<(String, Export)> {
|
|
|
|
let (name, export_index) = self.iter.next()?;
|
|
|
|
Some((
|
|
|
|
name.clone(),
|
2019-01-13 21:44:14 +00:00
|
|
|
self.inner.get_export_from_index(&self.module, export_index),
|
2019-01-12 22:52:14 +00:00
|
|
|
))
|
|
|
|
}
|
2019-01-12 22:53:17 +00:00
|
|
|
}
|