Class: Wasmtime::Engine
- Inherits:
-
Object
- Object
- Wasmtime::Engine
- Defined in:
- ext/src/ruby_api/engine.rs
Overview
Represents a Wasmtime execution engine.
Class Method Summary collapse
Instance Method Summary collapse
-
#increment_epoch ⇒ nil
Manually increment the engine’s epoch.
-
#precompile_compatibility_key ⇒ String
If two engines have a matching #precompile_compatibility_key, then serialized modules from one engine can be deserialized by the other.
-
#precompile_component(wat_or_wasm) ⇒ String
AoT compile a WebAssembly text or WebAssembly binary component for later use.
-
#precompile_module(wat_or_wasm) ⇒ String
AoT compile a WebAssembly text or WebAssembly binary module for later use.
-
#start_epoch_interval(milliseconds) ⇒ nil
Starts a timer that will increment the engine’s epoch every
milliseconds
. -
#stop_epoch_interval ⇒ nil
Stops a previously started timer with #start_epoch_interval.
Class Method Details
.new(config = {}) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'ext/src/ruby_api/engine.rs', line 90
pub fn new(args: &[Value]) -> Result<Self, Error> {
let args = scan_args::scan_args::<(), (Option<Value>,), (), (), (), ()>(args)?;
let (config,) = args.optional;
let config = config.and_then(|v| if v.is_nil() { None } else { Some(v) });
let inner = match config {
Some(config) => {
let config = RHash::try_convert(config).and_then(hash_to_config)?;
EngineImpl::new(&config).map_err(|e| error!("{}", e))?
}
None => EngineImpl::new(&Config::default()).map_err(|e| error!("{}", e))?,
};
Ok(Self {
inner,
#[cfg(feature = "tokio")]
timer_task: Default::default(),
})
}
|
Instance Method Details
#increment_epoch ⇒ nil
Manually increment the engine’s epoch. Note: this cannot be used from a different thread while WebAssembly is running because the Global VM lock (GVL) is not released. Using #start_epoch_interval is recommended because it sidesteps the GVL.
155 156 157 |
# File 'ext/src/ruby_api/engine.rs', line 155
pub fn increment_epoch(&self) {
self.inner.increment_epoch();
}
|
#precompile_compatibility_key ⇒ String
If two engines have a matching #precompile_compatibility_key, then serialized modules from one engine can be deserialized by the other.
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'ext/src/ruby_api/engine.rs', line 202
pub fn precompile_compatibility_key(ruby: &Ruby, rb_self: Obj<Self>) -> Result<RString, Error> {
static ID: LazyId = LazyId::new("precompile_compatibility_key");
let ivar_id = LazyId::get_inner_with(&ID, ruby);
if let Ok(cached) = rb_self.ivar_get::<_, RString>(ivar_id) {
return Ok(cached);
}
let mut hasher = DefaultHasher::new();
let engine = rb_self.inner.clone();
engine.precompile_compatibility_hash().hash(&mut hasher);
let hex_encoded = format!("{:x}", hasher.finish());
let key = RString::new(&hex_encoded);
key.freeze();
rb_self.ivar_set(ivar_id, key)?;
Ok(key)
}
|
#precompile_component(wat_or_wasm) ⇒ String
AoT compile a WebAssembly text or WebAssembly binary component for later use.
The compiled component can be instantiated using Component::Component.deserialize.
189 190 191 192 193 194 195 |
# File 'ext/src/ruby_api/engine.rs', line 189
pub fn precompile_component(&self, wat_or_wasm: RString) -> Result<RString, Error> {
let (wat_or_wasm, _guard) = wat_or_wasm.as_locked_slice()?;
nogvl(|| self.inner.precompile_component(wat_or_wasm))
.map(|bytes| RString::from_slice(&bytes))
.map_err(|e| error!("{}", e.to_string()))
}
|
#precompile_module(wat_or_wasm) ⇒ String
AoT compile a WebAssembly text or WebAssembly binary module for later use.
The compiled module can be instantiated using Module.deserialize.
172 173 174 175 176 177 178 |
# File 'ext/src/ruby_api/engine.rs', line 172
pub fn precompile_module(&self, wat_or_wasm: RString) -> Result<RString, Error> {
let (wat_or_wasm, _guard) = wat_or_wasm.as_locked_slice()?;
nogvl(|| self.inner.precompile_module(wat_or_wasm))
.map(|bytes| RString::from_slice(&bytes))
.map_err(|e| error!("{}", e.to_string()))
}
|
#start_epoch_interval(milliseconds) ⇒ nil
Starts a timer that will increment the engine’s epoch every milliseconds
. Waits milliseconds
before incrementing for the first time.
If a prior timer was started, it will be stopped.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'ext/src/ruby_api/engine.rs', line 119
pub fn start_epoch_interval(&self, milliseconds: u64) {
self.stop_epoch_interval();
let engine = self.inner.clone();
let handle = TOKIO_RT.spawn(async move {
let tick_every = tokio::time::Duration::from_millis(milliseconds);
let mut interval = async_timer::Interval::platform_new(tick_every);
loop {
interval.wait().await;
engine.increment_epoch();
}
});
*self.timer_task.lock().unwrap() = Some(handle);
}
|
#stop_epoch_interval ⇒ nil
Stops a previously started timer with #start_epoch_interval. Does nothing if there is no running timer.
141 142 143 144 145 146 147 |
# File 'ext/src/ruby_api/engine.rs', line 141
pub fn stop_epoch_interval(&self) {
let maybe_handle = self.timer_task.lock().unwrap().take();
if let Some(handle) = maybe_handle {
handle.abort();
}
}
|