C语言使用fcntl设置管道读端非阻塞

本文演示了一个C程序,通过匿名管道实现父子进程间的通信。子进程执行`ps aux`命令并将结果通过管道传递给父进程,父进程接收到数据后进行过滤操作。程序中使用了`fork`、`pipe`、`dup2`和`execlp`等系统调用,展示了进程间通信的基本原理。
摘要由CSDN通过智能技术生成

友链

#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <sys/wait.h>
int main(int argc, char *argv[])
{

    /*
实现ps aux | grep xxx 父子进程间通信

子进程ps aux
子进程结束后,将数据传给父进程
父进程获取到数据后进行过滤
pipe()创建匿名管道
execlp()用于执行ps aux
将子进程中的标准输出重定向至匿名管道的写端,使用dup2函数

    */
    // 子进程发送数据给父进程,父进程读取到数据之后输出
    pid_t pid;
    //在fork之前,先创建匿名管道
    int pipfd[2];
    int ret = pipe(pipfd);
    if (ret == -1)
    {
        perror("pipe");
        exit(0);
    }
    pid = fork();
    if (pid > 0)
    {
        //从管道读取数据
        printf("PARENT pid: %d\n", getpid());
        // 关闭写端
        close(pipfd[1]);
        char buf[1024] = {0};
        int flags = fcntl(pipfd[0], F_GETFL);
        flags |= O_NONBLOCK;
        fcntl(pipfd[0], F_SETFL, flags);
        while (1)
        {
            int len = read(pipfd[0], buf, sizeof(buf));
            printf("parent read len : %d\n", len);
            if (len > 0)
            {
                printf("parent receives message: %s\n", buf);
            }

            memset(buf, 0, 1024);
            sleep(1);
        }

        wait(NULL);
        // 过滤数据并输出
    }
    else if (pid == 0)
    {
        // 关闭读端
        close(pipfd[0]);
        char *str = "cao ni ma";
        while (1)
        {
            printf("child starts writing\n");
            int len = write(pipfd[1], str, strlen(str));
            sleep(5);
        }
    }
    else
    {
        perror("for");
        exit(0);
    }

    // printf("PARENT receive :%s, pid: %d\n", buf, getpid());}

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值