我一直在寻找WebAssembly网站和教程,我感到有些迷茫。
我有以下C代码:
void EMSCRIPTEN_KEEPALIVE hello(char * value){
printf("%s\n", value);
}
我编译它(我也不确定这部分是最好的方法):
emcc demo.c -s WASM=1 -s NO_EXIT_RUNTIME=1 -o demo.js
根据我的理解,我现在可以在我的javascript类中使用demo.js粘合代码并以这种方式调用方法:
...
<script src="demo.js"></script>
<script>
function hello(){
// Get the value
var value = document.getElementById("sample");
_hello(value.innerHTML);
}
</script>
...
当我调用方法时,我看到在控制台中打印的内容是:
(null)
我是否缺少将字符串值传递给使用WebAssembly编译的C代码的东西?
非常感谢
答案 0 :(得分:9)
我实际上找到了我的问题的答案。我只需要在“Glue”代码中使用Emscripten自动构建的函数,这些代码也是在您将C ++代码构建到WASM时生成的。
基本上,要将一个String传递给使用Emscripten编译到WebAssembly的C ++代码,你只需这样做:
// Create a pointer using the 'Glue' method and the String value
var ptr = allocate(intArrayFromString(myStrValue), 'i8', ALLOC_NORMAL);
// Call the method passing the pointer
val retPtr = _hello(ptr);
// Retransform back your pointer to string using 'Glue' method
var resValue = Pointer_stringify(retPtr);
// Free the memory allocated by 'allocate'
_free(ptr);
有关Emscripten's page的更完整信息。