node.js - 如何使用库导入来编译 C 文件到 WebAssembly 文件 (Emscripten)

标签 node.js vue.js webassembly emscripten json-c

我有一个简单的C程序,需要解析Json数据。为此,我导入了 JSON-C 库。我的 C 代码是 -

#include"json.h"
#include <emscripten.h>

EMSCRIPTEN_KEEPALIVE
int addnumbers(int a, int b) {
    FILE *fp;
    char buffer[1024];
    struct json_object *parsed_json;
    struct json_object *name;
    struct json_object *age;
    struct json_object *friends;
    struct json_object *friend;
    size_t n_friends;

    size_t i;

    fp = fopen("test.json","r");
    fread(buffer, 1024, 1, fp);
    fclose(fp);

    parsed_json = json_tokener_parse(buffer); 

    json_object_object_get_ex(parsed_json, "name", &name);
    json_object_object_get_ex(parsed_json, "age", &age);
    json_object_object_get_ex(parsed_json, "friends", &friends);

    printf("Name: %s\n", json_object_get_string(name));
    printf("Age: %d\n", json_object_get_int(age));

    n_friends = json_object_array_length(friends);


    for(i=0;i<n_friends;i++) {
        friend = json_object_array_get_idx(friends, i);
        // printf("%lu. %s\n",i+1,json_object_get_string(friend));
    }
    return n_friends;
}

我遵循的流程:- 使用命令将库(特别是 json.h 文件)编译为位代码-

emcc json.h -o json.bc

然后使用 - 编译我的 C 程序

emcc json.c -o j_plumbing.bc -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall','cwrap'] -s ENVIRONMENT='web,worker' -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0

然后我使用此命令一起编译这两个文件以获取 wasm 文件:-

emcc json.bc j_plumbing.bc -o js_plumbing.js -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall','cwrap'] -g4 -s LINKABLE=1 -s EXPORT_ALL=1 -s ENVIRONMENT='web,worker' -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0 

这就是我从 Vue 文件调用它的方式

public draw_outline() {
        Module().then(myModule => {
            console.log(myModule)
            const result = myModule.ccall('addnumbers',
                'number',
                ['number', 'number'],
                [4, 6]);
            console.log("Value from wasm file", result);
        });
    }
but this is the error I'm getting-

002210ee:1 Uncaught (in promise) RuntimeError: function signature mismatch
    at fclose (wasm-function[524]:0x1a777)
    at addnumbers (wasm-function[148]:0x6a45)
    at Module._addnumbers (webpack-internal:///./src/components/js_plumbing.js:1098:4989)
    at Object.ccall (webpack-internal:///./src/components/js_plumbing.js:199:628)
    at eval (webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/Extraction.vue?vue&type=script&lang=ts&:128:31)
    at Object.Module.onRuntimeInitialized (webpack-internal:///./src/components/js_plumbing.js:1109:95)
    at doRun (webpack-internal:///./src/components/js_plumbing.js:1117:140)
    at run (webpack-internal:///./src/components/js_plumbing.js:1117:436)
    at runCaller (webpack-internal:///./src/components/js_plumbing.js:1113:15)
    at removeRunDependency (webpack-internal:///./src/components/js_plumbing.js:373:843)

有人能指出我在这里做错了什么吗?感谢任何帮助

最佳答案

说明

如果您仔细阅读错误和调用堆栈,您会发现问题源于 fclose() 函数。一个WebAssembly使用emscripten生成的模块有其virtual file system它不理解您机器上的本地文件系统。因此,对本地文件的任何访问都将失败,正如 fp = fopen("test.json","r"); 所做的那样,它会返回 NULLfp 指针的 NULL 值是 fclose(fp) 错误的原因。

由于我无法使用您的代码(抱歉),我已在稍微不同的设置中复制了该错误,但在快速解决方案之后!

快速解决方案

映射WebAssembly/emscripten的虚拟文件系统使用例如本地文件系统NODEFS 。您可以在我的另一个答案 https://stackoverflow.com/a/60510997/1319478 中找到有关此解决方案的更多信息.

#include <stdio.h>
#include <emscripten.h>
#include <emscripten/bind.h>

void test_fun()
{
   FILE *fp;
   EM_ASM(
       FS.mkdir('/temp');
       FS.mount(NODEFS, {root : '.'}, '/temp'););
   fp = fopen("temp/test.json", "r");
   fclose(fp);
}

EMSCRIPTEN_BINDINGS(Module)
{
   emscripten::function("test_fun", &test_fun);
}

最简单的错误复制

此示例代码尝试关闭具有 NULL 值指针的文件。

#include <stdio.h>
#include <emscripten.h>
#include <emscripten/bind.h>

void test_fun()
{
   fclose(NULL);
}

EMSCRIPTEN_BINDINGS(Module)
{
   emscripten::function("test_fun", &test_fun);
}

如果使用附加调试信息编译此示例-g:

emcc example.cpp -o example.js --bind -s WASM_ASYNC_COMPILATION=0 -g

然后尝试执行一个测试脚本node test.js,其中test.js如下:

var Module = require('./example.js');

Module.test_fun();

然后,您得到的是相同的错误:

RuntimeError: function signature mismatch
    at fclose (wasm-function[32]:127)
    at test_fun() (wasm-function[17]:9)
    ...

关于node.js - 如何使用库导入来编译 C 文件到 WebAssembly 文件 (Emscripten),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60391102/

相关文章:

node.js - 无法开始一个新的世博项目 |不再支持 Node.js 版本 14.0.0

javascript - Sass.js在线编译

vue.js - 在 Vue CLI 3.0 生成的 Vue 应用程序中,public/manifest.json 文件到底在做什么?

security - 浏览器如何保护进程内存免受 webassembly 编译代码的影响?

javascript - 迭代器中的 AngularJS anchor (anchorscroll、ng-repeat、loop)

android - 如何在 Android 设备上运行带有 Node js 后端的 React Native 应用程序?

javascript - 如何正确使用Vue插件? <插件名称> 未定义

vue.js - Vue-router:beforeEnter guard 对于子路径不能正常工作

c++ - 我如何告诉 em++ 找到 WS2tcpip.h

node.js - 如何在 Rust 的 wasm_bindgen 函数中发出 HTTP 请求?