This commit is contained in:
Gav
2018-02-08 00:02:31 +01:00
parent 290c7bf909
commit 8c1b79c7e8
@@ -21,11 +21,18 @@ use wasm_executor::WasmExecutor;
use std::panic::catch_unwind;
/// Delegate for dispatching a CodeExecutor call to native code.
pub trait NativeExecutionDispatch {
/// Get the wasm code that the native dispatch will be equivalent to.
fn native_equivalent() -> &'static [u8];
/// Dispatch a method and input data to be executed natively. Returns `Some` result or `None`
/// if the `method` is unknown. Panics if there's an unrecoverable error.
fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>>;
}
/// A generic `CodeExecutor` implementation that uses a delegate to determine wasm code equivalence
/// and dispatch to native code when possible, falling back on `WasmExecutor` when not.
pub struct NativeExecutor<D: NativeExecutionDispatch + Sync + Send> {
pub _dummy: ::std::marker::PhantomData<D>,
}