linux C命名管道

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
/*
    命名管道:在系统中以特殊文件形式存在,不同于匿名管道,是全双工管道,发生在无亲缘关系的进程间通信
    使用mkfifo创建命名管道,以open函数打开命名管道文件向管道中进行写或读数据;
    默认是阻塞的
    1.mkfifo():创建命名管道
    2.open():打开管道
    3.read/write:从管道文件描述符中读取、写入数据
*/


/* 写进程 */
int main()
{
    int res = 0;
    int read_nm = 0;
    int write_nm = 0;
    int fp = 0;
    char buff[1024];

    memset(buff, 0x00, sizeof(buff));

    /* 创建myfifo命名管道并赋予权限 */
    res = mkfifo("myfifo", 0777);
    if (res != 0)
    {
        if (errno==EEXIST)//管道已经存在
        {
            printf("The fifo is exist.\n");
        }
        else
        {
            printf("creat myfifo failed!\n");
            exit(-1);
        }
    }
    fp = open("myfifo", O_WRONLY);
    if (fp < 0)
    {
        printf("open exec failed, errno=%d, errmsg=%s\n", errno, strerror(errno));
        return -1;
    }
    while (1)
    {
        memset(buff, 0x00, sizeof(buff));
        printf("please input msg:");
        //从标准输入中读取数据并写入到管道文件中
        read_nm = read(0, buff, sizeof(buff)-1);
        if (read_nm <= 0)
        {
            printf("read exec failed, errno=%d, errmsg=%s, res=%d\n", errno, strerror(errno), read_nm);

            close(fp);
            return -1;
        }
        if (memcmp(buff, "exit", 4) == 0)
        {
            printf("process exit\n");

            close(fp);
            return 0;
        }
        write_nm = write(fp, buff, read_nm);
    }
    return 0;
}

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
/*
    命名管道:在系统中以特殊文件形式存在,不同于匿名管道,是全双工管道,发生在无亲缘关系的进程间通信
    使用mkfifo创建命名管道,以open函数打开命名管道文件向管道中进行写或读数据;
    默认是阻塞的
    1.mkfifo():创建命名管道
    2.open():打开管道
    3.read/write:从管道文件描述符中读取、写入数据
*/
/* 读进程 */
int main()
{
    int res = 0;
    int read_nm = 0;
    int write_nm = 0;
    int fp = 0;
    char buff[1024];

    memset(buff, 0x00, sizeof(buff));
    if ((mkfifo("myfifo",0777))<0)//创建有名管道
    {
        if (errno==EEXIST)//管道已经存在
        {
            printf("The fifo is exist.\n");
        }
        else
        {
            printf("creat myfifo failed!\n");
            exit(-1);
        }
    }
    fp =  open("myfifo", O_RDONLY);
    if (fp < 0)
    {
        printf("open exec failed, errno=%d, errmsg=%s, fp=%d\n", errno, strerror(errno), fp);
        return -1;
    }
    while (1)
    {
        memset(buff, 0x00, sizeof(buff));
        read_nm = read(fp, buff, sizeof(buff)-1);
        if (read_nm <= 0)
        {
            printf("read exec failed, errno=%d, errmsg=%s, res=%d\n", errno, strerror(errno), read_nm);
            close(fp);
            return -1;
        }
        if (memcmp(buff, "exit", 4) == 0)
        {
            printf("process exit\n");
            close(fp);
            return 0;
        }
        printf("read buff:%s\n", buff);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值