pub struct ImportsPre<T> {
instance_pre: wasmtime::component::InstancePre<T>,
}
impl<T> Clone for ImportsPre<T> {
fn clone(&self) -> Self {
Self {
instance_pre: self.instance_pre.clone(),
}
}
}
pub struct Imports {}
const _: () = {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
impl<_T> ImportsPre<_T> {
pub fn new(
instance_pre: wasmtime::component::InstancePre<_T>,
) -> wasmtime::Result<Self> {
let _component = instance_pre.component();
Ok(ImportsPre { instance_pre })
}
pub async fn instantiate_async(
&self,
mut store: impl wasmtime::AsContextMut<Data = _T>,
) -> wasmtime::Result<Imports>
where
_T: Send,
{
let mut store = store.as_context_mut();
let _instance = self.instance_pre.instantiate_async(&mut store).await?;
Ok(Imports {})
}
pub fn engine(&self) -> &wasmtime::Engine {
self.instance_pre.engine()
}
pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> {
&self.instance_pre
}
}
impl Imports {
pub async fn instantiate_async<_T>(
mut store: impl wasmtime::AsContextMut<Data = _T>,
component: &wasmtime::component::Component,
linker: &wasmtime::component::Linker<_T>,
) -> wasmtime::Result<Imports>
where
_T: Send,
{
let pre = linker.instantiate_pre(component)?;
ImportsPre::new(pre)?.instantiate_async(store).await
}
pub fn add_to_linker<T, U>(
linker: &mut wasmtime::component::Linker<T>,
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
) -> wasmtime::Result<()>
where
T: Send,
U: a::b::interface_with_live_type::Host
+ a::b::interface_with_dead_type::Host + Send,
{
a::b::interface_with_live_type::add_to_linker(linker, get)?;
a::b::interface_with_dead_type::add_to_linker(linker, get)?;
Ok(())
}
}
};
pub mod a {
pub mod b {
#[allow(clippy::all)]
pub mod interface_with_live_type {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
#[derive(wasmtime::component::ComponentType)]
#[derive(wasmtime::component::Lift)]
#[derive(wasmtime::component::Lower)]
#[component(record)]
#[derive(Clone, Copy)]
pub struct LiveType {
#[component(name = "a")]
pub a: u32,
}
impl core::fmt::Debug for LiveType {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("LiveType").field("a", &self.a).finish()
}
}
const _: () = {
assert!(4 == < LiveType as wasmtime::component::ComponentType >::SIZE32);
assert!(
4 == < LiveType as wasmtime::component::ComponentType >::ALIGN32
);
};
#[wasmtime::component::__internal::async_trait]
pub trait Host: Send {
async fn f(&mut self) -> LiveType;
}
pub trait GetHost<
T,
>: Fn(T) -> <Self as GetHost<T>>::Host + Send + Sync + Copy + 'static {
type Host: Host + Send;
}
impl<F, T, O> GetHost<T> for F
where
F: Fn(T) -> O + Send + Sync + Copy + 'static,
O: Host + Send,
{
type Host = O;
}
pub fn add_to_linker_get_host<T>(
linker: &mut wasmtime::component::Linker<T>,
host_getter: impl for<'a> GetHost<&'a mut T>,
) -> wasmtime::Result<()>
where
T: Send,
{
let mut inst = linker.instance("a:b/interface-with-live-type")?;
inst.func_wrap_async(
"f",
move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| wasmtime::component::__internal::Box::new(async move {
let host = &mut host_getter(caller.data_mut());
let r = Host::f(host).await;
Ok((r,))
}),
)?;
Ok(())
}
pub fn add_to_linker<T, U>(
linker: &mut wasmtime::component::Linker<T>,
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
) -> wasmtime::Result<()>
where
U: Host + Send,
T: Send,
{
add_to_linker_get_host(linker, get)
}
#[wasmtime::component::__internal::async_trait]
impl<_T: Host + ?Sized + Send> Host for &mut _T {
async fn f(&mut self) -> LiveType {
Host::f(*self).await
}
}
}
#[allow(clippy::all)]
pub mod interface_with_dead_type {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
#[wasmtime::component::__internal::async_trait]
pub trait Host: Send {}
pub trait GetHost<
T,
>: Fn(T) -> <Self as GetHost<T>>::Host + Send + Sync + Copy + 'static {
type Host: Host + Send;
}
impl<F, T, O> GetHost<T> for F
where
F: Fn(T) -> O + Send + Sync + Copy + 'static,
O: Host + Send,
{
type Host = O;
}
pub fn add_to_linker_get_host<T>(
linker: &mut wasmtime::component::Linker<T>,
host_getter: impl for<'a> GetHost<&'a mut T>,
) -> wasmtime::Result<()>
where
T: Send,
{
let mut inst = linker.instance("a:b/interface-with-dead-type")?;
Ok(())
}
pub fn add_to_linker<T, U>(
linker: &mut wasmtime::component::Linker<T>,
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
) -> wasmtime::Result<()>
where
U: Host + Send,
T: Send,
{
add_to_linker_get_host(linker, get)
}
#[wasmtime::component::__internal::async_trait]
impl<_T: Host + ?Sized + Send> Host for &mut _T {}
}
}
}