108 lines
3.1 KiB
Markdown
Raw Normal View History

2020-01-13 15:14:30 +01:00
# Wasmer Runtime C API
2020-02-20 11:24:54 -08:00
[Wasmer] is a standalone WebAssembly runtime for running WebAssembly [outside of the browser](https://webassembly.org/docs/non-web/), supporting [WASI](https://github.com/WebAssembly/WASI) and [Emscripten](https://emscripten.org/).
2020-01-13 15:14:30 +01:00
2020-02-20 11:24:54 -08:00
The Wasmer Runtime C API exposes a C and a C++ API to interact
with the Wasmer Runtime, so you can use WebAssembly anywhere.
2020-01-13 15:14:30 +01:00
[Wasmer]: https://github.com/wasmerio/wasmer
[WebAssembly]: https://webassembly.org/
# Usage
Since the Wasmer runtime is written in Rust, the C and C++ API are
designed to work hand-in-hand with its shared library. The C and C++
2020-02-20 11:24:54 -08:00
header files, namely [`wasmer.h`][wasmer_h] and `wasmer.hh` are documented
in the docs.
Their source code can be found in the source tree of the [wasmer-runtime-c-api](https://github.com/wasmerio/wasmer/tree/master/lib/runtime-c-api)
crate.
The C and C++ header files along with the runtime shared
2020-01-13 15:14:30 +01:00
libraries (`.so`, `.dylib`, `.dll`) can also be downloaded in the
Wasmer [release page].
[release page]: https://github.com/wasmerio/wasmer/releases
Here is a simple example to use the C API:
```c
#include <stdio.h>
2020-02-20 11:24:54 -08:00
#include "wasmer.h"
2020-01-13 15:14:30 +01:00
#include <assert.h>
#include <stdint.h>
int main()
{
// Read the Wasm file bytes.
FILE *file = fopen("sum.wasm", "r");
fseek(file, 0, SEEK_END);
long len = ftell(file);
uint8_t *bytes = malloc(len);
fseek(file, 0, SEEK_SET);
fread(bytes, 1, len, file);
fclose(file);
// Prepare the imports.
wasmer_import_t imports[] = {};
// Instantiate!
wasmer_instance_t *instance = NULL;
wasmer_result_t instantiation_result = wasmer_instantiate(&instance, bytes, len, imports, 0);
assert(instantiation_result == WASMER_OK);
// Let's call a function.
// Start by preparing the arguments.
// Value of argument #1 is `7i32`.
wasmer_value_t argument_one;
argument_one.tag = WASM_I32;
argument_one.value.I32 = 7;
// Value of argument #2 is `8i32`.
wasmer_value_t argument_two;
argument_two.tag = WASM_I32;
argument_two.value.I32 = 8;
// Prepare the arguments.
wasmer_value_t arguments[] = {argument_one, argument_two};
// Prepare the return value.
wasmer_value_t result_one;
wasmer_value_t results[] = {result_one};
// Call the `sum` function with the prepared arguments and the return value.
wasmer_result_t call_result = wasmer_instance_call(instance, "sum", arguments, 2, results, 1);
// Let's display the result.
printf("Call result: %d\n", call_result);
printf("Result: %d\n", results[0].value.I32);
// `sum(7, 8) == 15`.
assert(results[0].value.I32 == 15);
assert(call_result == WASMER_OK);
wasmer_instance_destroy(instance);
return 0;
}
```
2020-02-20 11:24:54 -08:00
# Examples
2020-01-13 15:14:30 +01:00
2020-02-20 11:24:54 -08:00
You can check more examples of how to use the Wasmer C API here:
2020-01-13 15:14:30 +01:00
2020-02-20 11:24:54 -08:00
https://docs.wasmer.io/integrations/c/examples
2020-01-13 15:14:30 +01:00
# License
Wasmer is primarily distributed under the terms of the [MIT
license][mit-license] ([LICENSE][license]).
2020-02-20 11:24:54 -08:00
[wasmer_h]: https://wasmerio.github.io/wasmer/c/runtime-c-api/wasmer_8h.html
2020-01-13 15:14:30 +01:00
[mit-license]: http://opensource.org/licenses/MIT
[license]: https://github.com/wasmerio/wasmer/blob/master/LICENSE