111 lines
3.4 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;
use super::node_public_interface::NodePublicInterface;
use super::node_public_interface::NodeModulePublicInterface;
2020-06-05 23:12:02 +03:00
use fce::FCE;
use fce::WasmProcess;
use fce::IValue;
use fce::FCEModuleConfig;
2020-06-12 00:05:04 +03:00
2020-06-05 23:12:02 +03:00
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 =
super::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-12 01:59:50 +03:00
// just skip 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())?;
let core_module_config = super::utils::make_wasm_process_config(
2020-06-10 18:00:07 +03:00
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 =
super::utils::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-12 01:59:50 +03:00
}
2020-06-05 23:12:02 +03:00
2020-06-12 01:59:50 +03:00
impl crate::node_wasm_service::NodeWasmService for IpfsNode {
fn rpc_call(
2020-06-11 03:10:37 +03:00
&mut self,
wasm_rpc: &[u8],
func_name: &str,
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-11 03:10:37 +03:00
let call_result = self.process.call(rpc_module_name, func_name, args)?;
2020-06-05 23:12:02 +03:00
self.process.unload_module(rpc_module_name)?;
Ok(call_result)
}
2020-06-12 01:59:50 +03:00
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
}
}