Crates.io | tokio-command-fds |
lib.rs | tokio-command-fds |
version | 0.2.1 |
source | src |
created_at | 2022-06-13 00:03:46.078778 |
updated_at | 2022-06-13 00:03:46.078778 |
description | A library for passing arbitrary file descriptors when spawning child processes. |
homepage | |
repository | https://github.com/google/command-fds/ |
max_upload_size | |
id | 604810 |
size | 32,077 |
A library for passing arbitrary file descriptors when spawning child processes. (Forked from https://github.com/google/command-fds to add support for tokio)
#[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();
}
Licensed under the Apache License, Version 2.0.