summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/samples/native-lib/test_hello2.c
blob: 2c8f69ed6b5cbaae60a7587ec47bcfbb7b011032 (plain)
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
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

/*
 * This example basically does the same thing as test_hello.c,
 * using wasm_export.h API.
 */

#include <stdio.h>
#include <stdlib.h>

#include "wasm_export.h"

static int
test_hello2_wrapper(wasm_exec_env_t exec_env, uint32_t nameaddr,
                    uint32_t resultaddr, uint32_t resultlen)
{
    /*
     * Perform wasm_runtime_malloc to check if the runtime has been
     * initialized as expected.
     * This would fail with "memory hasn't been initialize" error
     * unless we are not sharing a runtime with the loader app. (iwasm)
     */
    void *p = wasm_runtime_malloc(1);
    if (p == NULL) {
        return -1;
    }
    wasm_runtime_free(p);

    wasm_module_inst_t inst = wasm_runtime_get_module_inst(exec_env);
    if (!wasm_runtime_validate_app_str_addr(inst, nameaddr)
        || !wasm_runtime_validate_app_addr(inst, resultaddr, resultlen)) {
        return -1;
    }
    const char *name = wasm_runtime_addr_app_to_native(inst, nameaddr);
    char *result = wasm_runtime_addr_app_to_native(inst, resultaddr);
    return snprintf(result, resultlen,
                    "Hello, %s. This is %s! Your wasm_module_inst_t is %p.\n",
                    name, __func__, inst);
}

/* clang-format off */
#define REG_NATIVE_FUNC(func_name, signature) \
    { #func_name, func_name##_wrapper, signature, NULL }

static NativeSymbol native_symbols[] = {
    REG_NATIVE_FUNC(test_hello2, "(iii)i")
};
/* clang-format on */

uint32_t
get_native_lib(char **p_module_name, NativeSymbol **p_native_symbols)
{
    *p_module_name = "env";
    *p_native_symbols = native_symbols;
    return sizeof(native_symbols) / sizeof(NativeSymbol);
}