在两个程序之间用 c 创建一个管道

Creating a pipe in c between two programs

我一直致力于在两个程序 reader.c 和 writer.c 之间用 c 创建一个管道。我一直无法获得管道程序的输入。管道程序应该接收一个 int,将其发送给 writer 程序,然后 writer 程序将其输出通过管道传输到 reader 程序以获得最终输出。下面是三个 classes 的代码。我想我已经接近了,但是谁能帮助我将初始 int 输入 argv[2] 放入 writer class 然后放入 reader class?

管道程序(communicat.c)

int main(int argc, char *argv[])
{   
    int fd[2];
    pid_t   childpid;
    int result;

    if (argc != 2) 
    {
            printf("usage: communicate count\n");
            return -1;
    }
    pipe(fd);

    childpid = fork();

    if (childpid == -1)
    {
         printf("Error in fork; program terminated\n");
         return -1;
    }

    if(childpid == 0)
    {
            close(1);
            dup(fd[1]);
            execlp("writer", "writer", fd[1],(char *) NULL);  
    }
    else
    {
           childpid = fork();
    }
    if( childpid == 0)
    {
           close(0);
           dup(fd[0]);
           close(fd[0]);
           close(fd[1]);
           execlp("reader", "reader", (char *) NULL); 
    }
    else
    {
          close(fd[0]);
          close(fd[1]);
          int status;
          wait(&status);
    }
    return(0);
}

Reader.c

int main()
{
   int count; /* number of characters in the line */
   int c; /* input read */
   count = 0; 
   while ((c = getchar())!= EOF) 
   {
        putchar(c); count++;
        if (count == LINELENGTH) 
        {
              putchar('\n'); count = 0;
        }
   }
   if (count > 0) 
        putchar('\n');
    return 0;
}

Writer.c

int main(int argc, char *argv[])
{
     int count; /* number of repetitions */
     int i; /* loop control variable */

    if (argc != 2) 
    {
         printf("usage: writer count\n");
         return -1;
    }
    else count = atoi(argv[1]);

    for (i = 0; i < count; i++) 
    {
        printf("Hello");
        printf("hello");
    }
    return 0; 
}

以这种方式更正执行编写器的代码:

if(childpid == 0)
{
    close(1);
    dup(fd[1]);
    close(fd[0]);
    close(fd[1]);
    execlp("writer", "writer", argv[1], (char *) NULL);  
}