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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
//! Defines WasmEdge Instance.
use crate::{
Func, FuncType, Global, GlobalType, Memory, MemoryType, Table, TableType, WasmEdgeResult,
};
use wasmedge_sys as sys;
/// Represents an instantiated module.
///
/// An [Instance] represents an instantiated module. In the instantiation process, A [module instance](crate::Instance) is created based on a [compiled module](crate::Module). From a [module instance] the exported [host function](crate::Func), [table](crate::Table), [memory](crate::Memory), and [global](crate::Global) instances can be fetched.
#[derive(Debug, Clone)]
pub struct Instance {
pub(crate) inner: sys::Instance,
}
impl Instance {
/// Returns the name of this exported [module instance](crate::Instance).
///
/// If this [module instance](crate::Instance) is an active [instance](crate::Instance), return None.
pub fn name(&self) -> Option<String> {
self.inner.name()
}
/// Returns the count of the exported [function instances](crate::Func) in this [module instance](crate::Instance).
pub fn func_count(&self) -> usize {
self.inner.func_len() as usize
}
/// Returns the names of the exported [function instances](crate::Func) in this [module instance](crate::Instance).
pub fn func_names(&self) -> Option<Vec<String>> {
self.inner.func_names()
}
/// Returns the exported [function instance](crate::Func) in this [module instance](crate::Instance) by the given function name.
///
/// # Argument
///
/// * `name` - the name of the target exported [function instance](crate::Func).
pub fn func(&self, name: impl AsRef<str>) -> WasmEdgeResult<Func> {
let inner_func = self.inner.get_func(name.as_ref())?;
let ty: FuncType = inner_func.ty()?.into();
Ok(Func {
inner: inner_func,
name: Some(name.as_ref().into()),
mod_name: self.inner.name(),
ty,
})
}
/// Returns the count of the exported [global instances](crate::Global) in this [module instance](crate::Instance).
pub fn global_count(&self) -> usize {
self.inner.global_len() as usize
}
/// Returns the names of the exported [global instances](crate::Global) in this [module instance](crate::Instance).
pub fn global_names(&self) -> Option<Vec<String>> {
self.inner.global_names()
}
/// Returns the exported [global instance](crate::Global) in this [module instance](crate::Instance) by the given global name.
///
/// # Argument
///
/// * `name` - the name of the target exported [global instance](crate::Global).
pub fn global(&self, name: impl AsRef<str>) -> WasmEdgeResult<Global> {
let inner_global = self.inner.get_global(name.as_ref())?;
let ty: GlobalType = inner_global.ty()?.into();
Ok(Global {
inner: inner_global,
name: Some(name.as_ref().into()),
mod_name: self.inner.name(),
ty,
})
}
/// Returns the count of the exported [memory instances](crate::Memory) in this [module instance](crate::Instance).
pub fn memory_count(&self) -> usize {
self.inner.mem_len() as usize
}
/// Returns the names of the exported [memory instances](crate::Memory) in this [module instance](crate::Instance).
pub fn memory_names(&self) -> Option<Vec<String>> {
self.inner.mem_names()
}
/// Returns the exported [memory instance](crate::Memory) in this [module instance](crate::Instance) by the given memory name.
///
/// # Argument
///
/// * `name` - the name of the target exported [memory instance](crate::Memory).
pub fn memory(&self, name: impl AsRef<str>) -> WasmEdgeResult<Memory> {
let inner_memory = self.inner.get_memory(name.as_ref())?;
let ty: MemoryType = inner_memory.ty()?.into();
Ok(Memory {
inner: inner_memory,
name: Some(name.as_ref().into()),
mod_name: self.inner.name(),
ty,
})
}
/// Returns the count of the exported [table instances](crate::Table) in this [module instance](crate::Instance).
pub fn table_count(&self) -> usize {
self.inner.table_len() as usize
}
/// Returns the names of the exported [table instances](crate::Table) in this [module instance](crate::Instance).
pub fn table_names(&self) -> Option<Vec<String>> {
self.inner.table_names()
}
/// Returns the exported [table instance](crate::Table) in this [module instance](crate::Instance) by the given table name.
///
/// # Argument
///
/// * `name` - the name of the target exported [table instance](crate::Table).
pub fn table(&self, name: impl AsRef<str>) -> WasmEdgeResult<Table> {
let inner_table = self.inner.get_table(name.as_ref())?;
let ty: TableType = inner_table.ty()?.into();
Ok(Table {
inner: inner_table,
name: Some(name.as_ref().into()),
mod_name: self.inner.name(),
ty,
})
}
/// Returns the host data held by the module instance.
pub fn host_data<T: Send + Sync + Clone>(&mut self) -> Option<&mut T> {
self.inner.host_data()
}
}
/// The object used as an module instance is required to implement this trait.
pub trait AsInstance {
/// Returns the name of this exported module instance.
fn name(&self) -> &str;
/// Returns the count of the exported [function instances](crate::Func) in this module instance.
fn func_count(&self) -> usize;
/// Returns the names of the exported [function instances](crate::Func) in this module instance.
fn func_names(&self) -> Option<Vec<String>>;
/// Returns the exported [function instance](crate::Func) in this module instance.
///
/// # Argument
///
/// * `name` - the name of the target exported [function instance](crate::Func).
fn func(&self, name: impl AsRef<str>) -> WasmEdgeResult<Func>;
/// Returns the count of the exported global instances.
fn global_count(&self) -> usize;
/// Returns the names of the exported [global instances](crate::Global) in this module instance.
fn global_names(&self) -> Option<Vec<String>>;
/// Returns the exported [global instance](crate::Global) in this module instance.
///
/// # Argument
///
/// * `name` - the name of the target exported [global instance](crate::Global).
fn global(&self, name: impl AsRef<str>) -> WasmEdgeResult<Global>;
/// Returns the count of the exported [memory instances](crate::Memory) in this module instance.
fn memory_count(&self) -> usize;
/// Returns the names of the exported [memory instances](crate::Memory) in this module instance.
fn memory_names(&self) -> Option<Vec<String>>;
/// Returns the exported [memory instance](crate::Memory) in this module instance.
///
/// # Argument
///
/// * `name` - the name of the target exported [memory instance](crate::Memory).
fn memory(&self, name: impl AsRef<str>) -> WasmEdgeResult<Memory>;
/// Returns the count of the exported [table instances](crate::Table) in this module instance.
fn table_count(&self) -> usize;
/// Returns the names of the exported [table instances](crate::Table) in this module instance.
fn table_names(&self) -> Option<Vec<String>>;
/// Returns the exported [table instance](crate::Table) in this module instance by the given table name.
///
/// # Argument
///
/// * `name` - the name of the target exported [table instance](crate::Table).
fn table(&self, name: impl AsRef<str>) -> WasmEdgeResult<Table>;
}
#[cfg(test)]
#[cfg(target_os = "linux")]
mod tests {
use crate::{
config::{CommonConfigOptions, ConfigBuilder},
error::HostFuncError,
types::Val,
CallingFrame, Executor, FuncTypeBuilder, Global, GlobalType, ImportObjectBuilder, Memory,
MemoryType, Module, Mutability, NeverType, RefType, Statistics, Store, Table, TableType,
ValType, WasmValue,
};
#[test]
#[allow(clippy::assertions_on_result_states)]
fn test_instance_basic() {
// create an executor
let result = ConfigBuilder::new(CommonConfigOptions::default()).build();
assert!(result.is_ok());
let config = result.unwrap();
let result = Statistics::new();
assert!(result.is_ok());
let mut stat = result.unwrap();
let result = Executor::new(Some(&config), Some(&mut stat));
assert!(result.is_ok());
let mut executor = result.unwrap();
// create a store
let result = Store::new();
assert!(result.is_ok());
let mut store = result.unwrap();
// check the exported instances
assert_eq!(store.named_instance_count(), 0);
assert_eq!(store.instance_names().len(), 0);
// create a Const global instance
let result = Global::new(
GlobalType::new(ValType::F32, Mutability::Const),
Val::F32(3.5),
);
assert!(result.is_ok());
let global_const = result.unwrap();
// create a memory instance
let result = MemoryType::new(10, None, false);
assert!(result.is_ok());
let memory_type = result.unwrap();
let result = Memory::new(memory_type);
assert!(result.is_ok());
let memory = result.unwrap();
// create a table instance
let result = Table::new(TableType::new(RefType::FuncRef, 5, None));
assert!(result.is_ok());
let table = result.unwrap();
// create an ImportModule instance
let result = ImportObjectBuilder::new()
.with_func::<(i32, i32), i32, NeverType>("add", real_add, None)
.expect("failed to add host function")
.with_global("global", global_const)
.with_memory("mem", memory)
.with_table("table", table)
.build::<NeverType>("extern-module", None);
assert!(result.is_ok());
let import = result.unwrap();
let result = store.register_import_module(&mut executor, &import);
assert!(result.is_ok());
// add a wasm module from a file
let file = std::env::current_dir()
.unwrap()
.join("examples/wasmedge-sys/data/fibonacci.wat");
let result = Module::from_file(Some(&config), file);
assert!(result.is_ok());
let module = result.unwrap();
// register a module into store as a named module
let result = store.register_named_module(&mut executor, "fib-module", &module);
assert!(result.is_ok());
// check the exported instances
assert_eq!(store.named_instance_count(), 2);
assert_eq!(store.instance_names().len(), 2);
let mod_names = store.instance_names();
assert_eq!(mod_names[0], "extern-module");
assert_eq!(mod_names[1], "fib-module");
// check the module instance named "extern-module"
{
assert_eq!(mod_names[0], "extern-module");
let result = store.named_instance(mod_names[0].as_str());
assert!(result.is_ok());
let instance = result.unwrap();
assert!(instance.name().is_some());
assert_eq!(instance.name().unwrap(), mod_names[0]);
assert_eq!(instance.func_count(), 1);
assert_eq!(instance.table_count(), 1);
assert_eq!(instance.global_count(), 1);
assert_eq!(instance.memory_count(), 1);
// check the exported host function
let result = instance.func("add");
assert!(result.is_ok());
let host_func = result.unwrap();
assert_eq!(
host_func.ty(),
&FuncTypeBuilder::new()
.with_args(vec![ValType::I32; 2])
.with_returns(vec![ValType::I32])
.build()
);
// check the exported table
let result = instance.table("table");
assert!(result.is_ok());
let table = result.unwrap();
let table_name = table.name();
assert!(table_name.is_some());
assert_eq!(table.name().unwrap(), "table");
assert_eq!(table.mod_name().unwrap(), "extern-module");
assert_eq!(table.size(), 5);
// check the exported memory
let result = instance.memory("mem");
assert!(result.is_ok());
let memory = result.unwrap();
assert_eq!(memory.name().unwrap(), "mem");
assert_eq!(memory.mod_name().unwrap(), "extern-module");
assert_eq!(memory.page(), 10);
assert_eq!(memory.size(), 65536 * 10);
// check the exported global
let result = instance.global("global");
assert!(result.is_ok());
let global = result.unwrap();
let val = global.get_value();
if let Val::F32(val) = val {
assert_eq!(val, 3.5);
}
}
// check the module instance named "fib-module"
{
assert_eq!(mod_names[1], "fib-module");
let result = store.named_instance(mod_names[1].as_str());
assert!(result.is_ok());
let instance = result.unwrap();
assert!(instance.name().is_some());
assert_eq!(instance.name().unwrap(), mod_names[1]);
assert_eq!(instance.func_count(), 1);
assert_eq!(instance.table_count(), 0);
assert_eq!(instance.global_count(), 0);
assert_eq!(instance.memory_count(), 0);
// check the exported host function
let result = instance.func("fib");
assert!(result.is_ok());
let host_func = result.unwrap();
assert_eq!(
host_func.ty(),
&FuncTypeBuilder::new()
.with_args(vec![ValType::I32])
.with_returns(vec![ValType::I32])
.build()
);
}
}
fn real_add(
_frame: CallingFrame,
inputs: Vec<WasmValue>,
_data: *mut std::os::raw::c_void,
) -> std::result::Result<Vec<WasmValue>, HostFuncError> {
if inputs.len() != 2 {
return Err(HostFuncError::User(1));
}
let a = if inputs[0].ty() == ValType::I32 {
inputs[0].to_i32()
} else {
return Err(HostFuncError::User(2));
};
let b = if inputs[1].ty() == ValType::I32 {
inputs[1].to_i32()
} else {
return Err(HostFuncError::User(3));
};
let c = a + b;
Ok(vec![WasmValue::from_i32(c)])
}
}