Crates.io | tokio-file-futures |
lib.rs | tokio-file-futures |
version | 0.1.0 |
source | src |
created_at | 2018-05-02 23:06:32.151438 |
updated_at | 2018-05-02 23:06:32.151438 |
description | Some basic futures on top of tokio-fs's polled file operations |
homepage | |
repository | https://github.com/asonix/file-futures |
max_upload_size | |
id | 63492 |
size | 273,736 |
This crate provides the Futures abstraction around many of the poll methods provided in tokio-fs.
Add the dependencies in Cargo.toml
# Cargo.toml
[dependencies]
tokio-file-futures = "0.1"
tokio-fs = "0.1"
// src/main.rs
extern crate file_futures;
extern crate futures;
extern crate tokio_fs;
use std::io::SeekFrom;
use file_futures::AsyncFile;
use futures::Future;
use tokio_fs::File;
fn main() {
let future = File::create("/tmp/some-tmpfile")
.map_err(|e| println!("Create Error {}", e))
.and_then(|_| {
let future1 = File::open("/tmp/some-tmpfile")
.and_then(|file| file.metadata().and_then(|(_file, _metadata)| Ok(())))
.map_err(|e| println!("Error1: {}", e));
let future2 = File::open("/tmp/some-tmpfile")
.and_then(|file| {
file.seek(SeekFrom::Start(30))
.and_then(|(_file, _from_start)| Ok(()))
})
.map_err(|e| println!("Error2: {}", e));
future1.join(future2)
});
tokio::run(future.map(|_| ()));
}
Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the GPLv3.
Copyright © 2017 Riley Trautman
Tokio File Futures is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Tokio File Futures is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This file is part of Tokio File Futures.
You should have received a copy of the GNU General Public License along with Tokio File Futures. If not, see http://www.gnu.org/licenses/.