c - 对于带有 mkfifo 暂停的编写器文件可执行

标签 c unix mkfifo

据我了解,根据https://linux.die.net/man/3/mkfifo ,

我得到一个暗示,我必须有读取器和写入器文件,才能

利用管道文件。下面的来源是编写器文件,

#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <unistd.h>

int main(){

    int fd;
    char *myfifo = "./myfifo";

    mkfifo(myfifo, 0777);
    fd = open(myfifo, O_WRONLY);    


    int PID = fork();   

    if(PID == 0){

        execl("./reader.o", "reader", (char*)NULL);

    }

    write(fd, "Rock and roll baby\0", sizeof("Rock and roll baby"));
    close(fd);
    unlink(myfifo);

    return 0;

}

下面提供的来源是针对阅读器文件的。

#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

#define MAX_BUF 1024

int main(){

    int fd;

    char* myfifo = "./myfifo";
    char buf[MAX_BUF];

    fd = open(myfifo, O_RDONLY);
    read(fd, buf, MAX_BUF);
    write(STDOUT_FILENO, buf, MAX_BUF);

    close(fd);
    exit(EXIT_SUCCESS);

    return 0;

}

当运行编写器文件的可执行文件时,命令提示符进入

打印换行符后停止。我对这个问题的假设是因为

编写器文件中的 open() 无法检测到管道文件,

是这样吗?

谢谢。

最佳答案

我建议你应该在fork之前创建FIFO,但只在fork之后打开FIFO。这避免了各种各样的问题。在大多数情况下,我使用 write()向标准错误报告错误;它不如使用fprintf(stderr, …)那么方便不过。

请注意,编写者在消息末尾写入了一个空字节。读取器获取空字节,但在将结果字符数组(它不再是字符串;字符串末尾有一个终端空字节)写入标准输出之前用换行符覆盖它。如果代码使用<stdio.h>要写入数据(例如 printf("%s\n", buf) ),不需要用换行符替换空字节。

writer.c

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>

#ifndef READER
#define READER "./reader"
#endif

int main(void)
{
    char *myfifo = "./myfifo";

    if (mkfifo(myfifo, 0777) != 0)
    {
        write(STDERR_FILENO, "Failed to create FIFO\n",
                      sizeof("Failed to create FIFO\n") - 1);
    }

    int PID = fork();

    if (PID == 0)
    {
        execl(READER, "reader", (char *)NULL);
        write(STDERR_FILENO, "Failed to execute reader\n",
                      sizeof("Failed to execute reader\n") - 1);
        exit(EXIT_FAILURE);
    }
    if (PID < 0)
    {
        write(STDERR_FILENO, "Failed to fork\n",
                      sizeof("Failed to fork\n") - 1);
        exit(EXIT_FAILURE);
    }

    int fd = open(myfifo, O_WRONLY);
    if (fd < 0)
    {
        write(STDERR_FILENO, "Failed to open FIFO for writing\n",
                      sizeof("Failed to open FIFO for writing\n") - 1);
        unlink(myfifo);
        exit(EXIT_FAILURE);
    }

    write(fd, "Rock and roll baby", sizeof("Rock and roll baby"));
    close(fd);
    unlink(myfifo);
    int corpse;
    int status;
    while ((corpse = wait(&status)) > 0)
        printf("Child %d exited with status 0x%.4X\n", corpse, status);

    return 0;
}

reader.c

#include <fcntl.h>
#include <unistd.h>

#define MAX_BUF 1024

int main(void)
{
    char* myfifo = "./myfifo";
    int fd = open(myfifo, O_RDONLY);
    if (fd < 0)
        write(STDERR_FILENO, "Failed to open FIFO for reading\n",
                      sizeof("Failed to open FIFO for reading\n")-1);
    else
    {
        char buf[MAX_BUF];
        int nbytes = read(fd, buf, MAX_BUF);
        if (nbytes > 0)
        {
            buf[nbytes-1] = '\n';
            write(STDOUT_FILENO, buf, nbytes);
        }
        close(fd);
    }
    return 0;
}

输出示例

Rock and roll baby
Child 43734 exited with status 0x0000

关于c - 对于带有 mkfifo 暂停的编写器文件可执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44642911/

相关文章:

shell - 当我不拥有文件但对目录具有写权限时,如何更改 Unix 权限?

c - 在 C 中打开 FIFO 时遇到问题

c - 如果其他库中存在相同的函数,如何要求库使用其内部函数

c - argc 和 argv 没有运行

linux - 如何使用 unix 脚本从文件夹中搜索文件并移动到文件夹

sorting - 仅当第二列存在时,Unix 排序才会发出超出预期顺序的行

适用于 Windows 的 python os.mkfifo()

go - 如何使用命名管道处理进程输出

c - 来自scala的c中的动态调度

c openmp parallel for inside a parallel region