这个dup2和管道有什么问题?

时间:2015-03-15 14:38:32

标签: c++ pipe parent-child pid dup2

这段代码应该做的是:有parent.cpp和child.cpp。家长会将缓冲区中的任何内容发送给孩子,孩子会将收到的任何内容发回给家长。我不知道我做错了什么。我很困惑父母遗漏的东西以及我应该包括在孩子身上的其他东西。

//parent.cpp
//Check for fork error
 if ( (pid = fork()) < 0 )
{
    cerr << "FORK ERROR" << endl;
    return -3;
}
else  if (pid == 0)  // Child 
{
    close(fd1[1]);//Close parent's stdout-write
    close(fd2[0]);//Close child's stdin-read
    if (fd1[0] != STDIN_FILENO)//Make sure file desc. matches
    {
        if (dup2(fd1[0], STDIN_FILENO) != STDIN_FILENO)
        {
            cerr << "dup2 error to stdin" << endl;
        }
        close(fd1[0]);
    }
    if (fd2[1] != STDOUT_FILENO)//Make sure file desc. mathces
    {
        if (dup2(fd2[1], STDOUT_FILENO) != STDOUT_FILENO)
        {
            cerr << "dup2 error to stdout" << endl;
        }
        close(fd2[1]);
    }
    if ( execl("./child", "child", (char *)0) < 0 )
    {
        cerr << "system error" << endl;
        return -4;
    }
    return 0;
}//end of child
else //parent
{
    int rv;
   close(fd1[0]);//Close parent's read
   close(fd2[1]);//close child's write
   if ( write(fd1[1], buffer, strlen(buffer)) != strlen(buffer))
    {
        cerr << "Write ERROR FROM PIPE" << endl;
    }
    if ( (rv = read(fd2[0], buffer, MAXLINE)) < 0 )
    {
        cerr << "READ ERROR FROM PIPE" << endl;
    }
    else if (rv == 0)
    {
        cerr << "Child Closed Pipe" << endl;
        return 0;
    }
    cout << "Output of child is: " << buffer;
    return 0;
}//end of parent

//child.cpp
char line[1000];
int MAXLEN=1001;    
read(STDIN_FILENO, line, MAXLEN);

1 个答案:

答案 0 :(得分:0)

我的猜测是你的进程被阻止了。您将少量数据写入子进程处​​理的子进程。然而,孩子没有产生输出,但正在等待更多数据。父母现在正在等待孩子给它一些数据,孩子正在等待父母,你有一个经典的死锁。在父级写入之后和fd1[1]之前尝试关闭read。孩子将意识到没有更多的数据,并且会在终止之前产生输出。