60个版本 (35个稳定版)

新版本 4.3.6 2024年8月22日
4.3.5 2024年7月16日
4.3.2 2024年6月11日
4.2.5 2023年12月23日
1.0.0-alpha52020年11月6日

949WebAssembly 中排名

Download history 226/week @ 2024-04-25 41/week @ 2024-05-02 179/week @ 2024-05-09 2/week @ 2024-05-16 133/week @ 2024-05-23 1/week @ 2024-05-30 81/week @ 2024-06-06 23/week @ 2024-06-13 273/week @ 2024-07-04 109/week @ 2024-07-11 23/week @ 2024-07-18 234/week @ 2024-07-25 38/week @ 2024-08-01

每月 319 次下载

MIT 许可证

10MB
51K SLoC

wasmer-c-api 构建状态 加入Wasmer Slack MIT License

此crate公开了Wasmer运行时的C和C++ API。它还完全支持wasm-c-api通用API

用法

一旦你在系统中安装了Wasmer,共享对象文件和头文件都将在Wasmer安装路径中可用。

$WASMER_DIR/
  lib/
    libwasmer.{so,dylib,dll}
  include/
    wasm.h
    wasmer.h
    wasmer.hh
    wasmer.h

Wasmer二进制文件还包含wasmer-config,这是一个实用工具,用于输出编译使用Wasmer的程序所需的配置信息。

完整的C API文档可以在这里找到.

以下是一个使用C API的简单示例

#include <stdio.h>
#include "wasmer.h"

int main(int argc, const char* argv[]) {
    const char *wat_string =
        "(module\n"
        "  (type $sum_t (func (param i32 i32) (result i32)))\n"
        "  (func $sum_f (type $sum_t) (param $x i32) (param $y i32) (result i32)\n"
        "    local.get $x\n"
        "    local.get $y\n"
        "    i32.add)\n"
        "  (export \"sum\" (func $sum_f)))";

    wasm_byte_vec_t wat;
    wasm_byte_vec_new(&wat, strlen(wat_string), wat_string);
    wasm_byte_vec_t wasm_bytes;
    wat2wasm(&wat, &wasm_bytes);
    wasm_byte_vec_delete(&wat);

    printf("Creating the store...\n");
    wasm_engine_t* engine = wasm_engine_new();
    wasm_store_t* store = wasm_store_new(engine);

    printf("Compiling module...\n");
    wasm_module_t* module = wasm_module_new(store, &wasm_bytes);

    if (!module) {
        printf("> Error compiling module!\n");
        return 1;
    }

    wasm_byte_vec_delete(&wasm_bytes);

    printf("Creating imports...\n");
    wasm_extern_vec_t import_object = WASM_EMPTY_VEC;

    printf("Instantiating module...\n");
    wasm_instance_t* instance = wasm_instance_new(store, module, &import_object, NULL);

    if (!instance) {
      printf("> Error instantiating module!\n");
      return 1;
    }

    printf("Retrieving exports...\n");
    wasm_extern_vec_t exports;
    wasm_instance_exports(instance, &exports);

    if (exports.size == 0) {
        printf("> Error accessing exports!\n");
        return 1;
    }

    printf("Retrieving the `sum` function...\n");
    wasm_func_t* sum_func = wasm_extern_as_func(exports.data[0]);

    if (sum_func == NULL) {
        printf("> Failed to get the `sum` function!\n");
        return 1;
    }

    printf("Calling `sum` function...\n");
    wasm_val_t args_val[2] = { WASM_I32_VAL(3), WASM_I32_VAL(4) };
    wasm_val_t results_val[1] = { WASM_INIT_VAL };
    wasm_val_vec_t args = WASM_ARRAY_VEC(args_val);
    wasm_val_vec_t results = WASM_ARRAY_VEC(results_val);

    if (wasm_func_call(sum_func, &args, &results)) {
        printf("> Error calling the `sum` function!\n");

        return 1;
    }

    printf("Results of `sum`: %d\n", results_val[0].of.i32);

    wasm_module_delete(module);
    wasm_extern_vec_delete(&exports);
    wasm_instance_delete(instance);
    wasm_store_delete(store);
    wasm_engine_delete(engine);
}

构建

您可以从源代码编译Wasmer共享库

make build-capi

这将生成共享库(取决于您的系统)

  • Windows: target/release/libwasmer_c_api.dll
  • macOS: target/release/libwasmer_runtime_c_api.dylib
  • Linux: target/release/libwasmer_runtime_c_api.so

如果您想以用法中所示的方式生成库和头文件,您可以在Wasmer根目录中执行以下操作

make package-capi

此命令将生成一个 package 目录,您可以在Wasmer C API 示例中轻松使用。

测试

测试使用库的发布版本运行。如果您进行更改或使用非默认功能进行编译,请确保在发布模式下重新构建,以便测试可以看到更改。

要运行所有完整测试套件,进入 Wasmer 根目录并运行以下命令

$ make test-capi

wasmer config

wasmer config 输出编译使用 Wasmer 的程序所需的各种配置信息。

wasmer config--pkg-config

它以 pkg-config 格式输出编译和链接程序到 Wasmer 所需的必要细节。

$ wasmer config --pkg-config > $PKG_CONFIG_PATH/wasmer.pc

wasmer config--includedir

包含 Wasmer 头文件的目录

$ wasmer config --includedir
/users/myuser/.wasmer/include

wasmer config--libdir

包含 Wasmer 库的目录

$ wasmer config --libdir
/users/myuser/.wasmer/lib

wasmer config--libs

链接到 Wasmer 组件所需的库

$ wasmer config --libs
-L/Users/myuser/.wasmer/lib -lwasmer

wasmer config--cflags

构建与 Wasmer 组件相关联所需的头文件

$ wasmer config --cflags
-I/Users/myuser/.wasmer/include/wasmer

许可证

Wasmer 主要在 MIT 许可证(《LICENSE》)的条款下分发。

依赖关系

~16–33MB
~561K SLoC