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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
//! Defines Func, SignatureBuilder, and Signature structs.
use crate::{
error::HostFuncError, io::WasmValTypeList, CallingFrame, Executor, FuncType, ValType,
WasmEdgeResult, WasmValue,
};
use wasmedge_sys as sys;
/// Defines a host function instance.
///
/// A WasmEdge [Func] is a wasm function instance, which is a "wrapper" of the original function (defined in either the host or the WebAssembly module) over the runtime [module instance](crate::Instance) of its originating [module](crate::Module).
///
/// # Example
///
/// The following example shows how to create a host function, and invoke it with a given executor.
///
/// ```rust
/// // If the version of rust used is less than v1.63,
/// // #![feature(explicit_generic_args_with_impl_trait)]
///
/// use wasmedge_sdk::{Func, Executor, params, WasmVal, error::HostFuncError, WasmValue, ValType, Caller, host_function};
///
/// // A native function to be wrapped as a host function
/// #[host_function]
/// fn real_add(_: Caller, input: Vec<WasmValue>) -> Result<Vec<WasmValue>, HostFuncError> {
/// if input.len() != 2 {
/// return Err(HostFuncError::User(1));
/// }
///
/// let a = if input[0].ty() == ValType::I32 {
/// input[0].to_i32()
/// } else {
/// return Err(HostFuncError::User(2));
/// };
///
/// let b = if input[1].ty() == ValType::I32 {
/// input[1].to_i32()
/// } else {
/// return Err(HostFuncError::User(3));
/// };
///
/// let c = a + b;
/// Ok(vec![WasmValue::from_i32(c)])
/// }
///
/// // create a host function
/// let result = Func::wrap::<(i32, i32), i32>(real_add);
/// assert!(result.is_ok());
/// let func = result.unwrap();
///
/// // create an executor
/// let mut executor = Executor::new(None, None).unwrap();
///
/// // call the host function
/// let result = func.run(&mut executor, params!(2, 3));
/// assert!(result.is_ok());
/// let returns = result.unwrap();
/// assert_eq!(returns[0].to_i32(), 5);
/// ```
/// [[Click for more examples]](https://github.com/WasmEdge/WasmEdge/tree/master/bindings/rust/wasmedge-sdk/examples)
///
#[derive(Debug, Clone)]
pub struct Func {
pub(crate) inner: sys::Function,
pub(crate) name: Option<String>,
pub(crate) mod_name: Option<String>,
pub(crate) ty: FuncType,
}
impl Func {
/// Creates a host function of the given func type.
///
/// N.B. that this function can be used in thread-safe scenarios.
///
/// # Arguments
///
/// * `ty` - The function type.
///
/// * `real_func` - The native function that will be wrapped as a host function.
///
/// # Error
///
/// * If fail to create a Func instance, then [WasmEdgeError::Func(FuncError::Create)](crate::error::FuncError) is returned.
pub fn new(
ty: FuncType,
real_func: impl Fn(CallingFrame, Vec<WasmValue>) -> Result<Vec<WasmValue>, HostFuncError>
+ Send
+ Sync
+ 'static,
) -> WasmEdgeResult<Self> {
let boxed_func = Box::new(real_func);
let inner = sys::Function::create(&ty.clone().into(), boxed_func, 0)?;
Ok(Self {
inner,
name: None,
mod_name: None,
ty,
})
}
/// Creates a host function by wrapping a native function.
///
/// N.B. that this function can be used in thread-safe scenarios.
///
/// # Arguments
///
/// * `real_func` - The native function to be wrapped.
///
/// # Error
///
/// * If fail to create a Func instance, then [WasmEdgeError::Func(FuncError::Create)](crate::error::FuncError) is returned.
pub fn wrap<Args, Rets>(
real_func: impl Fn(CallingFrame, Vec<WasmValue>) -> Result<Vec<WasmValue>, HostFuncError>
+ Send
+ Sync
+ 'static,
) -> WasmEdgeResult<Self>
where
Args: WasmValTypeList,
Rets: WasmValTypeList,
{
let boxed_func = Box::new(real_func);
let args = Args::wasm_types();
let returns = Rets::wasm_types();
let ty = FuncType::new(Some(args.to_vec()), Some(returns.to_vec()));
let inner = sys::Function::create(&ty.clone().into(), boxed_func, 0)?;
Ok(Self {
inner,
name: None,
mod_name: None,
ty,
})
}
/// Creates an asynchronous host function by wrapping a native function.
///
/// N.B. that this function can be used in thread-safe scenarios.
///
/// # Arguments
///
/// * `real_func` - The native function to be wrapped.
///
/// # Error
///
/// * If fail to create a Func instance, then [WasmEdgeError::Func(FuncError::Create)](crate::error::FuncError) is returned.
#[cfg(feature = "async")]
pub fn wrap_async<Args, Rets>(
real_func: impl Fn(
CallingFrame,
Vec<WasmValue>,
) -> Box<
dyn std::future::Future<
Output = Result<Vec<WasmValue>, crate::error::HostFuncError>,
> + Send,
> + Send
+ Sync
+ 'static,
) -> WasmEdgeResult<Self>
where
Args: WasmValTypeList,
Rets: WasmValTypeList,
{
let boxed_func = Box::new(real_func);
let args = Args::wasm_types();
let returns = Rets::wasm_types();
let ty = FuncType::new(Some(args.to_vec()), Some(returns.to_vec()));
let inner = sys::Function::create_async(&ty.clone().into(), boxed_func, 0)?;
Ok(Self {
inner,
name: None,
mod_name: None,
ty,
})
}
/// Returns the exported name of this function.
///
/// Notice that this field is meaningful only if this host function is used as an exported instance.
pub fn name(&self) -> Option<&str> {
match &self.name {
Some(name) => Some(name.as_ref()),
None => None,
}
}
/// Returns the name of the [module instance](crate::Instance) from which this function exports.
///
/// Notice that this field is meaningful only if this host function is used as an exported instance.
pub fn mod_name(&self) -> Option<&str> {
match &self.mod_name {
Some(mod_name) => Some(mod_name.as_ref()),
None => None,
}
}
/// Returns a reference to the type of the host function.
pub fn ty(&self) -> &FuncType {
&self.ty
}
/// Returns a reference to this function instance.
pub fn as_ref(&self) -> FuncRef {
let inner = self.inner.as_ref();
FuncRef {
inner,
ty: self.ty.clone(),
}
}
/// Runs this host function and returns the result.
///
/// # Arguments
///
/// * `executor` - The [Executor](crate::Executor) instance.
///
/// * `args` - The arguments passed to the host function.
///
/// # Error
///
/// If fail to run the host function, then an error is returned.
pub fn run(
&self,
executor: &Executor,
args: impl IntoIterator<Item = WasmValue>,
) -> WasmEdgeResult<Vec<WasmValue>> {
executor.run_func(self, args)
}
/// Asynchronously runs this host function and returns the result.
///
/// # Arguments
///
/// * `executor` - The [Executor](crate::Executor) instance.
///
/// * `args` - The arguments passed to the host function.
///
/// # Error
///
/// If fail to run the host function, then an error is returned.
#[cfg(feature = "async")]
pub async fn run_async(
&self,
executor: &Executor,
args: impl IntoIterator<Item = WasmValue> + Send,
) -> WasmEdgeResult<Vec<WasmValue>> {
executor.run_func_async(self, args).await
}
}
/// Defines a type builder for creating a [FuncType](https://wasmedge.github.io/WasmEdge/wasmedge_types/struct.FuncType.html) instance.
#[derive(Debug, Default)]
pub struct FuncTypeBuilder {
args: Option<Vec<ValType>>,
returns: Option<Vec<ValType>>,
}
impl FuncTypeBuilder {
/// Creates a new [FuncTypeBuilder].
pub fn new() -> Self {
Self {
args: None,
returns: None,
}
}
/// Adds arguments to the function type.
///
/// # Argument
///
/// `args` specifies the arguments to be added to the function type.
pub fn with_args(self, args: impl IntoIterator<Item = ValType>) -> Self {
Self {
args: Some(args.into_iter().collect::<Vec<_>>()),
returns: self.returns,
}
}
/// Adds a single argument to the function type.
///
/// # Argument
///
/// `arg` specifies the argument to be added to the function type.
pub fn with_arg(self, arg: ValType) -> Self {
self.with_args(std::iter::once(arg))
}
/// Adds returns to the function type.
///
/// # Argument
///
/// `returns` specifies the returns to be added to the function type.
pub fn with_returns(self, returns: impl IntoIterator<Item = ValType>) -> Self {
Self {
args: self.args,
returns: Some(returns.into_iter().collect::<Vec<_>>()),
}
}
/// Adds a single return to the function type.
///
/// # Argument
///
/// `ret` specifies the return to be added to the function type.
pub fn with_return(self, ret: ValType) -> Self {
self.with_returns(std::iter::once(ret))
}
/// Returns a function type.
pub fn build(self) -> FuncType {
FuncType::new(self.args, self.returns)
}
}
/// Defines a reference to a [host function](crate::Func).
///
/// The [table_and_funcref](https://github.com/WasmEdge/WasmEdge/tree/master/bindings/rust/wasmedge-sdk/examples/table_and_funcref.rs) example presents how to obtain and use [FuncRef].
#[derive(Debug, Clone)]
pub struct FuncRef {
pub(crate) inner: sys::FuncRef,
pub(crate) ty: FuncType,
}
impl FuncRef {
/// Returns a reference to the ty of the host function this [FuncRef] points to.
pub fn ty(&self) -> &FuncType {
&self.ty
}
/// Runs this host function the reference refers to.
///
/// # Arguments
///
/// * `executor` - The [Executor](crate::Executor) instance.
///
/// * `args` - The arguments passed to the host function.
///
/// # Error
///
/// If fail to run the host function, then an error is returned.
pub fn run(
&self,
executor: &Executor,
args: impl IntoIterator<Item = WasmValue>,
) -> WasmEdgeResult<Vec<WasmValue>> {
executor.run_func_ref(self, args)
}
/// Asynchronously runs this host function the reference refers to.
///
/// # Arguments
///
/// * `executor` - The [Executor](crate::Executor) instance.
///
/// * `args` - The arguments passed to the host function.
///
/// # Error
///
/// If fail to run the host function, then an error is returned.
#[cfg(feature = "async")]
pub async fn run_async(
&self,
executor: &Executor,
args: impl IntoIterator<Item = WasmValue> + Send,
) -> WasmEdgeResult<Vec<WasmValue>> {
executor.run_func_ref_async(self, args).await
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{
config::{CommonConfigOptions, ConfigBuilder},
error::HostFuncError,
params, Executor, ImportObjectBuilder, Statistics, Store, WasmVal, WasmValue,
};
#[test]
fn test_func_signature() {
// test signature with args and returns
{
let sig = FuncTypeBuilder::new()
.with_args(vec![
ValType::I32,
ValType::I64,
ValType::F32,
ValType::F64,
ValType::V128,
ValType::FuncRef,
ValType::ExternRef,
])
.with_returns(vec![ValType::FuncRef, ValType::ExternRef, ValType::V128])
.build();
// check the arguments
let result = sig.args();
assert!(result.is_some());
let args = result.unwrap();
assert_eq!(
args,
&[
ValType::I32,
ValType::I64,
ValType::F32,
ValType::F64,
ValType::V128,
ValType::FuncRef,
ValType::ExternRef,
]
);
// check the returns
let result = sig.returns();
assert!(result.is_some());
let returns = result.unwrap();
assert_eq!(
returns,
&[ValType::FuncRef, ValType::ExternRef, ValType::V128]
);
}
// test signature without args and returns
{
let sig = FuncTypeBuilder::new().build();
assert_eq!(sig.args(), None);
assert_eq!(sig.returns(), None);
}
}
#[test]
#[allow(clippy::assertions_on_result_states)]
fn test_func_basic() {
// create an ImportModule
let result = ImportObjectBuilder::new()
.with_func::<(i32, i32), i32>("add", real_add)
.expect("failed to add host func")
.build("extern");
assert!(result.is_ok());
let import = result.unwrap();
// 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();
let result = store.register_import_module(&mut executor, &import);
assert!(result.is_ok());
// get the instance of the ImportObject module
let result = store.named_instance("extern");
assert!(result.is_ok());
let instance = result.unwrap();
// get the exported host function
let result = instance.func("add");
assert!(result.is_ok());
let host_func = result.unwrap();
// check the signature of the host function
let func_ty = host_func.ty();
assert!(func_ty.args().is_some());
assert_eq!(func_ty.args().unwrap(), [ValType::I32; 2]);
assert!(func_ty.returns().is_some());
assert_eq!(func_ty.returns().unwrap(), [ValType::I32]);
// run the host function
let result = host_func.run(&mut executor, params!(2, 3));
assert!(result.is_ok());
let returns = result.unwrap();
assert_eq!(returns.len(), 1);
assert_eq!(returns[0].to_i32(), 5);
}
#[test]
fn test_func_wrap() {
// create a host function
let result = Func::wrap::<(i32, i32), i32>(real_add);
assert!(result.is_ok());
let func = result.unwrap();
// create an executor
let mut executor = Executor::new(None, None).unwrap();
// call the host function
let result = func.run(&mut executor, params!(2, 3));
assert!(result.is_ok());
let returns = result.unwrap();
assert_eq!(returns[0].to_i32(), 5);
}
fn real_add(
_frame: CallingFrame,
inputs: Vec<WasmValue>,
) -> 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)])
}
}