C exec / pipe / select程序 - 缺少来自孩子的输入

时间:2012-01-24 20:04:35

标签: c pipe exec select-function

我有一个程序可以生成一个子脚本。子脚本只需将时间重新输入1/2,然后再返回STDOUT和STDERR。另一半时间,它悄然消耗它。我得到的是对孩子写作结果的错误时机:

Line1: STDOUT Line number 1
Line3: STDERR Line number 1
Line3: STDOUT Line number 3
Getting leftovers
endLine: STDERR Line number 3

应该通过相同的Line1读取读取行号1。同样,第3行也应该通过相同的Line3尝试获取。

我想解决的问题是我希望能够为孩子写一行数据,检查任何响应并重复。以下是测试程序:

儿童剧本:

#! /usr/bin/perl 

$| = 1;
select (STDERR);
$|=1;

my $i = 0;
open (F,">> e.out");
select F;
$|=1;
select (STDOUT);

while (<>) {
  chomp;
  print F "($_)\n";
  if ($i++) {
    print "STDOUT $_\n";
    print STDERR "STDERR $_\n";
  }
  $i %= 2;
}
close F;

家长C计划:

#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>

main () {
  pid_t pid;
  int p2child[2];
  int c2parent[2];

  pipe (p2child);
  pipe (c2parent);

  if ((pid = fork()) < 0) {
    fprintf (stderr, "Fork error: %s\n", strerror(errno));

/*
  Child Process
*/
  } else if (pid == 0) {
    close (p2child[1]);
    dup2 (p2child[0], STDIN_FILENO);
    close (c2parent[0]);
    dup2 (c2parent[1], STDOUT_FILENO);
    dup2 (c2parent[1], STDERR_FILENO);

    if (execlp ("./e", "./e", 0 )) {
perror("Exec failed");
    }
/*
  Parent Process
*/
  } else {
    FILE* istream;
    FILE* ostream;
    char line[80];
    fd_set set;
    struct timeval timeout;
    int ret;
    int counter;

    close (p2child[0]);
    close (c2parent[1]);

    ostream = fdopen (p2child[1], "w");
    istream = fdopen (c2parent[0], "r");

    for (counter = 0; counter < 5; counter++) {
      fprintf (ostream, "Line number %d\n", counter);
      fflush (ostream);

      do {

        FD_ZERO(&set);
        FD_SET(c2parent[0], &set);
        timeout.tv_sec = 0;
        timeout.tv_usec = 500000;
        ret = select(FD_SETSIZE, &set, NULL, NULL, &timeout);
        if (ret > 0) {
          fgets(line, 80, istream);
          fprintf (stdout, "Line%d: %s", counter, line);
          fflush (stdout);
        }
      } while (ret > 0);
    }

fprintf (stdout, "Getting leftovers\n");
    while (fgets(line, 80, istream)) {
      fprintf (stdout, "endLine: %s", line);
      fflush (stdout);
    }

    close (p2child[1]);
    close (c2parent[0]);

    waitpid (pid, NULL, 0);
  }
  fprintf (stderr, "Exiting\n");
}

1 个答案:

答案 0 :(得分:0)

当您调用fgets()时,您会从流中读取一行输入,但 stdio本身可能已阅读更多内容并将其缓冲;这是你的问题。 select()早于您的预期返回0,因为先前的fgets()调用导致stdio吸收所有剩余的输入。作为测试,替换

                fgets(line, 80, istream);

的选择循环中

                char *p = line;
                do {
                    read(c2parent[0], p, 1);
                } while (*p++ != '\n');

你应该看到读取和写入都是锁定的,没有剩余的输入。