zio-sendfile

Crates.iozio-sendfile
lib.rszio-sendfile
version0.2.0
sourcesrc
created_at2019-01-05 20:53:57.109637
updated_at2019-01-18 15:05:30.078989
descriptionzero-copy I/O for Linux, supporting stable rustc versions
homepage
repositoryhttps://github.com/pop-os/zio-sendfile
max_upload_size
id105729
size7,889
Michael Murphy (mmstick)

documentation

README

zio-sendfile

Rust crate to provide a higher level abstraction over Linux's zero-copy I/O syscall: sendfile. This provides a significantly faster variant of io::copy(&mut source, &mut dest), which only works on Linux -- the platform of choice for the discerning programmer.

Examples

If you're simply copying a file to a different file descriptor, the copy function can be used:

extern crate zio_sendfile;

let mut source = File::open("source_path").unwrap();
let mut dest = File::create("dest_path").unwrap();
let bytes_per_write = 100 * 1024 * 1024;

zio_sendfile::copy(&mut source, &mut dest, bytes_per_write);

Note that the source and destination does not need to be a File, but can be any type which implements AsRawFd.

If you need a more elaborate configuration, the builder pattern is possible using the SendFile type:

extern crate zio_sendfile;

let mut source = File::open("source_path").unwrap();
SendFile::new(&mut source, 100 * 1024 * 1024)
    .offset(bytes_to_offset)
    .send(&mut File::create("dest_path").unwrap()).unwrap();

Each write will update the offset integer stored within the SendFile, so it can be used to track the progress of a copy.

Commit count: 0

cargo fmt