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
//! Defines wasi module instance types, including WasiInstance, WasiNnInstance, wasi-crypto instances.
use crate::{
AsInstance, Func, FuncType, Global, GlobalType, Memory, MemoryType, Table, TableType,
WasmEdgeResult,
};
use wasmedge_sys::{self as sys, AsImport, AsInstance as sys_as_instance_trait};
/// Represents a wasi module instance.
#[derive(Debug, Clone)]
pub struct WasiInstance {
pub(crate) inner: sys::WasiModule,
}
impl WasiInstance {
/// Initializes the WASI host module with the given parameters.
///
/// # Arguments
///
/// * `args` - The commandline arguments. The first argument is the program name.
///
/// * `envs` - The environment variables in the format `ENV_VAR_NAME=VALUE`.
///
/// * `preopens` - The directories to pre-open. The required format is `DIR1:DIR2`.
pub fn initialize(
&mut self,
args: Option<Vec<&str>>,
envs: Option<Vec<&str>>,
preopens: Option<Vec<&str>>,
) {
self.inner.init_wasi(args, envs, preopens);
}
/// Returns the WASI exit code.
///
/// The WASI exit code can be accessed after running the "_start" function of a `wasm32-wasi` program.
pub fn exit_code(&self) -> u32 {
self.inner.exit_code()
}
/// Returns the native handler from the mapped FD/Handler.
///
/// # Argument
///
/// * `fd` - The WASI mapped Fd.
///
/// # Error
///
/// If fail to get the native handler, then an error is returned.
pub fn native_handler(&self, fd: i32) -> WasmEdgeResult<u64> {
self.inner.get_native_handler(fd)
}
}
impl AsInstance for WasiInstance {
/// Returns the name of this exported [module instance](crate::Instance).
///
/// If this [module instance](crate::Instance) is an active [instance](crate::Instance), return None.
fn name(&self) -> &str {
self.inner.name()
}
/// Returns the count of the exported [function instances](crate::Func) in this [module instance](crate::Instance).
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).
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).
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: None,
ty,
})
}
/// Returns the count of the exported [global instances](crate::Global) in this [module instance](crate::Instance).
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).
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).
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: None,
ty,
})
}
/// Returns the count of the exported [memory instances](crate::Memory) in this [module instance](crate::Instance).
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).
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).
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: None,
ty,
})
}
/// Returns the count of the exported [table instances](crate::Table) in this [module instance](crate::Instance).
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).
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).
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: None,
ty,
})
}
}