Crates.io | modularity |
lib.rs | modularity |
version | 0.1.5 |
source | src |
created_at | 2023-08-26 21:48:47.591263 |
updated_at | 2024-02-11 17:17:53.318046 |
description | WASM component loader, linker, and manager. |
homepage | |
repository | https://github.com/DouglasDwyer/modularity |
max_upload_size | |
id | 955733 |
size | 73,108 |
modularity
is a bare-bones library for loading and linking WebAssembly components.
It serves as a foundation for WASM-based plugin and modding systems by providing the following functionality:
The example below illustrates how to use this crate. A complete version may be found in the examples folder.
It first creates a PackageResolver
, specifying the list of packages that the application desires to load.
Then, it repeatedly calls PackageResolver::resolve
, supplying new components whenever the resolver reports that it needs them.
Once the resolver has finished building the dependency graph, it produces a PackageContextImage
. The image is subsequently applied
to the PackageContext
, where all of the components are linked and instantiated. After this, the package exports may be accessed through the context.
// Create the WASM engine and store
let engine = Engine::new(wasmi::Engine::default());
let mut store = Store::new(&engine, ());
// Create a context to hold packages
let mut ctx = PackageContext::default();
// Create a resolver with the list of top-level dependencies
let mut resolver = Some(PackageResolver::new(package_ids), Linker::default());
while let Some(r) = take(&mut resolver) {
match r.resolve() {
Ok(x) => {
// Create a transition to move the context to the new set of packages
// The linking process can be customized here
let transition = PackageContextTransitionBuilder::new(&x, &ctx)
.build(&mut store, &ctx)
.unwrap();
// Apply the transition to the package context
transition.apply(&mut store);
println!("Loaded packages are {:?}", ctx.packages().collect::<Vec<_>>());
}
Err(PackageResolverError::MissingPackages(mut r)) => {
for u in r.unresolved() {
// Gets the component with the specified ID from a source
u.resolve(u.id(), get_package(&u));
}
resolver = Some(r);
}
x => panic!("Error occurred: {x:?}"),
}
}
modularity
relies on the wasm_component_layer
crate for creating loaded WASM modules. It is the
responsibility of the consumer to supply parsed wasm_component_layer::Component
instances from a source.