/// Auto-generated bindings for a pre-instantiated version of a /// component which implements the world `host`. /// /// This structure is created through [`Host_Pre::new`] which /// takes a [`InstancePre`](wasmtime::component::InstancePre) that /// has been created through a [`Linker`](wasmtime::component::Linker). /// /// For more information see [`Host_`] as well. pub struct Host_Pre { instance_pre: wasmtime::component::InstancePre, indices: Host_Indices, } impl Clone for Host_Pre { fn clone(&self) -> Self { Self { instance_pre: self.instance_pre.clone(), indices: self.indices.clone(), } } } impl<_T> Host_Pre<_T> { /// Creates a new copy of `Host_Pre` bindings which can then /// be used to instantiate into a particular store. /// /// This method may fail if the component behind `instance_pre` /// does not have the required exports. pub fn new( instance_pre: wasmtime::component::InstancePre<_T>, ) -> wasmtime::Result { let indices = Host_Indices::new(instance_pre.component())?; Ok(Self { instance_pre, indices }) } pub fn engine(&self) -> &wasmtime::Engine { self.instance_pre.engine() } pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> { &self.instance_pre } /// Instantiates a new instance of [`Host_`] within the /// `store` provided. /// /// This function will use `self` as the pre-instantiated /// instance to perform instantiation. Afterwards the preloaded /// indices in `self` are used to lookup all exports on the /// resulting instance. pub async fn instantiate_async( &self, mut store: impl wasmtime::AsContextMut, ) -> wasmtime::Result where _T: Send, { let mut store = store.as_context_mut(); let instance = self.instance_pre.instantiate_async(&mut store).await?; self.indices.load(&mut store, &instance) } } /// Auto-generated bindings for index of the exports of /// `host`. /// /// This is an implementation detail of [`Host_Pre`] and can /// be constructed if needed as well. /// /// For more information see [`Host_`] as well. #[derive(Clone)] pub struct Host_Indices {} /// Auto-generated bindings for an instance a component which /// implements the world `host`. /// /// This structure can be created through a number of means /// depending on your requirements and what you have on hand: /// /// * The most convenient way is to use /// [`Host_::instantiate_async`] which only needs a /// [`Store`], [`Component`], and [`Linker`]. /// /// * Alternatively you can create a [`Host_Pre`] ahead of /// time with a [`Component`] to front-load string lookups /// of exports once instead of per-instantiation. This /// method then uses [`Host_Pre::instantiate_async`] to /// create a [`Host_`]. /// /// * If you've instantiated the instance yourself already /// then you can use [`Host_::new`]. /// /// * You can also access the guts of instantiation through /// [`Host_Indices::new_instance`] followed /// by [`Host_Indices::load`] to crate an instance of this /// type. /// /// These methods are all equivalent to one another and move /// around the tradeoff of what work is performed when. /// /// [`Store`]: wasmtime::Store /// [`Component`]: wasmtime::component::Component /// [`Linker`]: wasmtime::component::Linker pub struct Host_ {} #[wasmtime::component::__internal::trait_variant_make(::core::marker::Send)] pub trait Host_Imports: Send { async fn foo(&mut self) -> (); } pub trait Host_ImportsGetHost< T, >: Fn(T) -> >::Host + Send + Sync + Copy + 'static { type Host: Host_Imports; } impl Host_ImportsGetHost for F where F: Fn(T) -> O + Send + Sync + Copy + 'static, O: Host_Imports, { type Host = O; } impl<_T: Host_Imports + ?Sized + Send> Host_Imports for &mut _T { async fn foo(&mut self) -> () { Host_Imports::foo(*self).await } } const _: () = { #[allow(unused_imports)] use wasmtime::component::__internal::anyhow; impl Host_Indices { /// Creates a new copy of `Host_Indices` bindings which can then /// be used to instantiate into a particular store. /// /// This method may fail if the component does not have the /// required exports. pub fn new( component: &wasmtime::component::Component, ) -> wasmtime::Result { let _component = component; Ok(Host_Indices {}) } /// Creates a new instance of [`Host_Indices`] from an /// instantiated component. /// /// This method of creating a [`Host_`] will perform string /// lookups for all exports when this method is called. This /// will only succeed if the provided instance matches the /// requirements of [`Host_`]. pub fn new_instance( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let _instance = instance; Ok(Host_Indices {}) } /// Uses the indices stored in `self` to load an instance /// of [`Host_`] from the instance provided. /// /// Note that at this time this method will additionally /// perform type-checks of all exports. pub fn load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let _instance = instance; Ok(Host_ {}) } } impl Host_ { /// Convenience wrapper around [`Host_Pre::new`] and /// [`Host_Pre::instantiate_async`]. pub async fn instantiate_async<_T>( mut store: impl wasmtime::AsContextMut, component: &wasmtime::component::Component, linker: &wasmtime::component::Linker<_T>, ) -> wasmtime::Result where _T: Send, { let pre = linker.instantiate_pre(component)?; Host_Pre::new(pre)?.instantiate_async(store).await } /// Convenience wrapper around [`Host_Indices::new_instance`] and /// [`Host_Indices::load`]. pub fn new( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let indices = Host_Indices::new_instance(&mut store, instance)?; indices.load(store, instance) } pub fn add_to_linker_imports_get_host( linker: &mut wasmtime::component::Linker, host_getter: impl for<'a> Host_ImportsGetHost<&'a mut T>, ) -> wasmtime::Result<()> where T: Send, { let mut linker = linker.root(); linker .func_wrap_async( "foo", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { wasmtime::component::__internal::Box::new(async move { let host = &mut host_getter(caller.data_mut()); let r = Host_Imports::foo(host).await; Ok(r) }) }, )?; Ok(()) } pub fn add_to_linker( linker: &mut wasmtime::component::Linker, get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static, ) -> wasmtime::Result<()> where T: Send, U: Host_Imports + Send, { Self::add_to_linker_imports_get_host(linker, get)?; Ok(()) } } };