gsc-executor-common 0.35.0

A set of common definitions that are needed for defining execution engines.
Documentation
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

//! Definitions for a wasm runtime.

use crate::error::Error;

pub use sp_allocator::AllocationStats;

/// Default heap allocation strategy.
pub const DEFAULT_HEAP_ALLOC_STRATEGY: HeapAllocStrategy = HeapAllocStrategy::Static {
    extra_pages: DEFAULT_HEAP_ALLOC_PAGES,
};

/// Default heap allocation pages.
pub const DEFAULT_HEAP_ALLOC_PAGES: u32 = 2048;

/// A trait that defines an abstract WASM runtime module.
///
/// This can be implemented by an execution engine.
pub trait WasmModule: Sync + Send {
    /// Create a new instance.
    fn new_instance(&self) -> Result<Box<dyn WasmInstance>, Error>;
}

/// A trait that defines an abstract wasm module instance.
///
/// This can be implemented by an execution engine.
pub trait WasmInstance: Send {
    /// Call a method on this WASM instance.
    ///
    /// Before execution, instance is reset.
    ///
    /// Returns the encoded result on success.
    fn call(&mut self, method: &str, data: &[u8]) -> Result<Vec<u8>, Error> {
        self.call_with_allocation_stats(method, data).0
    }

    /// Call a method on this WASM instance.
    ///
    /// Before execution, instance is reset.
    ///
    /// Returns the encoded result on success.
    fn call_with_allocation_stats(
        &mut self,
        method: &str,
        data: &[u8],
    ) -> (Result<Vec<u8>, Error>, Option<AllocationStats>);

    /// Call an exported method on this WASM instance.
    ///
    /// Before execution, instance is reset.
    ///
    /// Returns the encoded result on success.
    fn call_export(&mut self, method: &str, data: &[u8]) -> Result<Vec<u8>, Error> {
        self.call(method, data)
    }

    /// Get the value from a global with the given `name`.
    ///
    /// This method is only suitable for getting immutable globals.
    fn get_global_const(&mut self, name: &str) -> Result<Option<sp_wasm_interface::Value>, Error>;
}

/// Defines the heap pages allocation strategy the wasm runtime should use.
///
/// A heap page is defined as 64KiB of memory.
#[derive(Debug, Copy, Clone, PartialEq, Hash, Eq)]
pub enum HeapAllocStrategy {
    /// Allocate a static number of heap pages.
    ///
    /// The total number of allocated heap pages is the initial number of heap pages requested by
    /// the wasm file plus the `extra_pages`.
    Static {
        /// The number of pages that will be added on top of the initial heap pages requested by
        /// the wasm file.
        extra_pages: u32,
    },
    /// Allocate the initial heap pages as requested by the wasm file and then allow it to grow
    /// dynamically.
    Dynamic {
        /// The absolute maximum size of the linear memory (in pages).
        ///
        /// When `Some(_)` the linear memory will be allowed to grow up to this limit.
        /// When `None` the linear memory will be allowed to grow up to the maximum limit supported
        /// by WASM (4GB).
        maximum_pages: Option<u32>,
    },
}