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
/*
 * Copyright 2020 Fluence Labs Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

use super::IValue;
use super::IType;
use crate::HostImportError;

use wasmer_wasi::WasiVersion;
use wasmer_runtime::ImportObject;
use wasmer_core::vm::Ctx;

use std::path::PathBuf;
use std::collections::HashMap;
use std::collections::HashSet;

pub type HostExportedFunc = Box<dyn Fn(&mut Ctx, Vec<IValue>) -> Option<IValue> + 'static>;

pub struct HostImportDescriptor {
    /// This closure will be invoked for corresponding import.
    pub host_exported_func: HostExportedFunc,

    /// Type of the closure arguments.
    pub argument_types: Vec<IType>,

    /// Types of output of the closure.
    pub output_type: Option<IType>,

    /// If Some, this closure is called with error when errors is encountered while lifting.
    /// If None, panic will occur.
    pub error_handler: Option<Box<dyn Fn(&HostImportError) -> Option<IValue> + 'static>>,
}

pub struct MModuleConfig {
    /// Maximum number of Wasm memory pages that loaded module can use.
    /// Each Wasm pages is 65536 bytes long.
    pub mem_pages_count: u32,

    /// Import object that will be used in module instantiation process.
    pub raw_imports: ImportObject,

    /// Imports from the host side that will be used in module instantiation process.
    pub host_imports: HashMap<String, HostImportDescriptor>,

    /// Desired WASI version.
    pub wasi_version: WasiVersion,

    /// Environment variables for loaded modules.
    pub wasi_envs: HashMap<Vec<u8>, Vec<u8>>,

    /// List of available directories for loaded modules.
    pub wasi_preopened_files: HashSet<PathBuf>,

    /// Mapping between paths.
    pub wasi_mapped_dirs: HashMap<String, PathBuf>,
}

impl Default for MModuleConfig {
    fn default() -> Self {
        // some reasonable defaults
        Self {
            // 65536*1600 ~ 100 Mb
            mem_pages_count: 1600,
            raw_imports: ImportObject::new(),
            host_imports: HashMap::new(),
            wasi_version: WasiVersion::Latest,
            wasi_envs: HashMap::new(),
            wasi_preopened_files: HashSet::new(),
            wasi_mapped_dirs: HashMap::new(),
        }
    }
}

// TODO: implement debug for MModuleConfig

impl MModuleConfig {
    #[allow(dead_code)]
    pub fn with_mem_pages_count(mut self, mem_pages_count: u32) -> Self {
        self.mem_pages_count = mem_pages_count;
        self
    }

    #[allow(dead_code)]
    pub fn with_wasi_version(mut self, wasi_version: WasiVersion) -> Self {
        self.wasi_version = wasi_version;
        self
    }

    #[allow(dead_code)]
    pub fn with_wasi_envs(mut self, envs: HashMap<Vec<u8>, Vec<u8>>) -> Self {
        self.wasi_envs = envs;
        self
    }

    #[allow(dead_code)]
    pub fn with_wasi_preopened_files(mut self, preopened_files: HashSet<PathBuf>) -> Self {
        self.wasi_preopened_files = preopened_files;
        self
    }

    #[allow(dead_code)]
    pub fn with_wasi_mapped_dirs(mut self, mapped_dirs: HashMap<String, PathBuf>) -> Self {
        self.wasi_mapped_dirs = mapped_dirs;
        self
    }
}