1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/// Auto-generated bindings for a pre-instantiated version of a
/// component which implements the world `the-world`.
///
/// This structure is created through [`TheWorldPre::new`] which
/// takes a [`InstancePre`](wasmtime::component::InstancePre) that
/// has been created through a [`Linker`](wasmtime::component::Linker).
pub struct TheWorldPre<T> {
instance_pre: wasmtime::component::InstancePre<T>,
interface0: exports::foo::foo::strings::GuestPre,
}
impl<T> Clone for TheWorldPre<T> {
fn clone(&self) -> Self {
Self {
instance_pre: self.instance_pre.clone(),
interface0: self.interface0.clone(),
}
}
}
/// Auto-generated bindings for an instance a component which
/// implements the world `the-world`.
///
/// This structure is created through either
/// [`TheWorld::instantiate`] or by first creating
/// a [`TheWorldPre`] followed by using
/// [`TheWorldPre::instantiate`].
pub struct TheWorld {
interface0: exports::foo::foo::strings::Guest,
}
const _: () = {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
impl<_T> TheWorldPre<_T> {
/// Creates a new copy of `TheWorldPre` 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<Self> {
let _component = instance_pre.component();
let interface0 = exports::foo::foo::strings::GuestPre::new(_component)?;
Ok(TheWorldPre {
instance_pre,
interface0,
})
}
/// Instantiates a new instance of [`TheWorld`] 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 fn instantiate(
&self,
mut store: impl wasmtime::AsContextMut<Data = _T>,
) -> wasmtime::Result<TheWorld> {
let mut store = store.as_context_mut();
let _instance = self.instance_pre.instantiate(&mut store)?;
let interface0 = self.interface0.load(&mut store, &_instance)?;
Ok(TheWorld { interface0 })
}
pub fn engine(&self) -> &wasmtime::Engine {
self.instance_pre.engine()
}
pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> {
&self.instance_pre
}
}
impl TheWorld {
/// Convenience wrapper around [`TheWorldPre::new`] and
/// [`TheWorldPre::instantiate`].
pub fn instantiate<_T>(
mut store: impl wasmtime::AsContextMut<Data = _T>,
component: &wasmtime::component::Component,
linker: &wasmtime::component::Linker<_T>,
) -> wasmtime::Result<TheWorld> {
let pre = linker.instantiate_pre(component)?;
TheWorldPre::new(pre)?.instantiate(store)
}
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: foo::foo::strings::Host,
{
foo::foo::strings::add_to_linker(linker, get)?;
Ok(())
}
pub fn foo_foo_strings(&self) -> &exports::foo::foo::strings::Guest {
&self.interface0
}
}
};
pub mod foo {
pub mod foo {
#[allow(clippy::all)]
pub mod strings {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
pub trait Host {
fn a(&mut self, x: wasmtime::component::__internal::String) -> ();
fn b(&mut self) -> wasmtime::component::__internal::String;
fn c(
&mut self,
a: wasmtime::component::__internal::String,
b: wasmtime::component::__internal::String,
) -> wasmtime::component::__internal::String;
}
pub trait GetHost<
T,
>: Fn(T) -> <Self as GetHost<T>>::Host + Send + Sync + Copy + 'static {
type Host: Host;
}
impl<F, T, O> GetHost<T> for F
where
F: Fn(T) -> O + Send + Sync + Copy + 'static,
O: Host,
{
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<()> {
let mut inst = linker.instance("foo:foo/strings")?;
inst.func_wrap(
"a",
move |
mut caller: wasmtime::StoreContextMut<'_, T>,
(arg0,): (wasmtime::component::__internal::String,)|
{
let host = &mut host_getter(caller.data_mut());
let r = Host::a(host, arg0);
Ok(r)
},
)?;
inst.func_wrap(
"b",
move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| {
let host = &mut host_getter(caller.data_mut());
let r = Host::b(host);
Ok((r,))
},
)?;
inst.func_wrap(
"c",
move |
mut caller: wasmtime::StoreContextMut<'_, T>,
(
arg0,
arg1,
): (
wasmtime::component::__internal::String,
wasmtime::component::__internal::String,
)|
{
let host = &mut host_getter(caller.data_mut());
let r = Host::c(host, arg0, arg1);
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,
{
add_to_linker_get_host(linker, get)
}
impl<_T: Host + ?Sized> Host for &mut _T {
fn a(&mut self, x: wasmtime::component::__internal::String) -> () {
Host::a(*self, x)
}
fn b(&mut self) -> wasmtime::component::__internal::String {
Host::b(*self)
}
fn c(
&mut self,
a: wasmtime::component::__internal::String,
b: wasmtime::component::__internal::String,
) -> wasmtime::component::__internal::String {
Host::c(*self, a, b)
}
}
}
}
}
pub mod exports {
pub mod foo {
pub mod foo {
#[allow(clippy::all)]
pub mod strings {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
pub struct Guest {
a: wasmtime::component::Func,
b: wasmtime::component::Func,
c: wasmtime::component::Func,
}
#[derive(Clone)]
pub struct GuestPre {
a: wasmtime::component::ComponentExportIndex,
b: wasmtime::component::ComponentExportIndex,
c: wasmtime::component::ComponentExportIndex,
}
impl GuestPre {
pub fn new(
component: &wasmtime::component::Component,
) -> wasmtime::Result<GuestPre> {
let _component = component;
let (_, instance) = component
.export_index(None, "foo:foo/strings")
.ok_or_else(|| {
anyhow::anyhow!(
"no exported instance named `foo:foo/strings`"
)
})?;
let _lookup = |name: &str| {
_component
.export_index(Some(&instance), name)
.map(|p| p.1)
.ok_or_else(|| {
anyhow::anyhow!(
"instance export `foo:foo/strings` does \
not have export `{name}`"
)
})
};
let a = _lookup("a")?;
let b = _lookup("b")?;
let c = _lookup("c")?;
Ok(GuestPre { a, b, c })
}
pub fn load(
&self,
mut store: impl wasmtime::AsContextMut,
instance: &wasmtime::component::Instance,
) -> wasmtime::Result<Guest> {
let mut store = store.as_context_mut();
let _ = &mut store;
let _instance = instance;
let a = *_instance
.get_typed_func::<(&str,), ()>(&mut store, &self.a)?
.func();
let b = *_instance
.get_typed_func::<
(),
(wasmtime::component::__internal::String,),
>(&mut store, &self.b)?
.func();
let c = *_instance
.get_typed_func::<
(&str, &str),
(wasmtime::component::__internal::String,),
>(&mut store, &self.c)?
.func();
Ok(Guest { a, b, c })
}
}
impl Guest {
pub fn call_a<S: wasmtime::AsContextMut>(
&self,
mut store: S,
arg0: &str,
) -> wasmtime::Result<()> {
let callee = unsafe {
wasmtime::component::TypedFunc::<
(&str,),
(),
>::new_unchecked(self.a)
};
let () = callee.call(store.as_context_mut(), (arg0,))?;
callee.post_return(store.as_context_mut())?;
Ok(())
}
pub fn call_b<S: wasmtime::AsContextMut>(
&self,
mut store: S,
) -> wasmtime::Result<wasmtime::component::__internal::String> {
let callee = unsafe {
wasmtime::component::TypedFunc::<
(),
(wasmtime::component::__internal::String,),
>::new_unchecked(self.b)
};
let (ret0,) = callee.call(store.as_context_mut(), ())?;
callee.post_return(store.as_context_mut())?;
Ok(ret0)
}
pub fn call_c<S: wasmtime::AsContextMut>(
&self,
mut store: S,
arg0: &str,
arg1: &str,
) -> wasmtime::Result<wasmtime::component::__internal::String> {
let callee = unsafe {
wasmtime::component::TypedFunc::<
(&str, &str),
(wasmtime::component::__internal::String,),
>::new_unchecked(self.c)
};
let (ret0,) = callee.call(store.as_context_mut(), (arg0, arg1))?;
callee.post_return(store.as_context_mut())?;
Ok(ret0)
}
}
}
}
}
}