gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 14:56:31 24 4
gpt4 key购买 nike

据我了解,根据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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com