#include <chrono>
#include <fstream>
#include <iostream>
#include <sstream>
#include <thread>
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() {
Engine engine(std::move(config));
store.context().set_epoch_deadline(1);
auto wat = readFile("examples/interrupt.wat");
Module module = Module::compile(engine, wat).unwrap();
Instance instance = Instance::create(store, module, {}).unwrap();
Func run = std::get<Func>(*instance.
get(store,
"run"));
std::thread t([engine{std::move(engine)}]() {
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout << "Interrupting!\n";
engine.increment_epoch();
});
std::cout << "Entering infinite loop ...\n";
auto err = run.
call(store, {}).err();
auto &trap = std::get<Trap>(err.data);
std::cout << "trap: " << trap.message() << "\n";
t.join();
}
Configuration for Wasmtime.
Definition: wasmtime.hh:462
void epoch_interruption(bool enable)
Configures whether epochs are enabled which can be used to interrupt currently executing WebAssembly.
Definition: wasmtime.hh:487
Global compilation state in Wasmtime.
Definition: wasmtime.hh:645
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 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