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
|
/// Auto-generated bindings for a pre-instantiated version of a
/// component which implements the world `d`.
///
/// This structure is created through [`DPre::new`] which
/// takes a [`InstancePre`](wasmtime::component::InstancePre) that
/// has been created through a [`Linker`](wasmtime::component::Linker).
///
/// For more information see [`D`] as well.
pub struct DPre<T> {
instance_pre: wasmtime::component::InstancePre<T>,
indices: DIndices,
}
impl<T> Clone for DPre<T> {
fn clone(&self) -> Self {
Self {
instance_pre: self.instance_pre.clone(),
indices: self.indices.clone(),
}
}
}
impl<_T> DPre<_T> {
/// Creates a new copy of `DPre` 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 = DIndices::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 [`D`] 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<D> {
let mut store = store.as_context_mut();
let instance = self.instance_pre.instantiate(&mut store)?;
self.indices.load(&mut store, &instance)
}
}
/// Auto-generated bindings for index of the exports of
/// `d`.
///
/// This is an implementation detail of [`DPre`] and can
/// be constructed if needed as well.
///
/// For more information see [`D`] as well.
#[derive(Clone)]
pub struct DIndices {}
/// Auto-generated bindings for an instance a component which
/// implements the world `d`.
///
/// 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
/// [`D::instantiate`] which only needs a
/// [`Store`], [`Component`], and [`Linker`].
///
/// * Alternatively you can create a [`DPre`] ahead of
/// time with a [`Component`] to front-load string lookups
/// of exports once instead of per-instantiation. This
/// method then uses [`DPre::instantiate`] to
/// create a [`D`].
///
/// * If you've instantiated the instance yourself already
/// then you can use [`D::new`].
///
/// * You can also access the guts of instantiation through
/// [`DIndices::new_instance`] followed
/// by [`DIndices::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 D {}
const _: () = {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
impl DIndices {
/// Creates a new copy of `DIndices` 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<Self> {
let _component = component;
Ok(DIndices {})
}
/// Creates a new instance of [`DIndices`] from an
/// instantiated component.
///
/// This method of creating a [`D`] will perform string
/// lookups for all exports when this method is called. This
/// will only succeed if the provided instance matches the
/// requirements of [`D`].
pub fn new_instance(
mut store: impl wasmtime::AsContextMut,
instance: &wasmtime::component::Instance,
) -> wasmtime::Result<Self> {
let _instance = instance;
Ok(DIndices {})
}
/// Uses the indices stored in `self` to load an instance
/// of [`D`] 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<D> {
let _instance = instance;
Ok(D {})
}
}
impl D {
/// Convenience wrapper around [`DPre::new`] and
/// [`DPre::instantiate`].
pub fn instantiate<_T>(
mut store: impl wasmtime::AsContextMut<Data = _T>,
component: &wasmtime::component::Component,
linker: &wasmtime::component::Linker<_T>,
) -> wasmtime::Result<D> {
let pre = linker.instantiate_pre(component)?;
DPre::new(pre)?.instantiate(store)
}
/// Convenience wrapper around [`DIndices::new_instance`] and
/// [`DIndices::load`].
pub fn new(
mut store: impl wasmtime::AsContextMut,
instance: &wasmtime::component::Instance,
) -> wasmtime::Result<D> {
let indices = DIndices::new_instance(&mut store, instance)?;
indices.load(store, instance)
}
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::a::Host + foo::foo::b::Host + foo::foo::c::Host + d::Host,
{
foo::foo::a::add_to_linker(linker, get)?;
foo::foo::b::add_to_linker(linker, get)?;
foo::foo::c::add_to_linker(linker, get)?;
d::add_to_linker(linker, get)?;
Ok(())
}
}
};
pub mod foo {
pub mod foo {
#[allow(clippy::all)]
pub mod a {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
#[derive(wasmtime::component::ComponentType)]
#[derive(wasmtime::component::Lift)]
#[derive(wasmtime::component::Lower)]
#[component(record)]
#[derive(Clone, Copy)]
pub struct Foo {}
impl core::fmt::Debug for Foo {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Foo").finish()
}
}
const _: () = {
assert!(0 == < Foo as wasmtime::component::ComponentType >::SIZE32);
assert!(1 == < Foo as wasmtime::component::ComponentType >::ALIGN32);
};
pub trait Host {
fn a(&mut self) -> Foo;
}
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/a")?;
inst.func_wrap(
"a",
move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| {
let host = &mut host_getter(caller.data_mut());
let r = Host::a(host);
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) -> Foo {
Host::a(*self)
}
}
}
#[allow(clippy::all)]
pub mod b {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
pub type Foo = super::super::super::foo::foo::a::Foo;
const _: () = {
assert!(0 == < Foo as wasmtime::component::ComponentType >::SIZE32);
assert!(1 == < Foo as wasmtime::component::ComponentType >::ALIGN32);
};
pub trait Host {
fn a(&mut self) -> Foo;
}
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/b")?;
inst.func_wrap(
"a",
move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| {
let host = &mut host_getter(caller.data_mut());
let r = Host::a(host);
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) -> Foo {
Host::a(*self)
}
}
}
#[allow(clippy::all)]
pub mod c {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
pub type Foo = super::super::super::foo::foo::b::Foo;
const _: () = {
assert!(0 == < Foo as wasmtime::component::ComponentType >::SIZE32);
assert!(1 == < Foo as wasmtime::component::ComponentType >::ALIGN32);
};
pub trait Host {
fn a(&mut self) -> Foo;
}
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/c")?;
inst.func_wrap(
"a",
move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| {
let host = &mut host_getter(caller.data_mut());
let r = Host::a(host);
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) -> Foo {
Host::a(*self)
}
}
}
}
}
#[allow(clippy::all)]
pub mod d {
#[allow(unused_imports)]
use wasmtime::component::__internal::anyhow;
pub type Foo = super::foo::foo::c::Foo;
const _: () = {
assert!(0 == < Foo as wasmtime::component::ComponentType >::SIZE32);
assert!(1 == < Foo as wasmtime::component::ComponentType >::ALIGN32);
};
pub trait Host {
fn b(&mut self) -> Foo;
}
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("d")?;
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,))
},
)?;
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 b(&mut self) -> Foo {
Host::b(*self)
}
}
}
|