1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-06 09:41:05 +00:00

61 lines
1.4 KiB
Rust
Raw Normal View History

2019-01-12 16:24:17 -05:00
use crate::export::Export;
2019-01-10 22:59:57 -05:00
use hashbrown::{hash_map::Entry, HashMap};
pub trait LikeNamespace {
2019-01-13 16:44:14 -05:00
fn get_export(&mut self, name: &str) -> Option<Export>;
2019-01-12 16:24:17 -05:00
}
pub struct ImportObject {
map: HashMap<String, Box<dyn LikeNamespace>>,
2019-01-10 22:59:57 -05:00
}
impl ImportObject {
2019-01-10 22:59:57 -05:00
pub fn new() -> Self {
Self {
map: HashMap::new(),
}
}
pub fn register<S, N>(&mut self, name: S, namespace: N) -> Option<Box<dyn LikeNamespace>>
2019-01-12 22:02:19 -05:00
where
S: Into<String>,
N: LikeNamespace + 'static,
2019-01-12 22:02:19 -05:00
{
2019-01-12 16:24:17 -05:00
match self.map.entry(name.into()) {
Entry::Vacant(empty) => {
empty.insert(Box::new(namespace));
None
}
Entry::Occupied(mut occupied) => Some(occupied.insert(Box::new(namespace))),
}
2019-01-10 22:59:57 -05:00
}
2019-01-12 16:24:17 -05:00
pub fn get_namespace(&mut self, namespace: &str) -> Option<&mut (dyn LikeNamespace + 'static)> {
2019-01-13 16:44:14 -05:00
self.map
.get_mut(namespace)
.map(|namespace| &mut **namespace)
2019-01-10 22:59:57 -05:00
}
}
pub struct Namespace {
2019-01-13 16:44:14 -05:00
map: HashMap<String, Export>,
}
impl Namespace {
pub fn new() -> Self {
Self {
map: HashMap::new(),
}
}
pub fn insert(&mut self, name: impl Into<String>, export: Export) -> Option<Export> {
self.map.insert(name.into(), export)
}
}
impl LikeNamespace for Namespace {
2019-01-13 16:44:14 -05:00
fn get_export(&mut self, name: &str) -> Option<Export> {
self.map.get(name).cloned()
}
2019-01-13 16:44:14 -05:00
}