1use crate::tunables::Tunables;
4use crate::{Artifact, DeserializeError};
5use loupe::MemoryUsage;
6use memmap2::Mmap;
7use std::path::Path;
8use std::sync::atomic::{AtomicUsize, Ordering::SeqCst};
9use std::sync::Arc;
10use wasmer_compiler::{CompileError, Target};
11use wasmer_types::FunctionType;
12use wasmer_vm::{VMCallerCheckedAnyfunc, VMFuncRef, VMSharedSignatureIndex};
13
14pub trait Engine: MemoryUsage {
21 fn target(&self) -> &Target;
23
24 fn register_signature(&self, func_type: &FunctionType) -> VMSharedSignatureIndex;
26
27 fn register_function_metadata(&self, func_data: VMCallerCheckedAnyfunc) -> VMFuncRef;
29
30 fn lookup_signature(&self, sig: VMSharedSignatureIndex) -> Option<FunctionType>;
32
33 fn validate(&self, binary: &[u8]) -> Result<(), CompileError>;
35
36 fn compile(
38 &self,
39 binary: &[u8],
40 tunables: &dyn Tunables,
41 ) -> Result<Arc<dyn Artifact>, CompileError>;
42
43 unsafe fn deserialize(&self, bytes: &[u8]) -> Result<Arc<dyn Artifact>, DeserializeError>;
49
50 unsafe fn deserialize_from_file(
56 &self,
57 file_ref: &Path,
58 ) -> Result<Arc<dyn Artifact>, DeserializeError> {
59 let file = std::fs::File::open(file_ref)?;
60 let mmap = Mmap::map(&file)?;
61 self.deserialize(&mmap)
62 }
63
64 fn id(&self) -> &EngineId;
70
71 fn cloned(&self) -> Arc<dyn Engine + Send + Sync>;
73}
74
75#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, MemoryUsage)]
76#[repr(transparent)]
77pub struct EngineId {
79 id: usize,
80}
81
82impl EngineId {
83 pub fn id(&self) -> String {
85 format!("{}", &self.id)
86 }
87}
88
89impl Clone for EngineId {
90 fn clone(&self) -> Self {
91 Self::default()
92 }
93}
94
95impl Default for EngineId {
96 fn default() -> Self {
97 static NEXT_ID: AtomicUsize = AtomicUsize::new(0);
98 Self {
99 id: NEXT_ID.fetch_add(1, SeqCst),
100 }
101 }
102}