168 lines
5.3 KiB
Rust
Raw Normal View History

2020-06-05 23:12:02 +03:00
/*
* 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::errors::NodeError;
2020-06-10 16:55:18 +03:00
use crate::config::ModuleConfig;
use crate::node_public_interface::NodePublicInterface;
use crate::node_public_interface::NodeModulePublicInterface;
2020-06-05 23:12:02 +03:00
2020-06-06 21:34:13 +03:00
use wasmer_core::import::ImportObject;
2020-06-07 12:33:26 +03:00
use wasmer_runtime::func;
2020-06-05 23:12:02 +03:00
use fce::FCE;
use fce::WasmProcess;
use fce::IValue;
use fce::FCEModuleConfig;
use std::fs;
use std::path::PathBuf;
2020-06-06 21:34:13 +03:00
pub struct IpfsNode {
2020-06-05 23:12:02 +03:00
process: FCE,
// names of core modules that is loaded to FCE
module_names: Vec<String>,
2020-06-06 21:34:13 +03:00
rpc_module_config: FCEModuleConfig,
2020-06-05 23:12:02 +03:00
}
impl IpfsNode {
2020-06-10 18:00:07 +03:00
pub fn new<P: Into<PathBuf>>(
core_modules_dir: P,
config_file_path: P,
) -> Result<Self, NodeError> {
2020-06-05 23:12:02 +03:00
let mut wasm_process = FCE::new();
let mut module_names = Vec::new();
2020-06-10 18:00:07 +03:00
let mut core_modules_config =
crate::config::parse_config_from_file(config_file_path.into())?;
2020-06-05 23:12:02 +03:00
2020-06-10 14:56:15 +03:00
for entry in fs::read_dir(core_modules_dir.into())? {
2020-06-05 23:12:02 +03:00
let path = entry?.path();
2020-06-06 21:34:13 +03:00
if path.is_dir() {
2020-06-10 18:00:07 +03:00
// just pass directories
2020-06-06 21:34:13 +03:00
continue;
2020-06-05 23:12:02 +03:00
}
2020-06-06 21:34:13 +03:00
let module_name = path.file_name().unwrap();
let module_name = module_name
.to_os_string()
.into_string()
.map_err(|e| NodeError::IOError(format!("failed to read from {:?} file", e)))?;
let module_bytes = fs::read(path.clone())?;
2020-06-10 18:00:07 +03:00
let core_module_config = Self::make_wasm_process_config(
core_modules_config.modules_config.remove(&module_name),
)?;
2020-06-06 21:34:13 +03:00
wasm_process.load_module(module_name.clone(), &module_bytes, core_module_config)?;
module_names.push(module_name);
2020-06-05 23:12:02 +03:00
}
2020-06-10 18:00:07 +03:00
let rpc_module_config =
Self::make_wasm_process_config(core_modules_config.rpc_module_config)?;
2020-06-06 21:34:13 +03:00
2020-06-05 23:12:02 +03:00
Ok(Self {
process: wasm_process,
module_names,
2020-06-06 21:34:13 +03:00
rpc_module_config,
2020-06-05 23:12:02 +03:00
})
}
2020-06-10 14:56:15 +03:00
pub fn rpc_call(&mut self, wasm_rpc: &[u8], args: &[IValue]) -> Result<Vec<IValue>, NodeError> {
2020-06-05 23:12:02 +03:00
let rpc_module_name = "ipfs_rpc";
self.process
2020-06-06 21:34:13 +03:00
.load_module(rpc_module_name, wasm_rpc, self.rpc_module_config.clone())?;
2020-06-07 22:57:30 +03:00
2020-06-10 18:00:07 +03:00
let call_result = self.process.call(rpc_module_name, "invoke", args)?;
2020-06-05 23:12:02 +03:00
self.process.unload_module(rpc_module_name)?;
Ok(call_result)
}
2020-06-10 16:55:18 +03:00
pub fn get_interface(&self) -> NodePublicInterface {
2020-06-05 23:12:02 +03:00
let mut modules = Vec::with_capacity(self.module_names.len());
for module_name in self.module_names.iter() {
let functions = self.process.get_interface(module_name).unwrap();
2020-06-10 16:55:18 +03:00
modules.push(NodeModulePublicInterface {
2020-06-05 23:12:02 +03:00
name: module_name,
functions,
})
}
2020-06-10 16:55:18 +03:00
NodePublicInterface { modules }
2020-06-05 23:12:02 +03:00
}
2020-06-06 21:34:13 +03:00
2020-06-10 18:00:07 +03:00
fn make_wasm_process_config(
config: Option<ModuleConfig>,
) -> Result<FCEModuleConfig, NodeError> {
2020-06-06 21:34:13 +03:00
use crate::imports::create_host_import_func;
use crate::imports::log_utf8_string;
use wasmer_core::import::Namespace;
let mut wasm_module_config = FCEModuleConfig::default();
let module_config = match config {
Some(config) => config,
None => return Ok(wasm_module_config),
};
if let Some(mem_pages_count) = module_config.mem_pages_count {
wasm_module_config.mem_pages_count = mem_pages_count;
}
let mut namespace = Namespace::new();
if let Some(logger_enabled) = module_config.logger_enabled {
if logger_enabled {
namespace.insert("log_utf8_string", func!(log_utf8_string));
}
}
if let Some(imports) = module_config.imports {
for (import_name, host_cmd) in imports {
let host_import = create_host_import_func(host_cmd);
namespace.insert(import_name, host_import);
}
}
let mut import_object = ImportObject::new();
import_object.register("host", namespace);
if let Some(wasi) = module_config.wasi {
if let Some(envs) = wasi.envs {
wasm_module_config.wasi_envs = envs;
}
if let Some(preopened_files) = wasi.preopened_files {
wasm_module_config.wasi_preopened_files = preopened_files
.iter()
2020-06-07 12:33:26 +03:00
.map(PathBuf::from)
2020-06-06 21:34:13 +03:00
.collect::<Vec<_>>();
}
if let Some(mapped_dirs) = wasi.mapped_dirs {
wasm_module_config.wasi_mapped_dirs = mapped_dirs
.into_iter()
.map(|(from, to)| (from, PathBuf::from(to)))
.collect::<Vec<_>>();
}
}
wasm_module_config.imports = import_object;
Ok(wasm_module_config)
}
2020-06-05 23:12:02 +03:00
}