Helper class for linking modules together with name-based resolution. More...
#include <wasmtime.hh>
Public Member Functions | |
Linker (Engine &engine) | |
Creates a new linker which will instantiate in the given engine. | |
void | allow_shadowing (bool allow) |
Result< std::monostate > | define (Store::Context cx, std::string_view module, std::string_view name, const Extern &item) |
Defines the provided item into this linker with the given name. | |
Result< std::monostate > | define_wasi () |
Result< std::monostate > | define_instance (Store::Context cx, std::string_view name, Instance instance) |
TrapResult< Instance > | instantiate (Store::Context cx, const Module &m) |
Result< std::monostate > | module (Store::Context cx, std::string_view name, const Module &m) |
std::optional< Extern > | get (Store::Context cx, std::string_view module, std::string_view name) |
template<typename F , std::enable_if_t< std::is_invocable_r_v< Result< std::monostate, Trap >, F, Caller, Span< const Val >, Span< Val > >, bool > = true> | |
Result< std::monostate > | func_new (std::string_view module, std::string_view name, const FuncType &ty, F &&f) |
template<typename F , std::enable_if_t< WasmHostFunc< F >::Params::valid, bool > = true, std::enable_if_t< WasmHostFunc< F >::Results::valid, bool > = true> | |
Result< std::monostate > | func_wrap (std::string_view module, std::string_view name, F &&f) |
Result< Func > | get_default (Store::Context cx, std::string_view name) |
Helper class for linking modules together with name-based resolution.
This class is used for easily instantiating Module
s by defining names into the linker and performing name-based resolution during instantiation. A Linker
can also be used to link in WASI functions to instantiate a module.
|
inline |
Configures whether shadowing previous names is allowed or not.
By default shadowing is not allowed.
|
inline |
Defines all exports of the instance
provided in this linker with the given module name of name
.
|
inline |
Defines WASI functions within this linker.
Note that Store::Context::set_wasi
must also be used for instantiated modules to have access to configured WASI state.
|
inline |
Defines a new function in this linker in the style of the Func
constructor.
|
inline |
Defines a new function in this linker in the style of the Func::wrap
constructor.
|
inline |
Attempts to load the specified named item from this linker, returning std::nullopt
if it was not defined.
|
inline |
Loads the "default" function, according to WASI commands and reactors, of the module named name
in this linker.
|
inline |
Instantiates the module m
provided within the store cx
using the items defined within this linker.
|
inline |
Defines instantiations of the module m
within this linker under the given name
.