1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
use super::IValue;
use super::IType;
use crate::HostImportError;
use marine_wasm_backend_traits::WasiParameters;
use marine_wasm_backend_traits::WasmBackend;
use std::path::PathBuf;
use std::collections::HashMap;
use std::collections::HashSet;
const DEFAULT_HEAP_PAGES_COUNT: u32 = 1600;
pub type ErrorHandler =
Option<Box<dyn Fn(&HostImportError) -> Option<IValue> + Sync + Send + 'static>>;
pub type HostExportedFunc<WB> = Box<
dyn for<'c> Fn(&mut <WB as WasmBackend>::Caller<'c>, Vec<IValue>) -> Option<IValue>
+ Sync
+ Send
+ 'static,
>;
pub type RawImportCreator<WB> =
Box<dyn FnOnce(<WB as WasmBackend>::ContextMut<'_>) -> <WB as WasmBackend>::Function>;
pub struct HostImportDescriptor<WB: WasmBackend> {
pub host_exported_func: HostExportedFunc<WB>,
pub argument_types: Vec<IType>,
pub output_type: Option<IType>,
pub error_handler: ErrorHandler,
}
pub struct MModuleConfig<WB: WasmBackend> {
pub max_heap_pages_count: u32,
pub raw_imports: HashMap<String, RawImportCreator<WB>>,
pub host_imports: HashMap<String, HostImportDescriptor<WB>>,
pub wasi_parameters: WasiParameters,
}
impl<WB: WasmBackend> Default for MModuleConfig<WB> {
fn default() -> Self {
Self {
max_heap_pages_count: DEFAULT_HEAP_PAGES_COUNT,
raw_imports: HashMap::new(),
host_imports: HashMap::new(),
wasi_parameters: WasiParameters::default(),
}
}
}
#[allow(dead_code)]
impl<WB: WasmBackend> MModuleConfig<WB> {
pub fn with_mem_pages_count(mut self, mem_pages_count: u32) -> Self {
self.max_heap_pages_count = mem_pages_count;
self
}
pub fn with_wasi_envs(mut self, envs: HashMap<Vec<u8>, Vec<u8>>) -> Self {
self.wasi_parameters.envs = envs;
self
}
pub fn with_wasi_preopened_files(mut self, preopened_files: HashSet<PathBuf>) -> Self {
self.wasi_parameters.preopened_files = preopened_files;
self
}
pub fn with_wasi_mapped_dirs(mut self, mapped_dirs: HashMap<String, PathBuf>) -> Self {
self.wasi_parameters.mapped_dirs = mapped_dirs;
self
}
}