#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

#1298 in Asynchronous

Download history 1743/week @ 2024-10-22 1483/week @ 2024-10-29 2283/week @ 2024-11-05 1327/week @ 2024-11-12 1468/week @ 2024-11-19 1062/week @ 2024-11-26 1292/week @ 2024-12-03 1185/week @ 2024-12-10 1047/week @ 2024-12-17 415/week @ 2024-12-24 671/week @ 2024-12-31 1663/week @ 2025-01-07 1765/week @ 2025-01-14 1741/week @ 2025-01-21 1661/week @ 2025-01-28 1260/week @ 2025-02-04

6,700 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

~43KB