mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-15 07:05:41 +00:00
63ec73aacc
Since https://github.com/rust-lang/libc/pull/1379, fixed width integer type aliases are deprecated. Thus, this patch uses Rust types instead of libc aliases.
83 lines
2.5 KiB
Rust
83 lines
2.5 KiB
Rust
//! Create, grow, destroy tables of an instance.
|
|
|
|
use crate::{error::update_last_error, wasmer_limits_t, wasmer_result_t};
|
|
use wasmer_runtime::Table;
|
|
use wasmer_runtime_core::types::{ElementType, TableDescriptor};
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone)]
|
|
pub struct wasmer_table_t;
|
|
|
|
/// Creates a new Table for the given descriptor and initializes the given
|
|
/// pointer to pointer to a pointer to the new Table.
|
|
///
|
|
/// The caller owns the object and should call `wasmer_table_destroy` to free it.
|
|
///
|
|
/// Returns `wasmer_result_t::WASMER_OK` upon success.
|
|
///
|
|
/// Returns `wasmer_result_t::WASMER_ERROR` upon failure. Use `wasmer_last_error_length`
|
|
/// and `wasmer_last_error_message` to get an error message.
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn wasmer_table_new(
|
|
table: *mut *mut wasmer_table_t,
|
|
limits: wasmer_limits_t,
|
|
) -> wasmer_result_t {
|
|
let max = if limits.max.has_some {
|
|
Some(limits.max.some)
|
|
} else {
|
|
None
|
|
};
|
|
let desc = TableDescriptor {
|
|
element: ElementType::Anyfunc,
|
|
minimum: limits.min,
|
|
maximum: max,
|
|
};
|
|
let result = Table::new(desc);
|
|
let new_table = match result {
|
|
Ok(table) => table,
|
|
Err(error) => {
|
|
update_last_error(error);
|
|
return wasmer_result_t::WASMER_ERROR;
|
|
}
|
|
};
|
|
*table = Box::into_raw(Box::new(new_table)) as *mut wasmer_table_t;
|
|
wasmer_result_t::WASMER_OK
|
|
}
|
|
|
|
/// Grows a Table by the given number of elements.
|
|
///
|
|
/// Returns `wasmer_result_t::WASMER_OK` upon success.
|
|
///
|
|
/// Returns `wasmer_result_t::WASMER_ERROR` upon failure. Use `wasmer_last_error_length`
|
|
/// and `wasmer_last_error_message` to get an error message.
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
#[no_mangle]
|
|
pub extern "C" fn wasmer_table_grow(table: *mut wasmer_table_t, delta: u32) -> wasmer_result_t {
|
|
let table = unsafe { &*(table as *mut Table) };
|
|
let delta_result = table.grow(delta);
|
|
match delta_result {
|
|
Ok(_) => wasmer_result_t::WASMER_OK,
|
|
Err(grow_error) => {
|
|
update_last_error(grow_error);
|
|
wasmer_result_t::WASMER_ERROR
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Returns the current length of the given Table
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
#[no_mangle]
|
|
pub extern "C" fn wasmer_table_length(table: *mut wasmer_table_t) -> u32 {
|
|
let table = unsafe { &*(table as *mut Table) };
|
|
table.size()
|
|
}
|
|
|
|
/// Frees memory for the given Table
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
#[no_mangle]
|
|
pub extern "C" fn wasmer_table_destroy(table: *mut wasmer_table_t) {
|
|
if !table.is_null() {
|
|
unsafe { Box::from_raw(table as *mut Table) };
|
|
}
|
|
}
|