管道pipe通信 命令行mkfifo与函数定义

在命令行中 定义管道文件 1.pipe 2.pipe
mkfifo 1.pipe 2.pipe
用函数定义管道 mkfifo ()
ex: mkfifo ( “pipename” , 0777);
一端写,一端读文件
管道可被视为一段内存,数据结构是为循环链表,有一定的容量限制

#include <stdio.h>
#include<fcntl.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
int main(int argc ,char * argv[])
{
    if(argc <2)
    {
        printf("argc is wrong \n");
    }
    int fdr = open(argv[1],O_RDONLY);
    int fdw= open(argv[2],O_WRONLY);
    char buf[128]={0};
    while(1)
    {
        memset(buf,0,sizeof(buf));
        read(STDIN_FILENO,buf,sizeof(buf));
        write(fdw,buf,strlen(buf)-1);
        memset(buf , 0 , sizeof(buf));
        read(fdr,buf,sizeof(buf));
        printf("%s\n",buf);
    }
    
}
#include <stdio.h>
#include<fcntl.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
int main(int argc ,char * argv[])
{
    if(argc <2)
    {
        printf("argc is wrong \n");
    }
    int fdw = open(argv[1],O_WRONLY);

    int fdr= open(argv[2],O_RDONLY);
    char buf[128]={0};
    while(1)
    {
        memset(buf,0,sizeof(buf));
        read(fdr,buf,sizeof(buf));
        printf("%s\n",buf);
        memset(buf , 0 , sizeof(buf));
        read(STDIN_FILENO,buf,sizeof(buf));
        write(fdw,buf,strlen(buf)-1);
    }
    
}

pipe的一个特性
两个进程,一个读的进程,一个写的进程,只有两个进程同时操作一个管道的时候管道才会传送数据
write.c 写进程

#include <stdio.h>
#include<fcntl.h>
#include<unistd.h>
int main(int argc ,char **argv)
{
    if (argc <2)
    {
        perror("Error");
    }
    int fdw = open(argv[1],O_WRONLY);
    printf("i am writer fdw \n");//如果没有一个进程从另一边打开管道,对管道进行读,则不会执行打印
    printf("finish\n");
    write(fdw,"hello world",11);
    sleep(10);
    close(fdw);
    return 0 ;
    
}

read.c 读管道

int main(int argc , char **argv)
{
    int fdr ;
    if ( argc <2 )
    {
        perror("Eorror");
    }
    fdr = open(argv[1],O_RDONLY);
    printf("i am read\n");
    char buf[120]={0};
    read(fdr,buf ,sizeof(buf));
    printf("buf : %s\n",buf);
    close(fdr);
    return 0 ; 
}

测试
一端写,一端读文件
必须打开两端的端口才能进行,不然会被阻塞,在两个进程中分别打开读端口和写端口,或者再一个进程中 以O_RDWR的方式打开
从一个关闭的管道中读取文件, 会发生什么呢,读取到0 不停的打印

// write.c 开启一段时间结束
#include <stdio.h>
#include<unistd.h>
#include<fcntl.h>
int main(int argc , char ** argv)
{
    int count=0;
    int fdw = open( argv[1], O_RDWR );
    while( 1)
    {
        int ret = write( fdw , "helloworld", 10 );

        sleep(1);
        count += ret;
        printf("count = %d \n",count);
    }
    
    printf("Hello world\n");
    return 0;
}
//read.c 不断读取buf  ret返回值为 0 ,buf 读到的为空
#include <stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<fcntl.h>
#include<string.h>
int main(int argc , char **argv )
{
    int fdr = open(argv[1], O_RDONLY);
    int ret =9 ;
    char buf[128] ={0};
    while(1)
    {
        memset(buf, 0,sizeof(buf) );
        ret = read(fdr , buf, sizeof(buf) );
        printf("buf = %s \n", buf);
        sleep(1);
    }
    close(fdr);
    printf("Hello world\n");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值