使用 mkfifo 暂停编写器文件的可执行文件

Executable for the writer file with mkfifo halts

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

我得到一个暗示,我必须有 reader 和编写器文件,以便

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

#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[=10=]", sizeof("Rock and roll baby"));
    close(fd);
    unlink(myfifo);

    return 0;

}

下面提供的来源是 reader 文件。

#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;

}

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

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

writer 文件中的 open() 无法检测到管道文件,

是这样吗?

谢谢。

#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";

    int PID = fork();   

    if(PID == 0){

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

    }

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

    write(fd, "Rock and roll baby[=10=]", sizeof("Rock and roll baby"));
    close(fd);
    unlink(myfifo);

    return 0;

}

将代码主体(execl 所在的位置)移至

上方

mkfifo(),

#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(){

    sleep(3);

    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;

}

让 reader 有 sleep() 3 秒,程序开始

工作;但是,有谁知道这两个程序是否可以打开()管道文件

正好在同一时间?

谢谢。

我建议你在fork之前创建FIFO,而在fork之后才打开FIFO。这避免了一系列问题。大多数情况下,我使用 write() 向标准错误报告错误;不过,它不如使用 fprintf(stderr, …) 方便。

请注意,作者在消息末尾写入了一个空字节。 reader 获取空字节,但在将结果字符数组(它不再是字符串;字符串末尾有一个终止空字节)写入标准输出之前用换行符覆盖它。如果代码使用 <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