附加代码应允许两个终端之间的通信通过在当前目录中创建的两个FIFO进行通信这个程序必须打开两个fifo,儿子从STDIN读取并打开fifo1,父亲从另一个fifo读取并在终端上打印以这种方式进行通信,因为对程序的调用是:./myprog fifo1 fifo2(对于第一个终端)和./myprog fifo2 fifo1(对于第二个终端)代码不能很好地工作,我怀疑child write()对fifo执行的操作不能很好地工作希望我能解释清楚,帮我:(

#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <poll.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <limits.h>

int main(int argc,char* argv[])
{
    if(argc<3)
    {
        printf("Error: Too few arguments...\n");
        exit(-1);
    }

    char** buffer_in=(char**) malloc(sizeof(char*));
    char** buffer_out=(char**) malloc(sizeof(char*));
    size_t dim_buff=sizeof(char*);
    FILE* stream;
    FILE* input;
    int fifo_in, fifo_out, num_poll_c, num_poll_f, read_count, i,write_b;
    pid_t pid;
    ssize_t length;
    struct pollfd* fd_set_c=(struct pollfd*) malloc(sizeof(int));//for the child
    struct pollfd* fd_set_f=(struct pollfd*) malloc(sizeof(int));//for the father


    printf("Write character e press enter:\n");

    if((fifo_in=open(argv[1],O_RDWR|O_NONBLOCK))==-1)
        perror("error open");
    if((fifo_out=open(argv[2],O_RDWR|O_NONBLOCK))==-1)
        perror("error open");

    if((input=fdopen(STDIN_FILENO,"r"))==NULL)
        perror("error fdopen");


    if((pid=fork())==-1)
        perror("error fork");
    while(1)
    {
        if(pid==0)  /*child*/
        {
            fd_set_c->fd=STDIN_FILENO;
            fd_set_c->events=POLLIN;
            if((num_poll_c=poll(fd_set_c, 1, -1))==-1)
                perror("error poll child");//poll on fifo_in
            if((length=getline(buffer_in,&dim_buff,input))==-1)
                perror("error getline");



                printf("The written word is::%s\n",*buffer_in);/*my control for see what in buffer_in is*/


            if((write_b=write(fifo_in,*buffer_in,dim_buff))==-1)
                perror("error write");

        }

        else    /*father*/
        {
            fd_set_f->fd=fifo_out;
            fd_set_c->events=POLLIN;

            if((num_poll_f=poll(fd_set_f, 1, 5000))==-1)
                perror("error poll father");//poll on fifo_out
            if((read_count=read(fifo_out,*buffer_out,SSIZE_MAX))==-1)
                perror("error read");//read on fifo_out
            for(i=0;i<=read_count;i++)
                printf("%s",buffer_out[i]);//print on stdout buffer_out


        }
    }
    return 0;

}

最佳答案

你应该用管子(男2号管子)或者共享内存:man shmget),用于进程和信号量之间的通信,以保护读/写在谷歌上寻找“生产者/消费者”。
看看这个:http://users.evtek.fi/~tk/rtp/sem-producer-consumer.c
这个:http://knol.google.com/k/producer-consumer-problem#

关于c - 我在每个读写中都有2个FIFO有问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3079106/

10-13 06:59