update to marine, marine-test, bump versions

This commit is contained in:
boneyard93501
2021-06-13 14:36:04 -05:00
parent 70a32bc46f
commit 1fc1cfffd7
6 changed files with 29 additions and 27 deletions

View File

@ -10,5 +10,5 @@ name = "ipfs_effector"
path = "src/main.rs"
[dependencies]
fluence = { version = "=0.5.0", features = ["logger"] }
log = "0.4.14"
fluence = { version = "0.6.9", features = ["logger"] }
log = "0.4.14"

View File

@ -20,10 +20,10 @@ mod path;
use crate::path::to_full_path;
use fluence::fce;
use fluence::marine;
use fluence::module_manifest;
use fluence::WasmLoggerBuilder;
use fluence::MountedBinaryResult;
use fluence::WasmLoggerBuilder;
const RESULT_FILE_PATH: &str = "/tmp/ipfs_rpc_file";
const IPFS_ADDR_ENV_NAME: &str = "IPFS_ADDR";
@ -39,7 +39,7 @@ pub fn main() {
}
/// Put file from specified path to IPFS and return its hash.
#[fce]
#[marine]
pub fn put(file_path: String) -> String {
log::info!("put called with file path {}", file_path);
@ -54,7 +54,7 @@ pub fn put(file_path: String) -> String {
file_path,
];
let ipfs_result = unsafe { ipfs(cmd) };
let ipfs_result = ipfs(cmd);
ipfs_result
.into_std()
.unwrap()
@ -62,7 +62,7 @@ pub fn put(file_path: String) -> String {
}
/// Get file by provided hash from IPFS, saves it to a temporary file and returns a path to it.
#[fce]
#[marine]
pub fn get(hash: String) -> String {
log::info!("get called with hash {}", hash);
@ -78,11 +78,11 @@ pub fn get(hash: String) -> String {
hash,
];
unsafe { ipfs(cmd) };
ipfs(cmd);
RESULT_FILE_PATH.to_string()
}
#[fce]
#[marine]
pub fn get_address() -> String {
match std::env::var(IPFS_ADDR_ENV_NAME) {
Ok(addr) => addr,
@ -93,7 +93,7 @@ pub fn get_address() -> String {
}
}
#[fce]
#[marine]
#[link(wasm_import_module = "host")]
extern "C" {
/// Execute provided cmd as a parameters of ipfs cli, return result.

View File

@ -18,8 +18,8 @@ pub(super) fn to_full_path<S>(cmd: S) -> String
where
S: Into<String>,
{
use std::path::Path;
use std::path::Component;
use std::path::Path;
let cmd = cmd.into();
let path = Path::new(&cmd);