1 个不稳定版本
0.2.1 | 2022年6月13日 |
---|
#682 in Unix API
每月 51 次下载
在 2 个包中使用(通过 job-security-server)
19KB
301 行代码(不含注释)
tokio-command-fds
一个用于在启动子进程时传递任意文件描述符的库。(从 https://github.com/google/command-fds 分支,增加了对 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();
}
许可证
许可协议为 Apache 许可证,版本 2.0。
依赖项
~4–16MB
~165K SLoC