#include <fstream>
#include <iostream>
#include <sstream>
using namespace wasmtime;
std::string readFile(const char *name) {
std::ifstream watFile;
watFile.open(name);
std::stringstream strStream;
strStream << watFile.rdbuf();
return strStream.str();
}
int main() {
std::cout << "Initializing...\n";
std::cout << "Compiling module...\n";
auto wat = readFile("examples/externref.wat");
Module module = Module::compile(engine, wat).unwrap();
std::cout << "Instantiating module...\n";
Instance instance = Instance::create(store, module, {}).unwrap();
ExternRef externref(store, std::string(
"Hello, world!"));
std::any &data = externref.data(store);
std::cout << "externref data: " << std::any_cast<std::string>(data) << "\n";
std::cout << "Touching `externref` table..\n";
Table table = std::get<Table>(*instance.
get(store,
"table"));
table.
set(store, 3, externref).unwrap();
std::cout <<
"externref data: " << std::any_cast<std::string>(val.
data(store))
<< "\n";
std::cout << "Touching `externref` global..\n";
Global global = std::get<Global>(*instance.
get(store,
"global"));
global.
set(store, externref).unwrap();
std::cout <<
"externref data: " << std::any_cast<std::string>(val.
data(store))
<< "\n";
std::cout << "Calling `externref` func..\n";
Func func = std::get<Func>(*instance.
get(store,
"func"));
auto results = func.
call(store, {externref}).unwrap();
val = *results[0].externref(store);
std::cout <<
"externref data: " << std::any_cast<std::string>(val.
data(store))
<< "\n";
std::cout << "Running a gc..\n";
store.context().gc();
}
Global compilation state in Wasmtime.
Definition: wasmtime.hh:645
Representation of a WebAssembly externref value.
Definition: wasmtime.hh:1992
std::any & data(Store::Context cx)
Returns the underlying host data associated with this ExternRef.
Definition: wasmtime.hh:2027
Representation of a WebAssembly function.
Definition: wasmtime.hh:2505
TrapResult< std::vector< Val > > call(Store::Context cx, const I &begin, const I &end) const
Invoke a WebAssembly function.
Definition: wasmtime.hh:2670
A WebAssembly global.
Definition: wasmtime.hh:2852
Result< std::monostate > set(Store::Context cx, const Val &val) const
Definition: wasmtime.hh:2890
Val get(Store::Context cx) const
Returns the current value of this global.
Definition: wasmtime.hh:2992
A WebAssembly instance.
Definition: wasmtime.hh:3074
std::optional< Extern > get(Store::Context cx, std::string_view name)
Load an instance's export by name.
Definition: wasmtime.hh:3159
Representation of a compiled WebAssembly module.
Definition: wasmtime.hh:1559
Owner of all WebAssembly objects.
Definition: wasmtime.hh:1820
A WebAssembly table.
Definition: wasmtime.hh:2911
Result< std::monostate > set(Store::Context cx, uint64_t idx, const Val &val) const
Definition: wasmtime.hh:2962
std::optional< Val > get(Store::Context cx, uint64_t idx) const
Definition: wasmtime.hh:2951
std::optional< ExternRef > externref(Store::Context cx) const
Definition: wasmtime.hh:2204