2019-02-02 23:43:59 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "../wasmer.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
2019-02-15 15:40:28 +00:00
|
|
|
#include <string.h>
|
2019-02-02 23:43:59 +00:00
|
|
|
|
2019-03-06 12:01:05 +00:00
|
|
|
static bool print_str_called = false;
|
|
|
|
static int memory_len = 0;
|
|
|
|
static int ptr_len = 0;
|
2019-02-10 21:20:35 +00:00
|
|
|
static char actual_str[14] = {};
|
2019-03-11 16:34:13 +00:00
|
|
|
static int actual_context_data_value = 0;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int value;
|
|
|
|
} context_data;
|
2019-02-02 23:43:59 +00:00
|
|
|
|
2019-06-03 13:59:33 +00:00
|
|
|
struct print_str_context {
|
|
|
|
int call_count;
|
|
|
|
};
|
|
|
|
|
2019-02-17 20:39:26 +00:00
|
|
|
void print_str(wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)
|
2019-02-14 02:02:11 +00:00
|
|
|
{
|
2019-06-03 13:59:33 +00:00
|
|
|
struct print_str_context *local_context = wasmer_trampoline_get_context();
|
|
|
|
local_context->call_count++;
|
2019-06-04 17:25:37 +00:00
|
|
|
|
2019-03-06 12:01:05 +00:00
|
|
|
const wasmer_memory_t *memory = wasmer_instance_context_memory(ctx, 0);
|
2019-02-10 20:24:36 +00:00
|
|
|
uint32_t mem_len = wasmer_memory_length(memory);
|
2019-02-10 21:20:35 +00:00
|
|
|
uint8_t *mem_bytes = wasmer_memory_data(memory);
|
2019-02-14 02:02:11 +00:00
|
|
|
for (int32_t idx = 0; idx < len; idx++)
|
|
|
|
{
|
2019-02-10 21:20:35 +00:00
|
|
|
actual_str[idx] = mem_bytes[ptr + idx];
|
|
|
|
}
|
|
|
|
actual_str[13] = '\0';
|
|
|
|
printf("In print_str, memory len: %d, ptr_len: %d\n, str %s", mem_len, len, actual_str);
|
2019-02-02 23:43:59 +00:00
|
|
|
print_str_called = true;
|
2019-02-10 20:24:36 +00:00
|
|
|
memory_len = mem_len;
|
2019-02-10 21:20:35 +00:00
|
|
|
ptr_len = len;
|
2019-03-11 16:34:13 +00:00
|
|
|
|
|
|
|
actual_context_data_value = ((context_data *) wasmer_instance_context_data_get(ctx))->value;
|
2019-02-02 23:43:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2019-02-03 01:10:08 +00:00
|
|
|
wasmer_value_tag params_sig[] = {WASM_I32, WASM_I32};
|
|
|
|
wasmer_value_tag returns_sig[] = {};
|
2019-06-03 13:59:33 +00:00
|
|
|
struct print_str_context local_context = {
|
|
|
|
.call_count = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
printf("Creating trampoline buffer\n");
|
|
|
|
wasmer_trampoline_buffer_builder_t *tbb = wasmer_trampoline_buffer_builder_new();
|
2019-06-04 17:25:37 +00:00
|
|
|
unsigned long print_str_idx = wasmer_trampoline_buffer_builder_add_context_trampoline(
|
2019-06-03 13:59:33 +00:00
|
|
|
tbb,
|
|
|
|
(wasmer_trampoline_callable_t *) print_str,
|
|
|
|
(void *) &local_context
|
|
|
|
);
|
|
|
|
wasmer_trampoline_buffer_t *tb = wasmer_trampoline_buffer_builder_build(tbb);
|
|
|
|
const wasmer_trampoline_callable_t *print_str_callable = wasmer_trampoline_buffer_get_trampoline(tb, print_str_idx);
|
2019-02-15 15:40:28 +00:00
|
|
|
|
|
|
|
printf("Creating new func\n");
|
2019-06-03 13:59:33 +00:00
|
|
|
wasmer_import_func_t *func = wasmer_import_func_new((void (*)(void *)) print_str_callable, params_sig, 2, returns_sig, 0);
|
2019-02-15 15:40:28 +00:00
|
|
|
wasmer_import_t import;
|
|
|
|
|
|
|
|
char *module_name = "env";
|
|
|
|
wasmer_byte_array module_name_bytes;
|
2019-03-06 12:01:05 +00:00
|
|
|
module_name_bytes.bytes = (const uint8_t *) module_name;
|
2019-02-15 15:40:28 +00:00
|
|
|
module_name_bytes.bytes_len = strlen(module_name);
|
|
|
|
char *import_name = "print_str";
|
|
|
|
wasmer_byte_array import_name_bytes;
|
2019-03-06 12:01:05 +00:00
|
|
|
import_name_bytes.bytes = (const uint8_t *) import_name;
|
2019-02-15 15:40:28 +00:00
|
|
|
import_name_bytes.bytes_len = strlen(import_name);
|
|
|
|
|
|
|
|
import.module_name = module_name_bytes;
|
|
|
|
import.import_name = import_name_bytes;
|
|
|
|
import.tag = WASM_FUNCTION;
|
|
|
|
import.value.func = func;
|
|
|
|
wasmer_import_t imports[] = {import};
|
|
|
|
|
2019-02-02 23:43:59 +00:00
|
|
|
// Read the wasm file bytes
|
2019-03-27 08:42:56 +00:00
|
|
|
FILE *file = fopen("assets/wasm_sample_app.wasm", "r");
|
2019-02-02 23:43:59 +00:00
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
long len = ftell(file);
|
|
|
|
uint8_t *bytes = malloc(len);
|
|
|
|
fseek(file, 0, SEEK_SET);
|
|
|
|
fread(bytes, 1, len, file);
|
|
|
|
fclose(file);
|
|
|
|
|
2019-02-15 15:40:28 +00:00
|
|
|
printf("Instantiating\n");
|
2019-02-02 23:43:59 +00:00
|
|
|
wasmer_instance_t *instance = NULL;
|
2019-02-15 15:40:28 +00:00
|
|
|
wasmer_result_t compile_result = wasmer_instantiate(&instance, bytes, len, imports, 1);
|
2019-02-02 23:43:59 +00:00
|
|
|
printf("Compile result: %d\n", compile_result);
|
2019-02-16 01:47:00 +00:00
|
|
|
|
2019-02-12 01:07:28 +00:00
|
|
|
assert(compile_result == WASMER_OK);
|
2019-02-02 23:43:59 +00:00
|
|
|
|
2019-03-11 16:34:13 +00:00
|
|
|
context_data* context_data = malloc(sizeof(context_data));
|
|
|
|
int context_data_value = 42;
|
|
|
|
context_data->value = context_data_value;
|
|
|
|
wasmer_instance_context_data_set(instance, context_data);
|
|
|
|
|
2019-02-02 23:43:59 +00:00
|
|
|
wasmer_value_t params[] = {};
|
|
|
|
wasmer_value_t results[] = {};
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t call_result = wasmer_instance_call(instance, "hello_wasm", params, 0, results, 0);
|
2019-02-02 23:43:59 +00:00
|
|
|
printf("Call result: %d\n", call_result);
|
2019-02-16 01:47:00 +00:00
|
|
|
|
|
|
|
int error_len = wasmer_last_error_length();
|
|
|
|
printf("Error len: `%d`\n", error_len);
|
|
|
|
char *error_str = malloc(error_len);
|
|
|
|
wasmer_last_error_message(error_str, error_len);
|
|
|
|
printf("Error str: `%s`\n", error_str);
|
|
|
|
|
2019-02-12 01:07:28 +00:00
|
|
|
assert(call_result == WASMER_OK);
|
2019-02-02 23:43:59 +00:00
|
|
|
|
|
|
|
assert(print_str_called);
|
2019-02-10 20:24:36 +00:00
|
|
|
assert(memory_len == 17);
|
2019-02-10 21:20:35 +00:00
|
|
|
assert(ptr_len == 13);
|
|
|
|
assert(0 == strcmp(actual_str, "Hello, World!"));
|
2019-03-11 16:34:13 +00:00
|
|
|
assert(context_data_value == actual_context_data_value);
|
2019-06-03 13:59:33 +00:00
|
|
|
assert(local_context.call_count == 1);
|
2019-02-05 01:49:28 +00:00
|
|
|
|
2019-06-03 13:59:33 +00:00
|
|
|
printf("Destroying trampoline buffer\n");
|
|
|
|
wasmer_trampoline_buffer_destroy(tb);
|
2019-02-15 15:40:28 +00:00
|
|
|
printf("Destroying func\n");
|
2019-02-24 18:22:24 +00:00
|
|
|
wasmer_import_func_destroy(func);
|
2019-02-19 05:30:08 +00:00
|
|
|
printf("Destroy instance\n");
|
|
|
|
wasmer_instance_destroy(instance);
|
2019-03-11 16:41:17 +00:00
|
|
|
free(context_data);
|
2019-02-02 23:43:59 +00:00
|
|
|
return 0;
|
2019-03-06 12:01:05 +00:00
|
|
|
}
|