/// Auto-generated bindings for a pre-instantiated version of a /// component which implements the world `my-world`. /// /// This structure is created through [`MyWorldPre::new`] which /// takes a [`InstancePre`](wasmtime::component::InstancePre) that /// has been created through a [`Linker`](wasmtime::component::Linker). /// /// For more information see [`MyWorld`] as well. pub struct MyWorldPre { instance_pre: wasmtime::component::InstancePre, indices: MyWorldIndices, } impl Clone for MyWorldPre { fn clone(&self) -> Self { Self { instance_pre: self.instance_pre.clone(), indices: self.indices.clone(), } } } impl<_T> MyWorldPre<_T> { /// Creates a new copy of `MyWorldPre` 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 = MyWorldIndices::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 [`MyWorld`] 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 /// `my-world`. /// /// This is an implementation detail of [`MyWorldPre`] and can /// be constructed if needed as well. /// /// For more information see [`MyWorld`] as well. #[derive(Clone)] pub struct MyWorldIndices { interface0: exports::foo::foo::simple_lists::GuestIndices, } /// Auto-generated bindings for an instance a component which /// implements the world `my-world`. /// /// 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 /// [`MyWorld::instantiate_async`] which only needs a /// [`Store`], [`Component`], and [`Linker`]. /// /// * Alternatively you can create a [`MyWorldPre`] ahead of /// time with a [`Component`] to front-load string lookups /// of exports once instead of per-instantiation. This /// method then uses [`MyWorldPre::instantiate_async`] to /// create a [`MyWorld`]. /// /// * If you've instantiated the instance yourself already /// then you can use [`MyWorld::new`]. /// /// * You can also access the guts of instantiation through /// [`MyWorldIndices::new_instance`] followed /// by [`MyWorldIndices::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 MyWorld { interface0: exports::foo::foo::simple_lists::Guest, } const _: () = { #[allow(unused_imports)] use wasmtime::component::__internal::anyhow; impl MyWorldIndices { /// Creates a new copy of `MyWorldIndices` 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; let interface0 = exports::foo::foo::simple_lists::GuestIndices::new( _component, )?; Ok(MyWorldIndices { interface0 }) } /// Creates a new instance of [`MyWorldIndices`] from an /// instantiated component. /// /// This method of creating a [`MyWorld`] will perform string /// lookups for all exports when this method is called. This /// will only succeed if the provided instance matches the /// requirements of [`MyWorld`]. pub fn new_instance( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let _instance = instance; let interface0 = exports::foo::foo::simple_lists::GuestIndices::new_instance( &mut store, _instance, )?; Ok(MyWorldIndices { interface0 }) } /// Uses the indices stored in `self` to load an instance /// of [`MyWorld`] 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; let interface0 = self.interface0.load(&mut store, &_instance)?; Ok(MyWorld { interface0 }) } } impl MyWorld { /// Convenience wrapper around [`MyWorldPre::new`] and /// [`MyWorldPre::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)?; MyWorldPre::new(pre)?.instantiate_async(store).await } /// Convenience wrapper around [`MyWorldIndices::new_instance`] and /// [`MyWorldIndices::load`]. pub fn new( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let indices = MyWorldIndices::new_instance(&mut store, instance)?; indices.load(store, instance) } 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: foo::foo::simple_lists::Host + Send, { foo::foo::simple_lists::add_to_linker(linker, get)?; Ok(()) } pub fn foo_foo_simple_lists(&self) -> &exports::foo::foo::simple_lists::Guest { &self.interface0 } } }; pub mod foo { pub mod foo { #[allow(clippy::all)] pub mod simple_lists { #[allow(unused_imports)] use wasmtime::component::__internal::{anyhow, Box}; #[wasmtime::component::__internal::trait_variant_make(::core::marker::Send)] pub trait Host: Send { async fn simple_list1( &mut self, l: wasmtime::component::__internal::Vec, ) -> (); async fn simple_list2( &mut self, ) -> wasmtime::component::__internal::Vec; async fn simple_list3( &mut self, a: wasmtime::component::__internal::Vec, b: wasmtime::component::__internal::Vec, ) -> ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, ); async fn simple_list4( &mut self, l: wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, ) -> wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >; } pub trait GetHost< T, >: Fn(T) -> >::Host + Send + Sync + Copy + 'static { type Host: Host + Send; } impl GetHost for F where F: Fn(T) -> O + Send + Sync + Copy + 'static, O: Host + Send, { type Host = O; } pub fn add_to_linker_get_host( linker: &mut wasmtime::component::Linker, host_getter: impl for<'a> GetHost<&'a mut T>, ) -> wasmtime::Result<()> where T: Send, { let mut inst = linker.instance("foo:foo/simple-lists")?; inst.func_wrap_async( "simple-list1", move | mut caller: wasmtime::StoreContextMut<'_, T>, (arg0,): (wasmtime::component::__internal::Vec,)| { wasmtime::component::__internal::Box::new(async move { let host = &mut host_getter(caller.data_mut()); let r = Host::simple_list1(host, arg0).await; Ok(r) }) }, )?; inst.func_wrap_async( "simple-list2", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { wasmtime::component::__internal::Box::new(async move { let host = &mut host_getter(caller.data_mut()); let r = Host::simple_list2(host).await; Ok((r,)) }) }, )?; inst.func_wrap_async( "simple-list3", move | mut caller: wasmtime::StoreContextMut<'_, T>, ( arg0, arg1, ): ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, )| { wasmtime::component::__internal::Box::new(async move { let host = &mut host_getter(caller.data_mut()); let r = Host::simple_list3(host, arg0, arg1).await; Ok((r,)) }) }, )?; inst.func_wrap_async( "simple-list4", move | mut caller: wasmtime::StoreContextMut<'_, T>, ( arg0, ): ( wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, )| { wasmtime::component::__internal::Box::new(async move { let host = &mut host_getter(caller.data_mut()); let r = Host::simple_list4(host, arg0).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 U: Host + Send, T: Send, { add_to_linker_get_host(linker, get) } impl<_T: Host + ?Sized + Send> Host for &mut _T { async fn simple_list1( &mut self, l: wasmtime::component::__internal::Vec, ) -> () { Host::simple_list1(*self, l).await } async fn simple_list2( &mut self, ) -> wasmtime::component::__internal::Vec { Host::simple_list2(*self).await } async fn simple_list3( &mut self, a: wasmtime::component::__internal::Vec, b: wasmtime::component::__internal::Vec, ) -> ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, ) { Host::simple_list3(*self, a, b).await } async fn simple_list4( &mut self, l: wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, ) -> wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, > { Host::simple_list4(*self, l).await } } } } } pub mod exports { pub mod foo { pub mod foo { #[allow(clippy::all)] pub mod simple_lists { #[allow(unused_imports)] use wasmtime::component::__internal::{anyhow, Box}; pub struct Guest { simple_list1: wasmtime::component::Func, simple_list2: wasmtime::component::Func, simple_list3: wasmtime::component::Func, simple_list4: wasmtime::component::Func, } #[derive(Clone)] pub struct GuestIndices { simple_list1: wasmtime::component::ComponentExportIndex, simple_list2: wasmtime::component::ComponentExportIndex, simple_list3: wasmtime::component::ComponentExportIndex, simple_list4: wasmtime::component::ComponentExportIndex, } impl GuestIndices { /// Constructor for [`GuestIndices`] which takes a /// [`Component`](wasmtime::component::Component) as input and can be executed /// before instantiation. /// /// This constructor can be used to front-load string lookups to find exports /// within a component. pub fn new( component: &wasmtime::component::Component, ) -> wasmtime::Result { let (_, instance) = component .export_index(None, "foo:foo/simple-lists") .ok_or_else(|| { anyhow::anyhow!( "no exported instance named `foo:foo/simple-lists`" ) })?; Self::_new(|name| { component.export_index(Some(&instance), name).map(|p| p.1) }) } /// This constructor is similar to [`GuestIndices::new`] except that it /// performs string lookups after instantiation time. pub fn new_instance( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let instance_export = instance .get_export(&mut store, None, "foo:foo/simple-lists") .ok_or_else(|| { anyhow::anyhow!( "no exported instance named `foo:foo/simple-lists`" ) })?; Self::_new(|name| { instance.get_export(&mut store, Some(&instance_export), name) }) } fn _new( mut lookup: impl FnMut( &str, ) -> Option, ) -> wasmtime::Result { let mut lookup = move |name| { lookup(name) .ok_or_else(|| { anyhow::anyhow!( "instance export `foo:foo/simple-lists` does \ not have export `{name}`" ) }) }; let _ = &mut lookup; let simple_list1 = lookup("simple-list1")?; let simple_list2 = lookup("simple-list2")?; let simple_list3 = lookup("simple-list3")?; let simple_list4 = lookup("simple-list4")?; Ok(GuestIndices { simple_list1, simple_list2, simple_list3, simple_list4, }) } pub fn load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let mut store = store.as_context_mut(); let _ = &mut store; let _instance = instance; let simple_list1 = *_instance .get_typed_func::< (&[u32],), (), >(&mut store, &self.simple_list1)? .func(); let simple_list2 = *_instance .get_typed_func::< (), (wasmtime::component::__internal::Vec,), >(&mut store, &self.simple_list2)? .func(); let simple_list3 = *_instance .get_typed_func::< (&[u32], &[u32]), ( ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, ), ), >(&mut store, &self.simple_list3)? .func(); let simple_list4 = *_instance .get_typed_func::< (&[wasmtime::component::__internal::Vec],), ( wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, ), >(&mut store, &self.simple_list4)? .func(); Ok(Guest { simple_list1, simple_list2, simple_list3, simple_list4, }) } } impl Guest { pub async fn call_simple_list1( &self, mut store: S, arg0: &[u32], ) -> wasmtime::Result<()> where ::Data: Send, { let callee = unsafe { wasmtime::component::TypedFunc::< (&[u32],), (), >::new_unchecked(self.simple_list1) }; let () = callee .call_async(store.as_context_mut(), (arg0,)) .await?; callee.post_return_async(store.as_context_mut()).await?; Ok(()) } pub async fn call_simple_list2( &self, mut store: S, ) -> wasmtime::Result> where ::Data: Send, { let callee = unsafe { wasmtime::component::TypedFunc::< (), (wasmtime::component::__internal::Vec,), >::new_unchecked(self.simple_list2) }; let (ret0,) = callee .call_async(store.as_context_mut(), ()) .await?; callee.post_return_async(store.as_context_mut()).await?; Ok(ret0) } pub async fn call_simple_list3( &self, mut store: S, arg0: &[u32], arg1: &[u32], ) -> wasmtime::Result< ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, ), > where ::Data: Send, { let callee = unsafe { wasmtime::component::TypedFunc::< (&[u32], &[u32]), ( ( wasmtime::component::__internal::Vec, wasmtime::component::__internal::Vec, ), ), >::new_unchecked(self.simple_list3) }; let (ret0,) = callee .call_async(store.as_context_mut(), (arg0, arg1)) .await?; callee.post_return_async(store.as_context_mut()).await?; Ok(ret0) } pub async fn call_simple_list4( &self, mut store: S, arg0: &[wasmtime::component::__internal::Vec], ) -> wasmtime::Result< wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, > where ::Data: Send, { let callee = unsafe { wasmtime::component::TypedFunc::< (&[wasmtime::component::__internal::Vec],), ( wasmtime::component::__internal::Vec< wasmtime::component::__internal::Vec, >, ), >::new_unchecked(self.simple_list4) }; let (ret0,) = callee .call_async(store.as_context_mut(), (arg0,)) .await?; callee.post_return_async(store.as_context_mut()).await?; Ok(ret0) } } } } } }