This repository was archived by the owner on Sep 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfloats_concurrent.rs
More file actions
429 lines (429 loc) · 17.9 KB
/
floats_concurrent.rs
File metadata and controls
429 lines (429 loc) · 17.9 KB
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/// 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).
///
/// For more information see [`TheWorld`] as well.
pub struct TheWorldPre<T: 'static> {
instance_pre: wasmtime::component::InstancePre<T>,
indices: TheWorldIndices,
}
impl<T: 'static> Clone for TheWorldPre<T> {
fn clone(&self) -> Self {
Self {
instance_pre: self.instance_pre.clone(),
indices: self.indices.clone(),
}
}
}
impl<_T: 'static> 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 indices = TheWorldIndices::new(&instance_pre)?;
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 [`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 async fn instantiate_async(
&self,
mut store: impl wasmtime::AsContextMut<Data = _T>,
) -> wasmtime::Result<TheWorld>
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
/// `the-world`.
///
/// This is an implementation detail of [`TheWorldPre`] and can
/// be constructed if needed as well.
///
/// For more information see [`TheWorld`] as well.
#[derive(Clone)]
pub struct TheWorldIndices {
interface0: exports::foo::foo::floats::GuestIndices,
}
/// Auto-generated bindings for an instance a component which
/// implements the world `the-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
/// [`TheWorld::instantiate_async`] which only needs a
/// [`Store`], [`Component`], and [`Linker`].
///
/// * Alternatively you can create a [`TheWorldPre`] ahead of
/// time with a [`Component`] to front-load string lookups
/// of exports once instead of per-instantiation. This
/// method then uses [`TheWorldPre::instantiate_async`] to
/// create a [`TheWorld`].
///
/// * If you've instantiated the instance yourself already
/// then you can use [`TheWorld::new`].
///
/// 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 TheWorld {
interface0: exports::foo::foo::floats::Guest,
}
const _: () = {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
impl TheWorldIndices {
/// Creates a new copy of `TheWorldIndices` 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<_T>(
_instance_pre: &wasmtime::component::InstancePre<_T>,
) -> wasmtime::Result<Self> {
let _component = _instance_pre.component();
let _instance_type = _instance_pre.instance_type();
let interface0 = exports::foo::foo::floats::GuestIndices::new(
_instance_pre,
)?;
Ok(TheWorldIndices { interface0 })
}
/// Uses the indices stored in `self` to load an instance
/// of [`TheWorld`] 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<TheWorld> {
let _ = &mut store;
let _instance = instance;
let interface0 = self.interface0.load(&mut store, &_instance)?;
Ok(TheWorld { interface0 })
}
}
impl TheWorld {
/// Convenience wrapper around [`TheWorldPre::new`] and
/// [`TheWorldPre::instantiate_async`].
pub async fn instantiate_async<_T>(
store: impl wasmtime::AsContextMut<Data = _T>,
component: &wasmtime::component::Component,
linker: &wasmtime::component::Linker<_T>,
) -> wasmtime::Result<TheWorld>
where
_T: Send,
{
let pre = linker.instantiate_pre(component)?;
TheWorldPre::new(pre)?.instantiate_async(store).await
}
/// Convenience wrapper around [`TheWorldIndices::new`] and
/// [`TheWorldIndices::load`].
pub fn new(
mut store: impl wasmtime::AsContextMut,
instance: &wasmtime::component::Instance,
) -> wasmtime::Result<TheWorld> {
let indices = TheWorldIndices::new(&instance.instance_pre(&store))?;
indices.load(&mut store, instance)
}
pub fn add_to_linker<T, D>(
linker: &mut wasmtime::component::Linker<T>,
host_getter: fn(&mut T) -> D::Data<'_>,
) -> wasmtime::Result<()>
where
D: foo::foo::floats::HostConcurrent + Send,
for<'a> D::Data<'a>: foo::foo::floats::Host + Send,
T: 'static + Send,
{
foo::foo::floats::add_to_linker::<T, D>(linker, host_getter)?;
Ok(())
}
pub fn foo_foo_floats(&self) -> &exports::foo::foo::floats::Guest {
&self.interface0
}
}
};
pub mod foo {
pub mod foo {
#[allow(clippy::all)]
pub mod floats {
#[allow(unused_imports)]
use wasmtime::component::__internal::{anyhow, Box};
#[wasmtime::component::__internal::trait_variant_make(::core::marker::Send)]
pub trait HostConcurrent: wasmtime::component::HasData + Send {
fn f32_param<T: 'static>(
accessor: &wasmtime::component::Accessor<T, Self>,
x: f32,
) -> impl ::core::future::Future<Output = ()> + Send
where
Self: Sized;
fn f64_param<T: 'static>(
accessor: &wasmtime::component::Accessor<T, Self>,
x: f64,
) -> impl ::core::future::Future<Output = ()> + Send
where
Self: Sized;
fn f32_result<T: 'static>(
accessor: &wasmtime::component::Accessor<T, Self>,
) -> impl ::core::future::Future<Output = f32> + Send
where
Self: Sized;
fn f64_result<T: 'static>(
accessor: &wasmtime::component::Accessor<T, Self>,
) -> impl ::core::future::Future<Output = f64> + Send
where
Self: Sized;
}
#[wasmtime::component::__internal::trait_variant_make(::core::marker::Send)]
pub trait Host: Send {}
impl<_T: Host + ?Sized + Send> Host for &mut _T {}
pub fn add_to_linker<T, D>(
linker: &mut wasmtime::component::Linker<T>,
host_getter: fn(&mut T) -> D::Data<'_>,
) -> wasmtime::Result<()>
where
D: HostConcurrent,
for<'a> D::Data<'a>: Host,
T: 'static + Send,
{
let mut inst = linker.instance("foo:foo/floats")?;
inst.func_wrap_concurrent(
"f32-param",
move |caller: &wasmtime::component::Accessor<T>, (arg0,): (f32,)| {
wasmtime::component::__internal::Box::pin(async move {
let accessor = &caller.with_data(host_getter);
let r = <D as HostConcurrent>::f32_param(accessor, arg0)
.await;
Ok(r)
})
},
)?;
inst.func_wrap_concurrent(
"f64-param",
move |caller: &wasmtime::component::Accessor<T>, (arg0,): (f64,)| {
wasmtime::component::__internal::Box::pin(async move {
let accessor = &caller.with_data(host_getter);
let r = <D as HostConcurrent>::f64_param(accessor, arg0)
.await;
Ok(r)
})
},
)?;
inst.func_wrap_concurrent(
"f32-result",
move |caller: &wasmtime::component::Accessor<T>, (): ()| {
wasmtime::component::__internal::Box::pin(async move {
let accessor = &caller.with_data(host_getter);
let r = <D as HostConcurrent>::f32_result(accessor).await;
Ok((r,))
})
},
)?;
inst.func_wrap_concurrent(
"f64-result",
move |caller: &wasmtime::component::Accessor<T>, (): ()| {
wasmtime::component::__internal::Box::pin(async move {
let accessor = &caller.with_data(host_getter);
let r = <D as HostConcurrent>::f64_result(accessor).await;
Ok((r,))
})
},
)?;
Ok(())
}
}
}
}
pub mod exports {
pub mod foo {
pub mod foo {
#[allow(clippy::all)]
pub mod floats {
#[allow(unused_imports)]
use wasmtime::component::__internal::{anyhow, Box};
pub struct Guest {
f32_param: wasmtime::component::Func,
f64_param: wasmtime::component::Func,
f32_result: wasmtime::component::Func,
f64_result: wasmtime::component::Func,
}
#[derive(Clone)]
pub struct GuestIndices {
f32_param: wasmtime::component::ComponentExportIndex,
f64_param: wasmtime::component::ComponentExportIndex,
f32_result: wasmtime::component::ComponentExportIndex,
f64_result: 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<_T>(
_instance_pre: &wasmtime::component::InstancePre<_T>,
) -> wasmtime::Result<GuestIndices> {
let instance = _instance_pre
.component()
.get_export_index(None, "foo:foo/floats")
.ok_or_else(|| {
anyhow::anyhow!(
"no exported instance named `foo:foo/floats`"
)
})?;
let mut lookup = move |name| {
_instance_pre
.component()
.get_export_index(Some(&instance), name)
.ok_or_else(|| {
anyhow::anyhow!(
"instance export `foo:foo/floats` does \
not have export `{name}`"
)
})
};
let _ = &mut lookup;
let f32_param = lookup("f32-param")?;
let f64_param = lookup("f64-param")?;
let f32_result = lookup("f32-result")?;
let f64_result = lookup("f64-result")?;
Ok(GuestIndices {
f32_param,
f64_param,
f32_result,
f64_result,
})
}
pub fn load(
&self,
mut store: impl wasmtime::AsContextMut,
instance: &wasmtime::component::Instance,
) -> wasmtime::Result<Guest> {
let _instance = instance;
let _instance_pre = _instance.instance_pre(&store);
let _instance_type = _instance_pre.instance_type();
let mut store = store.as_context_mut();
let _ = &mut store;
let f32_param = *_instance
.get_typed_func::<(f32,), ()>(&mut store, &self.f32_param)?
.func();
let f64_param = *_instance
.get_typed_func::<(f64,), ()>(&mut store, &self.f64_param)?
.func();
let f32_result = *_instance
.get_typed_func::<(), (f32,)>(&mut store, &self.f32_result)?
.func();
let f64_result = *_instance
.get_typed_func::<(), (f64,)>(&mut store, &self.f64_result)?
.func();
Ok(Guest {
f32_param,
f64_param,
f32_result,
f64_result,
})
}
}
impl Guest {
pub async fn call_f32_param<_T, _D>(
&self,
accessor: &wasmtime::component::Accessor<_T, _D>,
arg0: f32,
) -> wasmtime::Result<()>
where
_T: Send,
_D: wasmtime::component::HasData,
{
let callee = unsafe {
wasmtime::component::TypedFunc::<
(f32,),
(),
>::new_unchecked(self.f32_param)
};
let () = callee.call_concurrent(accessor, (arg0,)).await?;
Ok(())
}
pub async fn call_f64_param<_T, _D>(
&self,
accessor: &wasmtime::component::Accessor<_T, _D>,
arg0: f64,
) -> wasmtime::Result<()>
where
_T: Send,
_D: wasmtime::component::HasData,
{
let callee = unsafe {
wasmtime::component::TypedFunc::<
(f64,),
(),
>::new_unchecked(self.f64_param)
};
let () = callee.call_concurrent(accessor, (arg0,)).await?;
Ok(())
}
pub async fn call_f32_result<_T, _D>(
&self,
accessor: &wasmtime::component::Accessor<_T, _D>,
) -> wasmtime::Result<f32>
where
_T: Send,
_D: wasmtime::component::HasData,
{
let callee = unsafe {
wasmtime::component::TypedFunc::<
(),
(f32,),
>::new_unchecked(self.f32_result)
};
let (ret0,) = callee.call_concurrent(accessor, ()).await?;
Ok(ret0)
}
pub async fn call_f64_result<_T, _D>(
&self,
accessor: &wasmtime::component::Accessor<_T, _D>,
) -> wasmtime::Result<f64>
where
_T: Send,
_D: wasmtime::component::HasData,
{
let callee = unsafe {
wasmtime::component::TypedFunc::<
(),
(f64,),
>::new_unchecked(self.f64_result)
};
let (ret0,) = callee.call_concurrent(accessor, ()).await?;
Ok(ret0)
}
}
}
}
}
}