wasmer/lib/runtime-c-api/src/lib.rs

105 lines
3.1 KiB
Rust
Raw Normal View History

2019-02-01 05:51:34 +00:00
extern crate wasmer_runtime;
2019-02-02 06:26:10 +00:00
use libc::{c_char, c_int, uint32_t, uint8_t};
use std::ffi::CStr;
use std::str;
2019-02-02 14:43:29 +00:00
use wasmer_runtime::{ImportObject, Instance, Value};
2019-02-01 05:51:34 +00:00
#[allow(non_camel_case_types)]
pub struct wasmer_import_object_t();
2019-02-01 05:51:34 +00:00
#[allow(non_camel_case_types)]
pub struct wasmer_instance_t();
2019-02-01 05:51:34 +00:00
#[allow(non_camel_case_types)]
#[no_mangle]
#[repr(C)]
pub enum wasmer_compile_result_t {
WASMER_COMPILE_OK = 1,
WASMER_COMPILE_ERROR = 2,
}
2019-02-02 06:26:10 +00:00
#[allow(non_camel_case_types)]
#[no_mangle]
#[repr(C)]
pub enum wasmer_call_result_t {
WASMER_CALL_OK = 1,
WASMER_CALL_ERROR = 2,
}
2019-02-01 05:51:34 +00:00
#[no_mangle]
pub extern "C" fn wasmer_import_object_new() -> *mut wasmer_import_object_t {
Box::into_raw(Box::new(ImportObject::new())) as *mut wasmer_import_object_t
}
2019-02-02 04:10:36 +00:00
#[allow(clippy::cast_ptr_alignment)]
2019-02-01 05:51:34 +00:00
#[no_mangle]
pub extern "C" fn wasmer_import_object_destroy(import_object: *mut wasmer_import_object_t) {
if !import_object.is_null() {
drop(unsafe { Box::from_raw(import_object as *mut ImportObject) });
}
}
2019-02-02 04:10:36 +00:00
#[allow(clippy::cast_ptr_alignment)]
2019-02-01 05:51:34 +00:00
#[no_mangle]
2019-02-02 14:43:29 +00:00
pub unsafe extern "C" fn wasmer_instantiate(
mut instance: *mut *mut wasmer_instance_t,
2019-02-02 06:26:10 +00:00
wasm_bytes: *mut uint8_t,
wasm_bytes_len: uint32_t,
2019-02-01 05:51:34 +00:00
import_object: *mut wasmer_import_object_t,
) -> wasmer_compile_result_t {
let import_object = unsafe { Box::from_raw(import_object as *mut ImportObject) };
2019-02-02 06:26:10 +00:00
if wasm_bytes.is_null() {
2019-02-02 14:43:29 +00:00
return wasmer_compile_result_t::WASMER_COMPILE_ERROR;
2019-02-02 06:26:10 +00:00
}
2019-02-02 14:43:29 +00:00
let bytes: &[u8] =
unsafe { ::std::slice::from_raw_parts_mut(wasm_bytes, wasm_bytes_len as usize) };
2019-02-01 05:51:34 +00:00
let result = wasmer_runtime::instantiate(bytes, *import_object);
let new_instance = match result {
Ok(instance) => instance,
2019-02-02 06:26:10 +00:00
Err(error) => {
println!("Err: {:?}", error);
2019-02-02 14:43:29 +00:00
return wasmer_compile_result_t::WASMER_COMPILE_ERROR;
}
2019-02-01 05:51:34 +00:00
};
2019-02-02 14:43:29 +00:00
unsafe { *instance = Box::into_raw(Box::new(new_instance)) as *mut wasmer_instance_t };
2019-02-01 05:51:34 +00:00
wasmer_compile_result_t::WASMER_COMPILE_OK
}
2019-02-02 06:26:10 +00:00
#[allow(clippy::cast_ptr_alignment)]
#[no_mangle]
2019-02-02 14:43:29 +00:00
pub unsafe extern "C" fn wasmer_instance_call(
instance: *mut wasmer_instance_t,
name: *const c_char,
) -> wasmer_call_result_t {
2019-02-02 06:26:10 +00:00
// TODO handle params and results
2019-02-02 14:43:29 +00:00
if instance.is_null() {
2019-02-02 06:26:10 +00:00
return wasmer_call_result_t::WASMER_CALL_ERROR;
}
2019-02-02 14:43:29 +00:00
if name.is_null() {
2019-02-02 06:26:10 +00:00
return wasmer_call_result_t::WASMER_CALL_ERROR;
}
2019-02-02 14:43:29 +00:00
let func_name_c = unsafe { CStr::from_ptr(name) };
2019-02-02 06:26:10 +00:00
let func_name_r = func_name_c.to_str().unwrap();
let instance = unsafe { Box::from_raw(instance as *mut Instance) };
let result = instance.call(func_name_r, &[Value::I32(1), Value::I32(2)]);
match result {
Ok(res) => {
2019-02-02 14:43:29 +00:00
println!("Res: {:?}", res);
2019-02-02 06:26:10 +00:00
wasmer_call_result_t::WASMER_CALL_OK
2019-02-02 14:43:29 +00:00
}
2019-02-02 06:26:10 +00:00
Err(err) => {
println!("Err: {:?}", err);
wasmer_call_result_t::WASMER_CALL_ERROR
}
}
}
#[allow(clippy::cast_ptr_alignment)]
#[no_mangle]
pub extern "C" fn wasmer_instance_destroy(instance: *mut wasmer_instance_t) {
if !instance.is_null() {
drop(unsafe { Box::from_raw(instance as *mut Instance) });
}
2019-02-02 14:43:29 +00:00
}