I am trying to build with emscripten a program which uses std::vector and std::map and the pilation is successful. However, when I ran it on the web browser(firefox/chrome), UnboundTypeError was catched.
[03:21:26.453] UnboundTypeError: Cannot call intArrayToVector due to unbound types: Pi
Here is c++ code and HTML file which uses generated javascript code.
test.cpp:
#include <vector>
#include <emscripten/bind.h>
using namespace emscripten;
std::vector<int> intArrayToVector(int* input, int num){
std::vector<int> vec;
for(int i=0; i<num; i++){
int val = *(input+i);
vec.push_back(val);
}
return vec;
}
EMSCRIPTEN_BINDINGS(test){
register_vector<int>("VectorInt");
function("intArrayToVector", &intArrayToVector, allow_raw_pointer<arg<0>>());
}
test.html:
<html>
<body>
<script src="test.js"></script>
<script>
var num = 6;
var buf = Module._malloc(100);
var arr = new Int8Array(num);
for(var i=0; i<num; i++){
arr[i] = i+2;
}
Module.HEAP8.set(arr, buf);
var v = Module.intArrayToVector(buf, num);
for(var i=0; i<num; i++){
console.log(v.get(i));
}
Module._free(buf);
</script>
</body>
</html>
The javascript code was generated by the mand below:
$ em++ --bind test.cpp -o test.js
How can I solve this problem? Thank you for any help!
I am trying to build with emscripten a program which uses std::vector and std::map and the pilation is successful. However, when I ran it on the web browser(firefox/chrome), UnboundTypeError was catched.
[03:21:26.453] UnboundTypeError: Cannot call intArrayToVector due to unbound types: Pi
Here is c++ code and HTML file which uses generated javascript code.
test.cpp:
#include <vector>
#include <emscripten/bind.h>
using namespace emscripten;
std::vector<int> intArrayToVector(int* input, int num){
std::vector<int> vec;
for(int i=0; i<num; i++){
int val = *(input+i);
vec.push_back(val);
}
return vec;
}
EMSCRIPTEN_BINDINGS(test){
register_vector<int>("VectorInt");
function("intArrayToVector", &intArrayToVector, allow_raw_pointer<arg<0>>());
}
test.html:
<html>
<body>
<script src="test.js"></script>
<script>
var num = 6;
var buf = Module._malloc(100);
var arr = new Int8Array(num);
for(var i=0; i<num; i++){
arr[i] = i+2;
}
Module.HEAP8.set(arr, buf);
var v = Module.intArrayToVector(buf, num);
for(var i=0; i<num; i++){
console.log(v.get(i));
}
Module._free(buf);
</script>
</body>
</html>
The javascript code was generated by the mand below:
$ em++ --bind test.cpp -o test.js
How can I solve this problem? Thank you for any help!
Share Improve this question asked Dec 3, 2013 at 16:01 user3062135user3062135 1111 silver badge3 bronze badges 4- Int8Array() creates 8 bits integers? – Anto Jurković Commented Dec 3, 2013 at 16:47
- yes,it's an array of 8-bit integers – user3062135 Commented Dec 4, 2013 at 9:50
-
I don't know how emscripten handle it: your default C++ integer size is bigger than 8bits.
short int
is at least 16bits... – Anto Jurković Commented Dec 4, 2013 at 9:59 - I tried with Int32Array() and HEAP32, but I've got the same result... – user3062135 Commented Dec 4, 2013 at 10:36
1 Answer
Reset to default 10Embind doesn't support pointers to primitive types. "Pi" means to "pointer to integer."
If you will always know the size of the array in advance, you could try passing the array as a const reference. e.g.
std::vector<int> intArrayToVector(const int (&input)[100])
Or you can cheat and use an integer parameter for the pointer and use reinterpret_cast
to treat it as a pointer. e.g.
std::vector<int> intArrayToVector(uintptr_t input, size_t len) {
const int* ptr = reinterpret_cast<int*>(input);
....
}
Or you can use the cwrap
API which does support pointers to primitive types.