1 /// Auto-generated bindings for a pre-instantiated version of a
2 /// component which implements the world `the-world`.
3 ///
4 /// This structure is created through [`TheWorldPre::new`] which
5 /// takes a [`InstancePre`](wasmtime::component::InstancePre) that
6 /// has been created through a [`Linker`](wasmtime::component::Linker).
7 ///
8 /// For more information see [`TheWorld`] as well.
9 pub struct TheWorldPre<T: 'static> {
10     instance_pre: wasmtime::component::InstancePre<T>,
11     indices: TheWorldIndices,
12 }
13 impl<T: 'static> Clone for TheWorldPre<T> {
clone(&self) -> Self14     fn clone(&self) -> Self {
15         Self {
16             instance_pre: self.instance_pre.clone(),
17             indices: self.indices.clone(),
18         }
19     }
20 }
21 impl<_T: 'static> TheWorldPre<_T> {
22     /// Creates a new copy of `TheWorldPre` bindings which can then
23     /// be used to instantiate into a particular store.
24     ///
25     /// This method may fail if the component behind `instance_pre`
26     /// does not have the required exports.
new( instance_pre: wasmtime::component::InstancePre<_T>, ) -> wasmtime::Result<Self>27     pub fn new(
28         instance_pre: wasmtime::component::InstancePre<_T>,
29     ) -> wasmtime::Result<Self> {
30         let indices = TheWorldIndices::new(&instance_pre)?;
31         Ok(Self { instance_pre, indices })
32     }
engine(&self) -> &wasmtime::Engine33     pub fn engine(&self) -> &wasmtime::Engine {
34         self.instance_pre.engine()
35     }
instance_pre(&self) -> &wasmtime::component::InstancePre<_T>36     pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> {
37         &self.instance_pre
38     }
39     /// Instantiates a new instance of [`TheWorld`] within the
40     /// `store` provided.
41     ///
42     /// This function will use `self` as the pre-instantiated
43     /// instance to perform instantiation. Afterwards the preloaded
44     /// indices in `self` are used to lookup all exports on the
45     /// resulting instance.
instantiate( &self, mut store: impl wasmtime::AsContextMut<Data = _T>, ) -> wasmtime::Result<TheWorld>46     pub fn instantiate(
47         &self,
48         mut store: impl wasmtime::AsContextMut<Data = _T>,
49     ) -> wasmtime::Result<TheWorld> {
50         let mut store = store.as_context_mut();
51         let instance = self.instance_pre.instantiate(&mut store)?;
52         self.indices.load(&mut store, &instance)
53     }
54 }
55 impl<_T: Send + 'static> TheWorldPre<_T> {
56     /// Same as [`Self::instantiate`], except with `async`.
instantiate_async( &self, mut store: impl wasmtime::AsContextMut<Data = _T>, ) -> wasmtime::Result<TheWorld>57     pub async fn instantiate_async(
58         &self,
59         mut store: impl wasmtime::AsContextMut<Data = _T>,
60     ) -> wasmtime::Result<TheWorld> {
61         let mut store = store.as_context_mut();
62         let instance = self.instance_pre.instantiate_async(&mut store).await?;
63         self.indices.load(&mut store, &instance)
64     }
65 }
66 /// Auto-generated bindings for index of the exports of
67 /// `the-world`.
68 ///
69 /// This is an implementation detail of [`TheWorldPre`] and can
70 /// be constructed if needed as well.
71 ///
72 /// For more information see [`TheWorld`] as well.
73 #[derive(Clone)]
74 pub struct TheWorldIndices {
75     interface0: exports::foo::foo::anon::GuestIndices,
76 }
77 /// Auto-generated bindings for an instance a component which
78 /// implements the world `the-world`.
79 ///
80 /// This structure can be created through a number of means
81 /// depending on your requirements and what you have on hand:
82 ///
83 /// * The most convenient way is to use
84 ///   [`TheWorld::instantiate`] which only needs a
85 ///   [`Store`], [`Component`], and [`Linker`].
86 ///
87 /// * Alternatively you can create a [`TheWorldPre`] ahead of
88 ///   time with a [`Component`] to front-load string lookups
89 ///   of exports once instead of per-instantiation. This
90 ///   method then uses [`TheWorldPre::instantiate`] to
91 ///   create a [`TheWorld`].
92 ///
93 /// * If you've instantiated the instance yourself already
94 ///   then you can use [`TheWorld::new`].
95 ///
96 /// These methods are all equivalent to one another and move
97 /// around the tradeoff of what work is performed when.
98 ///
99 /// [`Store`]: wasmtime::Store
100 /// [`Component`]: wasmtime::component::Component
101 /// [`Linker`]: wasmtime::component::Linker
102 pub struct TheWorld {
103     interface0: exports::foo::foo::anon::Guest,
104 }
105 const _: () = {
106     impl TheWorldIndices {
107         /// Creates a new copy of `TheWorldIndices` bindings which can then
108         /// be used to instantiate into a particular store.
109         ///
110         /// This method may fail if the component does not have the
111         /// required exports.
new<_T>( _instance_pre: &wasmtime::component::InstancePre<_T>, ) -> wasmtime::Result<Self>112         pub fn new<_T>(
113             _instance_pre: &wasmtime::component::InstancePre<_T>,
114         ) -> wasmtime::Result<Self> {
115             let _component = _instance_pre.component();
116             let _instance_type = _instance_pre.instance_type();
117             let interface0 = exports::foo::foo::anon::GuestIndices::new(_instance_pre)?;
118             Ok(TheWorldIndices { interface0 })
119         }
120         /// Uses the indices stored in `self` to load an instance
121         /// of [`TheWorld`] from the instance provided.
122         ///
123         /// Note that at this time this method will additionally
124         /// perform type-checks of all exports.
load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result<TheWorld>125         pub fn load(
126             &self,
127             mut store: impl wasmtime::AsContextMut,
128             instance: &wasmtime::component::Instance,
129         ) -> wasmtime::Result<TheWorld> {
130             let _ = &mut store;
131             let _instance = instance;
132             let interface0 = self.interface0.load(&mut store, &_instance)?;
133             Ok(TheWorld { interface0 })
134         }
135     }
136     impl TheWorld {
137         /// Convenience wrapper around [`TheWorldPre::new`] and
138         /// [`TheWorldPre::instantiate`].
instantiate<_T>( store: impl wasmtime::AsContextMut<Data = _T>, component: &wasmtime::component::Component, linker: &wasmtime::component::Linker<_T>, ) -> wasmtime::Result<TheWorld>139         pub fn instantiate<_T>(
140             store: impl wasmtime::AsContextMut<Data = _T>,
141             component: &wasmtime::component::Component,
142             linker: &wasmtime::component::Linker<_T>,
143         ) -> wasmtime::Result<TheWorld> {
144             let pre = linker.instantiate_pre(component)?;
145             TheWorldPre::new(pre)?.instantiate(store)
146         }
147         /// Convenience wrapper around [`TheWorldIndices::new`] and
148         /// [`TheWorldIndices::load`].
new( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result<TheWorld>149         pub fn new(
150             mut store: impl wasmtime::AsContextMut,
151             instance: &wasmtime::component::Instance,
152         ) -> wasmtime::Result<TheWorld> {
153             let indices = TheWorldIndices::new(&instance.instance_pre(&store))?;
154             indices.load(&mut store, instance)
155         }
156         /// Convenience wrapper around [`TheWorldPre::new`] and
157         /// [`TheWorldPre::instantiate_async`].
instantiate_async<_T>( store: impl wasmtime::AsContextMut<Data = _T>, component: &wasmtime::component::Component, linker: &wasmtime::component::Linker<_T>, ) -> wasmtime::Result<TheWorld> where _T: Send,158         pub async fn instantiate_async<_T>(
159             store: impl wasmtime::AsContextMut<Data = _T>,
160             component: &wasmtime::component::Component,
161             linker: &wasmtime::component::Linker<_T>,
162         ) -> wasmtime::Result<TheWorld>
163         where
164             _T: Send,
165         {
166             let pre = linker.instantiate_pre(component)?;
167             TheWorldPre::new(pre)?.instantiate_async(store).await
168         }
add_to_linker<T, D>( linker: &mut wasmtime::component::Linker<T>, host_getter: fn(&mut T) -> D::Data<'_>, ) -> wasmtime::Result<()> where D: foo::foo::anon::HostWithStore + Send, for<'a> D::Data<'a>: foo::foo::anon::Host + Send, T: 'static + Send,169         pub fn add_to_linker<T, D>(
170             linker: &mut wasmtime::component::Linker<T>,
171             host_getter: fn(&mut T) -> D::Data<'_>,
172         ) -> wasmtime::Result<()>
173         where
174             D: foo::foo::anon::HostWithStore + Send,
175             for<'a> D::Data<'a>: foo::foo::anon::Host + Send,
176             T: 'static + Send,
177         {
178             foo::foo::anon::add_to_linker::<T, D>(linker, host_getter)?;
179             Ok(())
180         }
foo_foo_anon(&self) -> &exports::foo::foo::anon::Guest181         pub fn foo_foo_anon(&self) -> &exports::foo::foo::anon::Guest {
182             &self.interface0
183         }
184     }
185 };
186 pub mod foo {
187     pub mod foo {
188         #[allow(clippy::all)]
189         pub mod anon {
190             #[allow(unused_imports)]
191             use wasmtime::component::__internal::Box;
192             #[derive(wasmtime::component::ComponentType)]
193             #[derive(wasmtime::component::Lift)]
194             #[derive(wasmtime::component::Lower)]
195             #[component(enum)]
196             #[derive(Clone, Copy, Eq, PartialEq)]
197             #[repr(u8)]
198             pub enum Error {
199                 #[component(name = "success")]
200                 Success,
201                 #[component(name = "failure")]
202                 Failure,
203             }
204             impl Error {
name(&self) -> &'static str205                 pub fn name(&self) -> &'static str {
206                     match self {
207                         Error::Success => "success",
208                         Error::Failure => "failure",
209                     }
210                 }
message(&self) -> &'static str211                 pub fn message(&self) -> &'static str {
212                     match self {
213                         Error::Success => "",
214                         Error::Failure => "",
215                     }
216                 }
217             }
218             impl core::fmt::Debug for Error {
fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result219                 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
220                     f.debug_struct("Error")
221                         .field("code", &(*self as i32))
222                         .field("name", &self.name())
223                         .field("message", &self.message())
224                         .finish()
225                 }
226             }
227             impl core::fmt::Display for Error {
fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result228                 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
229                     write!(f, "{} (error {})", self.name(), * self as i32)
230                 }
231             }
232             impl core::error::Error for Error {}
233             const _: () = {
234                 assert!(1 == < Error as wasmtime::component::ComponentType >::SIZE32);
235                 assert!(1 == < Error as wasmtime::component::ComponentType >::ALIGN32);
236             };
237             pub trait HostWithStore: wasmtime::component::HasData + Send {}
238             impl<_T: ?Sized> HostWithStore for _T
239             where
240                 _T: wasmtime::component::HasData + Send,
241             {}
242             pub trait Host: Send {
option_test( &mut self, ) -> impl ::core::future::Future< Output = Result< Option<wasmtime::component::__internal::String>, Error, >, > + Send243                 fn option_test(
244                     &mut self,
245                 ) -> impl ::core::future::Future<
246                     Output = Result<
247                         Option<wasmtime::component::__internal::String>,
248                         Error,
249                     >,
250                 > + Send;
251             }
252             impl<_T: Host + ?Sized + Send> Host for &mut _T {
option_test( &mut self, ) -> impl ::core::future::Future< Output = Result< Option<wasmtime::component::__internal::String>, Error, >, > + Send253                 fn option_test(
254                     &mut self,
255                 ) -> impl ::core::future::Future<
256                     Output = Result<
257                         Option<wasmtime::component::__internal::String>,
258                         Error,
259                     >,
260                 > + Send {
261                     async move { Host::option_test(*self).await }
262                 }
263             }
add_to_linker<T, D>( linker: &mut wasmtime::component::Linker<T>, host_getter: fn(&mut T) -> D::Data<'_>, ) -> wasmtime::Result<()> where D: HostWithStore, for<'a> D::Data<'a>: Host, T: 'static + Send,264             pub fn add_to_linker<T, D>(
265                 linker: &mut wasmtime::component::Linker<T>,
266                 host_getter: fn(&mut T) -> D::Data<'_>,
267             ) -> wasmtime::Result<()>
268             where
269                 D: HostWithStore,
270                 for<'a> D::Data<'a>: Host,
271                 T: 'static + Send,
272             {
273                 let mut inst = linker.instance("foo:foo/anon")?;
274                 inst.func_wrap_async(
275                     "option-test",
276                     move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| {
277                         wasmtime::component::__internal::Box::new(async move {
278                             let host = &mut host_getter(caller.data_mut());
279                             let r = Host::option_test(host).await;
280                             Ok((r,))
281                         })
282                     },
283                 )?;
284                 Ok(())
285             }
286         }
287     }
288 }
289 pub mod exports {
290     pub mod foo {
291         pub mod foo {
292             #[allow(clippy::all)]
293             pub mod anon {
294                 #[allow(unused_imports)]
295                 use wasmtime::component::__internal::Box;
296                 #[derive(wasmtime::component::ComponentType)]
297                 #[derive(wasmtime::component::Lift)]
298                 #[derive(wasmtime::component::Lower)]
299                 #[component(enum)]
300                 #[derive(Clone, Copy, Eq, PartialEq)]
301                 #[repr(u8)]
302                 pub enum Error {
303                     #[component(name = "success")]
304                     Success,
305                     #[component(name = "failure")]
306                     Failure,
307                 }
308                 impl Error {
name(&self) -> &'static str309                     pub fn name(&self) -> &'static str {
310                         match self {
311                             Error::Success => "success",
312                             Error::Failure => "failure",
313                         }
314                     }
message(&self) -> &'static str315                     pub fn message(&self) -> &'static str {
316                         match self {
317                             Error::Success => "",
318                             Error::Failure => "",
319                         }
320                     }
321                 }
322                 impl core::fmt::Debug for Error {
fmt( &self, f: &mut core::fmt::Formatter<'_>, ) -> core::fmt::Result323                     fn fmt(
324                         &self,
325                         f: &mut core::fmt::Formatter<'_>,
326                     ) -> core::fmt::Result {
327                         f.debug_struct("Error")
328                             .field("code", &(*self as i32))
329                             .field("name", &self.name())
330                             .field("message", &self.message())
331                             .finish()
332                     }
333                 }
334                 impl core::fmt::Display for Error {
fmt( &self, f: &mut core::fmt::Formatter<'_>, ) -> core::fmt::Result335                     fn fmt(
336                         &self,
337                         f: &mut core::fmt::Formatter<'_>,
338                     ) -> core::fmt::Result {
339                         write!(f, "{} (error {})", self.name(), * self as i32)
340                     }
341                 }
342                 impl core::error::Error for Error {}
343                 const _: () = {
344                     assert!(
345                         1 == < Error as wasmtime::component::ComponentType >::SIZE32
346                     );
347                     assert!(
348                         1 == < Error as wasmtime::component::ComponentType >::ALIGN32
349                     );
350                 };
351                 #[derive(Clone)]
352                 pub struct Guest {
353                     option_test: wasmtime::component::Func,
354                 }
355                 #[derive(Clone)]
356                 pub struct GuestIndices {
357                     option_test: wasmtime::component::ComponentExportIndex,
358                 }
359                 impl GuestIndices {
360                     /// Constructor for [`GuestIndices`] which takes a
361                     /// [`Component`](wasmtime::component::Component) as input and can be executed
362                     /// before instantiation.
363                     ///
364                     /// This constructor can be used to front-load string lookups to find exports
365                     /// within a component.
new<_T>( _instance_pre: &wasmtime::component::InstancePre<_T>, ) -> wasmtime::Result<GuestIndices>366                     pub fn new<_T>(
367                         _instance_pre: &wasmtime::component::InstancePre<_T>,
368                     ) -> wasmtime::Result<GuestIndices> {
369                         let instance = _instance_pre
370                             .component()
371                             .get_export_index(None, "foo:foo/anon")
372                             .ok_or_else(|| {
373                                 wasmtime::format_err!(
374                                     "no exported instance named `foo:foo/anon`"
375                                 )
376                             })?;
377                         let mut lookup = move |name| {
378                             _instance_pre
379                                 .component()
380                                 .get_export_index(Some(&instance), name)
381                                 .ok_or_else(|| {
382                                     wasmtime::format_err!(
383                                         "instance export `foo:foo/anon` does \
384                       not have export `{name}`"
385                                     )
386                                 })
387                         };
388                         let _ = &mut lookup;
389                         let option_test = lookup("option-test")?;
390                         Ok(GuestIndices { option_test })
391                     }
load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result<Guest>392                     pub fn load(
393                         &self,
394                         mut store: impl wasmtime::AsContextMut,
395                         instance: &wasmtime::component::Instance,
396                     ) -> wasmtime::Result<Guest> {
397                         let _instance = instance;
398                         let _instance_pre = _instance.instance_pre(&store);
399                         let _instance_type = _instance_pre.instance_type();
400                         let mut store = store.as_context_mut();
401                         let _ = &mut store;
402                         let option_test = *_instance
403                             .get_typed_func::<
404                                 (),
405                                 (
406                                     Result<
407                                         Option<wasmtime::component::__internal::String>,
408                                         Error,
409                                     >,
410                                 ),
411                             >(&mut store, &self.option_test)?
412                             .func();
413                         Ok(Guest { option_test })
414                     }
415                 }
416                 impl Guest {
call_option_test<S: wasmtime::AsContextMut>( &self, mut store: S, ) -> wasmtime::Result< Result<Option<wasmtime::component::__internal::String>, Error>, > where <S as wasmtime::AsContext>::Data: Send,417                     pub async fn call_option_test<S: wasmtime::AsContextMut>(
418                         &self,
419                         mut store: S,
420                     ) -> wasmtime::Result<
421                         Result<Option<wasmtime::component::__internal::String>, Error>,
422                     >
423                     where
424                         <S as wasmtime::AsContext>::Data: Send,
425                     {
426                         let callee = unsafe {
427                             wasmtime::component::TypedFunc::<
428                                 (),
429                                 (
430                                     Result<
431                                         Option<wasmtime::component::__internal::String>,
432                                         Error,
433                                     >,
434                                 ),
435                             >::new_unchecked(self.option_test)
436                         };
437                         let (ret0,) = callee
438                             .call_async(store.as_context_mut(), ())
439                             .await?;
440                         Ok(ret0)
441                     }
442                 }
443             }
444         }
445     }
446 }
447