1

我正在构建一个需要与几个子进程进行双向通信的应用程序。我的父母就像一个查询引擎,不断地从标准输入读取单词并将其传递给每个子进程。子进程执行它们的处理并在它们的独占管道上写回父进程。

这在理论上是应该如何工作的,但是我被困在实现细节上。第一个问题是我在分叉孩子之前创建 2 个管道吗?当我分叉时,我知道孩子将继承父母的一组文件描述符,这是否意味着将创建 4 个管道或简单的 2 个管道只是复制。如果它们在孩子中被复制,那么这是否意味着如果我要关闭孩子中的文件描述符,它也会关闭父母的?

我的理论如下,我只需要澄清并走上正轨。这是未经测试的代码,我只是为了让您了解我的想法而编写它。谢谢,任何帮助表示赞赏。

int main(void){
    int fd[2][2]; //2 pipes for in/out

    //make the pipes
    pipe(fd[0]); //WRITING pipe
    pipe(fd[1]); //READING pipe

    if(fork() == 0){
        //child
        //close some ends
        close(fd[0][1]); //close the WRITING pipe write end
        close(fd[1][0]); //close the READING pipe read end

        //start the worker which will read from the WRITING pipe
        //and write back to the READING pipe
        start_worker(fd[0][0], fd[1][1]);
    }else{
        //parent
        //close the reading end of the WRITING pipe
        close(fd[0][0]);
        //close the writing end of the READING pipe
        close(fd[1][1]);
        //write data to the child down the WRITING pipe
        write(fd[0][1], "hello\n", 6);

        //read from the READING pipe 
        int nbytes;
        char word[MAX];
        while ((nbytes = read(fd[1][0], word, MAXWORD)) > 0){
            printf("Data from child is: %s\n", word);
        }
    }

}
4

1 回答 1

2

管道本身不会在叉子上复制。

单个管道是单向的,并且有 2 个描述符 - 一个用于读取,一个用于写入。所以在进程A中你关闭例如写描述符,在进程B中你关闭读描述符->你有一个从B到A的管道。

关闭一个进程中的描述符不会影响另一个进程中的描述符。分叉后每个进程都有自己的描述符空间,这是父进程描述符的副本这是fork()手册页的摘录:

子进程应拥有自己的父文件描述符副本。每个子文件描述符都应与父文件描述符对应的打开文件描述相同。

于 2013-03-19T23:05:02.433 回答