-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwasm_engine.rs
847 lines (777 loc) · 28.1 KB
/
wasm_engine.rs
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
use std::collections::HashMap;
use std::error::Error;
use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
use std::path::PathBuf;
#[cfg(feature = "epoch-timeout")]
use std::{thread, time};
use anyhow::{Result as AnyResult, bail};
use cfg_if::cfg_if;
use godot::classes::FileAccess;
use godot::prelude::*;
use once_cell::sync::OnceCell;
use parking_lot::RwLock;
use tracing::{Level, debug, debug_span, error, info, info_span, instrument, trace};
#[cfg(feature = "component-model")]
use wasmtime::component::Component;
use wasmtime::{Config, Engine, ExternType, Module, Precompiled, ResourcesRequired};
use crate::godot_util::{PhantomProperty, from_var_any, variant_to_option};
use crate::wasm_instance::WasmInstance;
#[cfg(feature = "epoch-timeout")]
use crate::wasm_util::EPOCH_INTERVAL;
use crate::wasm_util::from_signature;
use crate::{bail_with_site, display_option, site_context, variant_dispatch};
cfg_if! {
if #[cfg(feature = "epoch-timeout")] {
type EngineData = (Engine, Option<thread::JoinHandle<()>>);
} else {
type EngineData = Engine;
}
}
static ENGINE: RwLock<Option<EngineData>> = RwLock::new(None);
#[instrument(level = Level::TRACE, err)]
pub fn get_engine() -> Result<Engine, EngineUninitError> {
cfg_if! {
if #[cfg(feature = "epoch-timeout")] {
let ret = match &*ENGINE.read() {
Some((e, _)) => Some(e.clone()),
_ => None,
};
} else {
let ret = &*ENGINE.read() {
Some(e) => Some(e.clone()),
_ => None,
};
}
}
ret.ok_or(EngineUninitError)
}
#[instrument]
pub fn init_engine() {
let mut guard = ENGINE.write();
if guard.is_none() {
eprintln!("Initializing godot-wasm engine");
let mut config = Config::new();
config
.cranelift_opt_level(wasmtime::OptLevel::Speed)
.cranelift_nan_canonicalization(cfg!(feature = "deterministic-wasm"))
.epoch_interruption(true)
.debug_info(true)
.wasm_reference_types(true)
.wasm_function_references(true)
.wasm_gc(true)
.wasm_simd(true)
.wasm_relaxed_simd(true)
.relaxed_simd_deterministic(cfg!(feature = "deterministic-wasm"))
.wasm_tail_call(true)
.wasm_bulk_memory(true)
.wasm_multi_value(true)
.wasm_multi_memory(true)
.wasm_memory64(true)
.wasm_threads(true)
.wasm_custom_page_sizes(true)
.wasm_extended_const(true)
.wasm_wide_arithmetic(true);
#[cfg(feature = "component-model")]
config.wasm_component_model(true);
info!(?config, "Engine configuration");
let e = match Engine::new(&config) {
Ok(v) => v,
Err(e) => {
error!(err = %e, "Failed to construct engine");
panic!("Failed to construct engine: {e}");
}
};
cfg_if! {
if #[cfg(feature = "epoch-timeout")] {
*guard = Some((e, None));
} else {
*guard = Some(e);
}
}
}
}
#[instrument]
pub fn deinit_engine() {
eprintln!("Deinitializing godot-wasm engine");
cfg_if! {
if #[cfg(feature = "epoch-timeout")] {
if let Some((engine, Some(handle))) = ENGINE.write().take() {
let _s = info_span!("deinit_engine.epoch").entered();
// Make sure epoch will time out.
for _ in 0..100 {
engine.increment_epoch();
}
drop(engine);
debug!("Joining epoch thread");
handle.join().unwrap();
}
} else {
*ENGINE.write() = None;
}
}
}
#[cfg(feature = "epoch-timeout")]
#[instrument(level = Level::DEBUG, err)]
pub fn start_epoch() -> AnyResult<()> {
#[instrument]
fn epoch_thread() {
let mut timeout = time::Instant::now();
loop {
if let Some(d) = (timeout + EPOCH_INTERVAL).checked_duration_since(time::Instant::now())
{
trace!(duration = ?d, "Epoch thread sleeping");
thread::sleep(d);
}
let Some(guard) = ENGINE.try_read() else {
break;
};
let Some((engine, _)) = guard.as_ref() else {
break;
};
let t = time::Instant::now();
while timeout < t {
trace!("Epoch");
engine.increment_epoch();
timeout += EPOCH_INTERVAL;
}
}
}
let mut guard = ENGINE.write();
let (_, handle) = guard.as_mut().ok_or(EngineUninitError)?;
if handle.is_none() {
let _s = info_span!("start_epoch.thread").entered();
let builder = thread::Builder::new().name("epoch-aux".to_string());
*handle = Some(builder.spawn(epoch_thread)?);
}
Ok(())
}
pub struct EngineUninitError;
impl Debug for EngineUninitError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
write!(f, "engine is not yet initialized")
}
}
impl Display for EngineUninitError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
Debug::fmt(self, f)
}
}
impl Error for EngineUninitError {}
#[derive(GodotClass)]
#[class(base=Resource, init, tool)]
/// Class for WebAssembly module.
///
/// This class load and compile WebAssembly binary into memory.
/// You only need to do it once since instantiation is very cheap.
/// It inherits `Resource` and can be (de)serialized.
/// **However,** be careful deserializing from untrusted source as compiled module
/// has _minimal_ validation and can be **exploited** to run arbitrary code.
///
/// It is also a `tool` class, allowing editor code can use WebAssembly too.
///
/// 📌 Use `initialize()` to properly initialize object.
/// **Uninitialized object should not be used.**
/// ```
pub struct WasmModule {
base: Base<Resource>,
data: OnceCell<ModuleData>,
/// Property is `true` if module is a core module.
#[var(get = get_is_core_module, usage_flags = [EDITOR, READ_ONLY])]
#[allow(dead_code)]
is_core_module: PhantomProperty<bool>,
/// Property is `true` if module is a component.
#[var(get = get_is_component, usage_flags = [EDITOR, READ_ONLY])]
#[allow(dead_code)]
is_component: PhantomProperty<bool>,
/// Name of the module, if any.
#[var(get = get_name, usage_flags = [EDITOR, READ_ONLY])]
#[allow(dead_code)]
name: PhantomProperty<GString>,
/// **⚠ THIS PROPERTY IS HIDDEN AND SHOULD NOT BE USED DIRECTLY**
///
/// Serialized module data. It is only used for storage only and should not be used in code.
#[var(get = serialize, set = deserialize_bytes, usage_flags = [STORAGE, INTERNAL])]
#[allow(dead_code)]
bytes_data: PhantomProperty<PackedByteArray>,
_bytes_data: OnceCell<PackedByteArray>,
}
impl Debug for WasmModule {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
f.debug_tuple("WasmModule").field(&self.base).finish()
}
}
pub struct ModuleData {
name: GString,
pub module: ModuleType,
pub imports: HashMap<String, Gd<WasmModule>>,
}
#[derive(Clone)]
pub enum ModuleType {
Core(Module),
#[cfg(feature = "component-model")]
Component(Component),
}
impl Debug for ModuleType {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
match self {
Self::Core(v) => f.debug_tuple("Core").field(v).finish(),
#[cfg(feature = "component-model")]
Self::Component(_) => f.debug_tuple("Component").finish_non_exhaustive(),
}
}
}
impl ModuleType {
pub fn get_core(&self) -> AnyResult<&Module> {
#[allow(irrefutable_let_patterns)]
if let Self::Core(m) = self {
Ok(m)
} else {
bail!("Module is not a core module")
}
}
#[cfg(feature = "component-model")]
pub fn get_component(&self) -> AnyResult<&Component> {
if let Self::Component(m) = self {
Ok(m)
} else {
bail!("Module is not a component")
}
}
}
impl WasmModule {
pub fn get_data(&self) -> AnyResult<&ModuleData> {
match self.data.get() {
Some(data) => Ok(data),
None => bail_with_site!("Uninitialized module"),
}
}
pub fn unwrap_data<F, R>(&self, f: F) -> Option<R>
where
F: FnOnce(&ModuleData) -> AnyResult<R>,
{
match self.get_data().and_then(f) {
Ok(v) => Some(v),
Err(e) => {
/*
let s = format!("{:?}", e);
error(
e.downcast_ref::<Site>()
.copied()
.unwrap_or_else(|| godot_site!()),
s,
);
*/
godot_error!("{:?}", e);
None
}
}
}
#[instrument(skip(bytes), fields(bytes.len = bytes.len()), ret)]
fn load_module(bytes: &[u8]) -> AnyResult<ModuleType> {
let engine = get_engine()?;
let bytes = site_context!(wat::parse_bytes(bytes))?;
#[cfg(feature = "component-model")]
if wasmtime::wasmparser::Parser::is_component(&bytes) {
return site_context!(
Component::from_binary(&engine, &bytes).map(ModuleType::Component)
);
}
site_context!(Module::from_binary(&engine, &bytes).map(ModuleType::Core))
}
#[instrument(skip(imports), fields(imports = %display_option(&imports)), ret)]
fn process_deps_map(
module: &ModuleType,
imports: Option<Dictionary>,
) -> AnyResult<HashMap<String, Gd<WasmModule>>> {
let mut deps_map = HashMap::new();
let Some(imports) = imports else {
return Ok(deps_map);
};
#[allow(irrefutable_let_patterns)]
if let ModuleType::Core(_module) = &module {
deps_map = imports
.iter_shared()
.map(|(k, v)| -> AnyResult<_> {
Ok((
site_context!(from_var_any::<String>(k))?,
site_context!(from_var_any::<Gd<WasmModule>>(v))?,
))
})
.collect::<AnyResult<_>>()?;
}
#[cfg(feature = "component-model")]
if let ModuleType::Component(_) = module {
if !imports.is_empty() {
bail_with_site!("Imports not supported with component yet");
}
}
Ok(deps_map)
}
fn name_from_module(module: &ModuleType) -> GString {
#[allow(unreachable_patterns)]
match module {
ModuleType::Core(m) => Some(m),
_ => None,
}
.and_then(|m| m.name())
.map_or_else(GString::new, GString::from)
}
#[instrument(skip(self, data, imports), ret(level = Level::DEBUG))]
fn _initialize(&self, data: Variant, imports: Option<Dictionary>) -> bool {
let r = self.data.get_or_try_init(move || -> AnyResult<_> {
let module = variant_dispatch!(data {
PACKED_BYTE_ARRAY => Self::load_module(data.as_slice())?,
STRING => Self::load_module(data.to_string().as_bytes())?,
OBJECT => match data
.try_cast::<FileAccess>()
.map_err(|v| v.try_cast::<WasmModule>())
{
Ok(v) => Self::load_module(v.get_buffer(v.get_length() as _).as_slice())?,
Err(Ok(v)) => v.bind().get_data()?.module.clone(),
Err(Err(v)) => bail_with_site!("Unknown module value {}", v),
},
_ => bail_with_site!("Unknown module value {}", data),
});
let imports = Self::process_deps_map(&module, imports)?;
Ok(ModuleData {
name: Self::name_from_module(&module),
module,
imports,
})
});
if let Err(e) = r {
godot_error!("{:?}", e);
false
} else {
true
}
}
#[instrument(skip(self, data, imports), fields(data.len = data.len()), ret(level = Level::DEBUG))]
fn _deserialize(&self, data: PackedByteArray, imports: Option<Dictionary>) -> bool {
let r = self.data.get_or_try_init(move || -> AnyResult<_> {
let engine = site_context!(get_engine())?;
let data = data.as_slice();
// SAFETY: Assume the supplied data is safe to deserialize.
let module = unsafe {
match engine.detect_precompiled(data) {
Some(Precompiled::Module) => {
ModuleType::Core(site_context!(Module::deserialize(&engine, data))?)
}
#[cfg(feature = "component-model")]
Some(Precompiled::Component) => {
ModuleType::Component(site_context!(Component::deserialize(&engine, data))?)
}
_ => bail_with_site!("Unsupported data content"),
}
};
let imports = Self::process_deps_map(&module, imports)?;
Ok(ModuleData {
name: Self::name_from_module(&module),
module,
imports,
})
});
if let Err(e) = r {
godot_error!("{:?}", e);
false
} else {
true
}
}
#[instrument(skip(self, imports), ret(level = Level::DEBUG))]
fn _deserialize_file(&self, path: String, imports: Option<Dictionary>) -> bool {
let r = self.data.get_or_try_init(move || -> AnyResult<_> {
let engine = site_context!(get_engine())?;
let path = PathBuf::from(path);
// SAFETY: Assume the supplied file is safe to deserialize.
let module = unsafe {
match site_context!(engine.detect_precompiled_file(&path))? {
Some(Precompiled::Module) => {
ModuleType::Core(site_context!(Module::deserialize_file(&engine, path))?)
}
#[cfg(feature = "component-model")]
Some(Precompiled::Component) => ModuleType::Component(site_context!(
Component::deserialize_file(&engine, path)
)?),
_ => bail_with_site!("Unsupported data content"),
}
};
let imports = Self::process_deps_map(&module, imports)?;
Ok(ModuleData {
name: Self::name_from_module(&module),
module,
imports,
})
});
if let Err(e) = r {
godot_error!("{:?}", e);
false
} else {
true
}
}
}
#[godot_api]
impl WasmModule {
/// Initialize and loads module.
///
/// **⚠ MUST BE CALLED FOR THE FIRST TIME AND ONLY ONCE.**
///
/// Returns itself if succeed, `null` otherwise.
///
/// Arguments:
/// - `data` : Can be one of these things:
/// - `PackedByteArray` containing WASM binary or WAT text data.
/// - `String` containing WAT text data.
/// - `FileAccess` with WASM file open.
/// - `WasmModule` (for cloning without recompiling).
/// - `import` : Maps name to other `WasmModule` to used as imports. Currently does not work with component.
///
/// Usage:
/// ```
/// var module := WasmModule.new().initialize("...", {})
///
/// if module == null:
/// # Cannot compile module
/// pass
/// ```
#[func]
#[instrument(level = Level::DEBUG, skip(data, imports))]
fn initialize(&self, data: Variant, imports: Dictionary) -> Option<Gd<WasmModule>> {
if self._initialize(data, Some(imports)) {
Some(self.to_gd())
} else {
None
}
}
/// Gets the module name, if exists.
#[func]
#[instrument(ret)]
fn get_name(&self) -> GString {
self.unwrap_data(|m| Ok(m.name.clone())).unwrap_or_default()
}
/// Returns `true` if module is a core module.
#[func]
#[instrument(ret)]
fn get_is_core_module(&self) -> bool {
self.unwrap_data(|m| Ok(matches!(m.module, ModuleType::Core(_))))
.unwrap_or_default()
}
/// Returns `true` if module is a component.
#[func]
#[instrument(ret)]
fn get_is_component(&self) -> bool {
cfg_if! {
if #[cfg(feature = "wasi-preview2")] {
self.unwrap_data(|m| Ok(matches!(m.module, ModuleType::Component(_)))).unwrap_or_default()
} else {
false
}
}
}
/// Gets all the module it imported.
#[func]
#[instrument]
fn get_imported_modules(&self) -> VariantArray {
self.unwrap_data(|m| {
Ok(VariantArray::from_iter(
m.imports.values().map(|v| v.clone().to_variant()),
))
})
.unwrap_or_default()
}
/// Deserialize compiled module data.
///
/// **⚠ DO NOT USE THIS WITH UNTRUSTED DATA**
#[func]
#[instrument(level = Level::DEBUG, skip(data, imports))]
fn deserialize(&self, data: PackedByteArray, imports: Dictionary) -> Option<Gd<WasmModule>> {
if self._deserialize(data, Some(imports)) {
Some(self.to_gd())
} else {
None
}
}
/// Deserialize file containing compiled module data.
///
/// **⚠ DO NOT USE THIS WITH UNTRUSTED DATA**
#[func]
#[instrument(level = Level::DEBUG, skip(imports))]
fn deserialize_file(&self, path: GString, imports: Dictionary) -> Option<Gd<WasmModule>> {
if self._deserialize_file(path.to_string(), Some(imports)) {
Some(self.to_gd())
} else {
None
}
}
/// Deserialize compiled module data.
///
/// **⚠ DO NOT USE THIS WITH UNTRUSTED DATA**
#[func]
#[instrument(level = Level::DEBUG, skip(data))]
fn deserialize_bytes(&self, data: PackedByteArray) {
if self._deserialize(data.clone(), None) {
let _ = self._bytes_data.set(data);
}
}
/// Serialize compiled module data.
///
/// Serialized data is very fast to load as no compilation step is needed.
/// But the data can only be deserialized with the same godot-wasm binary.
/// Whenever you upgrade module, make sure to reimport all `WasmModule`.
#[func]
#[instrument]
fn serialize(&self) -> PackedByteArray {
self._bytes_data
.get_or_try_init(|| {
self.unwrap_data(|m| {
let _s = debug_span!("serialize.inner").entered();
let r = match &m.module {
ModuleType::Core(m) => m.serialize(),
#[cfg(feature = "component-model")]
ModuleType::Component(m) => m.serialize(),
}?;
info!(len = r.len(), "Serialization success");
Ok(r)
})
.map(PackedByteArray::from)
.ok_or(())
})
.cloned()
.unwrap_or_default()
}
/// Gets exported functions.
///
/// The resulting dictionary is the function name as it's key,
/// with the value is a struct of the following:
/// - `params` : Array of parameter types.
/// - `results` : Array of result types.
#[func]
#[instrument]
fn get_exports(&self) -> Dictionary {
self.unwrap_data(|m| {
let _s = debug_span!("get_exports.inner").entered();
let mut ret = Dictionary::new();
let params_str = StringName::from(c"params");
let results_str = StringName::from(c"results");
for i in site_context!(m.module.get_core())?.exports() {
let ExternType::Func(f) = i.ty() else {
continue;
};
debug!(name = i.name(), "type" = %f, "Exported function");
let (p, r) = from_signature(&f);
ret.set(
i.name(),
[(params_str.clone(), p), (results_str.clone(), r)]
.into_iter()
.collect::<Dictionary>(),
);
}
Ok(ret)
})
.unwrap_or_default()
}
/// Gets host imports signature.
///
/// The resulting value is a mapping of module name, then function names,
/// of the following struct:
/// - `params` : Array of parameter types.
/// - `results` : Array of result types.
#[func]
#[instrument]
fn get_host_imports(&self) -> Dictionary {
self.unwrap_data(|m| {
let _s = debug_span!("get_host_imports.inner").entered();
let mut ret = Dictionary::new();
let params_str = StringName::from(c"params");
let results_str = StringName::from(c"results");
for i in site_context!(m.module.get_core())?.imports() {
let ExternType::Func(f) = i.ty() else {
continue;
};
if let Some(m) = m.imports.get(i.module()) {
match &m.bind().get_data()?.module {
ModuleType::Core(v) if v.get_export(i.name()).is_some() => {
debug!(module = ?m, name = i.name(), "type" = %f, "Imported function bound to another module");
continue;
}
#[cfg(feature = "component-model")]
ModuleType::Component(_) => {
bail_with_site!("Import {} is a component", i.module())
}
_ => (),
}
}
debug!(name = i.name(), "type" = %f, "Imported function");
let (p, r) = from_signature(&f);
let mut v = if let Some(v) = ret.get(i.module()) {
Dictionary::from_variant(&v)
} else {
let v = Dictionary::new();
ret.set(i.module(), v.clone());
v
};
v.set(
i.name(),
[(params_str.clone(), p), (results_str.clone(), r)]
.into_iter()
.collect::<Dictionary>(),
);
}
Ok(ret)
})
.unwrap_or_default()
}
/// Returns `true` if exported function extsts.
#[func]
#[instrument(ret)]
fn has_function(&self, name: StringName) -> bool {
self.unwrap_data(|m| {
Ok(matches!(
site_context!(m.module.get_core())?.get_export(&name.to_string()),
Some(ExternType::Func(_))
))
})
.unwrap_or_default()
}
/// Gets the signature of exported function.
#[func]
#[instrument]
fn get_signature(&self, name: StringName) -> Dictionary {
self.unwrap_data(|m| {
let _s = debug_span!("get_signature.inner").entered();
let Some(ExternType::Func(f)) =
site_context!(m.module.get_core())?.get_export(&name.to_string())
else {
bail_with_site!("No function named {}", name);
};
debug!(signature = %f);
let (p, r) = from_signature(&f);
Ok([
(StringName::from(c"params"), p),
(StringName::from(c"results"), r),
]
.into_iter()
.collect())
})
.unwrap_or_default()
}
/// Gets statistics about memories and tables required to instantiate this module (without imports).
///
/// You can use this for minimal checks against resource exhaustion.
#[func]
#[instrument(ret)]
fn get_resources_required(&self) -> Variant {
self.unwrap_data(|m| {
let _s = debug_span!("get_resources_required.inner").entered();
let v = match &m.module {
ModuleType::Core(m) => Some(m.resources_required()),
#[cfg(feature = "component-model")]
ModuleType::Component(m) => m.resources_required(),
};
let Some(ResourcesRequired {
num_memories,
max_initial_memory_size,
num_tables,
max_initial_table_size,
}) = v
else {
return Ok(Variant::nil());
};
Ok([
("num_memories", num_memories.to_variant()),
("num_tables", num_tables.to_variant()),
(
"max_initial_memory_size",
max_initial_memory_size.unwrap_or_default().to_variant(),
),
(
"max_initial_table_size",
max_initial_table_size.unwrap_or_default().to_variant(),
),
]
.into_iter()
.collect::<Dictionary>()
.to_variant())
})
.unwrap_or_default()
}
/// Gets statistics about memories and tables required to instantiate this module.
///
/// You can use this for minimal checks against resource exhaustion.
#[func]
#[instrument(ret)]
fn get_total_resources_required(&self) -> Variant {
#[instrument(level = Level::DEBUG, skip(module), fields(?module.module))]
fn get_res_module(module: &ModuleData) -> Option<ResourcesRequired> {
match &module.module {
ModuleType::Core(m) => Some(m.resources_required()),
#[cfg(feature = "component-model")]
ModuleType::Component(m) => m.resources_required(),
}
.into_iter()
.chain(module.imports.values().filter_map(|m| {
debug!(module = ?m, "Recurse into module");
m.bind().unwrap_data(|m| Ok(get_res_module(m))).flatten()
}))
.reduce(|a, b| ResourcesRequired {
num_memories: a.num_memories + b.num_memories,
num_tables: a.num_tables + b.num_tables,
max_initial_memory_size: a.max_initial_memory_size.max(b.max_initial_memory_size),
max_initial_table_size: a.max_initial_table_size.max(b.max_initial_table_size),
})
.inspect(|ret| {
debug!(
ret.num_memories,
ret.num_tables, ret.max_initial_memory_size, ret.max_initial_table_size
)
})
}
self.unwrap_data(|m| {
let _s = debug_span!("get_total_resources_required.inner").entered();
let Some(ResourcesRequired {
num_memories,
max_initial_memory_size,
num_tables,
max_initial_table_size,
}) = get_res_module(m)
else {
return Ok(Variant::nil());
};
Ok([
("num_memories", num_memories.to_variant()),
("num_tables", num_tables.to_variant()),
(
"max_initial_memory_size",
max_initial_memory_size.unwrap_or_default().to_variant(),
),
(
"max_initial_table_size",
max_initial_table_size.unwrap_or_default().to_variant(),
),
]
.into_iter()
.collect::<Dictionary>()
.to_variant())
})
.unwrap_or_default()
}
/// Instantiate module.
///
/// See `WasmInstance.initialize` for more info.
#[func]
fn instantiate(&self, host: Variant, config: Variant) -> Option<Gd<WasmInstance>> {
let Ok(host) = variant_to_option::<Dictionary>(host) else {
godot_error!("Host is not a dictionary!");
return None;
};
let config = if config.is_nil() { None } else { Some(config) };
let inst = WasmInstance::new_gd();
if inst.bind().initialize_(self.to_gd(), host, config) {
Some(inst)
} else {
godot_error!("Error instantiating");
None
}
}
}