#child-process #process #child #fd #subprocess #command #file-descriptor

tokio-command-fds

A library for passing arbitrary file descriptors when spawning child processes

1 unstable release

0.2.1 Jun 13, 2022

#645 in Unix APIs

Download history 55/week @ 2024-01-05 33/week @ 2024-01-12 19/week @ 2024-01-19 3/week @ 2024-01-26 9/week @ 2024-02-02 12/week @ 2024-02-09 71/week @ 2024-02-16 52/week @ 2024-02-23 57/week @ 2024-03-01 37/week @ 2024-03-08 68/week @ 2024-03-15 83/week @ 2024-03-22 97/week @ 2024-03-29 83/week @ 2024-04-05 33/week @ 2024-04-12 12/week @ 2024-04-19

234 downloads per month
Used in 2 crates (via job-security-server)

Apache-2.0

19KB
301 lines

tokio-command-fds

A library for passing arbitrary file descriptors when spawning child processes. (Forked from https://github.com/google/command-fds to add support for tokio)

Example

#[tokio::main(flavor="current_thread")]
async fn main() {
    use tokio_command_fds::{CommandFdExt, FdMapping};
    use std::fs::File;
    use std::os::unix::io::AsRawFd;
    use tokio::process::Command;

    // Open a file.
    let file = File::open("Cargo.toml").unwrap();

    // Prepare to run `ls -l /proc/self/fd` with some FDs mapped.
    let mut command = tokio::process::Command::new("ls");
    command.arg("-l").arg("/proc/self/fd");
    command
        .fd_mappings(vec![
            // Map `file` as FD 3 in the child process.
            FdMapping {
                parent_fd: file.as_raw_fd(),
                child_fd: 3,
            },
            // Map this process's stdin as FD 5 in the child process.
            FdMapping {
                parent_fd: 0,
                child_fd: 5,
            },
        ])
        .unwrap();

    // Spawn the child process.
    let mut child = command.spawn().unwrap();
    child.wait().await.unwrap();
}

License

Licensed under the Apache License, Version 2.0.

Dependencies

~4–16MB
~163K SLoC