#file-descriptor #non-blocking #async-io #data-file #reader #io-read #o-nonblock

nonblock

Read available data from file descriptors without blocking (e.g. sockets, streams, child stdout, named pipes)

2 unstable releases

0.2.0 Jun 26, 2022
0.1.0 Apr 25, 2016

#885 in Asynchronous

Download history 3453/week @ 2024-07-25 2632/week @ 2024-08-01 2890/week @ 2024-08-08 2300/week @ 2024-08-15 2050/week @ 2024-08-22 2475/week @ 2024-08-29 2463/week @ 2024-09-05 2909/week @ 2024-09-12 2116/week @ 2024-09-19 2621/week @ 2024-09-26 1739/week @ 2024-10-03 2529/week @ 2024-10-10 2792/week @ 2024-10-17 1313/week @ 2024-10-24 1784/week @ 2024-10-31 2123/week @ 2024-11-07

8,673 downloads per month
Used in 5 crates

MIT license

11KB
104 lines

nonblock-rs

Read available data from file descriptors without blocking

Documentation

Crates.io Build Status

Examples

See structure-stdio.rs for an example usage.

Build & Test

This project is built and tested with cargo:

cargo build
cargo test
cargo doc --no-deps

Pro-tip: before building docs, clone existing docs to track changes

git clone -b gh-pages git@github.com:anowell/nonblock-rs.git target/doc

lib.rs:

Read available data from file descriptors without blocking

Useful for nonblocking reads from sockets, named pipes, and child stdout/stderr

Example

use std::io::Read;
use std::process::{Command, Stdio};
use std::time::Duration;
use nonblock::NonBlockingReader;

let mut child = Command::new("some-executable")
                        .stdout(Stdio::piped())
                        .spawn().unwrap();
let stdout = child.stdout.take().unwrap();
let mut noblock_stdout = NonBlockingReader::from_fd(stdout).unwrap();
while !noblock_stdout.is_eof() {
    let mut buf = String::new();
    noblock_stdout.read_available_to_string(&mut buf).unwrap();
    std::thread::sleep(Duration::from_secs(5));
}

Dependencies

~44KB