我想以这样的方式使用一对Unix FIFO:
你能帮忙吗?
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int nr,s2c,c2s,c,d,e;
char a[20];
c2s=open("fifo1",O_WRONLY);
s2c=open("fifo2",O_RDONLY);
printf("give file name \n");
scanf("%s",a);
nr=strlen(a);
write(c2s,&nr,sizeof(int));
write(c2s,&a,sizeof(nr));
read(s2c,&c,sizeof(int));
read(s2c,&d,sizeof(int));
read(s2c,&e,sizeof(int));
close(c2s);
close(s2c);
return 0;
}
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int nr,s2c,c2s,c,d,e;
char a[20];
FILE* f;
c2s=open("fifo1",O_RDONLY);
s2c=open("fifo2",O_WRONLY);
read(c2s,&nr,sizeof(int));
read(c2s,&a,sizeof(nr));
f=fopen(a,"r");
if(fork()==0)
{
printf("result is: \n");
execl("/usr/bin/wc","wc",c,d,e,NULL);
}
wait(0);
write(s2c,&c,sizeof(int));
write(s2c,&d,sizeof(int));
write(s2c,&e,sizeof(int));
close(c2s);
close(s2c);
printf("\n FINISH \n");
return 0;
}
我做了一些改进,但仍然无法正常工作。
答案 0 :(得分:1)
在服务器的fork
'ed部分,使用
wc
的标准输入和输出
dup2(c2s, STDIN_FILENO);
dup2(s2c, STDOUT_FILENO);
然后执行
execl("/usr/bin/wc", "wc", NULL);
不要将文件描述符作为参数传递给execl
。它需要字符串(char const*
),而不是int
。
请参阅dup2
in the POSIX standard了解其工作原理。
答案 1 :(得分:0)
请注意wc
将字符串写入其输出。您试图将它们读作二进制数字。这将导致混淆 - 特别是当您没有检查读取调用是否正常工作时。
实际上,一般性意见 - 您应该检查更多系统调用。
您还必须确保在打开FIFO时您的进程不会阻塞。你应该没事;你有进程打开'fifo1'进行读写,然后是'fifo2'。我认为这会对事情产生正确的顺序。
您只能在管道上正确写入4个字母的文件名。