我正在尝试使用管道(单向)将数据从我的 perl 脚本传递到我的 c 程序。我需要找到一种方法来做到这一点,而不会弄乱子程序 STDIN 或 STDOUT,所以我尝试创建一个新句柄并传递 fd。
我创建了 2 个 IO::Handles 并创建了一个管道。我写入管道的一端并尝试将管道另一端的文件描述符传递给正在执行的子程序。我通过设置 ENV 变量来传递文件描述符。为什么这不起作用?(它不会打印出“hello world”)。据我所知,文件描述符和管道在执行时由孩子继承。
Perl 脚本:
#!/opt/local/bin/perl
use IO::Pipe;
use IO::Handle;
my $reader = IO::Handle->new();
my $writer = IO::Handle->new();
$reader->autoflush(1);
$writer->autoflush(1);
my $pipe = IO::Pipe->new($reader, $writer);
print $writer "hello world";
my $fh = $reader->fileno;
$ENV{'MY_FD'} = $fh;
exec('./child') or print "error opening app\n";
# No more code after this since exec replaces the current process
C 程序,app.c(用 编译gcc app.c -o child
):
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char ** argv) {
int fd = atoi(getenv("MY_FD"));
char buf[12];
read(fd, buf, 11);
buf[11] = '\0';
printf("fd: %d\n", fd);
printf("message: %s\n", buf);
}
输出:
fd: 3
message:
消息永远不会通过管道传递到 C 程序。有什么建议么?