This tool generates Scala Native bindings from C headers. It's built upon clang and Libtooling and thus respects the conventions of clang-tools.
Calling the tool is pretty easy, you need to specify the file(s) and the name of the created bindings.
./scala-native-bindgen /usr/include/uv.h -name uv --
Running the previous command wild also yield warnings along with the translation. To keep only the bindings please redirect the output to a file like this:
./scala-native-bindgen /usr/include/uv.h -name uv -- > uv.scala
Run ./scala-native-bindgen -help
to see all available options.
There are 2 ways to obtain bindgen:
This option requires Docker.
Download docker image with the binary:
docker pull scalabindgen/scala-native-bindgen
Mount directory with needed header file and run bindgen:
docker run --entrypoint=scala-native-bindgen -v /path/to/header:/src --rm scalabindgen/scala-native-bindgen /src/my_header.h --name my_header --
The docker image does not contain standard headers. Add -v /usr/include:/usr/include
option to use headers from /usr/include
in a container.
Building this tool requires CMake, LLVM and Clang. See the Scala Native setup guide for instructions on installing the dependencies.
mkdir -p bindgen/target
cd bindgen/target
cmake ..
make
./scala-native-bindgen /usr/include/ctype.h -name ctype --
Alternatively, you can use docker-compose to build and test the program:
# Build the docker image with LLVM version 6.0.
docker-compose build ubuntu-18.04-llvm-6.0
# Build the bindgen tool and run the tests.
docker-compose run --rm ubuntu-18.04-llvm-6.0
# Run the bindgen tool inside the container.
docker-compose run --rm ubuntu-18.04-llvm-6.0 bindgen/target/scala-native-bindgen -name union tests/samples/Union.h --
The tests assume that the above instructions for building has been followed.
cd tests
sbt test
There are multiple unsupported cases that should be considered when generating bindings:
- Currently bindgen does not support passing structs by value.
For example, it will not be possible to call these two functions from Scala Native code:To support such cases one should generate bindings for C wrapper functions that use pointers to structs instead of actual structs.struct MyStruct { int a; }; struct MyStruct returnStruct(); void handleStruct(struct MyStruct mystr);
- Bindgen does not generate bindings for defines.
In order to use defines one should write wrapper functions that return defined values. - There is no way to reuse already generated bindings.
Bindgen outputs bindings also for headers that were included in a given header.
This project is distributed under the Scala license. See LICENSE.txt for details