鱼C论坛

 找回密码
 立即注册
查看: 1630|回复: 1

[已解决]c读取文件达到scanf的等待效果

[复制链接]
发表于 2021-5-10 10:42:05 | 显示全部楼层 |阅读模式
10鱼币
我想要让c程序一直读取文件的内容,如果有数据就读取,如果没数据就等待,达到scanf类似的效果,我知道能够用while循环一直判断来实现但是这样太耗cpu了,问下有没更好的解决方法。其实我想要实现的功能是两个c程序中的通讯,想socket,内存共享这些想着小题大做了,我只需要在本地实现两个c程序互相传输数据就行了,如果哪个大佬能够这样从根本帮我解决,我会非常感谢的。
最佳答案
2021-5-10 10:42:06
可以试试 命名管道
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

// 父进程负责从标准输入读取数据,然后写到fifo
// 子进程负责从fifo读取数据,然后写到标准输出
int main(int argc, char *argv[]) {
    if(argc != 2) return -1;
    int fd[2];
    if(!strcmp(argv[1], "a")) {
        fd[0] = open("fifo_0", O_RDONLY);
        fd[1] = open("fifo_1", O_WRONLY);
    } else if(!strcmp(argv[1], "b")) {
        fd[1] = open("fifo_0", O_WRONLY);
        fd[0] = open("fifo_1", O_RDONLY);
    } else return -1;
    if(!fork()) {
        while(1) {
            char buff[1024];
            ssize_t nbyte = read(fd[0], buff, 1024);
            write(1, buff, nbyte);
            if(nbyte == 0 || !strncmp(buff, "exit", 4)) {
                close(fd[0]); close(fd[1]); exit(0);
            }
        }
    }
    while(1) {
        char buff[1024];
        ssize_t nbyte = read(0, buff, 1024);
        write(fd[1], buff, nbyte);
        if(nbyte == 0 || !strncmp(buff, "exit", 4)) {
            close(fd[0]); close(fd[1]); exit(0);
        }
    }
    return 0;
}

1.png

GIF.gif

最佳答案

查看完整内容

可以试试 命名管道
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-5-10 10:42:06 | 显示全部楼层    本楼为最佳答案   
可以试试 命名管道
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

// 父进程负责从标准输入读取数据,然后写到fifo
// 子进程负责从fifo读取数据,然后写到标准输出
int main(int argc, char *argv[]) {
    if(argc != 2) return -1;
    int fd[2];
    if(!strcmp(argv[1], "a")) {
        fd[0] = open("fifo_0", O_RDONLY);
        fd[1] = open("fifo_1", O_WRONLY);
    } else if(!strcmp(argv[1], "b")) {
        fd[1] = open("fifo_0", O_WRONLY);
        fd[0] = open("fifo_1", O_RDONLY);
    } else return -1;
    if(!fork()) {
        while(1) {
            char buff[1024];
            ssize_t nbyte = read(fd[0], buff, 1024);
            write(1, buff, nbyte);
            if(nbyte == 0 || !strncmp(buff, "exit", 4)) {
                close(fd[0]); close(fd[1]); exit(0);
            }
        }
    }
    while(1) {
        char buff[1024];
        ssize_t nbyte = read(0, buff, 1024);
        write(fd[1], buff, nbyte);
        if(nbyte == 0 || !strncmp(buff, "exit", 4)) {
            close(fd[0]); close(fd[1]); exit(0);
        }
    }
    return 0;
}

1.png

GIF.gif
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-11 04:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表