无名管道例子
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- #define MAX_LINE 80
- #define PIPE_STDIN 0
- #define PIPE_STDOUT 1
- /*
- myPipe[ 1 ]向管道写入数据;myPipe[ 0 ]从管道读取数据。
- */
- int main( )
- {
- const char* string={"A simple message."};
- int ret,myPipe[ 2 ];
- char buffer[ MAX_LINE+1 ];
- //create the pipe
- ret=pipe( myPipe ); //pipe( )创建一个匿名管道
- if( ret==0 )
- {
- //write the message into the pipe
- write( myPipe[ PIPE_STDOUT ],string,strlen( string ) );
- //read the message from the pipe
- ret=read( myPipe[ PIPE_STDIN ],buffer,MAX_LINE );
- //NULL terminate the string
- buffer[ ret ]=0;
- printf( "%s\n",buffer );
- }
- close( thePipe[ 0 ] );
- close( thePipe[ 1 ] );
- return 0;
- }
- 结果:A simple message.
- //父子进程间利用管道通讯实例
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- #include <wait.h>
- #define MAX_LINE 80
- int main( )
- {
- int thePipe[ 2 ],ret;
- char buf[ MAX_LINE+1 ];
- const char* testbuf={"a test string."};
- if( pipe( thePipe )==0 )
- {
- if( fork( )==0 )
- {
- printf( "You have enter the child process\n" );
- ret=read( thePipe[ 0 ],buf,MAX_LINE );
- buf[ ret ]=0;
- printf( "Child read info: %s\n",buf );
- }
- else
- {
- ret=write( thePipe[ 1 ],testbuf,strlen( testbuf ) );
- ret=wait( NULL );
- }
- }
- close( thePipe[ 0 ] );
- close( thePipe[ 1 ] );
- return 0;
- }
- /*值得注意的是:
- 把子进程的输出重定向到管道的输入,父进程的输入重定向到管道的输出。
- --这是一个很值得记住的有用技术
- */
- //使用C实现管道链接
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- int main( )
- {
- int pfds[ 2 ];
- if( pipe( pfds )==0 )
- {
- if( fork( )==0 )
- {
- close( 1 );
- dup2( pfds[ 1 ],1 );
- close( pfds[ 0 ] );
- execlp( "ls","ls","-l",NULL );
- }
- else
- {
- close( 0 );
- dup2( pfds[ 0 ],0 );
- close( pfds[ 1 ] );
- execlp( "wc","wc","-l",NULL );
- }
- }
- return 0;
- }
pipe(建立管道)
表头文件 #include
定义函数 int pipe(int filedes[2]);
函数说明
pipe()会建立管道,并将文件描述词由参数 filedes 数组返回。
filedes[0]为管道里的读取端,所以pipe用read调用的
filedes[1]则为管道的写入端。
返回值: 若成功则返回零,否则返回-1,错误原因存于 errno 中。
错误代码:
EMFILE 进程已用完文件描述词最大量
ENFILE 系统已无文件描述词可用。
EFAULT 参数 filedes 数组地址不合法。
#include
#include
int main( void )
{
int filedes[2];
char buf[80];
pid_t pid;
pipe( filedes );
if ( (pid=fork()) > 0 )
{
printf( "This is in the father process,here write a string to the pipe.\n" );
char s[] = "Hello world , this is write by pipe.\n";
write( filedes[1], s, sizeof(s) );
close( filedes[0] );
close( filedes[1] );
}
else
{
printf( "This is in the child process,here read a string from the pipe.\n" );
read( filedes[0], buf, sizeof(buf) );
printf( "%s\n", buf );
close( filedes[0] );
close( filedes[1] );
}
waitpid( pid, NULL, 0 );
return 0;
}
[root@localhost src]# gcc pipe.c
[root@localhost src]# ./a.out
This is in the child process,here read a string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world , this is write by pipe.
表头文件 #include
定义函数 int pipe(int filedes[2]);
函数说明
pipe()会建立管道,并将文件描述词由参数 filedes 数组返回。
filedes[0]为管道里的读取端,所以pipe用read调用的
filedes[1]则为管道的写入端。
返回值: 若成功则返回零,否则返回-1,错误原因存于 errno 中。
错误代码:
EMFILE 进程已用完文件描述词最大量
ENFILE 系统已无文件描述词可用。
EFAULT 参数 filedes 数组地址不合法。
#include
#include
int main( void )
{
int filedes[2];
char buf[80];
pid_t pid;
pipe( filedes );
if ( (pid=fork()) > 0 )
{
printf( "This is in the father process,here write a string to the pipe.\n" );
char s[] = "Hello world , this is write by pipe.\n";
write( filedes[1], s, sizeof(s) );
close( filedes[0] );
close( filedes[1] );
}
else
{
printf( "This is in the child process,here read a string from the pipe.\n" );
read( filedes[0], buf, sizeof(buf) );
printf( "%s\n", buf );
close( filedes[0] );
close( filedes[1] );
}
waitpid( pid, NULL, 0 );
return 0;
}
[root@localhost src]# gcc pipe.c
[root@localhost src]# ./a.out
This is in the child process,here read a string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world , this is write by pipe.