我尝试在网上搜索,但几乎没有任何资源。一个小例子就足够了。
EDIT 我的意思是,两个不同的C程序相互通信。一个程序应发送“Hi”,另一个程序应接收它。这样的事情。
答案 0 :(得分:150)
常规管道只能连接两个相关进程。它由一个进程创建,并在最后一个进程关闭时消失。
named pipe,也称为FIFO的行为,可以用来连接两个不相关的进程,并且独立于进程而存在;这意味着即使没有人使用它也可以存在。使用mkfifo()
库函数创建FIFO。
<强> writer.c 强>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
int fd;
char * myfifo = "/tmp/myfifo";
/* create the FIFO (named pipe) */
mkfifo(myfifo, 0666);
/* write "Hi" to the FIFO */
fd = open(myfifo, O_WRONLY);
write(fd, "Hi", sizeof("Hi"));
close(fd);
/* remove the FIFO */
unlink(myfifo);
return 0;
}
<强> reader.c 强>
#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#define MAX_BUF 1024
int main()
{
int fd;
char * myfifo = "/tmp/myfifo";
char buf[MAX_BUF];
/* open, read, and display the message from the FIFO */
fd = open(myfifo, O_RDONLY);
read(fd, buf, MAX_BUF);
printf("Received: %s\n", buf);
close(fd);
return 0;
}
注意:为简单起见,上述代码中省略了错误检查。
答案 1 :(得分:40)
从Creating Pipes in C开始,这将向您展示如何分叉程序以使用管道。如果您不想fork(),可以使用named pipes。
此外,您可以通过将prog1 | prog2
的输出发送到标准输出并从prog1
中的stdin
读取来获得prog2
的效果。您还可以通过打开名为/dev/stdin
的文件来读取标准输入(但不确定其可移植性)。
/*****************************************************************************
Excerpt from "Linux Programmer's Guide - Chapter 6"
(C)opyright 1994-1995, Scott Burkett
*****************************************************************************
MODULE: pipe.c
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
int main(void)
{
int fd[2], nbytes;
pid_t childpid;
char string[] = "Hello, world!\n";
char readbuffer[80];
pipe(fd);
if((childpid = fork()) == -1)
{
perror("fork");
exit(1);
}
if(childpid == 0)
{
/* Child process closes up input side of pipe */
close(fd[0]);
/* Send "string" through the output side of pipe */
write(fd[1], string, (strlen(string)+1));
exit(0);
}
else
{
/* Parent process closes up output side of pipe */
close(fd[1]);
/* Read in a string from the pipe */
nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
printf("Received string: %s", readbuffer);
}
return(0);
}
答案 2 :(得分:8)
dup2( STDIN_FILENO, newfd )
并阅读:
char reading[ 1025 ];
int fdin = 0, r_control;
if( dup2( STDIN_FILENO, fdin ) < 0 ){
perror( "dup2( )" );
exit( errno );
}
memset( reading, '\0', 1025 );
while( ( r_control = read( fdin, reading, 1024 ) ) > 0 ){
printf( "<%s>", reading );
memset( reading, '\0', 1025 );
}
if( r_control < 0 )
perror( "read( )" );
close( fdin );
但是,我认为fcntl
可以是更好的解决方案
echo "salut" | code
答案 3 :(得分:6)
一个程序写入stdout的内容可以由另一个程序通过stdin读取。所以简单地说,使用c,写prog1
来使用printf()
和prog2
打印内容,以使用scanf()
读取内容。然后运行
./prog1 | ./prog2
答案 4 :(得分:4)
int main()
{
char buff[1024] = {0};
FILE* cvt;
int status;
/* Launch converter and open a pipe through which the parent will write to it */
cvt = popen("converter", "w");
if (!cvt)
{
printf("couldn't open a pipe; quitting\n");
exit(1)
}
printf("enter Fahrenheit degrees: " );
fgets(buff, sizeof (buff), stdin); /*read user's input */
/* Send expression to converter for evaluation */
fprintf(cvt, "%s\n", buff);
fflush(cvt);
/* Close pipe to converter and wait for it to exit */
status=pclose(cvt);
/* Check the exit status of pclose() */
if (!WIFEXITED(status))
printf("error on closing the pipe\n");
return 0;
}
该计划的重要步骤是:
popen()
调用,用于建立子进程与父进程中管道之间的关联。fprintf()
调用。pclose()
调用。答案 5 :(得分:2)
首先,让程序1将字符串写入stdout(就像你希望它出现在屏幕上一样)。然后第二个程序应该从stdin读取一个字符串,就像用户从键盘输入一样。然后你跑:
program_1 |节目2
答案 6 :(得分:1)
这个答案可能对未来的Google员工有所帮助。
#include <stdio.h>
#include <unistd.h>
int main(){
int p, f;
int rw_setup[2];
char message[20];
p = pipe(rw_setup);
if(p < 0){
printf("An error occured. Could not create the pipe.");
_exit(1);
}
f = fork();
if(f > 0){
write(rw_setup[1], "Hi from Parent", 15);
}
else if(f == 0){
read(rw_setup[0],message,15);
printf("%s %d\n", message, r_return);
}
else{
printf("Could not create the child process");
}
return 0;
}
您可以找到高级双向管道调用示例here。